/* ================================================================
   DriverGill — design system  (bold & modern)
   Brand: yellow #F5C518 on near-black, big display type, rounded cards
   ================================================================ */

:root {
    --yellow: #f5c518;
    --yellow-deep: #e0ae00;
    --yellow-soft: #fff4cc;
    --ink: #0b0b0c;
    --ink-2: #17171a;
    --ink-3: #24242a;
    --paper: #ffffff;
    --paper-2: #f7f7f5;
    --paper-3: #efefe9;
    --text: #1c1c1f;
    --muted: #63636b;
    --muted-dark: #a4a4ad;
    --line: rgba(11, 11, 12, 0.12);
    --line-dark: rgba(255, 255, 255, 0.14);
    --ok: #1f9d55;
    --err: #d5432f;

    --radius: 14px;
    --radius-lg: 24px;
    --radius-pill: 999px;
    --shadow: 0 1px 2px rgba(11, 11, 12, .06), 0 12px 32px -12px rgba(11, 11, 12, .18);
    --shadow-lg: 0 24px 60px -18px rgba(11, 11, 12, .35);

    --container: 1180px;
    --gutter: clamp(20px, 5vw, 56px);
    --section-y: clamp(64px, 9vw, 128px);
    --header-h: 76px;

    --font-display: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
    --font-body: "DM Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--text);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
ul, ol { padding-left: 1.15em; }

/* ---------- layout primitives ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }
.section--dark { background: var(--ink); color: #f4f4f5; }
.section--ink2 { background: var(--ink-2); color: #f4f4f5; }
.section--paper2 { background: var(--paper-2); }
.section--dark h1, .section--dark h2, .section--dark h3,
.section--ink2 h1, .section--ink2 h2, .section--ink2 h3 { color: #fff; }

.stack > * + * { margin-top: 1rem; }
.grid { display: grid; gap: clamp(18px, 2.6vw, 30px); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .cols-3, .cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; } }

/* ---------- type helpers ---------- */
.eyebrow {
    display: inline-flex; align-items: center; gap: .5em;
    font-family: var(--font-display); font-weight: 600;
    font-size: .8rem; letter-spacing: .16em; text-transform: uppercase;
    color: var(--yellow-deep);
}
.section--dark .eyebrow, .section--ink2 .eyebrow { color: var(--yellow); }
.eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; display: inline-block; }

h1, .h1 { font-size: clamp(2.4rem, 6vw, 4.1rem); font-weight: 800; }
h2, .h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 700; }
h3, .h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); font-weight: 600; }
.lead { font-size: clamp(1.08rem, 1.6vw, 1.28rem); color: var(--muted); }
.section--dark .lead, .section--ink2 .lead { color: var(--muted-dark); }
.mark { color: var(--yellow-deep); }
.section--dark .mark, .section--ink2 .mark { color: var(--yellow); }
.text-center { text-align: center; }
.measure { max-width: 62ch; }
.measure-narrow { max-width: 46ch; }
.mx-auto { margin-inline: auto; }
.section-head { max-width: 46rem; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head.text-center { margin-inline: auto; }

/* ---------- buttons ---------- */
.btn {
    --btn-bg: var(--yellow); --btn-fg: var(--ink);
    display: inline-flex; align-items: center; justify-content: center; gap: .55em;
    padding: .95em 1.6em; border-radius: var(--radius-pill);
    background: var(--btn-bg); color: var(--btn-fg);
    font-family: var(--font-display); font-weight: 600; font-size: .98rem;
    border: 1.5px solid transparent; cursor: pointer;
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
    box-shadow: 0 10px 24px -10px rgba(245, 197, 24, .7);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--dark { --btn-bg: var(--ink); --btn-fg: #fff; box-shadow: 0 12px 28px -14px rgba(11,11,12,.6); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--ink); border-color: var(--line); box-shadow: none; }
.section--dark .btn--ghost, .section--ink2 .btn--ghost { --btn-fg: #fff; border-color: var(--line-dark); }
.btn--ghost:hover { background: rgba(11,11,12,.05); }
.section--dark .btn--ghost:hover { background: rgba(255,255,255,.08); }
.btn--lg { padding: 1.1em 2em; font-size: 1.05rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* store badges */
.stores { display: flex; flex-wrap: wrap; gap: 14px; }
.store {
    display: inline-flex; align-items: center; gap: .7em;
    padding: .7em 1.15em; border-radius: var(--radius);
    background: var(--ink); color: #fff; border: 1.5px solid var(--ink-3);
    font-family: var(--font-display); transition: transform .15s ease, border-color .2s ease;
}
.store:hover { transform: translateY(-2px); border-color: var(--yellow); }
.store svg { width: 26px; height: 26px; flex: none; }
.store small { display: block; font-size: .68rem; color: var(--muted-dark); font-weight: 500; letter-spacing: .04em; text-transform: uppercase; line-height: 1; }
.store strong { font-size: 1rem; font-weight: 600; }
.section--dark .store { border-color: rgba(255,255,255,.16); background: #fff; color: var(--ink); }
.section--dark .store small { color: var(--muted); }

/* ---------- promo bar ---------- */
.promo-bar {
    position: relative; z-index: 51;
    background: var(--yellow); color: var(--ink);
    display: flex; align-items: center; justify-content: center; gap: 8px;
    min-height: 40px; padding: 6px 44px 6px 16px; text-align: center;
    border-bottom: 2px solid var(--ink);
}
.promo-off .promo-bar { display: none; }
.promo-bar a {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-display); font-weight: 500; font-size: .9rem; line-height: 1.3;
}
.promo-bar a b { font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.promo-bar svg { width: 16px; height: 16px; flex: none; }
.promo-bar__x {
    position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
    width: 26px; height: 26px; border: 0; background: transparent; color: var(--ink);
    font-size: 1.25rem; line-height: 1; cursor: pointer; border-radius: 50%;
}
.promo-bar__x:hover { background: rgba(11, 11, 12, .12); }
@media (max-width: 560px) { .promo-bar a { font-size: .8rem; } .promo-bar { padding-right: 40px; } }

/* ---------- header ---------- */
.site-header {
    position: sticky; top: 0; z-index: 50;
    height: var(--header-h); margin-bottom: calc(var(--header-h) * -1);
    color: #fff;
    transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
    border-bottom: 1px solid transparent;
}
.site-header[data-solid="true"] {
    background: rgba(11, 11, 12, .82);
    backdrop-filter: saturate(160%) blur(12px);
    border-bottom-color: var(--line-dark);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 76px; }
.brand { display: inline-flex; align-items: center; gap: .5em; }
.brand img { height: 30px; width: auto; display: block; }
.site-footer .brand img { height: 34px; }
.nav-links { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 30px); list-style: none; padding: 0; margin: 0; }
.nav-links a { font-family: var(--font-display); font-weight: 500; font-size: .97rem; position: relative; padding-block: 6px; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px; background: var(--yellow); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links__cta { display: none; }
.site-header .btn--ghost { --btn-fg: #fff; border-color: var(--line-dark); }
.site-header .btn--ghost:hover { background: rgba(255, 255, 255, .1); }
.btn--icon { padding-inline: 1.1em; gap: .5em; }
.btn--icon svg { width: 18px; height: 18px; }
@media (max-width: 1280px) { .btn-phone { display: none; } .btn--icon { padding-inline: .8em; } }
@media (max-width: 1120px) and (min-width: 941px) { .nav-cta .btn--ghost { display: none; } }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1.5px solid currentColor; border-radius: 12px; background: transparent; align-items: center; justify-content: center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content: ""; display: block; width: 18px; height: 2px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle span::before { transform: translateY(-6px); } .nav-toggle span::after { transform: translateY(4px); }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { transform: rotate(45deg); }
body.nav-open .nav-toggle span::after { transform: rotate(-45deg) translateY(-1px); }

@media (max-width: 940px) {
    .nav-toggle { display: inline-flex; }
    .nav-links {
        position: fixed; inset: var(--header-h) 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
        background: var(--ink); color: #fff; padding: 12px var(--gutter) 28px;
        transform: translateY(-120%); transition: transform .3s ease; box-shadow: var(--shadow-lg);
        max-height: calc(100dvh - var(--header-h)); overflow-y: auto;
    }
    body.nav-open .nav-links { transform: translateY(0); }
    .nav-links a { display: block; padding: 16px 2px; border-bottom: 1px solid var(--line-dark); font-size: 1.1rem; }
    .nav-links a::after { display: none; }
    .nav-links__cta { display: block; }
    .nav-links__cta a { color: var(--yellow); font-weight: 600; }
    .nav-cta .btn, .nav-cta .btn--ghost { display: none; }
}

/* ---------- hero ---------- */
.hero { position: relative; background: var(--ink); color: #fff; overflow: hidden; }
.hero::after { content: ""; position: absolute; right: -12%; top: -30%; width: 60vw; height: 60vw; background: radial-gradient(circle, rgba(245,197,24,.22), transparent 62%); pointer-events: none; }
.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 64px); align-items: center; padding-block: calc(var(--header-h) + clamp(32px, 5vw, 72px)) clamp(48px, 8vw, 100px); position: relative; z-index: 1; }
.hero h1 { margin-top: .5rem; }
.hero .lead { margin-top: 1.25rem; max-width: 44ch; }
.hero .btn-row { margin-top: 2rem; }
.hero-media { position: relative; }
.hero-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; aspect-ratio: 4 / 3.4; background: var(--ink-3); }
.hero-badge {
    position: absolute; left: -18px; bottom: 22px; background: #fff; color: var(--ink);
    border-radius: var(--radius); padding: 14px 18px; box-shadow: var(--shadow-lg);
    display: flex; align-items: center; gap: 12px; font-family: var(--font-display);
}
.hero-badge b { font-size: 1.5rem; font-weight: 800; display: block; line-height: 1; }
.hero-badge span { font-size: .8rem; color: var(--muted); }
.hero-badge .dot { width: 40px; height: 40px; border-radius: 50%; background: var(--yellow-soft); display: grid; place-items: center; }
@media (max-width: 860px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-media { order: -1; max-width: 460px; }
    .hero-badge { left: 8px; }
}

/* ---------- marquee ---------- */
.marquee { background: var(--yellow); color: var(--ink); overflow: hidden; padding-block: 16px; border-block: 3px solid var(--ink); }
.marquee-track { display: flex; gap: 3rem; width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee span { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.05rem, 2.2vw, 1.5rem); text-transform: uppercase; letter-spacing: -.01em; display: inline-flex; align-items: center; gap: 3rem; white-space: nowrap; }
.marquee span::after { content: "★"; color: var(--ink); font-size: .8em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- cards ---------- */
.card {
    background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
    padding: clamp(22px, 3vw, 32px); box-shadow: var(--shadow); height: 100%;
    transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(11,11,12,.2); }
.section--dark .card, .section--ink2 .card { background: var(--ink-2); border-color: var(--line-dark); color: #e9e9ec; }
.card .ic { width: 52px; height: 52px; border-radius: 14px; background: var(--yellow-soft); color: var(--ink); display: grid; place-items: center; margin-bottom: 18px; }
.section--dark .card .ic { background: rgba(245,197,24,.16); color: var(--yellow); }
.card .ic svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: .4rem; }
.card p { color: var(--muted); font-size: .98rem; }
.section--dark .card p { color: var(--muted-dark); }

.feature-list { list-style: none; padding: 0; display: grid; gap: 14px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; }
.feature-list .tick { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--yellow); color: var(--ink); display: grid; place-items: center; font-size: .8rem; margin-top: 2px; }

/* ---------- split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.split--reverse .split-media { order: 2; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 5/4; object-fit: cover; background: var(--paper-3); }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } .split--reverse .split-media { order: 0; } }

/* ---------- dual audience ---------- */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.duo article { border-radius: var(--radius-lg); padding: clamp(26px, 3.4vw, 40px); border: 1px solid var(--line-dark); background: var(--ink-2); color: #eaeaee; }
.duo article.is-rider { background: linear-gradient(180deg, var(--ink-2), var(--ink)); }
.duo article.is-driver { background: var(--yellow); color: var(--ink); border-color: transparent; }
.duo h3 { font-size: clamp(1.4rem, 2.4vw, 1.8rem); margin-bottom: .6rem; }
.duo p { opacity: .9; margin-bottom: 1.4rem; }
@media (max-width: 720px) { .duo { grid-template-columns: 1fr; } }

/* ---------- comparison table ---------- */
.table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--line); box-shadow: var(--shadow); }
table.compare { width: 100%; border-collapse: collapse; min-width: 620px; background: var(--paper); }
table.compare th, table.compare td { text-align: left; padding: 18px 22px; border-bottom: 1px solid var(--line); vertical-align: top; }
table.compare thead th { background: var(--ink); color: #fff; font-family: var(--font-display); font-size: .95rem; }
table.compare thead th:first-child { border-top-left-radius: var(--radius-lg); }
table.compare tbody th { font-family: var(--font-display); font-weight: 600; width: 26%; }
table.compare tbody tr:last-child td, table.compare tbody tr:last-child th { border-bottom: 0; }
table.compare td { color: var(--muted); font-size: .96rem; }

/* ---------- testimonials ---------- */
.quote { display: flex; flex-direction: column; gap: 18px; }
.quote p { font-size: 1.05rem; }
.quote-mark { font-family: var(--font-display); font-weight: 800; font-size: 2.4rem; color: var(--yellow); line-height: .6; }
.quote-by { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.quote-by .av { width: 44px; height: 44px; border-radius: 50%; background: var(--yellow-soft); color: var(--ink); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; }
.quote-by b { font-family: var(--font-display); }
.quote-by span { display: block; font-size: .85rem; color: var(--muted); }
.section--dark .quote-by span { color: var(--muted-dark); }

/* ---------- stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; text-align: center; }
.stats div { padding: 18px; }
.stats b { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.8rem, 4vw, 2.8rem); display: block; color: var(--yellow); }
.stats span { font-size: .9rem; color: var(--muted-dark); }
@media (max-width: 680px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ---------- proof metric band ---------- */
.proof {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
    background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow);
}
.proof > div { background: var(--paper); padding: clamp(20px, 3vw, 32px) 18px; text-align: center; }
.proof b {
    display: block; font-family: var(--font-display); font-weight: 800;
    font-size: clamp(1.5rem, 3.4vw, 2.35rem); letter-spacing: -.02em; color: var(--ink);
}
.proof span { font-size: .86rem; color: var(--muted); }
.proof--dark { background: var(--line-dark); border-color: var(--line-dark); }
.proof--dark > div { background: var(--ink-2); }
.proof--dark b { color: var(--yellow); }
.proof--dark span { color: var(--muted-dark); }
@media (max-width: 720px) { .proof { grid-template-columns: repeat(2, 1fr); } }

/* ---------- transparent pricing ---------- */
.pricing-head { max-width: 44rem; margin: 0 auto clamp(28px, 4vw, 44px); text-align: center; }
.pricing-head .lead { margin-top: .8rem; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 720px) { .pricing-grid { grid-template-columns: 1fr; } }
.price-card {
    border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px;
    background: var(--paper); box-shadow: var(--shadow); text-align: center;
}
.section--dark .price-card { background: var(--ink-2); border-color: var(--line-dark); }
.price-label {
    display: block; font-family: var(--font-display); font-weight: 600; font-size: .78rem;
    letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px;
}
.section--dark .price-label { color: var(--muted-dark); }
.price-amount { font-family: var(--font-display); font-size: 1.05rem; color: var(--muted); }
.price-amount b { font-size: 2rem; font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.section--dark .price-amount b { color: #fff; }

/* ---------- driver deposit disclosure ---------- */
.disclosure {
    border: 1px solid var(--line-dark); border-left: 4px solid var(--yellow);
    border-radius: var(--radius); padding: 22px 24px; background: var(--ink-2); color: #e9e9ec;
    max-width: 760px; margin: 0 auto;
}
.disclosure h3 { color: #fff; margin-bottom: .4rem; font-size: 1.15rem; }
.disclosure p { color: var(--muted-dark); font-size: .96rem; }
.disclosure .amt { font-family: var(--font-display); font-weight: 800; color: var(--yellow); font-size: 1.1rem; }

/* ---------- callback lead form ---------- */
.callback {
    background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
    padding: clamp(26px, 4vw, 44px); box-shadow: var(--shadow); max-width: 720px; margin-inline: auto;
}
.section--dark .callback { background: var(--ink-2); border-color: var(--line-dark); }
.callback-head { margin-bottom: 22px; }
.callback-head h2 { margin: .3rem 0 .5rem; }
.callback-head p { color: var(--muted); max-width: 52ch; }
.section--dark .callback-head p { color: var(--muted-dark); }
.callback-form .cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .callback-form .cf-row { grid-template-columns: 1fr; } }
.callback-form .btn { margin-top: 6px; }
.cf-fine { font-size: .8rem; color: var(--muted); margin-top: 12px; }
.section--dark .cf-fine { color: var(--muted-dark); }
.section--dark .callback .field input, .section--dark .callback .field select { background: var(--ink); border-color: var(--line-dark); color: #fff; }

/* ---------- floating WhatsApp + sticky action bar ---------- */
.wa-float {
    position: fixed; right: 18px; bottom: 18px; z-index: 80;
    width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
    background: #25D366; color: #fff; box-shadow: 0 10px 26px -8px rgba(37, 211, 102, .7);
    transition: transform .15s ease;
}
.wa-float:hover { transform: translateY(-2px) scale(1.03); }
@media (max-width: 720px) { .wa-float { bottom: 80px; width: 52px; height: 52px; } }

.cta-bar { display: none; }
@media (max-width: 720px) {
    .cta-bar {
        position: fixed; left: 0; right: 0; bottom: 0; z-index: 79;
        display: grid; grid-auto-flow: column; grid-auto-columns: 1fr;
        background: var(--ink); border-top: 1px solid var(--ink-3);
        padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
    }
    .cta-bar a {
        display: flex; flex-direction: column; align-items: center; gap: 3px;
        padding: 8px 4px; color: #ededf0; font-family: var(--font-display); font-weight: 600; font-size: .72rem;
        border-radius: 10px;
    }
    .cta-bar a svg { width: 20px; height: 20px; }
    .cta-bar a:active { background: rgba(255,255,255,.08); }
    .cta-bar[data-cols="1"] { grid-auto-flow: row; }
    .cta-bar[data-cols="1"] a { flex-direction: row; gap: 8px; font-size: .82rem; }
    .cta-bar__wa { color: #4ce07f; }
    .cta-bar__app { color: var(--yellow); }
    body { padding-bottom: 66px; }
    .consent { bottom: 74px; }
}

/* ---------- lead popup ---------- */
.lead-modal { position: fixed; inset: 0; z-index: 95; display: grid; place-items: center; padding: 20px; }
.lead-modal[hidden] { display: none; }
.lead-modal__overlay { position: absolute; inset: 0; background: rgba(11, 11, 12, .55); backdrop-filter: blur(2px); }
.lead-modal__dialog {
    position: relative; width: 100%; max-width: 460px; background: var(--paper);
    border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 38px); box-shadow: var(--shadow-lg);
    animation: lm-in .28s ease;
}
@keyframes lm-in { from { opacity: 0; transform: translateY(14px) scale(.98); } }
.lead-modal__dialog h2 { font-size: clamp(1.35rem, 3vw, 1.7rem); margin: .35rem 0 .5rem; }
.lead-modal__dialog > p { color: var(--muted); font-size: .96rem; margin-bottom: 18px; }
.lead-modal__x {
    position: absolute; top: 12px; right: 14px; width: 34px; height: 34px; border: 0; border-radius: 50%;
    background: var(--paper-3); color: var(--ink); font-size: 1.3rem; line-height: 1; cursor: pointer;
}
.lead-modal__x:hover { background: var(--line-strong); }
.lead-modal__form .lm-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 420px) { .lead-modal__form .lm-row { grid-template-columns: 1fr; } }
.lead-modal__form .field { margin-bottom: 12px; }
.lead-modal__form .btn { width: 100%; justify-content: center; margin-top: 4px; }
.lead-modal__wa { display: block; text-align: center; margin-top: 12px; font-size: .9rem; color: var(--yellow-deep); text-decoration: underline; }
@media (max-width: 560px) {
    .lead-modal { align-items: end; padding: 0; }
    .lead-modal__dialog { max-width: none; border-radius: var(--radius-lg) var(--radius-lg) 0 0; animation: lm-up .3s ease; }
    @keyframes lm-up { from { transform: translateY(100%); } }
}
@media (prefers-reduced-motion: reduce) { .lead-modal__dialog { animation: none; } }

/* ---------- consent banner ---------- */
.consent {
    position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90;
    max-width: 560px; margin-inline: auto;
    background: var(--ink); color: #f0f0f2; border: 1px solid var(--ink-3);
    border-radius: var(--radius); padding: 18px 20px; box-shadow: var(--shadow-lg);
    font-size: .9rem; line-height: 1.55;
}
.consent[hidden] { display: none; }
.consent p { margin: 0 0 12px; color: #cfcfd6; }
.consent a { color: var(--yellow); text-decoration: underline; }
.consent-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.consent .btn { padding: .6em 1.1em; font-size: .88rem; box-shadow: none; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; max-width: 780px; margin-inline: auto; }
.faq details { border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); padding: 4px 20px; transition: border-color .2s; }
.section--dark .faq details { background: var(--ink-2); border-color: var(--line-dark); }
.faq details[open] { border-color: var(--yellow-deep); }
.faq summary { list-style: none; cursor: pointer; padding: 18px 0; font-family: var(--font-display); font-weight: 600; display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--yellow-deep); flex: none; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > p { padding: 0 0 20px; color: var(--muted); }
.section--dark .faq details > p { color: var(--muted-dark); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; background: var(--yellow); color: var(--ink); border-radius: var(--radius-lg); padding: clamp(36px, 6vw, 72px); overflow: hidden; }
.cta-band::after { content: ""; position: absolute; right: -6%; top: -60%; width: 40%; aspect-ratio: 1; border-radius: 50%; background: rgba(11,11,12,.08); }
.cta-band h2 { max-width: 18ch; }
.cta-band .stores { margin-top: 1.6rem; position: relative; z-index: 1; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: #cfcfd6; padding-block: clamp(56px, 8vw, 88px) 32px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: 36px 28px; }
@media (max-width: 1000px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; } }
.site-footer h4 { font-family: var(--font-display); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-dark); margin-bottom: 16px; }
.site-footer ul { list-style: none; padding: 0; display: grid; gap: 10px; }
.site-footer a:hover { color: var(--yellow); }
.footer-brand p { max-width: 34ch; font-size: .95rem; margin-top: 14px; }
.socials { display: flex; gap: 12px; margin-top: 20px; }
.socials a { width: 40px; height: 40px; border-radius: 12px; border: 1px solid var(--line-dark); display: grid; place-items: center; transition: border-color .2s, background .2s; }
.socials a:hover { border-color: var(--yellow); background: rgba(245,197,24,.12); }
.socials svg { width: 18px; height: 18px; }
.footer-legal { margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line-dark); }
.footer-legal p { font-size: .82rem; color: var(--muted-dark); max-width: 90ch; line-height: 1.6; }
.footer-legal strong { color: #e6e6ec; font-weight: 600; }
.footer-bottom { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line-dark); display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between; font-size: .85rem; color: var(--muted-dark); }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- page hero (inner pages) ---------- */
.page-hero { background: var(--ink); color: #fff; padding-block: calc(var(--header-h) + clamp(40px, 6vw, 72px)) clamp(48px, 7vw, 88px); position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; left: -8%; bottom: -50%; width: 40vw; height: 40vw; background: radial-gradient(circle, rgba(245,197,24,.16), transparent 62%); }
.page-hero .breadcrumbs { margin-bottom: 20px; }
.page-hero h1 { max-width: 20ch; }
.page-hero .lead { margin-top: 1.1rem; max-width: 56ch; }

.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; font-size: .85rem; color: var(--muted-dark); font-family: var(--font-display); }
.breadcrumbs a:hover { color: var(--yellow); }
.breadcrumbs span { opacity: .5; }

/* ---------- landing pages (city + service) ---------- */
.answer-block {
    border-left: 4px solid var(--yellow); background: var(--paper-2);
    border-radius: 0 var(--radius) var(--radius) 0; padding: 22px 26px;
    font-size: clamp(1.05rem, 1.8vw, 1.22rem); line-height: 1.6; max-width: 68ch;
}
.section--dark .answer-block { background: var(--ink-2); }
.answer-block .lbl {
    display: block; font-family: var(--font-display); font-weight: 700; font-size: .72rem;
    letter-spacing: .16em; text-transform: uppercase; color: var(--yellow-deep); margin-bottom: 8px;
}
.section--dark .answer-block .lbl { color: var(--yellow); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.chips span {
    font-family: var(--font-display); font-size: .85rem; font-weight: 500;
    padding: 7px 13px; border-radius: var(--radius-pill); border: 1px solid var(--line);
    background: var(--paper); color: var(--ink-2);
}
.section--dark .chips span { background: var(--ink-2); border-color: var(--line-dark); color: #dcdce0; }
.steps-num { display: grid; gap: 16px; counter-reset: s; list-style: none; padding: 0; max-width: 62ch; }
.steps-num li { display: flex; gap: 14px; align-items: flex-start; }
.steps-num li::before {
    counter-increment: s; content: counter(s); flex: none;
    width: 30px; height: 30px; border-radius: 50%; background: var(--yellow); color: var(--ink);
    font-family: var(--font-display); font-weight: 700; display: grid; place-items: center; font-size: .9rem;
}

/* ---------- offers page ---------- */
.offer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px, 3vw, 28px); }
@media (max-width: 780px) { .offer-grid { grid-template-columns: 1fr; } }
.offer-card {
    position: relative; background: var(--paper); border: 1px solid var(--line);
    border-radius: var(--radius-lg); padding: clamp(26px, 3.4vw, 40px); box-shadow: var(--shadow);
    display: flex; flex-direction: column; gap: 14px;
}
.offer-card:first-child { border-color: var(--yellow-deep); box-shadow: var(--shadow-lg); }
.offer-badge {
    align-self: flex-start; font-family: var(--font-display); font-weight: 700; font-size: .74rem;
    letter-spacing: .12em; text-transform: uppercase; color: var(--ink);
    background: var(--yellow); padding: 6px 12px; border-radius: var(--radius-pill);
}
.offer-card h2 { font-size: clamp(1.5rem, 3.2vw, 2rem); }
.offer-sum { color: var(--muted); }
.offer-card .btn { align-self: flex-start; margin-top: 6px; }
.offer-tc { margin: 0; font-size: .82rem; }
.offer-tc a { color: var(--muted); text-decoration: underline; }
.terms-list { max-width: 74ch; }
.terms-list li { margin: .7rem 0; color: #2c2c31; }

/* ---------- comparison page ---------- */
.vs-table th:first-child, .vs-table td:first-child { width: 30%; }
.vs-yes { color: var(--ok); font-weight: 700; }
.vs-no { color: var(--muted); }

/* ---------- blog byline + TOC ---------- */
.post-byline { display: flex; flex-wrap: wrap; gap: 8px 16px; align-items: center; font-family: var(--font-display); font-size: .88rem; color: var(--muted); }
.section--dark .post-byline { color: var(--muted-dark); }
.post-toc {
    border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 22px; margin: 0 0 2rem;
    background: var(--paper-2);
}
.post-toc strong { font-family: var(--font-display); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 10px; }
.post-toc ol { margin: 0; padding-left: 1.2em; display: grid; gap: 6px; }
.post-toc a { color: var(--ink-2); text-decoration: none; }
.post-toc a:hover { color: var(--yellow-deep); text-decoration: underline; }

/* ---------- prose (blog + legal) ---------- */
.prose { max-width: 72ch; }
.prose > * + * { margin-top: 1.15rem; }
.prose h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-top: 2.4rem; }
.prose h3 { font-size: 1.3rem; margin-top: 1.8rem; }
.prose p, .prose li { color: #2c2c31; }
.prose a { color: var(--yellow-deep); text-decoration: underline; text-underline-offset: 3px; }
.prose img { border-radius: var(--radius); margin-block: 1.6rem; }
.prose ul, .prose ol { padding-left: 1.3em; display: grid; gap: .5rem; }
.prose blockquote { border-left: 4px solid var(--yellow); padding-left: 1.1rem; color: var(--muted); font-size: 1.1rem; }
.prose hr { border: 0; border-top: 1px solid var(--line); margin: 2.4rem 0; }
.prose ol[type="i"] { list-style-type: lower-roman; }
.prose code { background: var(--paper-3); padding: .15em .4em; border-radius: 6px; font-size: .9em; }
.prose table { width: 100%; border-collapse: collapse; }
.prose th, .prose td { border: 1px solid var(--line); padding: 10px 14px; text-align: left; }

/* ---------- blog list ---------- */
.post-card { display: flex; flex-direction: column; overflow: hidden; padding: 0; }
.post-card .thumb { aspect-ratio: 16/10; background: var(--paper-3); object-fit: cover; width: 100%; display: block; }
.post-card .thumb--empty { display: grid; place-items: center; color: var(--yellow-deep);
    background: linear-gradient(135deg, var(--ink), var(--ink-3)); }
.post-card .thumb--empty svg { opacity: .9; }
.post-card .body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-card .cat { font-family: var(--font-display); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--yellow-deep); }
.post-card h3 { font-size: 1.15rem; }
.post-card p { color: var(--muted); font-size: .95rem; }
.post-card .meta { margin-top: auto; font-size: .82rem; color: var(--muted); font-family: var(--font-display); }

.pagination { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 56px; }
.pagination a, .pagination span { min-width: 44px; height: 44px; padding: 0 14px; border-radius: 12px; border: 1px solid var(--line); display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 500; }
.pagination a:hover { border-color: var(--ink); }
.pagination .is-active { background: var(--ink); color: #fff; border-color: var(--ink); }
.pagination .is-disabled { opacity: .4; pointer-events: none; }

/* ---------- forms ---------- */
.field { display: grid; gap: 7px; margin-bottom: 18px; }
.field label { font-family: var(--font-display); font-weight: 600; font-size: .9rem; }
.field input, .field textarea, .field select {
    width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 12px;
    background: var(--paper); transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--yellow-deep); box-shadow: 0 0 0 4px rgba(245,197,24,.22); }
.field .err-text { color: var(--err); font-size: .82rem; }
.field.has-error input, .field.has-error textarea { border-color: var(--err); }
.checkbox { display: flex; gap: 10px; align-items: flex-start; font-size: .92rem; color: var(--muted); }
.checkbox input { width: 18px; height: 18px; margin-top: 3px; flex: none; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.alert { border-radius: var(--radius); padding: 16px 18px; font-size: .95rem; margin-bottom: 22px; border: 1px solid transparent; }
.alert--ok { background: #eafbf1; border-color: #bfe9cf; color: #17683d; }
.alert--err { background: #fdecea; border-color: #f5cabf; color: #9a2c1c; }

/* ---------- contact split ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
.contact-grid > div > h2 { margin-bottom: 1.4rem; }
.contact-info .box { border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; margin-bottom: 16px; }
.contact-info h4 { font-family: var(--font-display); font-size: .95rem; margin-bottom: 6px; }
.contact-info p { color: var(--muted); font-size: .95rem; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- scroll reveal (progressive enhancement: only when .js) ---------- */
.js [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .6s cubic-bezier(.2,.7,.3,1), transform .6s cubic-bezier(.2,.7,.3,1); }
.js [data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal].is-in { opacity: 1; transform: none; }

/* ---------- yellow car cursor ---------- */
@media (pointer: fine) {
    html { cursor: url("../img/cursor-car.png") 5 5, auto; }
    a, button, .btn, [role="button"], summary, label[for], select,
    input[type="submit"], .card[href], .nav-toggle, details summary {
        cursor: url("../img/cursor-car.png") 5 5, pointer;
    }
}
.carsor {
    position: fixed; left: 0; top: 0; width: 42px; height: 26px; z-index: 9999;
    pointer-events: none; margin: -13px 0 0 -9px; opacity: 0;
    transition: opacity .25s ease;
    will-change: transform;
    filter: drop-shadow(0 4px 10px rgba(245, 197, 24, .45));
}
.carsor.is-on { opacity: 1; }
body.carsor-on, body.carsor-on * { cursor: none !important; }
body.carsor-on input, body.carsor-on textarea, body.carsor-on [contenteditable] { cursor: text !important; }
.carsor svg { display: block; }
@keyframes carsor-rev {
    0% { transform: scale(1); } 35% { transform: scale(.82) rotate(-8deg); }
    70% { transform: scale(1.12); } 100% { transform: scale(1); }
}
.carsor__inner.is-rev { animation: carsor-rev .32s ease; }

/* touch: a yellow car pops at the tap point and drives off */
.tapcar {
    position: fixed; z-index: 9998; pointer-events: none;
    width: 46px; height: 28px; margin: -15px 0 0 -16px;
    filter: drop-shadow(0 4px 10px rgba(245, 197, 24, .5));
    animation: tapcar .64s cubic-bezier(.2, .7, .3, 1) forwards;
}
.tapcar svg { display: block; width: 100%; height: 100%; }
@keyframes tapcar {
    0%   { opacity: 0; transform: translateX(-8px) scale(.45); }
    28%  { opacity: 1; transform: translateX(0) scale(1.06); }
    100% { opacity: 0; transform: translateX(30px) scale(.9); }
}

/* soft pulse ring on the WhatsApp float */
.wa-float::after {
    content: ""; position: absolute; inset: 0; border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, .55); animation: wa-pulse 2.4s ease-out infinite;
}
@keyframes wa-pulse { to { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); } }

/* eyebrow underline draws in with its section */
.eyebrow::before { transition: width .5s ease .1s; }
[data-reveal] .eyebrow::before { width: 0; }
[data-reveal].is-in .eyebrow::before { width: 26px; }

@media (prefers-reduced-motion: reduce) {
    * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
    .js [data-reveal] { opacity: 1 !important; transform: none !important; }
    .carsor, .tapcar { display: none !important; }
    body.carsor-on, body.carsor-on * { cursor: auto !important; }
    .wa-float::after { display: none; }
}

/* ---------- misc ---------- */
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 0 0 10px 0; z-index: 100; }
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--yellow-deep); outline-offset: 2px; border-radius: 4px; }
.divider { height: 1px; background: var(--line); border: 0; }
