/* Ride-Share.ro — Emerald Velocity design system */
:root {
    --ink: #06110d;
    --ink-soft: #0a1b15;
    --panel: #0d231a;
    --panel-2: #123024;
    --green: #35f28a;
    --green-deep: #159b58;
    --lime: #ccff57;
    --mint: #baffd5;
    --paper: #f3f6f1;
    --paper-2: #e9eee8;
    --white: #fbfff9;
    --muted: #68766f;
    --line: rgba(6, 17, 13, .14);
    --line-dark: rgba(255, 255, 255, .14);
    --radius-sm: 14px;
    --radius: 24px;
    --radius-lg: 38px;
    --shadow: 0 30px 90px rgba(4, 16, 11, .18);
    --shell: 1420px;
    --ease: cubic-bezier(.22, 1, .36, 1);
    --pointer-x: 50vw;
    --pointer-y: 20vh;
}

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 94px;
    background: var(--ink);
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--paper);
    font-family: "Segoe UI Variable Text", "Segoe UI", Inter, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

img, svg { display: block; }
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

::selection { color: var(--ink); background: var(--green); }

:focus-visible {
    outline: 3px solid var(--lime);
    outline-offset: 4px;
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 12px;
    left: 12px;
    padding: 12px 18px;
    color: var(--ink);
    background: var(--lime);
    border-radius: 999px;
    font-weight: 800;
    transform: translateY(-150%);
    transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

.shell {
    width: min(calc(100% - 64px), var(--shell));
    margin-inline: auto;
}

.page-progress {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    pointer-events: none;
}

.page-progress span {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--green), var(--lime));
    box-shadow: 0 0 16px rgba(53, 242, 138, .8);
    transform: scaleX(0);
    transform-origin: left;
}

.ambient-pointer {
    position: fixed;
    z-index: 2;
    left: var(--pointer-x);
    top: var(--pointer-y);
    width: 420px;
    height: 420px;
    pointer-events: none;
    border-radius: 50%;
    background: rgba(53, 242, 138, .045);
    filter: blur(65px);
    transform: translate(-50%, -50%);
    mix-blend-mode: screen;
}

/* Header */
.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    color: var(--white);
    border-bottom: 1px solid transparent;
    transition: background .35s ease, border-color .35s ease, transform .35s var(--ease);
}

.site-header.is-scrolled {
    background: rgba(6, 17, 13, .84);
    border-color: rgba(255, 255, 255, .1);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
    backdrop-filter: blur(18px) saturate(150%);
}

.header-inner {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 88px;
    gap: 34px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    flex: 0 0 auto;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    color: var(--ink);
    background: var(--green);
    border-radius: 12px 12px 12px 4px;
    box-shadow: 0 0 28px rgba(53, 242, 138, .22);
}

.brand-mark svg { width: 30px; height: 30px; }
.brand-mark path, .brand-mark circle { fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }

.brand-type {
    color: var(--white);
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.045em;
}

.brand-type > span { color: var(--green); }
.brand-type small { margin-left: 2px; color: rgba(255, 255, 255, .55); font-size: 10px; letter-spacing: 0; }

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 2.2vw, 38px);
    margin-left: auto;
}

.desktop-nav a {
    position: relative;
    padding-block: 12px;
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    font-weight: 650;
    letter-spacing: .02em;
    transition: color .25s ease;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 6px;
    width: 100%;
    height: 1px;
    background: var(--green);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .35s var(--ease);
}

.desktop-nav a:hover { color: var(--white); }
.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-phone { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 750; letter-spacing: .045em; }

.signal-dot {
    width: 7px;
    height: 7px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(53, 242, 138, .12), 0 0 18px var(--green);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    min-height: 54px;
    padding: 0 25px;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .015em;
    transition: transform .3s var(--ease), background .3s ease, color .3s ease, box-shadow .3s ease;
}

.button:hover { transform: translateY(-3px); }
.button svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: transform .3s var(--ease); }
.button:hover svg { transform: translateX(4px); }
.button--small { min-height: 44px; padding-inline: 20px; font-size: 12px; }
.button--large { min-height: 64px; padding-inline: 30px 24px; }
.button--lime { color: var(--ink); background: var(--lime); box-shadow: 0 14px 35px rgba(204, 255, 87, .12); }
.button--lime:hover { background: var(--green); box-shadow: 0 18px 50px rgba(53, 242, 138, .25); }
.button--dark { color: var(--white); background: var(--ink); }
.button--dark:hover { color: var(--ink); background: var(--green); }

.menu-toggle {
    display: none;
    position: relative;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
    cursor: pointer;
}

.menu-toggle span {
    position: absolute;
    left: 14px;
    width: 19px;
    height: 1.5px;
    background: currentColor;
    transition: transform .3s var(--ease), top .3s var(--ease);
}

.menu-toggle span:first-child { top: 19px; }
.menu-toggle span:last-child { top: 27px; }
.nav-open .menu-toggle span:first-child { top: 23px; transform: rotate(45deg); }
.nav-open .menu-toggle span:last-child { top: 23px; transform: rotate(-45deg); }

.mobile-menu {
    position: fixed;
    z-index: 2;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 118px max(32px, calc((100vw - var(--shell)) / 2)) 42px;
    visibility: hidden;
    opacity: 0;
    color: var(--white);
    background:
        radial-gradient(circle at 85% 14%, rgba(53, 242, 138, .18), transparent 30%),
        var(--ink);
    transform: translateY(-16px);
    transition: opacity .35s ease, visibility .35s ease, transform .45s var(--ease);
}

.nav-open .mobile-menu { visibility: visible; opacity: 1; transform: none; }
.mobile-menu nav { display: grid; }
.mobile-menu nav a { display: flex; align-items: baseline; gap: 20px; padding: 10px 0; font-size: clamp(36px, 7vw, 70px); font-weight: 760; line-height: 1.05; letter-spacing: -.055em; border-bottom: 1px solid var(--line-dark); }
.mobile-menu nav a span { color: var(--green); font-size: 11px; letter-spacing: .12em; }
.mobile-menu__contact { display: flex; flex-wrap: wrap; gap: 20px 42px; padding-top: 30px; color: rgba(255, 255, 255, .65); font-size: 14px; }

/* Type and global section language */
.section { position: relative; padding: 150px 0; }
.section-heading { margin-bottom: 62px; }
.section-heading--split { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .55fr); align-items: end; gap: 60px; }
.section-heading--center { max-width: 900px; margin-inline: auto; text-align: center; }
.section-heading--center .eyebrow { justify-content: center; }

.section-heading h2,
.process-sticky h2,
.faq-intro h2,
.conversion-copy h2 {
    margin: 18px 0 0;
    max-width: 1000px;
    font-family: "Segoe UI Variable Display", "Segoe UI", Inter, Arial, sans-serif;
    font-size: clamp(50px, 6.2vw, 96px);
    font-weight: 730;
    line-height: .94;
    letter-spacing: -.07em;
}

h2 em, .hero h1 em { color: var(--green-deep); font-family: Georgia, "Times New Roman", serif; font-weight: 400; letter-spacing: -.055em; }
.section-heading--light h2, .section-heading--light .section-intro { color: var(--white); }
.section-heading--light h2 em, .conversion-copy h2 em { color: var(--green); }

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    color: #3f5048;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.eyebrow > span { display: block; width: 30px; height: 1px; background: var(--green-deep); }
.eyebrow--light { color: rgba(255, 255, 255, .68); }
.eyebrow--light > span { background: var(--green); }
.section-intro { max-width: 480px; margin: 0 0 5px auto; color: var(--muted); font-size: 18px; line-height: 1.7; }

.text-link { display: inline-flex; align-items: center; gap: 14px; color: var(--white); font-size: 13px; font-weight: 750; border-bottom: 1px solid rgba(255, 255, 255, .45); padding-bottom: 6px; }
.text-link span { color: var(--green); font-size: 18px; transition: transform .25s var(--ease); }
.text-link:hover span { transform: translate(3px, 3px); }
.text-link--dark { color: var(--ink); border-color: rgba(6, 17, 13, .25); }

/* Hero */
.hero {
    position: relative;
    isolation: isolate;
    min-height: 900px;
    height: max(900px, 100svh);
    overflow: hidden;
    color: var(--white);
    background: var(--ink);
}

.hero-media, .conversion-media {
    position: absolute;
    z-index: -3;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    scale: 1.015;
}

.hero-shade {
    position: absolute;
    z-index: -2;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(3, 12, 9, .98) 0%, rgba(3, 12, 9, .84) 31%, rgba(3, 12, 9, .22) 61%, rgba(3, 12, 9, .24) 100%),
        linear-gradient(180deg, rgba(3, 12, 9, .55) 0%, transparent 24%, transparent 67%, rgba(3, 12, 9, .8) 100%);
}

.hero-grid {
    position: absolute;
    z-index: -1;
    inset: 0;
    opacity: .22;
    background-image: linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px);
    background-size: 12.5vw 12.5vw;
    -webkit-mask-image: linear-gradient(90deg, black, transparent 65%);
    mask-image: linear-gradient(90deg, black, transparent 65%);
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(270px, .38fr);
    align-items: center;
    gap: 80px;
    min-height: 100%;
    padding-top: 108px;
    padding-bottom: 100px;
}

.hero-copy { max-width: 920px; }
.hero h1 { margin: 26px 0 34px; font-size: clamp(74px, 9vw, 142px); font-weight: 730; line-height: .79; letter-spacing: -.082em; }
.hero h1 em { color: var(--lime); }
.hero-lead { max-width: 650px; margin: 0; color: rgba(255, 255, 255, .72); font-size: clamp(18px, 1.6vw, 23px); line-height: 1.55; }
.hero-actions { display: flex; align-items: center; gap: 34px; margin-top: 42px; }

.hero-aside {
    align-self: end;
    margin-bottom: 88px;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, .17);
    border-radius: 24px;
    background: rgba(8, 22, 17, .46);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .18);
}

.hero-index { margin-bottom: 50px; color: rgba(255, 255, 255, .42); font-size: 9px; font-weight: 800; letter-spacing: .18em; }
.hero-status { display: flex; align-items: center; gap: 14px; padding-bottom: 22px; border-bottom: 1px solid rgba(255, 255, 255, .13); }
.hero-status .pulse { position: relative; width: 10px; height: 10px; border-radius: 50%; background: var(--green); box-shadow: 0 0 16px var(--green); }
.hero-status .pulse::after { content: ""; position: absolute; inset: -7px; border: 1px solid rgba(53, 242, 138, .45); border-radius: inherit; animation: pulse 2s ease-out infinite; }
.hero-status strong, .hero-status small { display: block; }
.hero-status strong { font-size: 14px; }
.hero-status small { margin-top: 3px; color: rgba(255, 255, 255, .52); font-size: 11px; }
.hero-paths { display: grid; gap: 0; margin-top: 14px; }
.hero-paths span { padding: 10px 0; color: rgba(255, 255, 255, .68); font-size: 12px; border-bottom: 1px solid rgba(255, 255, 255, .08); }
.hero-paths span::before { content: "↳"; margin-right: 9px; color: var(--green); }

.hero-footer { position: absolute; z-index: 1; right: 0; bottom: 26px; left: 0; display: flex; align-items: center; justify-content: space-between; color: rgba(255, 255, 255, .55); font-size: 10px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.hero-note { display: flex; align-items: center; gap: 14px; }
.hero-note span { display: grid; place-items: center; width: 30px; height: 30px; color: var(--ink); background: var(--green); border-radius: 50%; }
.scroll-cue { display: flex; align-items: center; gap: 18px; }
.scroll-cue i { position: relative; display: block; width: 48px; height: 48px; border: 1px solid rgba(255, 255, 255, .3); border-radius: 50%; }
.scroll-cue i::before { content: ""; position: absolute; top: 15px; left: 22px; width: 1px; height: 16px; background: var(--green); animation: scrollCue 1.8s ease-in-out infinite; }

@keyframes pulse { to { opacity: 0; transform: scale(1.8); } }
@keyframes scrollCue { 0%, 100% { transform: translateY(-3px); opacity: .45; } 50% { transform: translateY(4px); opacity: 1; } }

/* Kinetic strip */
.signal-strip { overflow: hidden; color: var(--ink); background: var(--lime); border-block: 1px solid rgba(6, 17, 13, .22); }
.signal-track { display: flex; align-items: center; width: max-content; height: 64px; animation: ticker 28s linear infinite; }
.signal-track span { padding-inline: 34px; font-size: 12px; font-weight: 900; letter-spacing: .15em; white-space: nowrap; }
.signal-track i { width: 8px; height: 8px; border: 2px solid var(--ink); border-radius: 50%; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* Paths */
.paths { background: var(--paper); }
.path-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.path-card { position: relative; isolation: isolate; height: min(650px, 48vw); min-height: 540px; overflow: hidden; color: var(--white); background: var(--panel); border-radius: var(--radius); box-shadow: 0 24px 70px rgba(6, 17, 13, .1); }
.path-card img { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease), filter .5s ease; }
.path-card__shade { position: absolute; z-index: -1; inset: 0; background: linear-gradient(180deg, rgba(4, 15, 11, .22), rgba(4, 15, 11, .08) 40%, rgba(4, 15, 11, .92)); }
.path-card__top { position: absolute; top: 24px; right: 24px; left: 24px; display: flex; justify-content: space-between; font-size: 10px; font-weight: 850; letter-spacing: .13em; }
.path-card__top span { display: grid; place-items: center; width: 36px; height: 36px; color: var(--ink); background: rgba(204, 255, 87, .95); border-radius: 50%; }
.path-card__top i { padding: 8px 12px; font-style: normal; background: rgba(6, 17, 13, .45); border: 1px solid rgba(255, 255, 255, .2); border-radius: 999px; -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.path-card__content { position: absolute; right: 28px; bottom: 28px; left: 28px; padding-right: 76px; }
.path-card__content > p { margin: 0 0 12px; color: var(--green); font-size: 10px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.path-card__content h3 { max-width: 360px; margin: 0 0 14px; font-size: clamp(30px, 2.7vw, 44px); font-weight: 700; line-height: 1; letter-spacing: -.055em; }
.path-card__content > span { display: block; max-width: 360px; color: rgba(255, 255, 255, .66); font-size: 14px; line-height: 1.55; }
.round-link { position: absolute; right: 0; bottom: 0; display: grid; place-items: center; width: 58px; height: 58px; color: var(--ink); background: var(--lime); border-radius: 50%; transition: transform .35s var(--ease), background .3s ease; }
.round-link svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.path-card:hover img { transform: scale(1.055); filter: saturate(1.06); }
.path-card:hover .round-link { transform: rotate(45deg) scale(1.06); background: var(--green); }
.path-card--featured { transform: translateY(26px); }

/* Work models and costs */
.work-models { overflow: hidden; background: #e4ebe3; }
.work-models::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 88% 8%, rgba(53,242,138,.2), transparent 24%), linear-gradient(rgba(6,17,13,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(6,17,13,.035) 1px, transparent 1px); background-size: auto, 96px 96px, 96px 96px; -webkit-mask-image: linear-gradient(180deg, black, transparent 58%); mask-image: linear-gradient(180deg, black, transparent 58%); }
.program-heading { position: relative; display: grid; grid-template-columns: minmax(0,1.25fr) minmax(300px,.5fr); align-items: end; gap: 70px; margin-bottom: 68px; }
.program-heading h2 { max-width: 1020px; margin: 20px 0 0; font-family: "Segoe UI Variable Display", "Segoe UI", Inter, Arial, sans-serif; font-size: clamp(64px,8vw,126px); font-weight: 750; line-height: .82; letter-spacing: -.082em; }
.program-heading h2 em { color: var(--green-deep); }
.program-heading__intro { max-width: 480px; margin: 0 0 8px auto; padding-left: 28px; border-left: 1px solid rgba(6,17,13,.2); }
.program-heading__intro p { margin: 0; color: #42544b; font-size: 19px; line-height: 1.65; }
.program-heading__intro span { display: block; margin-top: 24px; color: var(--green-deep); font-size: 10px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }

.model-grid { position: relative; display: grid; grid-template-columns: minmax(0,1.16fr) minmax(390px,.84fr); gap: 18px; }
.model-card { position: relative; isolation: isolate; display: flex; flex-direction: column; min-height: 790px; overflow: hidden; padding: clamp(30px,3.2vw,50px); border-radius: var(--radius-lg); box-shadow: 0 30px 90px rgba(4,16,11,.13); }
.model-card::before { content: ""; position: absolute; z-index: -1; width: 420px; height: 420px; border-radius: 50%; filter: blur(70px); pointer-events: none; }
.model-card--fixed { color: var(--white); background: var(--ink); }
.model-card--fixed::before { right: -190px; top: -190px; background: rgba(53,242,138,.25); }
.model-card--flex { color: var(--ink); background: var(--lime); }
.model-card--flex::before { right: -130px; bottom: -210px; background: rgba(53,242,138,.7); }
.model-card__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; }
.model-card__head > div:first-child > span { color: var(--green); font-size: 9px; font-weight: 900; letter-spacing: .17em; }
.model-card--flex .model-card__head > div:first-child > span { color: #185c38; }
.model-card__head h3 { margin: 18px 0 0; font-size: clamp(43px,4vw,68px); font-weight: 720; line-height: .9; letter-spacing: -.065em; }
.model-badge { display: grid; place-items: center; flex: 0 0 auto; width: 72px; height: 72px; color: var(--ink); background: var(--green); border-radius: 50%; font-size: 11px; font-weight: 900; letter-spacing: .08em; }
.model-badge--dark { color: var(--white); background: var(--ink); }
.model-card__lead { max-width: 610px; margin: 30px 0; color: rgba(255,255,255,.61); font-size: 16px; line-height: 1.65; }
.model-card--flex .model-card__lead { color: rgba(6,17,13,.72); }

.contract-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
.contract-option { min-height: 185px; padding: 23px; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.12); border-radius: 20px; }
.contract-option > span { color: var(--green); font-size: 9px; font-weight: 900; letter-spacing: .17em; }
.contract-option strong { display: block; margin-top: 13px; font-size: clamp(27px,2.5vw,40px); font-weight: 760; line-height: .95; letter-spacing: -.055em; }
.contract-option strong small { display: block; margin-top: 8px; color: rgba(255,255,255,.48); font-size: 10px; font-weight: 750; letter-spacing: .04em; text-transform: uppercase; }
.contract-option p { margin: 18px 0 0; color: rgba(255,255,255,.52); font-size: 12px; line-height: 1.5; }
.contract-option--accent { background: rgba(53,242,138,.11); border-color: rgba(53,242,138,.5); box-shadow: inset 0 0 45px rgba(53,242,138,.04); }
.model-card > .button { align-self: flex-start; margin-top: auto; padding-inline: 27px 22px; }
.contract-grid + .button { margin-top: 32px; }

.flex-price { display: flex; align-items: flex-end; gap: 18px; margin: 40px 0 28px; padding-block: 25px; border-block: 1px solid rgba(6,17,13,.22); }
.flex-price > strong { font-size: clamp(112px,11vw,176px); font-weight: 780; line-height: .68; letter-spacing: -.09em; }
.flex-price > div { display: grid; gap: 2px; padding-bottom: 2px; }
.flex-price b { font-size: 31px; line-height: 1; }
.flex-price span { max-width: 110px; color: rgba(6,17,13,.65); font-size: 11px; font-weight: 750; line-height: 1.3; text-transform: uppercase; }
.time-rule { display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: start; padding: 20px; background: rgba(255,255,255,.48); border: 1px solid rgba(6,17,13,.13); border-radius: 20px; }
.time-rule > span { position: relative; width: 42px; height: 42px; background: var(--ink); border-radius: 50%; }
.time-rule > span::before, .time-rule > span::after { content: ""; position: absolute; left: 20px; top: 9px; width: 2px; height: 15px; background: var(--green); transform-origin: bottom; }
.time-rule > span::after { height: 11px; transform: rotate(118deg); }
.time-rule p { margin: 0; color: rgba(6,17,13,.68); font-size: 12px; line-height: 1.55; }
.time-rule strong { display: block; margin-bottom: 3px; color: var(--ink); font-size: 13px; }
.model-best-for { margin: 24px 0 30px; color: rgba(6,17,13,.68); font-size: 14px; line-height: 1.65; }

.shared-costs { position: relative; margin-top: 18px; padding: clamp(30px,3.5vw,52px); background: rgba(251,255,249,.86); border: 1px solid rgba(6,17,13,.1); border-radius: var(--radius-lg); box-shadow: 0 30px 85px rgba(4,16,11,.09); }
.shared-costs__head { display: grid; grid-template-columns: minmax(280px,.65fr) minmax(0,1fr); align-items: end; gap: 50px; padding-bottom: 36px; }
.shared-costs__head > span { align-self: start; color: var(--green-deep); font-size: 9px; font-weight: 900; letter-spacing: .17em; }
.shared-costs__head h3 { margin: 0; font-size: clamp(40px,4.5vw,68px); font-weight: 720; line-height: .92; letter-spacing: -.06em; }
.shared-costs__head h3 em { color: var(--green-deep); font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.cost-list { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); border-block: 1px solid rgba(6,17,13,.14); }
.cost-item { display: flex; flex-direction: column; min-height: 190px; padding: 28px 25px; border-right: 1px solid rgba(6,17,13,.14); }
.cost-item:last-child { border-right: 0; }
.cost-item strong { font-size: clamp(28px,2.7vw,43px); font-weight: 750; line-height: .95; letter-spacing: -.055em; }
.cost-item > span { margin-top: 10px; color: #56665f; font-size: 12px; }
.cost-item small { margin-top: auto; color: var(--green-deep); font-size: 9px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.price-disclaimer { margin: 22px 0 0; color: #69766f; font-size: 11px; }

.program-details { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; margin-top: 18px; }
.program-details details { padding: 0 28px; background: rgba(251,255,249,.54); border: 1px solid rgba(6,17,13,.11); border-radius: 22px; }
.program-details summary { display: grid; grid-template-columns: 32px minmax(0,1fr) 32px; align-items: center; gap: 14px; min-height: 84px; cursor: pointer; list-style: none; }
.program-details summary::-webkit-details-marker { display: none; }
.program-details summary > span { color: var(--green-deep); font-size: 9px; font-weight: 900; letter-spacing: .12em; }
.program-details summary b { font-size: 17px; line-height: 1.25; }
.program-details summary i { position: relative; width: 32px; height: 32px; border: 1px solid rgba(6,17,13,.2); border-radius: 50%; }
.program-details summary i::before, .program-details summary i::after { content: ""; position: absolute; left: 9px; top: 15px; width: 12px; height: 1px; background: var(--ink); transition: transform .3s var(--ease); }
.program-details summary i::after { transform: rotate(90deg); }
.program-details details[open] summary i { background: var(--green); border-color: var(--green); }
.program-details details[open] summary i::after { transform: none; }
.program-details details p { margin: -2px 46px 28px; color: #56665f; font-size: 14px; line-height: 1.7; }

.choice-cta { position: relative; overflow: hidden; display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: end; gap: 55px; margin-top: 18px; padding: clamp(34px,4.3vw,68px); color: var(--white); background: var(--ink); border-radius: var(--radius-lg); }
.choice-cta::after { content: ""; position: absolute; right: -90px; bottom: -180px; width: 430px; height: 430px; pointer-events: none; background: rgba(53,242,138,.2); border-radius: 50%; filter: blur(70px); }
.choice-cta > div { position: relative; z-index: 1; }
.choice-cta > div > span { color: var(--green); font-size: 9px; font-weight: 900; letter-spacing: .17em; }
.choice-cta h3 { max-width: 800px; margin: 18px 0; font-size: clamp(38px,4.3vw,66px); font-weight: 720; line-height: .94; letter-spacing: -.06em; }
.choice-cta h3 em { color: var(--green); font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.choice-cta p { max-width: 600px; margin: 0; color: rgba(255,255,255,.58); }
.choice-cta__actions { display: grid; justify-items: start; gap: 24px; min-width: 310px; margin-right: 76px; }
.choice-cta__actions .button { width: 100%; }

/* Control bento */
.control { overflow: hidden; color: var(--white); background: var(--ink); }
.control::before, .cities::before { content: ""; position: absolute; inset: 0; pointer-events: none; background-image: radial-gradient(circle at 84% 12%, rgba(53, 242, 138, .12), transparent 24%), linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: auto, 86px 86px, 86px 86px; }
.control-grid { position: relative; display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); grid-auto-rows: 420px; gap: 18px; }
.control-card { position: relative; isolation: isolate; overflow: hidden; padding: 34px; background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025)); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); box-shadow: inset 0 1px rgba(255,255,255,.05); }
.control-card::before { content: ""; position: absolute; z-index: -1; width: 340px; height: 340px; right: -100px; bottom: -130px; background: rgba(53, 242, 138, .18); border-radius: 50%; filter: blur(65px); }
.control-card__copy { position: relative; z-index: 2; max-width: 390px; }
.control-card__copy > span { color: var(--green); font-size: 9px; font-weight: 850; letter-spacing: .16em; }
.control-card__copy h3 { margin: 16px 0 12px; font-size: clamp(27px, 2.5vw, 40px); font-weight: 680; line-height: 1.03; letter-spacing: -.05em; }
.control-card__copy p { max-width: 340px; margin: 0; color: rgba(255,255,255,.58); font-size: 14px; }
.control-card img { position: absolute; z-index: 1; pointer-events: none; filter: drop-shadow(0 20px 45px rgba(0,0,0,.28)); transition: transform .8s var(--ease); }
.control-card:hover img { transform: translateY(-8px) rotate(-1deg) scale(1.025); }
.control-card--car { grid-column: span 8; }
.control-card--car img { right: -5%; bottom: -9%; width: 67%; }
.control-card--phone { grid-column: span 4; }
.control-card--phone img { right: -9%; bottom: -27%; width: 61%; transform: rotate(-8deg); }
.control-card--phone:hover img { transform: translateY(-8px) rotate(-5deg) scale(1.025); }
.control-card--shield { grid-column: span 4; }
.control-card--shield img { right: -6%; bottom: -29%; width: 58%; }
.control-card--route { grid-column: span 8; }
.control-card--route img { right: 3%; bottom: -49%; width: 44%; transform: rotate(11deg); }
.control-card--route:hover img { transform: translateY(-8px) rotate(8deg) scale(1.025); }

/* Process */
.process { background: var(--paper); }
.process-layout { display: grid; grid-template-columns: minmax(300px, .72fr) minmax(0, 1.25fr); align-items: start; gap: clamp(70px, 10vw, 160px); }
.process-sticky { position: sticky; top: 140px; }
.process-sticky > p:not(.eyebrow) { max-width: 410px; margin: 30px 0; color: var(--muted); font-size: 17px; }
.process-list { display: grid; gap: 90px; }
.process-step { display: grid; gap: 28px; }
.process-step__media { position: relative; height: 440px; overflow: hidden; background: var(--panel); border-radius: var(--radius); box-shadow: var(--shadow); }
.process-step__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.process-step:hover .process-step__media img { transform: scale(1.035); }
.process-step__media > span { position: absolute; right: 20px; bottom: 20px; display: grid; place-items: center; width: 58px; height: 58px; color: var(--ink); background: var(--lime); border-radius: 50%; font-size: 12px; font-weight: 850; }
.process-step__copy { display: grid; grid-template-columns: 80px minmax(0, .7fr) minmax(220px, .55fr); align-items: start; gap: 24px; }
.process-step__copy p { margin: 8px 0 0; color: var(--green-deep); font-size: 9px; font-weight: 900; letter-spacing: .17em; }
.process-step__copy h3 { margin: 0; font-size: clamp(28px, 3vw, 42px); line-height: 1; letter-spacing: -.05em; }
.process-step__copy > span { color: var(--muted); font-size: 14px; line-height: 1.65; }

/* Benefits */
.benefits { padding-top: 110px; background: var(--paper-2); }
.benefit-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.benefit-card { padding: 14px 14px 32px; background: rgba(255,255,255,.58); border: 1px solid rgba(6,17,13,.09); border-radius: calc(var(--radius) + 4px); }
.benefit-card__media { position: relative; height: 330px; overflow: hidden; border-radius: 17px; }
.benefit-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.benefit-card:hover img { transform: scale(1.045); }
.benefit-card__media span { position: absolute; top: 16px; right: 16px; display: grid; place-items: center; width: 38px; height: 38px; color: var(--ink); background: var(--green); border-radius: 50%; font-size: 10px; font-weight: 850; }
.benefit-card h3 { margin: 28px 16px 12px; font-size: clamp(25px, 2.2vw, 35px); line-height: 1.03; letter-spacing: -.045em; }
.benefit-card > p { margin: 0 16px; color: var(--muted); font-size: 14px; }

/* Cities */
.cities { overflow: hidden; color: var(--white); background: var(--ink-soft); }
.city-grid { position: relative; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); grid-auto-rows: 370px; gap: 18px; }
.city-card { position: relative; isolation: isolate; overflow: hidden; background: var(--panel); border-radius: var(--radius); }
.city-card--wide { grid-column: span 2; }
.city-card::after { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(3,13,9,.88)); }
.city-card img { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.85); transition: transform 1s var(--ease), filter .5s ease; }
.city-card > div { position: absolute; right: 26px; bottom: 24px; left: 26px; }
.city-card span { color: var(--green); font-size: 9px; font-weight: 850; letter-spacing: .16em; }
.city-card h3 { margin: 5px 0 0; font-size: clamp(30px, 3vw, 46px); line-height: 1; letter-spacing: -.055em; }
.city-card:hover img { transform: scale(1.055); filter: saturate(1.05); }

/* Rhythms */
.rhythms { background: var(--paper); }
.rhythm-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.rhythm-card { position: relative; isolation: isolate; height: 620px; overflow: hidden; color: var(--white); background: var(--panel); border-radius: var(--radius); }
.rhythm-card::after { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(4,14,10,.94)); }
.rhythm-card img { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.rhythm-card:hover img { transform: scale(1.05); }
.rhythm-card__copy { position: absolute; right: 28px; bottom: 28px; left: 28px; }
.rhythm-card__copy > span { color: var(--green); font-size: 9px; font-weight: 850; letter-spacing: .15em; }
.rhythm-card h3 { margin: 10px 0; font-size: clamp(30px, 3vw, 43px); line-height: 1; letter-spacing: -.05em; }
.rhythm-card p { max-width: 360px; margin: 0; color: rgba(255,255,255,.65); font-size: 14px; }

/* FAQ */
.faq { background: #dcf6e6; }
.faq-layout { display: grid; grid-template-columns: minmax(290px, .68fr) minmax(0, 1.22fr); align-items: start; gap: clamp(70px, 10vw, 160px); }
.faq-intro { position: sticky; top: 140px; }
.faq-intro > p:not(.eyebrow) { max-width: 380px; margin: 28px 0; color: #557066; }
.faq-list { border-top: 1px solid rgba(6,17,13,.17); }
.faq-list details { border-bottom: 1px solid rgba(6,17,13,.17); }
.faq-list summary { display: grid; grid-template-columns: 46px minmax(0,1fr) 32px; align-items: center; gap: 15px; min-height: 98px; padding: 20px 0; cursor: pointer; list-style: none; font-size: clamp(20px, 2vw, 28px); font-weight: 680; line-height: 1.15; letter-spacing: -.035em; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary > span { color: var(--green-deep); font-size: 10px; font-weight: 900; letter-spacing: .1em; }
.faq-list summary i { position: relative; width: 32px; height: 32px; border: 1px solid rgba(6,17,13,.25); border-radius: 50%; }
.faq-list summary i::before, .faq-list summary i::after { content: ""; position: absolute; top: 15px; left: 9px; width: 12px; height: 1px; background: var(--ink); transition: transform .3s var(--ease); }
.faq-list summary i::after { transform: rotate(90deg); }
.faq-list details[open] summary i { color: var(--ink); background: var(--green); border-color: var(--green); }
.faq-list details[open] summary i::after { transform: rotate(0); }
.faq-list details p { max-width: 650px; margin: -6px 46px 30px; color: #53685f; font-size: 16px; line-height: 1.7; }

/* Conversion and form */
.conversion { position: relative; isolation: isolate; min-height: 920px; overflow: hidden; color: var(--white); background: var(--ink); }
.conversion-media { object-position: center; }
.conversion-shade { position: absolute; z-index: -2; inset: 0; background: linear-gradient(90deg, rgba(3,12,9,.78), rgba(3,12,9,.38) 40%, rgba(3,12,9,.84) 65%, rgba(3,12,9,.98)), linear-gradient(180deg, rgba(3,12,9,.35), rgba(3,12,9,.72)); }
.conversion-layout { display: grid; grid-template-columns: minmax(0, .95fr) minmax(500px, .72fr); align-items: center; gap: clamp(60px, 8vw, 130px); min-height: 920px; padding-block: 120px; }
.conversion-copy h2 { font-size: clamp(52px, 6vw, 94px); }
.conversion-contact { display: flex; flex-wrap: wrap; gap: 26px 50px; margin-top: 50px; }
.conversion-contact a { color: var(--white); font-size: 18px; font-weight: 650; }
.conversion-contact small { display: block; margin-bottom: 6px; color: var(--green); font-size: 8px; font-weight: 900; letter-spacing: .16em; }

.lead-form { padding: 34px; color: var(--white); background: rgba(7,20,15,.75); border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius-lg); box-shadow: 0 36px 100px rgba(0,0,0,.32); -webkit-backdrop-filter: blur(24px) saturate(130%); backdrop-filter: blur(24px) saturate(130%); }
.form-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 16px; }
.form-head span { color: var(--green); font-size: 9px; font-weight: 900; letter-spacing: .16em; }
.form-head p { margin: 0; color: rgba(255,255,255,.55); font-size: 12px; }
.role-options { display: grid; grid-template-columns: repeat(3,1fr); gap: 7px; margin: 0 0 26px; padding: 0; border: 0; }
.role-options label { cursor: pointer; }
.role-options input { position: absolute; opacity: 0; pointer-events: none; }
.role-options span { display: grid; place-items: center; min-height: 46px; padding: 7px 10px; color: rgba(255,255,255,.62); background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.12); border-radius: 999px; font-size: 11px; font-weight: 750; text-align: center; transition: .25s ease; }
.role-options input:checked + span { color: var(--ink); background: var(--green); border-color: var(--green); }
.role-options input:focus-visible + span { outline: 3px solid var(--lime); outline-offset: 3px; }
.form-subhead { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin: 0 0 10px; }
.form-subhead span { color: rgba(255,255,255,.78); font-size: 11px; font-weight: 750; }
.form-subhead small { color: rgba(255,255,255,.4); font-size: 9px; }
.model-options { display: grid; grid-template-columns: repeat(3,1fr); gap: 7px; margin: 0 0 26px; padding: 0; border: 0; }
.model-options label { cursor: pointer; }
.model-options input { position: absolute; opacity: 0; pointer-events: none; }
.model-options span { display: grid; place-items: center; min-height: 46px; padding: 7px 10px; color: rgba(255,255,255,.62); background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.12); border-radius: 13px; font-size: 10px; font-weight: 750; text-align: center; transition: .25s ease; }
.model-options input:checked + span { color: var(--ink); background: var(--lime); border-color: var(--lime); }
.model-options input:focus-visible + span { outline: 3px solid var(--lime); outline-offset: 3px; }
.field-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 15px; }
.field { display: grid; gap: 7px; }
.field > span { color: rgba(255,255,255,.68); font-size: 10px; font-weight: 750; letter-spacing: .06em; }
.field input, .field select, .field textarea { width: 100%; color: var(--white); background: rgba(255,255,255,.065); border: 1px solid rgba(255,255,255,.14); border-radius: 13px; outline: none; transition: border-color .2s ease, background .2s ease, box-shadow .2s ease; }
.field input, .field select { height: 52px; padding: 0 15px; }
.field textarea { min-height: 82px; padding: 13px 15px; resize: vertical; }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--green) 50%), linear-gradient(135deg, var(--green) 50%, transparent 50%); background-position: calc(100% - 18px) 23px, calc(100% - 13px) 23px; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }
.field select option { color: var(--ink); background: var(--paper); }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.3); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green); background-color: rgba(255,255,255,.09); box-shadow: 0 0 0 3px rgba(53,242,138,.1); }
.field input[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: #ff8b81; }
.field--full { margin-top: 15px; }
.consent { display: grid; grid-template-columns: 18px 1fr; align-items: start; gap: 11px; margin: 18px 0; color: rgba(255,255,255,.48); font-size: 11px; line-height: 1.5; }
.consent input { width: 17px; height: 17px; margin: 1px 0 0; accent-color: var(--green); }
.consent a { color: var(--mint); text-decoration: underline; text-underline-offset: 2px; }
.button--submit { width: 100%; min-height: 58px; border: 0; }
.form-note { margin: 11px 0 0; color: rgba(255,255,255,.36); font-size: 9px; text-align: center; }
.form-status { min-height: 20px; margin: 8px 0 0; color: var(--lime); font-size: 11px; text-align: center; }

/* Footer */
.site-footer { color: var(--white); background: #030b08; }
.footer-main { display: grid; grid-template-columns: minmax(250px,.8fr) minmax(0,1.2fr); gap: 90px; padding-block: 90px 70px; }
.brand--footer .brand-mark { width: 52px; height: 52px; }
.brand--footer .brand-type { font-size: 24px; }
.footer-brand > p { max-width: 380px; margin: 26px 0 0; color: rgba(255,255,255,.62); }
.footer-links { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 40px; }
.footer-links > div { display: grid; align-content: start; gap: 11px; }
.footer-links span { margin-bottom: 10px; color: var(--green); font-size: 9px; font-weight: 900; letter-spacing: .16em; }
.footer-links a { color: rgba(255,255,255,.65); font-size: 13px; transition: color .2s ease, transform .2s ease; }
.footer-links a:hover { color: var(--white); transform: translateX(3px); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-block: 24px 34px; color: rgba(255,255,255,.64); border-top: 1px solid rgba(255,255,255,.1); font-size: 10px; }
.footer-bottom p { margin: 0; }

.whatsapp-float { position: fixed; z-index: 90; right: 22px; bottom: 22px; display: flex; align-items: center; gap: 10px; min-height: 50px; padding: 0 18px 0 13px; color: var(--ink); background: var(--green); border: 1px solid rgba(255,255,255,.45); border-radius: 999px; box-shadow: 0 18px 45px rgba(4,16,11,.3); font-size: 11px; font-weight: 850; transition: transform .3s var(--ease), background .3s ease; }
.whatsapp-float:hover { transform: translateY(-4px); background: var(--lime); }
.whatsapp-float svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }

/* Reveal system leaves content visible when JS is absent */
.has-js [data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity .85s var(--ease), transform .85s var(--ease); }
.has-js [data-reveal][data-delay="1"] { transition-delay: .09s; }
.has-js [data-reveal][data-delay="2"] { transition-delay: .18s; }
.has-js [data-reveal][data-delay="3"] { transition-delay: .27s; }
.has-js [data-reveal].is-visible { opacity: 1; transform: none; }

/* Legal pages */
.legal-page { min-height: 100vh; color: var(--ink); background: var(--paper); }
.legal-header { color: var(--white); background: var(--ink); }
.legal-header .header-inner { height: 82px; }
.legal-main { width: min(calc(100% - 48px), 900px); margin-inline: auto; padding: 150px 0 100px; }
.legal-main .eyebrow { margin-bottom: 25px; }
.legal-main h1 { margin: 0 0 40px; font-size: clamp(46px,8vw,88px); line-height: .93; letter-spacing: -.065em; }
.legal-main h2 { margin: 48px 0 12px; font-size: 26px; letter-spacing: -.035em; }
.legal-main p, .legal-main li { color: #53635b; }
.legal-main a { color: #087443; text-decoration: underline; text-underline-offset: 3px; }
.legal-note { padding: 20px 22px; background: #dcf6e6; border-left: 3px solid var(--green-deep); border-radius: 0 14px 14px 0; }

@media (max-width: 1220px) {
    .desktop-nav { display: none; }
    .menu-toggle { display: block; }
    .header-phone { margin-left: auto; }
    .hero-inner { grid-template-columns: minmax(0,1fr) 280px; gap: 44px; }
    .control-grid { grid-auto-rows: 390px; }
}

@media (max-width: 960px) {
    .shell { width: min(calc(100% - 40px), var(--shell)); }
    .section { padding: 110px 0; }
    .section-heading--split { grid-template-columns: 1fr; gap: 24px; }
    .section-intro { margin-left: 0; }
    .hero { min-height: 850px; height: 100svh; }
    .hero-inner { grid-template-columns: 1fr; padding-top: 140px; }
    .hero-copy { align-self: center; }
    .hero-aside { display: none; }
    .path-grid { grid-template-columns: 1fr 1fr; }
    .path-card { height: 610px; }
    .path-card:last-child { grid-column: 1 / -1; height: 500px; }
    .path-card:last-child img { object-position: center 38%; }
    .path-card--featured { transform: none; }
    .program-heading { grid-template-columns: 1fr; gap: 28px; }
    .program-heading__intro { max-width: 620px; margin-left: 0; }
    .model-grid { grid-template-columns: 1fr; }
    .model-card { min-height: auto; }
    .model-card--fixed { min-height: 770px; }
    .model-card--flex { min-height: 700px; }
    .cost-list { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .cost-item:nth-child(2) { border-right: 0; }
    .cost-item:nth-child(-n+2) { border-bottom: 1px solid rgba(6,17,13,.14); }
    .program-details { grid-template-columns: 1fr; }
    .choice-cta { grid-template-columns: 1fr; align-items: start; }
    .choice-cta__actions { min-width: 0; max-width: 430px; margin-right: 0; }
    .control-grid { grid-template-columns: repeat(2,minmax(0,1fr)); grid-auto-rows: 400px; }
    .control-card { grid-column: auto; }
    .control-card--car, .control-card--route { grid-column: span 2; }
    .process-layout, .faq-layout { grid-template-columns: 1fr; gap: 70px; }
    .process-sticky, .faq-intro { position: static; }
    .benefit-grid { grid-template-columns: 1fr 1fr; }
    .benefit-card:last-child { grid-column: 1 / -1; }
    .city-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .city-card--wide { grid-column: auto; }
    .rhythm-card { height: 540px; }
    .conversion-layout { grid-template-columns: 1fr; gap: 60px; padding-block: 120px; }
    .conversion-shade { background: linear-gradient(180deg, rgba(3,12,9,.78), rgba(3,12,9,.86)); }
    .conversion-copy { max-width: 760px; }
    .lead-form { max-width: 650px; }
    .footer-main { grid-template-columns: 1fr; gap: 60px; }
}

@media (max-width: 720px) {
    html { scroll-padding-top: 76px; }
    .shell { width: min(calc(100% - 28px), var(--shell)); }
    .ambient-pointer { display: none; }
    .header-inner { height: 74px; }
    .brand-mark { width: 36px; height: 36px; }
    .brand-mark svg { width: 27px; height: 27px; }
    .brand-type { font-size: 16px; }
    .header-phone, .header-actions > .button { display: none; }
    .menu-toggle { margin-left: auto; }
    .mobile-menu { padding-inline: 22px; }
    .mobile-menu nav a { font-size: 40px; }
    .section { padding: 86px 0; }
    .section-heading { margin-bottom: 42px; }
    .section-heading h2, .process-sticky h2, .faq-intro h2, .conversion-copy h2 { font-size: clamp(44px, 14.5vw, 70px); line-height: .92; }
    .section-intro { font-size: 16px; }
    .hero { min-height: 800px; height: 100svh; }
    .hero-media { object-position: 65% center; }
    .hero-shade { background: linear-gradient(180deg, rgba(3,12,9,.76) 0%, rgba(3,12,9,.48) 36%, rgba(3,12,9,.92) 100%), linear-gradient(90deg, rgba(3,12,9,.8), transparent); }
    .hero-grid { background-size: 28vw 28vw; opacity: .18; }
    .hero-inner { display: flex; align-items: flex-end; min-height: 100%; padding-top: 112px; padding-bottom: 118px; }
    .hero h1 { margin: 20px 0 25px; font-size: clamp(64px, 21vw, 94px); line-height: .81; }
    .hero-lead { max-width: 520px; font-size: 17px; line-height: 1.5; }
    .hero-actions { align-items: flex-start; flex-direction: column; gap: 24px; margin-top: 31px; }
    .button--large { min-height: 58px; }
    .hero-footer { bottom: 18px; }
    .hero-note { display: none; }
    .scroll-cue { margin-left: auto; }
    .signal-track { height: 56px; }
    .path-grid { grid-template-columns: 1fr; gap: 14px; }
    .path-card, .path-card:last-child { grid-column: auto; height: 560px; min-height: 0; }
    .path-card__content { right: 22px; bottom: 22px; left: 22px; }
    .path-card__top { top: 18px; right: 18px; left: 18px; }
    .program-heading { margin-bottom: 42px; }
    .program-heading h2 { font-size: clamp(52px,16.5vw,78px); line-height: .85; }
    .program-heading__intro { padding-left: 0; border-left: 0; }
    .program-heading__intro p { font-size: 16px; }
    .model-card { min-height: auto; padding: 25px; border-radius: 27px; }
    .model-card__head h3 { font-size: clamp(39px,12vw,54px); }
    .model-badge { width: 58px; height: 58px; font-size: 9px; }
    .model-card__lead { margin-block: 24px; font-size: 14px; }
    .contract-grid { grid-template-columns: 1fr; }
    .contract-option { min-height: 0; }
    .contract-option strong { font-size: 34px; }
    .flex-price { gap: 13px; margin-top: 30px; }
    .flex-price > strong { font-size: 106px; }
    .flex-price b { font-size: 25px; }
    .time-rule { grid-template-columns: 38px 1fr; padding: 17px; }
    .time-rule > span { width: 36px; height: 36px; }
    .time-rule > span::before, .time-rule > span::after { left: 17px; top: 7px; }
    .shared-costs { padding: 25px; border-radius: 27px; }
    .shared-costs__head { grid-template-columns: 1fr; gap: 20px; }
    .shared-costs__head h3 { font-size: 42px; }
    .cost-list { grid-template-columns: 1fr; }
    .cost-item { min-height: 150px; padding-inline: 0; border-right: 0; border-bottom: 1px solid rgba(6,17,13,.14); }
    .cost-item:nth-child(3) { border-bottom: 1px solid rgba(6,17,13,.14); }
    .cost-item:last-child { border-bottom: 0; }
    .program-details details { padding-inline: 20px; }
    .program-details summary { grid-template-columns: 27px minmax(0,1fr) 32px; gap: 10px; }
    .program-details details p { margin-left: 37px; margin-right: 5px; }
    .choice-cta { gap: 38px; padding: 29px 25px; border-radius: 27px; }
    .choice-cta h3 { font-size: 40px; }
    .choice-cta__actions { width: 100%; }
    .choice-cta__actions .button { min-height: 62px; height: auto; padding-block: 12px; text-align: center; }
    .control { padding-bottom: 70px; }
    .control-grid { grid-template-columns: 1fr; grid-auto-rows: auto; gap: 14px; }
    .control-card, .control-card--car, .control-card--route { grid-column: auto; min-height: 420px; padding: 25px; }
    .control-card--car img { right: -18%; bottom: -2%; width: 105%; }
    .control-card--phone img { right: -5%; bottom: -32%; width: 62%; }
    .control-card--shield img { right: -1%; bottom: -34%; width: 62%; }
    .control-card--route img { right: -5%; bottom: -47%; width: 70%; }
    .process-list { gap: 64px; }
    .process-step__media { height: 290px; }
    .process-step__copy { grid-template-columns: 42px 1fr; gap: 10px 16px; }
    .process-step__copy > span { grid-column: 2; }
    .benefits { overflow: hidden; }
    .benefit-grid, .rhythm-grid { display: flex; width: auto; margin-right: -14px; padding-right: 14px; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: x mandatory; scrollbar-width: none; }
    .benefit-grid::-webkit-scrollbar, .rhythm-grid::-webkit-scrollbar { display: none; }
    .benefit-card { flex: 0 0 min(86vw, 410px); scroll-snap-align: start; }
    .benefit-card:last-child { grid-column: auto; }
    .benefit-card__media { height: 280px; }
    .city-grid { grid-template-columns: 1fr; grid-auto-rows: 310px; gap: 14px; }
    .rhythm-card { flex: 0 0 min(86vw, 400px); height: 540px; scroll-snap-align: start; }
    .faq-layout { gap: 52px; }
    .faq-list summary { grid-template-columns: 35px minmax(0,1fr) 32px; min-height: 86px; font-size: 20px; }
    .faq-list details p { margin-left: 35px; margin-right: 0; }
    .conversion { min-height: auto; }
    .conversion-media { object-position: 26% center; }
    .conversion-layout { min-height: auto; padding-block: 90px; }
    .conversion-contact { display: grid; gap: 18px; margin-top: 36px; }
    .lead-form { padding: 23px; border-radius: 27px; }
    .role-options, .model-options { grid-template-columns: 1fr; }
    .role-options span, .model-options span { min-height: 42px; }
    .field-grid { grid-template-columns: 1fr; }
    .footer-main { padding-block: 70px 50px; }
    .footer-links { grid-template-columns: 1fr 1fr; gap: 40px 20px; }
    .footer-bottom { flex-direction: column; gap: 10px; }
    .whatsapp-float { right: 14px; bottom: 14px; width: 52px; min-height: 52px; padding: 0; justify-content: center; }
    .whatsapp-float span { display: none; }
}

@media (max-width: 390px) {
    .hero h1 { font-size: 61px; }
    .hero-lead { font-size: 15px; }
    .path-card { height: 515px; }
    .flex-price > strong { font-size: 92px; }
    .choice-cta h3 { font-size: 36px; }
    .control-card { min-height: 390px; }
    .control-card__copy h3 { font-size: 29px; }
    .footer-links { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
    .has-js [data-reveal] { opacity: 1; transform: none; }
    .ambient-pointer { display: none; }
}

@media (prefers-contrast: more) {
    :root { --muted: #425048; }
    .hero-lead, .section-heading--light .section-intro { color: var(--white); }
    .lead-form, .hero-aside { background: rgba(3,12,9,.94); }
}
