:root {
    --bg: #050506;
    --panel: #0d0d10;
    --panel-2: #131317;
    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.16);
    --text: #f4f4f5;
    --text-dim: #a1a1aa;
    --text-faint: #6b7280;
    --accent: #ffffff;
    --accent-strong: #d4d4d8;
    --accent-soft: rgba(255, 255, 255, 0.07);
    --accent-border: rgba(255, 255, 255, 0.3);
    --green: #f4f4f5;
    --red: #f87171;
    --red-soft: rgba(248, 113, 113, 0.12);
    --radius: 14px;
    --radius-sm: 9px;
    --font: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --mono: 'JetBrains Mono', ui-monospace, monospace;
    --z-header: 90;
    --z-toast: 120;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
[hidden] { display: none !important; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-radius: 3px;
}

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.announcement {
    background: rgba(255,255,255,.06);
    border-bottom: 1px solid var(--accent-border);
    color: var(--accent);
    text-align: center;
    font-size: .85rem;
    font-weight: 600;
    padding: 8px 16px;
}

/* ---------- Prose (personvern o.l.) ---------- */

.prose { max-width: 760px; padding-bottom: 70px; }
.prose .page-head { padding: 44px 0 6px; }
.prose .page-head h1 { font-size: 1.7rem; font-weight: 700; letter-spacing: -.01em; }
.prose .page-head p { color: var(--text-faint); font-size: .85rem; margin-top: 6px; }
.prose-intro {
    background: var(--panel);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    margin-top: 18px;
}
.prose h2 { font-size: 1.15rem; font-weight: 700; margin-top: 36px; }
.prose h3 { font-size: .98rem; font-weight: 650; margin-top: 22px; }
.prose p { color: var(--text-dim); margin-top: 10px; max-width: 70ch; text-wrap: pretty; }
.prose strong, .prose em { color: var(--text); }
.prose a { color: var(--text); border-bottom: 1px solid var(--accent-border); }
.prose a:hover { border-bottom-color: var(--accent); }

/* ---------- Header ---------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: var(--z-header);
    background: rgba(5, 5, 6, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 14px 0;
}

.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img { height: 34px; width: auto; }
.brand span { font-size: 1.3rem; font-weight: 700; letter-spacing: .02em; }
.brand-tld { font-family: var(--mono); font-style: normal; font-weight: 500; font-size: .95rem; color: var(--text-dim); }

.main-nav { display: flex; align-items: center; gap: 22px; flex: 1; }

.nav-link {
    color: var(--text-dim);
    font-size: .92rem;
    font-weight: 500;
    transition: color .15s ease;
    padding: 4px 0;
}
.nav-link:hover, .nav-link.active { color: var(--accent); }

.header-actions { display: flex; align-items: center; gap: 14px; margin-left: auto; }

.shop-link {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--panel);
    border: 1px solid var(--border);
    color: var(--text-dim);
    border-radius: var(--radius-sm);
    padding: 8px 14px;
    font-size: .88rem;
    font-weight: 600;
    transition: border-color .15s ease, background .15s ease, color .15s ease;
}
.shop-link:hover { border-color: var(--accent-border); background: var(--accent-soft); color: var(--text); }
.shop-link svg { width: 17px; height: 17px; }

.btn-header { padding: 9px 18px; font-size: .88rem; }

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    padding: 6px;
}
.menu-toggle svg { width: 24px; height: 24px; }

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 8px 0 16px;
    border-top: 1px solid var(--border);
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link { padding: 10px 4px; font-size: 1rem; }

main { flex: 1; }

/* ---------- Buttons ---------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    font-weight: 650;
    font-size: .95rem;
    padding: 12px 24px;
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease, background .15s ease, opacity .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 18px; height: 18px; }

.btn-primary {
    background: linear-gradient(135deg, #ffffff, #d4d4d8);
    color: #111113;
    box-shadow: 0 4px 22px rgba(255, 255, 255, 0.08);
}
.btn-primary:hover { box-shadow: 0 8px 30px rgba(255, 255, 255, 0.16); transform: translateY(-1px); }
.btn-primary:disabled { opacity: .45; cursor: not-allowed; box-shadow: none; transform: none; }

.btn-secondary {
    background: var(--panel);
    border-color: var(--border-strong);
    color: var(--text);
}
.btn-secondary:hover { border-color: var(--accent-border); background: var(--accent-soft); }

.btn-ghost { background: none; border-color: var(--border); color: var(--text-dim); }
.btn-ghost:hover { color: var(--text); border-color: var(--border-strong); }

.btn-block { width: 100%; }

/* ---------- Hero ---------- */

.hero { padding: clamp(48px, 9vh, 96px) 0 clamp(40px, 7vh, 72px); }

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(28px, 5vw, 64px);
    align-items: center;
}

.hero-copy h1 {
    font-size: clamp(2.1rem, 4.6vw, 3.4rem);
    font-weight: 750;
    letter-spacing: -.02em;
    line-height: 1.12;
    text-wrap: balance;
}

.hero-copy > p {
    color: var(--text-dim);
    font-size: clamp(1rem, 1.4vw, 1.12rem);
    margin-top: 18px;
    max-width: 56ch;
    text-wrap: pretty;
}
.hero-copy > p a, .hero-note a { color: var(--text); border-bottom: 1px solid var(--accent-border); }

.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

.hero-note { color: var(--text-faint); font-size: .85rem; margin-top: 16px; }
.hero-note a { color: var(--text-dim); border-bottom: 1px solid var(--border-strong); }
.hero-note a:hover { color: var(--text); }

/* Terminal panel */

.terminal {
    background: var(--panel);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.6);
}

.term-bar {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 11px 14px;
    background: var(--panel-2);
    border-bottom: 1px solid var(--border);
}
.term-dot { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,.14); }
.term-title {
    font-family: var(--mono);
    font-size: .74rem;
    color: var(--text-faint);
    margin-left: 8px;
}

.term-body {
    padding: 20px 18px 22px;
    font-family: var(--mono);
    font-size: .78rem;
    line-height: 1.75;
    color: var(--text-dim);
    overflow-x: auto;
    white-space: pre;
}
.t-line { display: block; }
.t-prompt { color: var(--text-faint); }
.t-hl { color: var(--text); font-weight: 700; }
.t-resp { color: var(--text); margin-bottom: .6em; }

.t-cursor {
    display: inline-block;
    width: 8px;
    height: 1.05em;
    background: var(--accent-strong);
    vertical-align: text-bottom;
}

@media (prefers-reduced-motion: no-preference) {
    .hero-copy h1, .hero-copy > p, .hero-cta, .hero-note {
        animation: rise .7s cubic-bezier(.22,1,.36,1) backwards;
    }
    .hero-copy > p { animation-delay: .08s; }
    .hero-cta { animation-delay: .16s; }
    .hero-note { animation-delay: .22s; }

    .terminal { animation: rise .8s cubic-bezier(.22,1,.36,1) .15s backwards; }
    .terminal .t-line { animation: fadeIn .45s ease-out backwards; }
    .terminal .t-line:nth-child(1) { animation-delay: .55s; }
    .terminal .t-line:nth-child(2) { animation-delay: .95s; }
    .terminal .t-line:nth-child(3) { animation-delay: 1.25s; }
    .terminal .t-line:nth-child(4) { animation-delay: 1.6s; }
    .terminal .t-line:nth-child(5) { animation-delay: 1.9s; }

    .t-cursor { animation: blink 1.1s steps(1) infinite; }
}

@keyframes rise {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: none; }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes blink {
    50% { opacity: 0; }
}

/* ---------- Info strip ---------- */

.info-strip {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--panel);
    padding: 34px 0;
}
.info-strip .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 26px;
}
.info-item { display: flex; gap: 14px; align-items: flex-start; }
.info-item svg { width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.info-item h4 { font-size: .95rem; font-weight: 650; }
.info-item p { font-size: .82rem; color: var(--text-dim); }
.info-item p a { color: var(--text-dim); border-bottom: 1px solid var(--border-strong); }
.info-item p a:hover { color: var(--text); }

/* ---------- Sections ---------- */

.section-head { max-width: 640px; }
.section-head h2 { font-size: clamp(1.5rem, 2.6vw, 1.9rem); font-weight: 700; letter-spacing: -.01em; text-wrap: balance; }
.section-head p { color: var(--text-dim); margin-top: 8px; text-wrap: pretty; }

.services { padding: clamp(56px, 9vh, 90px) 0 0; }

/* Lead service panel */

.service-lead {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: clamp(24px, 4vw, 48px);
    align-items: center;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: clamp(24px, 4vw, 44px);
    margin-top: 34px;
}

.service-lead h3 { font-size: 1.35rem; font-weight: 700; letter-spacing: -.01em; }
.service-lead-copy > p { color: var(--text-dim); margin-top: 10px; font-size: .95rem; }
.service-lead-copy .btn { margin-top: 22px; }

.code-chip {
    font-family: var(--mono);
    font-size: .82em;
    background: var(--accent-soft);
    border: 1px solid var(--border-strong);
    border-radius: 6px;
    padding: 1px 7px;
    color: var(--text);
    white-space: nowrap;
}

.check-list { list-style: none; display: grid; gap: 9px; margin-top: 18px; }
.check-list li {
    display: flex;
    gap: 10px;
    align-items: baseline;
    color: var(--text-dim);
    font-size: .92rem;
}
.check-list li::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-strong);
    flex-shrink: 0;
    transform: translateY(-1px);
}

.endpoint-list {
    display: grid;
    gap: 10px;
    font-family: var(--mono);
    font-size: .8rem;
}
.endpoint {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    transition: border-color .2s ease, transform .2s ease;
}
.endpoint:hover { border-color: var(--accent-border); transform: translateX(4px); }
.method {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .05em;
    border-radius: 5px;
    padding: 2px 8px;
    border: 1px solid var(--border-strong);
    color: var(--text);
    min-width: 52px;
    text-align: center;
}
.method.get { background: rgba(255,255,255,.1); }
.method.post { background: rgba(255,255,255,.05); color: var(--accent-strong); }
.method.put { background: none; color: var(--text-dim); }
.endpoint .path { color: var(--text-dim); }

/* Service grid */

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.service-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 22px;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.service-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-border);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.55);
}
.service-card svg { width: 24px; height: 24px; color: var(--accent); }
.service-card h3 { font-size: 1.02rem; font-weight: 650; margin-top: 14px; }
.service-card p { color: var(--text-dim); font-size: .88rem; margin-top: 6px; }

/* «Nettsider? Nei.» */

.no-web {
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    padding: clamp(26px, 4vw, 40px);
    margin-top: 42px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: clamp(20px, 4vw, 48px);
    align-items: center;
    background:
        radial-gradient(circle at 12% 20%, rgba(255,255,255,.04), transparent 55%),
        var(--bg);
}
.no-web h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 750; letter-spacing: -.02em; white-space: nowrap; }
.no-web-nei { color: var(--text-faint); text-decoration: line-through; text-decoration-thickness: 3px; text-decoration-color: var(--red); }
.no-web p { color: var(--text-dim); max-width: 62ch; text-wrap: pretty; }
.no-web em { color: var(--text); font-style: italic; }

/* ---------- How it works ---------- */

.how { padding: clamp(56px, 9vh, 90px) 0; }

.how-steps {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px;
    margin-top: 34px;
    counter-reset: step;
}

.how-step {
    position: relative;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 22px;
}
.how-num {
    font-family: var(--mono);
    font-size: .8rem;
    font-weight: 700;
    color: var(--text);
    background: var(--accent-soft);
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.how-step h3 { font-size: 1rem; font-weight: 650; margin-top: 14px; }
.how-step p { color: var(--text-dim); font-size: .87rem; margin-top: 6px; }

/* ---------- Quote ---------- */

.quote {
    border-top: 1px solid var(--border);
    background: var(--panel);
    padding: clamp(56px, 9vh, 90px) 0 clamp(64px, 10vh, 100px);
}

.quote-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 26px;
    align-items: start;
    margin-top: 34px;
}

.quote-services { display: grid; gap: 12px; }

.q-service {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color .2s ease;
}
.q-service.on { border-color: var(--accent-border); }

.q-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 17px 20px;
    cursor: pointer;
    user-select: none;
}
.q-head input {
    width: 18px;
    height: 18px;
    accent-color: #ffffff;
    flex-shrink: 0;
    cursor: pointer;
}
.q-name { font-weight: 650; font-size: 1rem; }
.q-from {
    margin-left: auto;
    font-family: var(--mono);
    font-size: .76rem;
    color: var(--text-dim);
    white-space: nowrap;
}

.q-options {
    display: none;
    padding: 2px 20px 20px 52px;
}
.q-service.on .q-options { display: block; }

.q-row { display: grid; gap: 7px; }
.q-row + .q-row { margin-top: 14px; }
.q-row > label { font-size: .88rem; font-weight: 550; color: var(--text); }
.q-row output { font-family: var(--mono); font-size: .84rem; color: var(--text); }

.q-row input[type="text"],
.q-row input[type="email"],
.q-row select,
.q-row textarea {
    background: var(--panel);
    border: 1px solid var(--border-strong);
    color: var(--text);
    border-radius: var(--radius-sm);
    padding: 10px 12px;
    font-size: .9rem;
    width: 100%;
}
.q-service .q-row select { background: var(--bg); }
.q-row input:focus, .q-row select:focus, .q-row textarea:focus {
    outline: none;
    border-color: var(--accent);
}
.q-row textarea { resize: vertical; min-height: 66px; }

.q-row input[type="range"] {
    width: 100%;
    accent-color: #ffffff;
}

.q-row-check label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .9rem;
    color: var(--text);
    cursor: pointer;
}
.q-row-check input { width: 16px; height: 16px; accent-color: #ffffff; cursor: pointer; }
.q-plus { font-family: var(--mono); font-size: .76rem; color: var(--text-dim); }

.q-hint { color: var(--text-faint); font-size: .8rem; margin-top: 12px; }
.q-optional { color: var(--text-faint); font-weight: 400; }

/* Aside */

.quote-aside {
    display: grid;
    gap: 16px;
    position: sticky;
    top: 84px;
}

.biz-card, .sum-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 20px;
}
.biz-card h3, .sum-card h3 { font-size: 1.02rem; font-weight: 650; margin-bottom: 14px; }

.biz-status { font-size: .84rem; margin-top: 8px; min-height: 1.3em; color: var(--text-dim); }
.biz-status.err { color: var(--red); }
.biz-status.ok { color: var(--green); }

.biz-found {
    display: grid;
    gap: 2px;
    background: var(--accent-soft);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    margin: 10px 0 4px;
    font-size: .85rem;
}
.biz-found strong { font-size: .95rem; }
.biz-found span { color: var(--text-dim); }

.biz-card .q-row + .q-row, .biz-card .biz-found + .q-row { margin-top: 14px; }
.biz-card .q-row:first-of-type { margin-top: 0; }

#orgnr { font-family: var(--mono); letter-spacing: .06em; }

/* Summary */

.sum-lines { display: grid; gap: 8px; }
.sum-empty { color: var(--text-faint); font-size: .87rem; }

.sum-line {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 14px;
    font-size: .87rem;
}
.sum-line .l { color: var(--text-dim); }
.sum-line .v { font-family: var(--mono); font-size: .8rem; white-space: nowrap; }

.sum-totals {
    border-top: 1px solid var(--border-strong);
    margin-top: 14px;
    padding-top: 12px;
    display: grid;
    gap: 6px;
    margin-bottom: 16px;
}
.sum-total { display: flex; justify-content: space-between; align-items: baseline; }
.sum-total span { color: var(--text-dim); font-size: .88rem; }
.sum-total strong { font-family: var(--mono); font-size: 1.02rem; font-weight: 700; }

.send-hint { color: var(--text-faint); font-size: .8rem; margin-top: 10px; text-align: center; }
.send-hint.hidden { display: none; }

#copyBtn { margin-top: 10px; }

.sum-disclaimer {
    color: var(--text-faint);
    font-size: .78rem;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

/* Godt å vite */

.quote-notes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    margin-top: 26px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg);
    padding: clamp(20px, 3vw, 30px);
}
.quote-note h4 { font-size: .92rem; font-weight: 650; }
.quote-note p { color: var(--text-dim); font-size: .84rem; margin-top: 6px; }
.quote-note a { color: var(--text); border-bottom: 1px solid var(--accent-border); }
.quote-note em { color: var(--text); font-style: italic; }

/* ---------- Footer ---------- */

.site-footer {
    border-top: 1px solid var(--border);
    background: var(--panel);
    padding: 50px 0 30px;
    margin-top: auto;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
    gap: 34px;
    padding-bottom: 36px;
}
.footer-brand img { height: 30px; margin-bottom: 12px; }
.footer-brand p { color: var(--text-faint); font-size: .85rem; max-width: 240px; }
.footer-social { display: flex; gap: 14px; margin-top: 16px; }
.footer-social a { color: var(--text-faint); transition: color .15s ease; }
.footer-social a:hover { color: var(--text); }
.footer-social svg { width: 19px; height: 19px; }

.footer-col h4 { font-size: .9rem; font-weight: 650; margin-bottom: 12px; }
.footer-col ul { list-style: none; display: grid; gap: 8px; }
.footer-col a { color: var(--text-dim); font-size: .87rem; transition: color .15s ease; }
.footer-col a:hover { color: var(--text); }

.contact-box p { color: var(--text-dim); font-size: .87rem; }
.contact-email {
    display: inline-block;
    font-family: var(--mono);
    font-size: .95rem;
    color: var(--text) !important;
    border-bottom: 1px solid var(--accent-border);
    margin: 10px 0 8px;
}
.contact-email:hover { border-bottom-color: var(--accent); }
.contact-alt a { color: var(--text-dim); border-bottom: 1px solid var(--border-strong); }
.contact-alt a:hover { color: var(--text); }

.footer-legal {
    border-top: 1px solid var(--border);
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px 24px;
    flex-wrap: wrap;
}
.footer-legal-info {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 18px;
    color: var(--text-faint);
    font-size: .8rem;
}
.footer-legal-name { color: var(--text-dim); font-weight: 600; }
.footer-legal-info a { color: var(--text-faint); }
.footer-legal-info a:hover { color: var(--text); }
.footer-legal-links { display: flex; gap: 18px; }
.footer-legal-links a {
    color: var(--text-faint);
    font-size: .8rem;
    background: none;
    border: none;
}
.footer-legal-links a:hover { color: var(--text); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px 24px;
    color: var(--text-faint);
    font-size: .78rem;
    margin-top: 18px;
}

/* ---------- Samtykkebanner ---------- */

.consent {
    position: fixed;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 560px;
    background: var(--panel-2);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    padding: 18px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 18px;
    box-shadow: 0 20px 50px rgba(0,0,0,.5);
    z-index: var(--z-toast);
}
.consent p { font-size: .85rem; color: var(--text-dim); flex: 1; min-width: 220px; }
.consent-actions { display: flex; gap: 10px; margin-left: auto; }
.consent-actions .btn { padding: 9px 16px; font-size: .85rem; }

/* ---------- Toast ---------- */

.toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translate(-50%, 16px);
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--panel-2);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    padding: 12px 18px;
    font-size: .88rem;
    font-weight: 550;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
    z-index: var(--z-toast);
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.toast svg { width: 17px; height: 17px; color: var(--green); flex-shrink: 0; }

/* ---------- Scroll reveal ---------- */

@media (prefers-reduced-motion: no-preference) {
    html.js .reveal {
        opacity: 0;
        transform: translateY(18px);
        transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1);
    }
    html.js .reveal.in { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
    .main-nav { display: none; }
    .menu-toggle { display: block; }
    .btn-header { display: none; }

    .hero-grid { grid-template-columns: 1fr; }
    .service-lead { grid-template-columns: 1fr; }
    .quote-layout { grid-template-columns: 1fr; }
    .quote-aside { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .no-web { grid-template-columns: 1fr; gap: 12px; }
}

@media (max-width: 560px) {
    .header-inner { gap: 12px; }
    .shop-link .label { display: none; }

    .hero { padding-top: 36px; }
    .hero-cta .btn { flex: 1; min-width: 150px; }
    .term-body { font-size: .68rem; }

    .q-head { padding: 15px 16px; }
    .q-options { padding-left: 16px; padding-right: 16px; }
    .q-from { font-size: .7rem; }

    .footer-grid { grid-template-columns: 1fr; }
}
