*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; font-weight: 400; color: #1a2620; line-height: 1.65; }

:root {
    --patch: #16a34a;
    --patch-hi: #15803d;
    --patch-glow: rgba(22, 163, 74, 0.28);
    --patch-dim: rgba(22, 163, 74, 0.1);
    --tarmac: #060b07;
    --surface: #0c1510;
    --surface-hi: #111d15;
    --canvas: #f1f5f1;
    --canvas-mid: #e3e8e3;
    --white: #ffffff;
    --ink: #0d1a10;
    --ink-mid: #3a4c40;
    --muted: rgba(210, 235, 215, 0.62);
    --radius: 12px;
    --shadow: 0 4px 24px rgba(0,0,0,0.22);
}

.road-wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ── BUTTONS ── */
.btn-trial {
    display: inline-block;
    padding: 13px 30px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    background: var(--patch);
    color: var(--white);
    border: 2px solid transparent;
    box-shadow: 0 4px 20px var(--patch-glow);
    transition: background 0.22s, transform 0.22s, box-shadow 0.22s;
    letter-spacing: 0.01em;
    white-space: nowrap;
}
.btn-trial:hover {
    background: var(--patch-hi);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px var(--patch-glow);
    color: var(--white);
}
.btn-outline {
    display: inline-block;
    padding: 13px 30px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.45);
    transition: background 0.22s, border-color 0.22s, transform 0.22s;
    white-space: nowrap;
}
.btn-outline:hover {
    background: rgba(255,255,255,0.09);
    border-color: rgba(255,255,255,0.75);
    transform: translateY(-2px);
    color: var(--white);
}
.btn-dark {
    display: inline-block;
    padding: 13px 30px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    background: var(--tarmac);
    color: var(--white);
    border: 2px solid var(--patch);
    transition: background 0.22s, transform 0.22s;
    white-space: nowrap;
}
.btn-dark:hover { background: var(--patch); transform: translateY(-2px); color: var(--white); }

/* ── LOGO ── */
.patch-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}
.patch-img {
    height: 40px;
    width: auto;
    display: block;
}
.patch-img--sm {
    height: 32px;
}

/* ── TOPBAR ── */
#topbar {
    background: var(--tarmac);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 9px 0;
}
#topbar .road-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.top-left { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.top-link {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.86rem;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}
.top-link svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--patch); }
.top-link:hover { color: var(--white); }
.top-phone {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s;
}
.top-phone svg { width: 15px; height: 15px; color: var(--patch); }
.top-phone:hover { color: var(--patch); }
.top-wa {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.86rem;
    font-weight: 600;
    color: #4ade80;
    text-decoration: none;
    padding: 4px 12px;
    border: 1px solid rgba(74,222,128,0.3);
    border-radius: 50px;
    transition: background 0.2s, border-color 0.2s;
}
.top-wa svg { width: 14px; height: 14px; flex-shrink: 0; }
.top-wa:hover { background: rgba(74,222,128,0.1); border-color: rgba(74,222,128,0.6); }

/* ── PRIMARY NAV ── */
#site-nav {
    background: var(--surface);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.55);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 62px;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
}
.nav-links li a {
    color: rgba(255,255,255,0.78);
    text-decoration: none;
    padding: 10px 14px;
    display: block;
    font-weight: 600;
    font-size: 0.86rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.02em;
    transition: color 0.2s, background 0.2s;
    border-radius: 6px;
    white-space: nowrap;
}
.nav-links li a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.nav-trial-btn {
    font-size: 0.85rem;
    padding: 9px 20px;
    flex-shrink: 0;
}

/* Hamburger */
.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    flex-shrink: 0;
}
.nav-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
#mob-panel { display: none; background: #081008; border-top: 1px solid rgba(255,255,255,0.06); }
#mob-panel.open { display: block; }
#mob-panel .mob-inner { padding: 12px 20px 24px; max-height: 72vh; overflow-y: auto; }
#mob-panel ul { list-style: none; }
#mob-panel ul li a {
    display: block;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-weight: 600;
    font-size: 0.92rem;
    transition: color 0.2s;
}
#mob-panel ul li a:hover { color: var(--patch); }

/* ── HERO ── */
#hero {
    background: linear-gradient(150deg, #030804 0%, #060f08 50%, #091610 100%);
    padding: 80px 0 72px;
    position: relative;
    overflow: hidden;
}
#hero::before {
    content: '';
    position: absolute;
    top: -120px; right: -80px;
    width: 580px; height: 580px;
    background: radial-gradient(circle, rgba(22,163,74,0.12) 0%, transparent 65%);
    pointer-events: none;
}
#hero::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -60px;
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(22,163,74,0.06) 0%, transparent 65%);
    pointer-events: none;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-copy { color: var(--white); }
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--patch);
    background: var(--patch-dim);
    border: 1px solid rgba(22,163,74,0.3);
    border-radius: 50px;
    padding: 5px 14px;
    margin-bottom: 22px;
    font-family: 'Chakra Petch', sans-serif;
}
.hero-tag svg { width: 12px; height: 12px; flex-shrink: 0; }
#hero h1 {
    font-family: 'Chakra Petch', sans-serif;
    font-size: clamp(1.9rem, 4vw, 3.1rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 10px;
    letter-spacing: 0.02em;
}
#hero h1 span { color: var(--patch); }
.hero-strapline {
    font-size: clamp(0.88rem, 1.5vw, 1rem);
    color: var(--muted);
    margin-bottom: 28px;
    line-height: 1.78;
    max-width: 520px;
}
.hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 34px;
}
.hero-chip {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    padding: 5px 14px;
}
.hero-chip svg { width: 13px; height: 13px; flex-shrink: 0; color: #4ade80; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ── REPAIR WIDGET ── */
.repair-widget {
    background: var(--surface-hi);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 26px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(22,163,74,0.08);
    position: relative;
    overflow: hidden;
}
.repair-widget::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--patch), #4ade80);
}
.rw-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.rw-title {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.45);
}
.rw-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    color: #4ade80;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.rw-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #4ade80;
    animation: pulse-rw 2s infinite;
}
@keyframes pulse-rw {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.85); }
}

/* Road SVG animation area */
.rw-road {
    background: #141f18;
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 18px;
    position: relative;
    overflow: hidden;
}
.rw-road-svg { width: 100%; height: auto; display: block; }

/* Patch fill animation */
.road-surface { fill: #252f28; }
.road-line { stroke: rgba(255,255,255,0.25); stroke-dasharray: 20 12; }
.pothole-ring { fill: #141f18; stroke: rgba(255,255,255,0.1); stroke-width: 2; }
.patch-fill {
    fill: var(--patch);
    transform-origin: 50% 50%;
    animation: fill-patch 3s ease-in-out infinite;
    transform-box: fill-box;
}
@keyframes fill-patch {
    0%, 15%   { transform: scale(0); opacity: 0; }
    40%, 70%  { transform: scale(1); opacity: 0.95; }
    85%, 100% { transform: scale(0); opacity: 0; }
}
.patch-check {
    opacity: 0;
    animation: show-check 3s ease-in-out infinite;
}
@keyframes show-check {
    0%, 45%  { opacity: 0; }
    60%, 70% { opacity: 1; }
    85%, 100% { opacity: 0; }
}

/* Status bar */
.rw-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
.rw-status-label {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.06em;
}
.rw-status-val {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--patch);
    letter-spacing: 0.06em;
    animation: cycle-status 3s ease-in-out infinite;
}
@keyframes cycle-status {
    0%, 14%  { content: 'APPLYING...'; }
    40%, 70% { color: #4ade80; }
    85%, 100% { color: rgba(255,255,255,0.55); }
}
.rw-bar-track {
    height: 5px;
    background: rgba(255,255,255,0.08);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 18px;
}
.rw-bar-fill {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--patch), #4ade80);
    animation: fill-bar 3s ease-in-out infinite;
    transform-origin: left;
}
@keyframes fill-bar {
    0%, 10%  { transform: scaleX(0); }
    50%, 70% { transform: scaleX(1); }
    90%, 100% { transform: scaleX(0); }
}

/* Spec chips */
.rw-specs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 16px;
}
.rw-spec {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
}
.rw-spec svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--patch); }

/* ── WAVE DIVIDERS ── */
.wave-sep { display: block; line-height: 0; overflow: hidden; margin-bottom: -1px; }
.wave-sep svg { width: 100%; display: block; }
.wave-to-canvas { background: var(--tarmac); }
.wave-to-dark { background: var(--canvas); }

/* ── STATS STRIP (light zone) ── */
#stats {
    background: var(--canvas);
    padding: 36px 0;
    border-bottom: 1px solid var(--canvas-mid);
}
.stat-band {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}
.stat-chip {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border: 1.5px solid var(--canvas-mid);
    border-left: 4px solid var(--patch);
    border-radius: 8px;
    padding: 13px 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}
.stat-chip:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.1); }
.stat-num {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--patch);
    line-height: 1;
    white-space: nowrap;
}
.stat-desc {
    font-size: 0.82rem;
    color: var(--ink-mid);
    line-height: 1.4;
    max-width: 180px;
}

/* ── INTRO (light zone) ── */
#intro {
    background: var(--canvas);
    padding: 80px 0;
}
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.intro-label {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--patch);
    margin-bottom: 14px;
}
#intro h2 {
    font-family: 'Chakra Petch', sans-serif;
    font-size: clamp(1.5rem, 2.8vw, 2.1rem);
    font-weight: 700;
    color: var(--ink);
    letter-spacing: 0.02em;
    margin-bottom: 22px;
    line-height: 1.2;
}
.intro-body p {
    font-size: 0.95rem;
    color: var(--ink-mid);
    line-height: 1.82;
    margin-bottom: 16px;
}
.intro-body p:last-child { margin-bottom: 0; }
.intro-aside {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.intro-card {
    background: var(--white);
    border: 1px solid var(--canvas-mid);
    border-radius: 14px;
    padding: 22px 20px;
    border-left: 4px solid var(--patch);
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.intro-card h3 {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: 0.04em;
    margin-bottom: 7px;
}
.intro-card p {
    font-size: 0.84rem;
    color: var(--ink-mid);
    line-height: 1.65;
}

/* ── WHAT MAKES IT DIFFERENT (dark) ── */
#diff {
    background: var(--tarmac);
    padding: 90px 0;
}
.sec-head {
    text-align: center;
    margin-bottom: 56px;
}
.sec-head h2 {
    font-family: 'Chakra Petch', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.03em;
    margin-bottom: 10px;
}
.sec-head h2 span { color: var(--patch); }
.sec-head p {
    font-size: 0.97rem;
    color: var(--muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.75;
}
.sec-head--light h2 { color: var(--ink); }
.sec-head--light p { color: var(--ink-mid); }

.diff-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 48px;
}
.diff-feat {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--surface);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    padding: 20px 20px;
    border-left: 3px solid var(--patch);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.diff-feat:hover {
    border-left-color: #4ade80;
    box-shadow: 0 6px 28px rgba(22,163,74,0.1);
}
.diff-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--patch-dim);
    border: 1px solid rgba(22,163,74,0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--patch);
}
.diff-icon svg { width: 20px; height: 20px; }
.diff-feat h3 {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.03em;
    margin-bottom: 5px;
}
.diff-feat p {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.65;
}

.diff-callout {
    background: var(--surface);
    border: 1px solid rgba(22,163,74,0.2);
    border-radius: 14px;
    padding: 32px 36px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}
.diff-callout-copy h3 {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.03em;
    margin-bottom: 10px;
}
.diff-callout-copy p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.75;
}
.diff-callout-stat {
    text-align: center;
    border-left: 1px solid rgba(255,255,255,0.08);
    padding-left: 32px;
}
.diff-callout-num {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--patch);
    line-height: 1;
    margin-bottom: 8px;
}
.diff-callout-caption {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.5;
}

/* ── HOW IT WORKS (light zone) ── */
#steps {
    background: var(--canvas);
    padding: 90px 0;
}
.step-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    margin-top: 56px;
}
.step-track::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(12.5% + 2px);
    right: calc(12.5% + 2px);
    height: 2px;
    background: repeating-linear-gradient(
        90deg,
        var(--patch) 0px,
        var(--patch) 14px,
        transparent 14px,
        transparent 26px
    );
    pointer-events: none;
}
.step-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 16px;
    position: relative;
}
.step-badge {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 2px solid var(--patch);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Chakra Petch', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--patch);
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(22,163,74,0.18);
    position: relative;
    z-index: 1;
    transition: background 0.22s, color 0.22s;
}
.step-node:hover .step-badge { background: var(--patch); color: var(--white); }
.step-node h3 {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--ink);
    text-align: center;
    margin-bottom: 8px;
    letter-spacing: 0.03em;
}
.step-node p {
    font-size: 0.84rem;
    color: var(--ink-mid);
    text-align: center;
    line-height: 1.65;
}

/* ── WHO IT'S FOR (dark) ── */
#serve {
    background: var(--surface);
    padding: 90px 0;
}
.serve-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 52px;
}
.serve-card {
    background: var(--surface-hi);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    padding: 30px 26px;
    transition: border-color 0.22s, transform 0.22s;
    position: relative;
    overflow: hidden;
}
.serve-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--patch), transparent);
    opacity: 0;
    transition: opacity 0.22s;
}
.serve-card:hover { border-color: rgba(22,163,74,0.28); transform: translateY(-3px); }
.serve-card:hover::before { opacity: 1; }
.serve-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--patch-dim);
    border: 1px solid rgba(22,163,74,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--patch);
}
.serve-icon svg { width: 24px; height: 24px; }
.serve-card h3 {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.03em;
    margin-bottom: 10px;
}
.serve-card p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.72;
}

/* ── MARKET CONTEXT (dark accent band) ── */
#market {
    background: linear-gradient(135deg, #041008 0%, #081810 50%, #0c2018 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
#market::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 700px; height: 400px;
    background: radial-gradient(ellipse, rgba(22,163,74,0.16) 0%, transparent 65%);
    pointer-events: none;
}
.mkt-label {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--patch);
    margin-bottom: 14px;
    position: relative;
}
#market h2 {
    font-family: 'Chakra Petch', sans-serif;
    font-size: clamp(1.4rem, 3vw, 2.1rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: 0.03em;
    line-height: 1.25;
    position: relative;
}
#market > .road-wrap > p {
    color: var(--muted);
    font-size: 0.97rem;
    margin-bottom: 48px;
    position: relative;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.mkt-row {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    margin-bottom: 48px;
    position: relative;
}
.mkt-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 40px;
}
.mkt-div {
    width: 1px;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
    align-self: stretch;
}
.mkt-num {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    letter-spacing: 0.02em;
}
.mkt-num em {
    font-style: normal;
    color: var(--patch);
    font-size: 1.3rem;
}
.mkt-caption {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.45);
    margin-top: 8px;
    letter-spacing: 0.04em;
    max-width: 160px;
    text-align: center;
    line-height: 1.4;
}
.mkt-body {
    max-width: 840px;
    margin: 0 auto;
    position: relative;
}
.mkt-copy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    text-align: left;
}
.mkt-point {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
    padding: 20px 18px;
    border-top: 2px solid var(--patch);
}
.mkt-point h3 {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.04em;
    margin-bottom: 7px;
}
.mkt-point p {
    font-size: 0.84rem;
    color: var(--muted);
    line-height: 1.65;
}

/* ── CONTACT / CTA (dark) ── */
#reach {
    background: linear-gradient(145deg, #050c07 0%, #091410 55%, #0e1f16 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
#reach::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 480px; height: 480px;
    background: radial-gradient(ellipse, rgba(22,163,74,0.13) 0%, transparent 65%);
    pointer-events: none;
}
.reach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    position: relative;
}
.reach-copy h2 {
    font-family: 'Chakra Petch', sans-serif;
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
    letter-spacing: 0.03em;
    line-height: 1.2;
}
.reach-copy > p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.78;
    margin-bottom: 26px;
}
.reach-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 28px;
}
.reach-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.5;
}
.reach-list li svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--patch); margin-top: 2px; }
.reach-contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.reach-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}
.reach-contact-item:hover { background: rgba(255,255,255,0.07); border-color: rgba(22,163,74,0.3); }
.reach-ci-icon {
    width: 38px; height: 38px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.reach-ci-icon--phone { background: linear-gradient(135deg, var(--patch), #4ade80); }
.reach-ci-icon--wa { background: linear-gradient(135deg, #25d366, #128c7e); }
.reach-ci-icon--email { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); }
.reach-ci-icon svg { width: 17px; height: 17px; color: var(--white); }
.reach-ci-text { display: flex; flex-direction: column; }
.reach-ci-label { font-size: 0.7rem; color: rgba(255,255,255,0.4); margin-bottom: 2px; letter-spacing: 0.05em; text-transform: uppercase; font-family: 'Chakra Petch', sans-serif; }
.reach-ci-val { font-size: 0.92rem; font-weight: 700; color: var(--white); }

/* Form card */
.reach-form {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 36px 30px;
    backdrop-filter: blur(6px);
}
.reach-form h3 {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.04em;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* ── BACK TO TOP ── */
#back-top {
    position: fixed;
    bottom: 26px; right: 26px;
    z-index: 999;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--patch);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px var(--patch-glow);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
    transform: translateY(10px);
}
#back-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
#back-top:hover { transform: translateY(-3px); box-shadow: 0 8px 24px var(--patch-glow); }
#back-top svg { width: 20px; height: 20px; }

/* ── FOOTER ── */
#site-foot {
    background: #030804;
    color: rgba(255,255,255,0.65);
    padding: 56px 0 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.foot-row {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.2fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.foot-col h4 {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--patch);
    display: inline-block;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.foot-col p { font-size: 0.85rem; margin-bottom: 8px; line-height: 1.65; }
.foot-link {
    color: rgba(255,255,255,0.52);
    text-decoration: none;
    font-size: 0.84rem;
    display: block;
    margin-bottom: 6px;
    transition: color 0.18s, padding-left 0.18s;
}
.foot-link:hover { color: var(--white); padding-left: 4px; }
.foot-logo-wrap { margin-bottom: 14px; }
.foot-phone { font-size: 1.05rem; font-weight: 700; margin-top: 10px; margin-bottom: 4px; }
.foot-phone a { color: var(--white) !important; text-decoration: none; }
.foot-email { font-size: 0.83rem; color: rgba(255,255,255,0.45); }
.foot-cline {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.84rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 10px;
}
.foot-cline svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px; color: var(--patch); }
.foot-cline a { color: var(--white); text-decoration: none; font-weight: 600; }
.foot-cline a:hover { color: var(--patch); }
.foot-cta { margin-top: 8px; width: 100%; text-align: center; font-size: 0.86rem; padding: 10px 18px; }
.foot-disc {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
    line-height: 1.65;
    margin-top: 6px;
}

.foot-base {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 16px 0;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
}
.foot-base .road-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.foot-legal { display: flex; gap: 16px; }
.foot-legal a { color: rgba(255,255,255,0.3); text-decoration: none; }
.foot-legal a:hover { color: rgba(255,255,255,0.6); }

/* ── FORM ── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-full { grid-column: 1 / -1; }
label { display: block; font-weight: 600; font-size: 0.82rem; margin-bottom: 5px; color: rgba(255,255,255,0.55); letter-spacing: 0.04em; text-transform: uppercase; font-family: 'Chakra Petch', sans-serif; }
input, select, textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid rgba(255,255,255,0.12);
    border-radius: 7px;
    font-size: 0.92rem;
    font-family: 'Inter', sans-serif;
    color: var(--white);
    background: rgba(255,255,255,0.04);
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.28); }
select { color: rgba(255,255,255,0.7); }
select option { background: #0c1510; color: var(--white); }
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--patch);
    background: rgba(22,163,74,0.05);
    box-shadow: 0 0 0 3px rgba(22,163,74,0.12);
}
textarea { resize: vertical; min-height: 96px; }
.form-honey { display: none !important; visibility: hidden; }
.form-submit { grid-column: 1 / -1; text-align: center; margin-top: 4px; }
.form-submit .btn-trial { width: 100%; padding: 14px; font-size: 1rem; }
#form-msg {
    grid-column: 1 / -1;
    text-align: center;
    padding: 11px 16px;
    border-radius: 7px;
    font-weight: 600;
    font-size: 0.9rem;
    display: none;
}
#form-msg.success { background: rgba(22,163,74,0.2); color: #4ade80; display: block; border: 1px solid rgba(22,163,74,0.3); }
#form-msg.error { background: rgba(239,68,68,0.15); color: #fca5a5; display: block; border: 1px solid rgba(239,68,68,0.25); }

/* ── FADE IN ── */
.fade-in {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── LEGAL PAGES ── */
.legal-wrap { padding: 60px 0 80px; background: var(--tarmac); min-height: 60vh; }
.legal-body { color: rgba(255,255,255,0.78); }
.legal-body h1 { font-family: 'Chakra Petch', sans-serif; font-size: 1.9rem; font-weight: 700; margin-bottom: 8px; color: var(--white); letter-spacing: 0.03em; }
.legal-body > p:first-of-type { color: rgba(255,255,255,0.38); margin-bottom: 28px; font-size: 0.86rem; }
.legal-body h2 { font-family: 'Chakra Petch', sans-serif; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--patch); margin: 36px 0 10px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.06); }
.legal-body p { font-size: 0.93rem; color: rgba(255,255,255,0.65); line-height: 1.82; margin-bottom: 12px; }
.legal-body ul { margin: 0 0 14px 20px; }
.legal-body ul li { font-size: 0.93rem; color: rgba(255,255,255,0.65); line-height: 1.82; }
.legal-body a { color: var(--patch); text-decoration: underline; }
.legal-body strong { color: rgba(255,255,255,0.88); }

/* ── RESPONSIVE ── */
@media (max-width: 1020px) {
    .foot-row { grid-template-columns: 1fr 1fr; gap: 30px; }
    .diff-callout { grid-template-columns: 1fr; }
    .diff-callout-stat { border-left: none; border-top: 1px solid rgba(255,255,255,0.08); padding-left: 0; padding-top: 24px; }
}
@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-copy { text-align: center; }
    .hero-chips { justify-content: center; }
    .hero-btns { justify-content: center; }
    .repair-widget { max-width: 500px; margin: 0 auto; }
    .reach-grid { grid-template-columns: 1fr; gap: 36px; }
    .intro-grid { grid-template-columns: 1fr; gap: 36px; }
    .step-track { grid-template-columns: 1fr 1fr; gap: 30px; }
    .step-track::before { display: none; }
    .mkt-row { flex-wrap: wrap; gap: 24px; }
    .mkt-div { display: none; }
    .mkt-cell { padding: 0 20px; }
}
@media (max-width: 860px) {
    .nav-links, .nav-trial-btn { display: none; }
    .nav-burger { display: flex; }
    .diff-grid { grid-template-columns: 1fr; }
    .serve-grid { grid-template-columns: 1fr; }
    .mkt-copy { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
    .foot-row { grid-template-columns: 1fr; gap: 24px; }
    #topbar .road-wrap { flex-direction: column; align-items: flex-start; gap: 8px; }
    .top-left { flex-wrap: wrap; gap: 10px; }
    .stat-band { flex-direction: column; align-items: stretch; }
    .step-track { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .form-full { grid-column: 1; }
    .form-submit { grid-column: 1; }
    #form-msg { grid-column: 1; }
}
@media (max-width: 480px) {
    .hero-btns { flex-direction: column; align-items: stretch; }
    .hero-btns a { text-align: center; }
    .diff-callout { padding: 22px 18px; }
}
