/* JokulDigital — clean modern theme (Open Sans, mobile-first) */
:root {
    --ink: #0f172a;
    --ink-soft: #475569;
    --paper: #f8fafc;
    --paper-2: #eef2f7;
    --white: #ffffff;
    --accent: #0d9488;
    --accent-deep: #0f766e;
    --accent-2: #0369a1;
    --line: #e2e8f0;
    --ok: #15803d;
    --radius: 16px;
    --radius-sm: 12px;
    --font: "Open Sans", Calibri, "Segoe UI", system-ui, sans-serif;
    --display: "Open Sans", Calibri, "Segoe UI", system-ui, sans-serif;
    --shadow: 0 12px 40px rgba(15, 23, 42, .08);
    --shadow-sm: 0 4px 18px rgba(15, 23, 42, .06);
    --touch: 48px;
}

* { box-sizing: border-box; }
html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
    -webkit-text-size-adjust: 100%;
}
html, body { margin: 0; }
body {
    font-family: var(--font);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-deep); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
a:hover { color: var(--accent-2); }

h1, h2, h3, .display, .footer-brand {
    font-family: var(--display);
    font-weight: 700;
    letter-spacing: -.03em;
    line-height: 1.15;
    color: var(--ink);
    text-wrap: balance;
}

.container {
    width: min(1120px, calc(100% - 2rem));
    margin-inline: auto;
}

.skip { position: absolute; left: -999px; }
.skip:focus {
    left: 1rem; top: 1rem; z-index: 100;
    background: #fff; padding: .6rem 1rem; border-radius: 8px;
}

.ico { display: inline-block; vertical-align: -4px; flex-shrink: 0; }

/* —— Buttons (touch-first) —— */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    min-height: var(--touch);
    padding: .75rem 1.25rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: .95rem;
    font-family: inherit;
    text-decoration: none;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: transform .18s ease, background .18s ease, box-shadow .18s ease, border-color .18s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}
.btn:active { transform: scale(.98); }
.btn-ink {
    background: var(--ink);
    color: #fff !important;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .18);
}
.btn-ink:hover { background: #1e293b; color: #fff !important; }
.btn-ghost {
    background: var(--white);
    color: var(--ink) !important;
    border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--ink); background: var(--paper-2); color: var(--ink) !important; }
.btn-wa {
    background: var(--accent);
    color: #fff !important;
    box-shadow: 0 8px 24px rgba(13, 148, 136, .25);
}
.btn-wa:hover { background: var(--accent-deep); color: #fff !important; }
.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; }

/* —— Header —— */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    padding: .65rem 0 0;
    background: transparent;
}
.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 60px;
    gap: 1rem;
    position: relative;
    padding: 0 .75rem 0 1rem;
    background: rgba(255, 255, 255, .88);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(16px) saturate(1.2);
}
.site-header.is-scrolled .header-row {
    box-shadow: var(--shadow);
}
.brand {
    display: flex;
    align-items: center;
    gap: .55rem;
    text-decoration: none;
    color: var(--ink);
    font-weight: 800;
    font-size: .95rem;
}
.brand img { width: 34px; height: 34px; object-fit: contain; border-radius: 8px; }
.nav-toggle {
    display: none;
    width: var(--touch);
    height: var(--touch);
    border: 1px solid var(--line);
    background: var(--white);
    cursor: pointer;
    color: var(--ink);
    border-radius: 12px;
    align-items: center;
    justify-content: center;
}
.site-nav ul {
    list-style: none; margin: 0; padding: 0;
    display: flex; align-items: center; gap: .1rem;
}
.site-nav a {
    text-decoration: none;
    color: var(--ink-soft);
    font-weight: 600;
    font-size: .82rem;
    padding: .45rem .6rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    border-radius: 8px;
}
.site-nav a:hover { color: var(--ink); background: var(--paper-2); }
.site-nav a[aria-current="page"] { color: var(--accent-deep); }
.has-sub { position: relative; }
.has-sub .sub {
    display: none;
    position: absolute;
    top: calc(100% - .15rem);
    left: 0;
    min-width: 210px;
    background: var(--white);
    border: 1px solid var(--line);
    padding: .4rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}
.has-sub:hover .sub, .has-sub:focus-within .sub { display: block; }
.has-sub .sub a { display: block; width: 100%; }
.nav-cta-wrap { margin-left: .35rem; }
.nav-cta-wrap .btn { min-height: 40px; padding: .45rem 1rem; font-size: .82rem; }

/* —— Hero + parallax layers —— */
.hero {
    position: relative;
    padding: clamp(2.5rem, 7vw, 5.5rem) 0 2rem;
    overflow: clip;
}
.hero-bg {
    position: absolute;
    inset: -10% -5% auto -5%;
    height: 120%;
    pointer-events: none;
    z-index: 0;
}
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(48px);
    opacity: .55;
    will-change: transform;
}
.hero-orb--a {
    width: min(52vw, 420px);
    height: min(52vw, 420px);
    top: -8%;
    right: 5%;
    background: radial-gradient(circle, rgba(13, 148, 136, .35), transparent 70%);
}
.hero-orb--b {
    width: min(40vw, 320px);
    height: min(40vw, 320px);
    top: 35%;
    left: -8%;
    background: radial-gradient(circle, rgba(3, 105, 161, .22), transparent 70%);
}
.hero-mesh {
    position: absolute;
    inset: 0;
    opacity: .4;
    background-image:
        linear-gradient(rgba(148, 163, 184, .18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, .18) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 20%, transparent 75%);
    will-change: transform;
}
.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 1.75rem;
}
.kicker {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin: 0 0 1rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--accent-deep);
}
.kicker::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(13, 148, 136, .18);
}
.hero h1 {
    margin: 0 0 1.1rem;
    max-width: 18ch;
    font-size: clamp(1.85rem, 5.2vw, 3.35rem);
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: 1.12;
}
.lede {
    margin: 0 0 1.5rem;
    max-width: 38rem;
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: var(--ink-soft);
    line-height: 1.75;
}
.hero-aside {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: .85rem;
    min-height: 280px;
    padding: 1.5rem;
    border-radius: 20px;
    color: #e2e8f0;
    background:
        radial-gradient(circle at 90% 10%, rgba(13, 148, 136, .45), transparent 42%),
        linear-gradient(160deg, #0f172a 0%, #134e4a 100%);
    box-shadow: var(--shadow);
    overflow: hidden;
}
.hero-panel-head {
    display: flex;
    align-items: center;
    gap: .55rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #99f6e4;
}
.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2dd4bf;
    box-shadow: 0 0 0 5px rgba(45, 212, 191, .2);
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    50% { box-shadow: 0 0 0 8px rgba(45, 212, 191, .08); }
}
.hero-steps { display: grid; gap: .55rem; }
.hero-steps div {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .7rem .85rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .1);
}
.hero-steps span {
    font-size: .75rem;
    font-weight: 800;
    color: #5eead4;
}
.hero-steps strong { color: #fff; font-size: .92rem; }
.hero-aside p { margin: 0; color: #cbd5e1; font-size: .92rem; }
.hero-panel-link {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    color: #fff !important;
    font-weight: 700;
    font-size: .9rem;
    text-decoration: none !important;
}
.hero-panel-link:hover { color: #99f6e4 !important; }

/* —— Start cards —— */
.start-band { padding: .5rem 0 3rem; }
.start-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}
.start-card {
    display: flex;
    flex-direction: column;
    gap: .45rem;
    min-height: 168px;
    padding: 1.25rem 1.3rem;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--white);
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow-sm);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    -webkit-tap-highlight-color: transparent;
}
.start-card:hover, .start-card:focus-visible {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    color: inherit;
    border-color: #cbd5e1;
}
.start-card:active { transform: translateY(-1px) scale(.99); }
.start-card h2 { margin: 0; font-size: 1.2rem; font-weight: 800; }
.start-card p { margin: 0; flex: 1; color: var(--ink-soft); font-size: .92rem; }
.start-card .go {
    margin-top: .4rem;
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    font-weight: 700;
    font-size: .88rem;
    color: var(--accent-deep);
}
.start-card--wide {
    background: linear-gradient(145deg, #ccfbf1, #e0f2fe);
    border-color: #99f6e4;
}
.start-card--wide .go { color: var(--accent-deep); }
.start-card--ink {
    background: var(--ink);
    border-color: transparent;
    color: #e2e8f0;
}
.start-card--ink h2 { color: #fff; }
.start-card--ink p { color: #94a3b8; }
.start-card--ink .go { color: #5eead4; }
.start-card--ink:hover { color: #e2e8f0; border-color: transparent; }
.start-k {
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent-deep);
}
.start-card--ink .start-k { color: #5eead4; }

/* —— Sections —— */
.band {
    padding: clamp(3rem, 7vw, 5rem) 0;
    border: 0;
}
.band + .band { border-top: 1px solid var(--line); }
.band h2 {
    margin: 0 0 1.5rem;
    max-width: 22ch;
    font-size: clamp(1.65rem, 3.5vw, 2.5rem);
    font-weight: 800;
}

.diff-list { display: grid; gap: 1rem; }
.diff-item {
    display: grid;
    gap: .4rem;
    padding: 1.25rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}
.diff-n {
    font-size: .8rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: .06em;
}
.diff-item h3 { margin: 0; font-size: 1.1rem; font-weight: 800; }
.diff-item p { margin: 0; color: var(--ink-soft); font-size: .92rem; }

.svc-rows { display: grid; gap: 1rem; }
.svc-rows a.svc-row {
    display: grid;
    gap: .4rem;
    padding: 1.25rem;
    text-decoration: none;
    color: inherit;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform .2s ease, box-shadow .2s ease;
    -webkit-tap-highlight-color: transparent;
}
.svc-rows a.svc-row:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    color: inherit;
}
.svc-row h3 { margin: 0; font-size: 1.05rem; font-weight: 800; }
.svc-row p { margin: 0; color: var(--ink-soft); font-size: .9rem; }
.svc-row .from {
    margin-top: .35rem;
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    font-weight: 700;
    color: var(--accent-deep);
    font-size: .88rem;
}

.quotes { display: grid; gap: 1rem; }
.quote {
    margin: 0;
    padding: 1.25rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}
.quote:first-child {
    background: linear-gradient(160deg, #f0fdfa, #eff6ff);
    border-color: #99f6e4;
}
.quote p { margin: 0 0 .85rem; font-size: .98rem; }
.quote footer { font-size: .85rem; color: var(--ink-soft); }
.quote strong { color: var(--ink); }

.band-ink {
    position: relative;
    margin: 0;
    overflow: hidden;
    color: #cbd5e1;
    background: #0f172a;
    border-top: 0 !important;
}
.band-ink::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    top: -160px;
    right: -80px;
    border-radius: 50%;
    background: rgba(13, 148, 136, .28);
    filter: blur(40px);
    pointer-events: none;
}
.band-ink .container { position: relative; }
.band-ink h2 { color: #fff; }
.band-ink .kicker { color: #5eead4; }
.band-ink .kicker::before { background: #2dd4bf; box-shadow: 0 0 0 4px rgba(45, 212, 191, .15); }
.band-ink .btn-ghost {
    color: #fff !important;
    border-color: rgba(255, 255, 255, .35);
    background: transparent;
}
.band-ink .btn-ghost:hover { background: #fff; color: var(--ink) !important; }
.band-ink .btn-ink { background: #fff; color: var(--ink) !important; }
.band-ink .product-card {
    background: #1e293b;
    border-color: #334155;
}
.band-ink .product-card h3 a { color: #fff; text-decoration: none; }
.band-ink .badge { background: #334155; color: #cbd5e1; }
.band-ink .price { color: #fff; }

.product-grid { display: grid; gap: 1rem; }
.product-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}
.product-card img {
    width: 100%;
    aspect-ratio: 1.1;
    object-fit: cover;
    background: var(--paper-2);
}
.product-card .pad {
    padding: 1rem 1.05rem 1.15rem;
    display: flex;
    flex-direction: column;
    gap: .45rem;
    flex: 1;
}
.badge {
    display: inline-block;
    width: fit-content;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: .25rem .5rem;
    background: var(--paper-2);
    border-radius: 8px;
}
.price { font-weight: 800; }
.price-old { text-decoration: line-through; color: #94a3b8; margin-right: .35rem; font-weight: 600; }

/* —— FAQ —— */
.faq details {
    margin-bottom: .65rem;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    overflow: hidden;
}
.faq details:first-of-type { border-top: 1px solid var(--line); }
.faq summary {
    cursor: pointer;
    font-weight: 700;
    min-height: var(--touch);
    display: flex;
    align-items: center;
    padding: .9rem 3rem .9rem 1.1rem;
    position: relative;
    list-style: none;
    -webkit-tap-highlight-color: transparent;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: "+";
    position: absolute;
    right: 1.1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
    font-size: 1.35rem;
    font-weight: 600;
}
.faq details[open] summary::after { content: "–"; }
.faq p { color: var(--ink-soft); margin: 0; padding: 0 1.1rem 1rem; }

.crumbs ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
    padding: 1rem 0 0;
    margin: 0;
    font-size: .85rem;
    color: var(--ink-soft);
}
.crumbs li:not(:last-child)::after { content: "/"; margin-left: .35rem; color: #94a3b8; }
.crumbs a { color: inherit; text-decoration: none; }

.prose { max-width: 42rem; }
.prose p { color: var(--ink-soft); }
.page-hero { padding: clamp(2rem, 6vw, 4rem) 0 2rem; }
.page-hero h1 {
    margin: 0 0 1rem;
    max-width: 18ch;
    font-size: clamp(1.85rem, 4.5vw, 3rem);
    font-weight: 800;
}

.split { display: grid; gap: 1.5rem; }
.price-table { display: grid; gap: 1rem; }
.tier {
    background: var(--white);
    border: 1px solid var(--line);
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    gap: .6rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}
.tier.featured {
    border-color: var(--accent);
    box-shadow: var(--shadow);
}
.tier ul { margin: 0; padding-left: 1.1rem; color: var(--ink-soft); }
.tier .amt { font-size: 1.6rem; font-weight: 800; }

.form-control, select, textarea,
input[type=text], input[type=email], input[type=tel],
input[type=search], input[type=number], input[type=password] {
    width: 100%;
    min-height: var(--touch);
    padding: .65rem .85rem;
    border: 1.5px solid var(--line);
    background: var(--white);
    font: inherit;
    color: var(--ink);
    border-radius: 12px;
}
label { font-weight: 700; font-size: .9rem; display: block; margin-bottom: .3rem; }
.field { margin-bottom: 1rem; }

.filter-bar { display: grid; gap: .8rem; margin: 1.2rem 0; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table.data { width: 100%; border-collapse: collapse; min-width: 520px; }
table.data th, table.data td {
    text-align: left; padding: .7rem; border-bottom: 1px solid var(--line);
}

.pay-marks { display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; }
.pay-marks img {
    height: 36px; width: auto; background: #fff; border: 1px solid var(--line);
    padding: 2px 4px; border-radius: 8px;
}
.pay-marks span {
    display: inline-flex; align-items: center; justify-content: center;
    min-height: 32px; padding: .2rem .55rem; border: 1px solid var(--line);
    background: #fff; font-size: .72rem; font-weight: 800; letter-spacing: .04em;
    border-radius: 8px;
}

.map-wrap {
    border: 1px solid var(--line);
    min-height: 260px;
    border-radius: var(--radius);
    overflow: hidden;
}
.map-wrap iframe { width: 100%; height: 280px; border: 0; }

.est-box {
    background: var(--white);
    border: 1px solid var(--line);
    padding: 1.3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}
.est-box .num { font-size: 1.85rem; font-weight: 800; }
.est-note {
    margin: .75rem 0 1rem;
    color: var(--ink);
    line-height: 1.55;
}
.est-note strong { font-weight: 700; }

.stars { color: #ea580c; letter-spacing: .05em; }
.review { border-top: 1px solid var(--line); padding: .9rem 0; }
.progress { height: 8px; background: var(--paper-2); border-radius: 999px; overflow: hidden; }
.progress > span { display: block; height: 100%; background: var(--accent); }

.site-footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 3rem 0 5.5rem;
}
.site-footer a { color: #e2e8f0; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; color: #5eead4; }
.site-footer h2 {
    color: #5eead4;
    font-size: .75rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-weight: 800;
}
.footer-grid { display: grid; gap: 1.5rem; }
.footer-brand { font-size: 1.35rem; color: #fff; margin: 0 0 .5rem; font-weight: 800; }
.footer-bottom {
    border-top: 1px solid #1e293b;
    margin-top: 1.8rem;
    padding-top: 1rem;
    font-size: .85rem;
}

.wa-float {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 40;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    min-height: var(--touch);
    padding: 0 1rem;
    border-radius: 999px;
    background: var(--accent);
    color: #fff !important;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 28px rgba(13, 148, 136, .35);
}
.wa-float:hover { color: #fff !important; filter: brightness(1.06); }
.back-to-top {
    position: fixed;
    left: 1rem;
    bottom: 1rem;
    width: var(--touch);
    height: var(--touch);
    display: none;
    align-items: center;
    justify-content: center;
    background: var(--ink);
    color: #fff;
    text-decoration: none;
    z-index: 30;
    border-radius: 12px;
}

.alert {
    padding: .85rem 1rem;
    border: 1px solid var(--line);
    background: var(--white);
    margin: 1rem 0;
    border-radius: 12px;
}
.muted { color: var(--ink-soft); }
.center { text-align: center; }
.gallery { display: grid; gap: .5rem; }
.gallery img { width: 100%; border-radius: 12px; }
.legal-page, .blog-wrap { padding-bottom: 3rem; }

.brief-acc details { border-top: 1px solid var(--line); padding: .85rem 0; }
.brief-acc summary {
    cursor: pointer;
    font-size: 1.15rem;
    font-weight: 800;
    min-height: var(--touch);
    display: flex;
    align-items: center;
}
.type-grid { display: grid; gap: .65rem; }
.type-option { display: block; cursor: pointer; }
.type-option input { position: absolute; opacity: 0; pointer-events: none; }
.type-option .box {
    min-height: var(--touch);
    border: 1.5px solid var(--line);
    background: var(--white);
    padding: .85rem 1rem;
    display: flex;
    align-items: center;
    gap: .7rem;
    border-radius: 12px;
}
.type-option input:checked + .box {
    border-color: var(--accent);
    background: #f0fdfa;
}
.type-option input:focus-visible + .box {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}
.hp-field { position: absolute; left: -9999px; height: 0; overflow: hidden; }

.proof {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .85rem;
}
.proof div {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.1rem 1.15rem;
}
.proof strong { display: block; font-size: 1.45rem; font-weight: 800; }
.proof span { font-size: .82rem; color: var(--ink-soft); }

.case-grid { display: grid; gap: 1rem; }
.case-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--white);
    border: 1px solid var(--line);
    padding: 1.25rem;
    border-radius: var(--radius);
}

/* —— Scroll reveal —— */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s cubic-bezier(.22, 1, .36, 1), transform .7s cubic-bezier(.22, 1, .36, 1);
}
.reveal.is-in {
    opacity: 1;
    transform: none;
}
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

body.menu-open { overflow: hidden; }

/* —— Tablet+ —— */
@media (min-width: 640px) {
    .type-grid { grid-template-columns: 1fr 1fr; }
    .start-grid { grid-template-columns: 1fr 1fr; }
    .diff-list { grid-template-columns: 1fr 1fr; }
    .svc-rows { grid-template-columns: 1fr 1fr; }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 800px) {
    .quotes { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
    .split { grid-template-columns: 1.2fr .8fr; }
    .filter-bar { grid-template-columns: 1.4fr 1fr 1fr auto; align-items: end; }
}

@media (min-width: 900px) {
    .hero-grid {
        grid-template-columns: 1.2fr .8fr;
        align-items: stretch;
        gap: 2.5rem;
    }
    .hero-aside { min-height: 380px; }
    .start-grid { grid-template-columns: repeat(4, 1fr); }
    .diff-list { grid-template-columns: repeat(4, 1fr); }
    .svc-rows { grid-template-columns: repeat(3, 1fr); }
    .product-grid { grid-template-columns: repeat(3, 1fr); }
    .price-table { grid-template-columns: repeat(3, 1fr); }
    .proof { grid-template-columns: repeat(4, 1fr); }
}

/* —— Mobile nav —— */
@media (max-width: 1100px) {
    .site-header {
        padding: 0;
        background: rgba(248, 250, 252, .92);
        backdrop-filter: blur(14px);
    }
    .header-row {
        width: 100%;
        min-height: 64px;
        border: 0;
        border-bottom: 1px solid var(--line);
        border-radius: 0;
        box-shadow: none;
        background: transparent;
    }
    .nav-toggle { display: inline-flex; }
    .site-nav {
        display: none;
        position: absolute;
        left: 1rem;
        right: 1rem;
        top: 68px;
        max-height: calc(100dvh - 84px);
        overflow-y: auto;
        background: rgba(255, 255, 255, .98);
        border: 1px solid var(--line);
        border-radius: 14px;
        padding: .65rem;
        box-shadow: var(--shadow);
    }
    .site-nav.active { display: block; }
    .site-nav ul { flex-direction: column; align-items: stretch; }
    .site-nav a { width: 100%; padding: .75rem .85rem; font-size: .95rem; }
    .has-sub .sub {
        position: static;
        display: block;
        border: 0;
        box-shadow: none;
        padding-left: .75rem;
        background: transparent;
    }
    .nav-cta-wrap { margin: .5rem 0 0; }
    .nav-cta-wrap .btn { width: 100%; min-height: var(--touch); }
    .wa-float span {
        position: absolute;
        width: 1px; height: 1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
    }
    .wa-float {
        width: 56px;
        height: 56px;
        padding: 0;
        justify-content: center;
        right: .85rem;
        bottom: .85rem;
    }
    .brief-acc .type-grid { padding-right: 3.5rem; }
}

@media (max-width: 640px) {
    .hero .btn-row { display: grid; grid-template-columns: 1fr; }
    .hero h1 { max-width: none; }
    .hero-aside { min-height: 300px; }
    .start-grid {
        display: flex;
        overflow-x: auto;
        gap: .85rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin-right: -1rem;
        padding-right: 1rem;
    }
    .start-grid::-webkit-scrollbar { display: none; }
    .start-card {
        flex: 0 0 min(78vw, 280px);
        scroll-snap-align: start;
        min-height: 190px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .btn, .start-card, .svc-row, .reveal, .live-dot { transition: none !important; animation: none !important; }
    .btn:hover, .start-card:hover, .svc-rows a.svc-row:hover { transform: none; }
    .reveal { opacity: 1; transform: none; }
    .hero-orb, .hero-mesh { transform: none !important; }
}
