:root {
  --ink: #142943;
  --muted: #5e6d7e;
  --line: #dce4ec;
  --surface: #f4f7fa;
  --white: #ffffff;
  --blue: #0754b8;
  --blue-dark: #073d7b;
  --navy: #083c77;
  --orange: #ff7914;
  --orange-soft: #fff2e6;
  --sky: #edf5fd;
  --focus: #c65000;
  --green-soft: #e7f8ef;
  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 32px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 32px;
  --space-8: 40px;
  --space-9: 48px;
  --space-10: 64px;
  --space-11: 80px;
  --space-12: 96px;
  --page-gutter: var(--space-6);
  --section-space: 104px;
  --layout-gap: var(--space-12);
  --hero-space-top: 148px;
  --hero-space-bottom: 160px;
  --shell: 1240px;
  --header-height: 88px;
  --section-title-offset: var(--space-9);
  --font-h1: clamp(46px, 4.35vw, 62px);
  --font-h2: clamp(34px, 3.35vw, 48px);
  --font-h3: 26px;
  --line-h1: 1;
  --line-h2: 1.08;
  --line-h3: 1.2;
  --shadow: 0 18px 60px rgba(17, 34, 58, 0.1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: calc(var(--header-height) + 12px); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "SF Pro Display", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
h1, h2, h3 { text-wrap: balance; }
p, summary { text-wrap: pretty; }
.shell { width: min(calc(100% - (var(--page-gutter) * 2)), var(--shell)); margin-inline: auto; }
.section { padding: var(--section-space) 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 16px; top: 12px; z-index: 1000; padding: 10px 14px; color: #fff; background: var(--ink); border-radius: 8px; transform: translateY(calc(-100% - 24px)); }
.skip-link:focus { transform: translateY(0); }

.site-header { position: sticky; top: 0; z-index: 100; height: var(--header-height); background: rgba(255,255,255,.9); border-bottom: 1px solid rgba(15,28,43,.08); backdrop-filter: blur(18px); }
.header-inner { height: 100%; display: grid; grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); align-items: center; gap: 24px; }
.brand { display: inline-flex; align-items: center; font-size: 20px; font-weight: 900; letter-spacing: -.055em; line-height: 1; }
.brand-amp { padding: 5px 7px; margin: 0 2px; color: var(--white); background: var(--blue); transform: skew(-8deg); }
.brand-part-accent { color: var(--orange); }
.brand { grid-column: 1; justify-self: start; flex-shrink: 0; }
.brand-logo { width: 216px; height: auto; overflow: visible; }
.desktop-nav { grid-column: 2; display: flex; align-items: center; justify-content: center; gap: 30px; }
.desktop-nav a { color: #303842; font-size: 14px; font-weight: 650; transition: color .2s ease; }
.desktop-nav a:hover { color: var(--blue); }
.desktop-nav .contract-link { gap: 6px; color: var(--blue); }
.contract-link { display: inline-flex; align-items: center; }
.contract-link svg { width: 17px; height: 17px; flex: none; fill: none; stroke: currentColor; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }
.header-actions { grid-column: 3; justify-self: end; display: flex; align-items: center; justify-content: flex-end; gap: 15px; }
.header-phone { color: var(--muted); font-size: 14px; font-weight: 650; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 24px; border: 1px solid var(--blue); border-radius: 14px; color: var(--white); background: var(--blue); font-weight: 760; letter-spacing: -.015em; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(7,91,216,.22); background: #004fbe; }
.button:focus-visible, .text-link:focus-visible, button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible { outline: 3px solid var(--focus); outline-offset: 4px; }
.button-small { min-height: 42px; padding-inline: 17px; font-size: 13px; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span:not(.sr-only) { display: block; width: 23px; height: 2px; margin: 6px auto; background: var(--ink); transition: transform .2s ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
.mobile-nav { position: absolute; top: var(--header-height); left: 0; width: 100%; padding: 18px 24px 28px; background: var(--white); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
.mobile-nav a { display: block; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 18px; font-weight: 700; }
.mobile-nav .contract-link { display: flex; gap: 9px; color: var(--blue); }
.mobile-nav .contract-link svg { width: 20px; height: 20px; }

.hero { position: relative; overflow: hidden; padding: var(--hero-space-top) 0 0; background: var(--surface); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); align-items: center; gap: var(--space-9); padding-bottom: var(--hero-space-bottom); }
.eyebrow, .section-index { margin: 0 0 var(--space-6); color: var(--blue); font-size: 12px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.hero h1 { max-width: 720px; margin: 0; font-size: var(--font-h1); line-height: var(--line-h1); letter-spacing: -.052em; }
.hero h1 span { display: block; margin-top: 3px; color: var(--blue); }
.hero-lead { max-width: 500px; margin: var(--space-6) 0 0; color: var(--muted); font-size: 18px; line-height: 1.6; letter-spacing: -.01em; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: var(--space-5); margin-top: var(--space-7); }
.text-link { display: inline-flex; align-items: center; padding-block: 12px; border-bottom: 1px solid #aeb7c1; font-weight: 760; }
.hero-visual { position: relative; min-height: 488px; overflow: visible; isolation: isolate; }
.hero-visual::before { content: ""; position: absolute; inset: 66px 5% 48px 19%; z-index: -1; background: linear-gradient(145deg, #ff963d 0%, var(--orange) 54%, #ef6504 100%); border-radius: 36px; box-shadow: 0 30px 74px rgba(225,92,0,.18); }
.hero-visual::after { content: ""; position: absolute; right: 9%; bottom: 59px; z-index: 1; width: 84px; height: 4px; background: var(--white); box-shadow: 0 10px 0 var(--white); transform: rotate(-3deg); pointer-events: none; }
.hero-visual > .hero-van-cutout { position: absolute; left: -15%; bottom: 2px; z-index: 2; width: 120%; max-width: none; height: auto; object-fit: contain; border-radius: 0; filter: drop-shadow(0 22px 22px rgba(12,32,56,.18)); transform: scaleX(-1); transform-origin: center; }
.hero-price-badge { position: absolute; right: 0; top: 18px; z-index: 4; display: grid; min-width: 164px; padding: var(--space-4) var(--space-5); color: var(--white); background: var(--navy); border: 4px solid var(--white); border-radius: var(--radius-sm); box-shadow: 0 16px 36px rgba(8,60,119,.2); transform: rotate(1.5deg); }
.hero-price-badge span { color: #b9d8ff; font-size: 10px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.hero-price-badge strong { margin-top: 3px; font-size: 22px; line-height: 1.1; letter-spacing: -.03em; }
.hero-price-badge small { margin-top: 2px; color: #d4e4fb; font-size: 11px; font-weight: 650; }
.hero-photo-badge { position: absolute; left: 57%; bottom: 31px; z-index: 4; display: grid; width: max-content; max-width: 265px; gap: 2px; padding: 14px 18px; color: var(--ink); background: var(--white); border-left: 4px solid var(--navy); border-radius: 14px; box-shadow: 0 12px 30px rgba(8,60,119,.16); transform: translateX(-50%); }
.hero-photo-badge span { color: var(--blue); font-size: 10px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.hero-photo-badge strong { font-size: 14px; letter-spacing: -.02em; }
.hero-marquee { height: 58px; color: var(--white); background: var(--navy); overflow: hidden; }
.marquee-track { display: flex; align-items: center; width: max-content; height: 100%; animation: marquee 28s linear infinite; will-change: transform; }
.marquee-group { display: flex; flex: none; align-items: center; min-width: max-content; }
.marquee-group span { display: inline-flex; flex: none; align-items: center; gap: 34px; padding-left: 34px; font-size: 14px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; }
.marquee-group span::after { content: "•"; color: var(--orange); font-size: 12px; }
@keyframes marquee { to { transform: translate3d(-50%, 0, 0); } }

.needs-section { padding: var(--section-space) 0; color: var(--ink); background: var(--white); }
.needs-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: var(--space-11); align-items: start; }
.needs-intro .section-index { color: var(--blue); }
.needs-intro h2, .section-heading h2, .freedom-statement h2, .terms-head-grid h2, .business-copy h2, .reviews-copy h2, .faq-heading h2, .request-copy h2 { margin: 0; font-size: var(--font-h2); line-height: var(--line-h2); letter-spacing: -.043em; }
.needs-intro > p:not(.section-index):not(.contact-label) { max-width: 470px; margin: var(--space-6) 0 0; color: var(--muted); font-size: 18px; }
.needs-primary-actions { display: flex; align-items: center; flex-wrap: wrap; gap: var(--space-5); margin-top: var(--space-7); }
.action-phone { display: inline-flex; color: var(--blue); font-size: 18px; font-weight: 820; line-height: 1.25; border-bottom: 1px solid rgba(7,84,184,.35); }
.action-phone-light { color: var(--white); border-bottom-color: rgba(255,255,255,.45); }
.contact-label { margin: var(--space-8) 0 var(--space-3); color: var(--muted); font-size: 11px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.messenger-links { display: flex; flex-wrap: wrap; gap: 10px; }
.messenger-links a { display: inline-flex; min-height: 42px; align-items: center; gap: 9px; padding: 0 14px 0 8px; color: var(--blue-dark); background: var(--white); border: 1px solid var(--line); border-radius: 999px; font-size: 13px; font-weight: 760; transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease; }
.messenger-links a:hover { color: var(--blue); background: var(--sky); border-color: #b9d2ed; transform: translateY(-1px); }
.messenger-icon { display: grid; width: 28px; height: 28px; place-items: center; color: var(--blue); background: var(--sky); border-radius: 50%; }
.messenger-links a:nth-child(2) .messenger-icon { color: #665cac; background: #f0edff; }
.messenger-links a:nth-child(3) .messenger-icon { color: #168b4f; background: #e9f8ef; }
.messenger-icon svg { width: 16px; height: 16px; fill: currentColor; }
.messenger-icon .icon-cut { fill: var(--white); }
.needs-content { padding-top: 2px; }
.needs-cloud { display: flex; flex-wrap: wrap; gap: 10px; margin: 0; padding: 0; list-style: none; }
.needs-cloud li { padding: 10px 16px; color: var(--blue-dark); background: var(--sky); border-radius: 999px; font-size: 15px; font-weight: 600; letter-spacing: -.01em; }
.text-button { padding: 0; color: #99b1cc; background: none; border: 0; border-bottom: 1px solid currentColor; cursor: pointer; }
.button-light { color: var(--blue-dark); background: var(--white); border-color: var(--white); }
.button-light:hover { color: var(--white); background: var(--blue); border-color: var(--blue); }

.section-heading { display: grid; grid-template-columns: 1.4fr .6fr; gap: var(--space-10); align-items: end; margin-bottom: var(--space-9); }
.fleet-section { background: var(--surface); }
.fleet-section .section-heading h2 { max-width: 660px; }
.section-heading > p { max-width: 420px; margin: 0 0 5px; color: var(--muted); font-size: 17px; }
.vehicle-list { display: grid; gap: var(--space-4); }
.vehicle-row { display: grid; grid-template-columns: 24px 280px 1fr auto; gap: var(--space-6); align-items: center; padding: var(--space-6); background: var(--white); border: 1px solid var(--line); border-radius: 28px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.vehicle-row:hover { transform: translateY(-2px); border-color: #d4dce5; box-shadow: 0 18px 50px rgba(17,34,58,.08); }
.vehicle-number { align-self: start; padding-top: 6px; color: #8b96a2; font-size: 12px; font-weight: 800; }
.vehicle-media { position: relative; display: flex; min-height: 190px; align-items: center; justify-content: center; overflow: hidden; border-radius: var(--radius-sm); }
.vehicle-media img { width: 100%; height: 100%; min-height: 190px; object-fit: cover; transition: transform .45s ease; }
.vehicle-row:hover .vehicle-media img { transform: scale(1.025); }
.media-compact { background: #e7f0f9; }
.media-large { background: #e8edf2; }
.media-trailer { background: #fff0e4; }
.vehicle-use { margin: 0 0 8px; color: var(--blue); font-size: 11px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.vehicle-content h3 { margin: 0; font-size: var(--font-h3); line-height: var(--line-h3); letter-spacing: -.035em; }
.vehicle-content > p:not(.vehicle-use) { max-width: 540px; margin: 14px 0 20px; color: var(--muted); }
.vehicle-meta { display: flex; flex-wrap: wrap; gap: 9px 18px; color: #3f4b58; font-size: 14px; font-weight: 720; line-height: 1.35; }
.vehicle-meta span::before { content: "•"; margin-right: 8px; color: var(--orange); }
.vehicle-action { min-width: 170px; text-align: right; }
.price { margin: 0; font-size: 25px; font-weight: 850; letter-spacing: -.035em; }
.price small { color: var(--muted); font-size: 12px; font-weight: 600; }
.vehicle-order { display: inline-flex; align-items: center; gap: 20px; min-height: 46px; margin-top: 22px; padding: 0 18px; color: var(--blue); background: var(--sky); border: 1px solid #d3e3f4; border-radius: 12px; font-size: 14px; font-weight: 780; cursor: pointer; transition: transform .2s ease, background .2s ease; }
.vehicle-order:hover { transform: translateY(-2px); color: var(--white); background: var(--blue); }
.vehicle-order span { color: inherit; font-size: 18px; }
.fine-print { margin: 20px 0 0; color: #8b939d; font-size: 11px; }

.freedom-section { color: var(--white); background: var(--navy); }
.freedom-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: var(--layout-gap); align-items: start; }
.freedom-statement { position: sticky; top: 116px; }
.freedom-statement .section-index { color: #c3dcff; }
.freedom-statement h2 { max-width: 760px; }
.freedom-statement > p:not(.section-index) { max-width: 610px; margin: var(--space-6) 0 0; color: #d4e4fb; font-size: 18px; }
.freedom-cta { display: flex; align-items: center; gap: var(--space-5); margin-top: var(--space-7); }
.freedom-points { display: grid; grid-template-columns: 1fr; gap: var(--space-6); padding-top: var(--section-title-offset); }
.freedom-point { display: grid; grid-template-columns: 46px 1fr; gap: 0 var(--space-5); align-content: start; padding: 0 0 var(--space-6); border-bottom: 1px solid rgba(255,255,255,.2); }
.freedom-point:last-child { padding-bottom: 0; border-bottom: 0; }
.freedom-point span { display: grid; place-items: center; align-self: start; grid-row: 1 / span 2; width: 46px; height: 46px; color: var(--navy); background: var(--orange); border-radius: 50%; font-weight: 850; font-size: 13px; }
.freedom-point h3 { margin: 0; font-size: var(--font-h3); line-height: var(--line-h3); letter-spacing: -.025em; }
.freedom-point p { margin: 10px 0 0; color: #d4e4fb; }

.terms-section { background: var(--white); }
.terms-head { margin-bottom: var(--space-9); }
.terms-head-grid { max-width: 780px; }
.terms-head-grid h2 { max-width: 720px; }
.terms-head-grid p { max-width: 620px; margin: var(--space-6) 0 0; color: var(--muted); font-size: 17px; }
.terms-head-cta { margin-top: var(--space-7); }
.rental-process { margin-bottom: 0; }
.rental-steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--space-4); margin: 0; padding: 0; list-style: none; }
.rental-steps li { position: relative; display: grid; grid-template-rows: auto 1fr; min-height: 216px; gap: var(--space-6); padding: var(--space-6); background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); }
.rental-steps li:not(:last-child)::after { content: ""; position: absolute; right: -11px; top: 50%; z-index: 2; width: 10px; height: 10px; border-top: 2px solid var(--orange); border-right: 2px solid var(--orange); transform: translateY(-50%) rotate(45deg); }
.rental-steps span { display: grid; width: 42px; height: 42px; place-items: center; color: var(--blue); background: var(--white); border: 1px solid #cfe0f2; border-radius: 50%; font-size: 11px; font-weight: 850; }
.rental-step-copy { align-self: end; display: grid; gap: var(--space-5); }
.rental-steps strong { font-size: 23px; line-height: 1.15; letter-spacing: -.035em; }
.rental-steps small { min-height: 38px; color: var(--muted); font-size: 13px; line-height: 1.45; }
.rental-steps .rental-step-final { color: var(--white); background: var(--navy); border-color: var(--navy); }
.rental-steps .rental-step-final span { color: var(--navy); background: var(--orange); border-color: var(--orange); }
.rental-steps .rental-step-final small { color: #d4e4fb; }
.business-section { padding-top: 0; }
.business-panel { position: relative; display: grid; grid-template-columns: 1fr 1fr; min-height: 490px; overflow: hidden; color: var(--ink); background: var(--orange-soft); border-radius: var(--radius-lg); border: 1px solid #ffe0c2; }
.business-copy { position: relative; z-index: 2; align-self: center; padding: var(--space-9); }
.business-copy .section-index { color: var(--blue); }
.business-copy p:not(.section-index) { max-width: 560px; margin: var(--space-6) 0 var(--space-7); color: var(--muted); font-size: 18px; }
.business-actions .button { color: var(--white); background: var(--blue); border-color: var(--blue); }
.business-actions { display: flex; align-items: center; flex-wrap: wrap; gap: var(--space-5); }
.business-visual { position: relative; min-height: 360px; margin: 24px 24px 24px 0; overflow: hidden; background: #eef3f7; border-radius: 24px; }
.business-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(11,35,69,.45)); }
.business-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.business-caption { position: absolute; z-index: 2; left: 20px; top: 20px; padding: 9px 12px; color: var(--navy); background: rgba(255,255,255,.9); border-radius: 999px; font-size: 11px; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; backdrop-filter: blur(10px); }
.business-mini-card { position: absolute; z-index: 2; left: 20px; right: 20px; bottom: 20px; display: grid; gap: 3px; padding: 18px 20px; color: var(--ink); background: rgba(255,255,255,.9); border-radius: 16px; backdrop-filter: blur(12px); }
.business-mini-card strong { font-size: 17px; letter-spacing: -.025em; }
.business-mini-card small { color: var(--muted); }

.reviews-section { padding-top: 0; background: var(--white); }
.reviews-panel { position: relative; display: grid; grid-template-columns: .72fr 1.28fr; min-height: 620px; overflow: hidden; background: var(--sky); border: 1px solid #d7e7f7; border-radius: var(--radius-lg); }
.reviews-copy { position: relative; z-index: 3; align-self: center; padding: var(--space-10) var(--space-6) var(--space-10) var(--space-9); }
.reviews-intro { max-width: 470px; margin: var(--space-6) 0 0; color: var(--muted); font-size: 18px; }
.reviews-disclaimer { max-width: 430px; margin: var(--space-8) 0 0; padding-top: var(--space-5); color: #66798d; border-top: 1px solid #cbddef; font-size: 12px; line-height: 1.55; }
.reviews-stage { position: relative; min-width: 0; min-height: 620px; isolation: isolate; }
.reviews-stage::before { content: ""; position: absolute; right: -90px; top: -110px; z-index: -1; width: 430px; height: 430px; background: var(--orange); border-radius: 50%; opacity: .92; }
.reviews-stage::after { content: ""; position: absolute; right: 44px; bottom: 48px; z-index: -1; width: 110px; height: 6px; background: var(--orange); box-shadow: 0 18px 0 var(--orange); transform: rotate(-7deg); }
.reviews-phone { position: absolute; left: 48%; top: 52%; width: 278px; height: 520px; overflow: hidden; background: #f8fafc; border: 10px solid var(--ink); border-radius: 46px; box-shadow: 0 30px 70px rgba(20,41,67,.2); transform: translate(-50%, -50%) rotate(-5deg); }
.reviews-phone-notch { position: absolute; left: 50%; top: -1px; width: 116px; height: 26px; background: var(--ink); border-radius: 0 0 18px 18px; transform: translateX(-50%); }
.reviews-phone-header { display: flex; align-items: center; gap: var(--space-4); height: 78px; padding: 28px var(--space-5) var(--space-3); color: var(--white); background: var(--navy); font-size: 12px; letter-spacing: .025em; }
.reviews-phone-header span { font-size: 18px; }
.reviews-phone-screen { display: grid; gap: var(--space-4); padding: var(--space-6) var(--space-4); }
.reviews-phone-screen span { display: block; width: 76%; height: 72px; background: #e4edf6; border-radius: 16px 16px 16px 5px; }
.reviews-phone-screen span:nth-child(2) { width: 68%; margin-left: auto; background: #dceeff; border-radius: 16px 16px 5px; }
.reviews-phone-screen span:nth-child(3) { width: 82%; height: 94px; }
.review-message { position: absolute; z-index: 2; width: min(430px, 66%); padding: var(--space-6); background: rgba(255,255,255,.96); border: 1px solid #d6e0ea; border-radius: var(--radius-sm); box-shadow: 0 18px 45px rgba(20,41,67,.14); backdrop-filter: blur(10px); }
.review-message header { display: flex; align-items: center; gap: var(--space-3); }
.review-message header > span:last-child { display: grid; gap: 2px; }
.review-message header strong { font-size: 14px; line-height: 1.2; }
.review-message header small { color: var(--muted); font-size: 10px; font-weight: 650; letter-spacing: .02em; }
.review-message > p { margin: var(--space-4) 0 0; color: var(--ink); font-size: 16px; line-height: 1.5; letter-spacing: -.012em; }
.review-app-icon { display: grid; width: 38px; height: 38px; flex: none; place-items: center; border-radius: 50%; }
.review-app-icon svg { width: 19px; height: 19px; fill: currentColor; }
.review-app-telegram { color: var(--blue); background: var(--sky); }
.review-app-viber { color: #665cac; background: #f0edff; }
.review-app-whatsapp { color: #168b4f; background: #e9f8ef; }
.review-message-one { right: var(--space-7); top: var(--space-9); transform: rotate(1.2deg); }
.review-message-two { left: 0; top: 238px; transform: rotate(-1.8deg); }
.review-message-three { right: var(--space-9); bottom: var(--space-8); transform: rotate(.8deg); }

.faq-section { background: var(--surface); }
.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: var(--layout-gap); align-items: start; }
.faq-heading { position: sticky; top: 116px; }
.faq-facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 460px; gap: var(--space-5); margin: var(--space-7) 0 0; padding: 0; }
.faq-facts div { display: grid; min-width: 0; align-content: start; gap: var(--space-2); padding: 2px 0 2px var(--space-4); border-left: 3px solid var(--orange); }
.faq-facts dt { color: var(--blue); font-size: 10px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.faq-facts dd { display: grid; gap: 3px; margin: 0; color: var(--ink); line-height: 1.25; text-align: left; }
.faq-facts dd strong { font-size: 15px; font-weight: 820; letter-spacing: -.015em; }
.faq-facts dd span { color: var(--muted); font-size: 11px; font-weight: 650; }
.faq-actions { display: flex; align-items: center; flex-wrap: wrap; gap: var(--space-5); margin-top: var(--space-7); }
.faq-actions .button { min-height: 50px; }
.faq-list { margin-top: var(--section-title-offset); border-top: 1px solid #bcc6d0; }
.faq-list details { border-bottom: 1px solid #bcc6d0; }
.faq-list summary { position: relative; padding: var(--space-6) 52px var(--space-6) 0; font-size: 18px; font-weight: 760; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 0; top: 18px; display: grid; width: 36px; height: 36px; place-items: center; color: var(--blue); background: #e5effb; border-radius: 50%; font-size: 24px; font-weight: 400; transition: transform .2s ease, background .2s ease; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { max-width: 700px; margin: -4px 0 var(--space-6); color: var(--muted); }

.request-section { padding: var(--section-space) 0; color: var(--white); background: var(--navy); }
.request-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: var(--layout-gap); align-items: start; }
.request-layout > * { min-width: 0; }
.request-copy { position: sticky; top: 116px; }
.request-copy .section-index { color: #86b9f3; }
.request-copy > p:not(.section-index) { max-width: 520px; margin: var(--space-6) 0 0; color: #d0def0; font-size: 18px; }
.request-contact { margin-top: var(--space-8); }
.request-contact-phone { margin-bottom: var(--space-7); }
.request-contact .contact-label { margin: 0 0 11px; color: #bbd3ec; }
.request-contact .request-contact-phone + .contact-label { margin-top: 0; }
.request-contact .messenger-links { max-width: 470px; }
.request-form { position: relative; padding: var(--space-9); color: var(--ink); background: var(--white); border-radius: var(--radius-md); box-shadow: 0 30px 80px rgba(0,0,0,.18); }
.selection-summary { display: grid; gap: 5px; margin: -14px -14px 30px; padding: 18px 20px; color: var(--blue-dark); background: #edf5ff; border-radius: 12px; }
.selection-summary[hidden] { display: none; }
.selection-summary span { font-size: 10px; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.request-form label { display: grid; gap: 8px; margin-bottom: 20px; }
.request-form label > span { color: #394451; font-size: 13px; font-weight: 760; }
.request-form label em { float: right; color: #8b929a; font-weight: 500; font-style: normal; }
.request-form input, .request-form select, .request-form textarea { width: 100%; min-height: 52px; padding: 13px 14px; color: var(--ink); background: #fafbfc; border: 1px solid #cfd6dd; border-radius: 12px; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.request-form textarea { resize: vertical; }
.request-form input:focus, .request-form select:focus, .request-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(7,91,216,.1); }
.request-form .is-invalid { border-color: #c82d28; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field-error { min-height: 15px; color: #b62421; font-size: 11px; }
.form-submit { width: 100%; min-height: 56px; justify-content: space-between; border-radius: 14px; }
.form-note { margin: 12px 0 0; color: #9098a1; font-size: 11px; text-align: center; }
.form-success { position: absolute; inset: 0; z-index: 3; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 42px; color: var(--ink); background: var(--white); border-radius: inherit; text-align: center; }
.form-success[hidden] { display: none; }
.success-icon { display: grid; width: 62px; height: 62px; place-items: center; color: #126334; background: var(--green-soft); border-radius: 50%; font-size: 28px; }
.form-success h3 { margin: 22px 0 8px; font-size: var(--font-h3); line-height: var(--line-h3); letter-spacing: -.04em; }
.form-success p { max-width: 430px; margin: 0 0 22px; color: var(--muted); }
.form-success .text-button { color: var(--blue); }

.site-footer { padding: var(--space-7) 0; color: #d0def0; background: var(--navy); border-top: 1px solid rgba(255,255,255,.18); }
.footer-grid { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; }
.brand-footer { justify-self: start; color: var(--white); }
.footer-grid p { margin: 0; font-size: 12px; }
.footer-top-button { display: inline-flex; min-height: 44px; align-items: center; justify-content: center; justify-self: end; gap: 9px; padding: 0 16px; color: var(--white); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.3); border-radius: 12px; font-size: 13px; font-weight: 760; transition: color .2s ease, background .2s ease, transform .2s ease; }
.footer-top-button:hover { color: var(--navy); background: var(--white); transform: translateY(-2px); }
.footer-top-button span { font-size: 16px; }

.hero-enter { animation: heroIn .7s cubic-bezier(.2,.7,.2,1) both; }
.hero-enter-1 { animation-delay: .05s; }.hero-enter-2 { animation-delay: .13s; }.hero-enter-3 { animation-delay: .22s; }.hero-enter-4 { animation-delay: .31s; }
@keyframes heroIn { from { opacity: 0; transform: translateY(24px); } }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .desktop-nav, .header-phone { display: none; }
  .menu-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 38px; }
  .hero-visual { min-height: 410px; }
  .hero-visual::before { inset: 56px 4% 42px 18%; }
  .hero-visual > .hero-van-cutout { left: -13%; bottom: 0; width: 118%; }
  .needs-layout, .freedom-layout, .faq-layout, .request-layout { gap: var(--space-10); }
  .freedom-layout { grid-template-columns: .82fr 1.18fr; }
  .vehicle-row { grid-template-columns: 34px 220px 1fr; }
  .vehicle-action { grid-column: 3; display: flex; align-items: center; justify-content: space-between; text-align: left; }
  .vehicle-order { margin-top: 0; }
  .business-copy { padding: var(--space-9); }
}

@media (max-width: 800px) {
  :root { --header-height: 68px; --page-gutter: var(--space-4); --section-space: var(--space-11); --font-h1: clamp(42px, 7.2vw, 56px); --font-h2: 34px; --font-h3: 26px; }
  .brand-logo { width: 190px; }
  .header-actions > .button { display: none; }
  .menu-toggle { display: block; }
  .mobile-nav { top: 68px; }
  .hero { padding-top: 48px; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; gap: var(--space-8); padding-bottom: var(--space-10); }
  .hero-copy { max-width: 650px; }
  .hero-visual { min-height: 430px; margin-top: var(--space-8); }
  .hero-visual::before { inset: 50px 5% 42px 18%; }
  .hero-visual > .hero-van-cutout { left: -2%; bottom: 4px; width: 104%; }
  .hero-price-badge { right: var(--space-4); top: var(--space-4); transform: none; }
  .needs-section, .request-section { padding: var(--section-space) 0; }
  .needs-layout, .freedom-layout, .faq-layout, .request-layout { grid-template-columns: 1fr; }
  .needs-layout, .freedom-layout, .faq-layout, .request-layout { gap: var(--space-9); }
  .freedom-statement, .faq-heading, .request-copy { position: static; }
  .needs-content { margin-top: 8px; }
  .section-heading { grid-template-columns: 1fr; gap: var(--space-5); margin-bottom: var(--space-9); }
  .vehicle-row { position: relative; grid-template-columns: 1fr; gap: 20px; padding: 18px; }
  .vehicle-number { position: absolute; z-index: 3; left: 30px; top: 30px; padding: 6px 9px; color: var(--ink); background: rgba(255,255,255,.86); border-radius: 999px; backdrop-filter: blur(8px); }
  .vehicle-media, .vehicle-content, .vehicle-action { grid-column: 1; }
  .vehicle-media { min-height: 250px; }
  .vehicle-action { display: flex; align-items: center; }
  .freedom-statement { margin-bottom: 10px; }
  .freedom-points { padding-top: 0; }
  .rental-steps { grid-template-columns: 1fr; gap: 14px; }
  .rental-steps li { min-height: 150px; }
  .rental-steps small { min-height: 0; }
  .rental-steps li:not(:last-child)::after { left: 41px; right: auto; top: auto; bottom: -15px; width: 2px; height: 16px; background: var(--orange); border: 0; transform: none; }
  .business-panel { grid-template-columns: 1fr; }
  .business-visual { min-height: 320px; margin: 0 24px 24px; }
  .reviews-panel { grid-template-columns: 1fr; }
  .reviews-copy { padding: var(--space-9); }
  .reviews-stage { min-height: 610px; }
  .reviews-phone { left: 50%; }
  .faq-list { margin-top: 0; }
  .footer-grid { grid-template-columns: 1fr auto; }
  .footer-grid p { grid-column: 1 / -1; grid-row: 2; }
}

@media (max-width: 520px) {
  :root { --page-gutter: var(--space-3); --section-space: var(--space-10); --font-h1: clamp(38px, 10.8vw, 48px); --font-h2: 34px; --font-h3: 24px; }
  .brand { font-size: 18px; }
  .hero { padding-top: 41px; }
  .hero-lead { margin-top: 24px; font-size: 17px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 8px; margin-top: 28px; }
  .hero-actions .text-link { justify-content: center; border-bottom: 0; }
  .hero-visual { min-height: 390px; aspect-ratio: auto; margin-top: 0; padding: 0; overflow: hidden; border-radius: 26px; }
  .hero-visual::before { inset: 52px 18px 48px; border-radius: 26px; }
  .hero-visual::after { right: 36px; bottom: 58px; width: 58px; height: 3px; box-shadow: 0 8px 0 var(--white); }
  .hero-visual > .hero-van-cutout { left: -3%; bottom: 43px; width: 170%; }
  .hero-photo-badge { left: 50%; right: auto; bottom: 14px; width: calc(100% - 48px); max-width: 270px; padding: 10px 13px; transform: translateX(-50%); }
  .hero-price-badge { left: 50%; right: auto; top: 14px; min-width: 158px; padding: var(--space-3) var(--space-4); border-width: 3px; transform: translateX(-50%); }
  .hero-price-badge strong { font-size: 18px; }
  .hero-photo-badge strong { font-size: 12px; }
  .hero-marquee { height: 52px; }
  .marquee-group span { gap: 26px; padding-left: 26px; font-size: 13px; }
  .needs-cloud { gap: 5px; }
  .needs-cloud li { padding: 7px 9px; font-size: 11px; line-height: 1.2; }
  .needs-primary-actions { align-items: stretch; flex-direction: column; gap: 16px; }
  .needs-primary-cta { width: 100%; }
  .needs-primary-actions .action-phone,
  .freedom-cta .action-phone,
  .business-actions .action-phone,
  .faq-actions .action-phone { align-self: center; text-align: center; }
  .contact-label { margin-top: 34px; }
  .messenger-links a { flex: 1 1 135px; justify-content: center; }
  .needs-layout, .freedom-layout, .faq-layout, .request-layout { gap: var(--space-8); }
  .vehicle-row { grid-template-columns: 1fr; }
  .vehicle-media { min-height: 190px; }
  .vehicle-meta { display: grid; grid-template-columns: repeat(3, max-content); justify-content: start; gap: 6px 10px; font-size: 12px; white-space: nowrap; }
  .vehicle-meta span::before { margin-right: 5px; }
  .price { font-size: 21px; }
  .freedom-points { grid-template-columns: 1fr; }
  .freedom-point { grid-template-columns: 42px 1fr; min-height: 0; gap: 0 16px; }
  .freedom-point span { width: 42px; height: 42px; }
  .freedom-cta { align-items: stretch; flex-direction: column; }
  .terms-head { margin-bottom: var(--space-8); }
  .rental-steps li { min-height: 140px; padding: 22px; }
  .rental-steps li:not(:last-child)::after { left: 50%; transform: translateX(-50%); }
  .terms-head-cta { width: 100%; }
  .faq-facts { max-width: none; }
  .business-panel { width: calc(100% - 24px); border-radius: 22px; }
  .business-copy { padding: var(--space-8) var(--space-6); }
  .business-visual { display: grid; grid-template-rows: 210px auto; min-height: 0; margin: 0 var(--space-4) var(--space-4); background: var(--white); }
  .business-visual::after { display: none; }
  .business-visual img { position: relative; grid-row: 1; height: 210px; }
  .business-caption { left: var(--space-3); top: var(--space-3); padding: 7px 10px; font-size: 10px; }
  .business-mini-card { position: static; grid-row: 2; padding: var(--space-5); background: var(--white); border-radius: 0; }
  .business-actions { align-items: stretch; flex-direction: column; }
  .reviews-panel { width: calc(100% - 24px); border-radius: 22px; }
  .reviews-copy { padding: var(--space-8) var(--space-6); }
  .reviews-stage { display: grid; min-height: auto; gap: var(--space-4); padding: var(--space-6); }
  .reviews-phone { left: 50%; top: 50%; width: 220px; height: calc(100% - 36px); min-height: 490px; opacity: .2; transform: translate(-50%, -50%) rotate(-4deg); }
  .reviews-stage::before { right: -170px; top: -90px; width: 330px; height: 330px; }
  .reviews-stage::after { display: none; }
  .review-message { position: relative; inset: auto; width: auto; padding: var(--space-5); transform: none; }
  .review-message > p { font-size: 15px; }
  .faq-actions { align-items: stretch; flex-direction: column; }
  .faq-actions .button { width: 100%; }
  .request-layout { gap: var(--space-6); }
  .request-form { padding: var(--space-6) var(--space-4); border-radius: 22px; }
  .request-form label { gap: 6px; margin-bottom: 14px; }
  .request-form label > span { font-size: 12px; }
  .request-form input,
  .request-form select,
  .request-form textarea { min-height: 48px; padding: 11px 12px; border-radius: 11px; font-size: 15px; line-height: 1.25; }
  .request-form select { appearance: none; padding-right: 40px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='m3 6 5 5 5-5' fill='none' stroke='%23142943' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 13px center; background-size: 16px; }
  .request-form textarea { min-height: 112px; }
  .request-form .field-error:empty { display: none; }
  .form-submit { position: relative; min-width: 0; min-height: 50px; justify-content: center; padding-inline: 32px; font-size: 13px; white-space: nowrap; }
  .form-submit span { position: absolute; right: 16px; }
  .form-note { margin-top: 10px; font-size: 10px; line-height: 1.4; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { gap: 16px; }
  .footer-grid p { max-width: 220px; }
  .faq-facts { grid-template-columns: 1fr; gap: var(--space-4); }
  .faq-facts div { grid-template-columns: 92px minmax(0, 1fr); align-items: center; gap: var(--space-3); padding: 2px 0 2px var(--space-4); background: transparent; border: 0; border-left: 3px solid var(--orange); border-radius: 0; }
  .faq-facts dd { justify-items: end; text-align: right; }
  .faq-facts dd strong { font-size: 16px; }
}

.fine-print { color: var(--muted); }
.request-form label em { color: var(--muted); }
.request-form { scroll-margin-top: calc(var(--header-height) + 20px); }
.request-form .is-invalid:focus { border-color: #b62421; box-shadow: 0 0 0 4px rgba(182,36,33,.12); }
.freedom-section :focus-visible, .request-section :focus-visible, .site-footer :focus-visible { outline-color: var(--orange); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-delay: 0ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
}
