@import url("https://fonts.googleapis.com/css2?family=Alexandria:wght@400;500;600;700;800&display=swap");

:root {
  color-scheme: light;
  --bg: #f6f2e9;
  --bg-soft: #ece5d8;
  --surface: #fffdf8;
  --surface-strong: #ffffff;
  --ink: #0a1c2f;
  --ink-soft: #4f5e6b;
  --navy: #07192c;
  --navy-soft: #102b43;
  --gold: #dda957;
  --gold-light: #f3d69d;
  --green: #267b65;
  --red: #b64e4b;
  --line: rgba(10, 28, 47, 0.12);
  --glass: rgba(255, 253, 248, 0.82);
  --shadow: 0 24px 70px rgba(12, 27, 42, 0.13);
  --shadow-soft: 0 12px 34px rgba(12, 27, 42, 0.08);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --page: min(1180px, calc(100% - 40px));
}

[data-theme="dark"] {
  color-scheme: dark;
  --bg: #06111d;
  --bg-soft: #0b1b2b;
  --surface: #0d2032;
  --surface-strong: #132a3d;
  --ink: #f8f1e6;
  --ink-soft: #aebdca;
  --navy: #030b13;
  --navy-soft: #15354e;
  --gold: #e4b565;
  --gold-light: #f0d39d;
  --green: #51ad8f;
  --red: #ed8580;
  --line: rgba(231, 239, 245, 0.13);
  --glass: rgba(9, 25, 39, 0.86);
  --shadow: 0 26px 72px rgba(0, 0, 0, 0.36);
  --shadow-soft: 0 14px 34px rgba(0, 0, 0, 0.24);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 12% 8%, color-mix(in srgb, var(--gold) 12%, transparent), transparent 28rem),
    var(--bg);
  color: var(--ink);
  font-family: "Alexandria", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .3;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }
p { color: var(--ink-soft); line-height: 1.9; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -.035em; }

.site-header {
  position: fixed;
  top: 16px;
  inset-inline: 0;
  z-index: 50;
  width: var(--page);
  min-height: 70px;
  margin-inline: auto;
  padding: 10px 12px 10px 18px;
  display: flex;
  align-items: center;
  gap: 24px;
  border: 1px solid transparent;
  border-radius: 22px;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}
.site-header.is-scrolled {
  background: var(--glass);
  border-color: var(--line);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px) saturate(140%);
}
.brand { display: flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.brand img { width: 46px; height: 46px; object-fit: cover; border-radius: 15px; box-shadow: 0 7px 22px rgba(0,0,0,.18); }
.brand-name { font-size: 20px; font-weight: 800; letter-spacing: -.04em; }
.brand-name span { color: var(--gold); }
.site-nav { display: flex; align-items: center; gap: 6px; margin-inline: auto; }
.site-nav a {
  padding: 11px 14px;
  border-radius: 12px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
  transition: color .2s ease, background .2s ease;
}
.site-nav a:hover, .site-nav a.active { color: var(--ink); background: color-mix(in srgb, var(--surface) 72%, transparent); }
.header-actions { display: flex; align-items: center; gap: 7px; }
.icon-button, .menu-button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
}
.language-button { font-weight: 800; font-size: 13px; }
.menu-button { display: none; }
.icon-button svg, .menu-button svg { width: 19px; }

.button {
  min-height: 54px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 17px;
  font-weight: 700;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.button:hover { transform: translateY(-3px); }
.button-primary { background: var(--gold); color: #07192c; box-shadow: 0 14px 32px rgba(221,169,87,.25); }
.button-dark { background: var(--navy); color: #fff; }
.button-ghost { border-color: var(--line); background: var(--surface); }
.button svg { width: 20px; }

.home-main { overflow: hidden; }
.hero {
  width: var(--page);
  min-height: 820px;
  margin: 0 auto;
  padding: 135px 0 70px;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: clamp(36px, 7vw, 92px);
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow {
  width: fit-content;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
}
.eyebrow::before { content: ""; width: 34px; height: 2px; background: currentColor; }
.hero h1 { max-width: 720px; margin-bottom: 26px; font-size: clamp(49px, 6.2vw, 86px); line-height: 1.06; }
.hero h1 em { color: var(--gold); font-style: normal; position: relative; }
.hero h1 em::after { content: ""; position: absolute; inset-inline: 0; bottom: 2px; height: 9px; z-index: -1; border-radius: 99px; background: color-mix(in srgb, var(--gold) 28%, transparent); }
.hero-copy > p { max-width: 650px; margin-bottom: 30px; font-size: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-trust { margin-top: 30px; display: flex; align-items: center; gap: 14px; color: var(--ink-soft); font-size: 13px; font-weight: 600; }
.avatar-stack { display: flex; direction: ltr; }
.avatar-stack span { width: 35px; height: 35px; margin-left: -8px; display: grid; place-items: center; border: 3px solid var(--bg); border-radius: 50%; background: var(--navy-soft); color: white; font-size: 11px; }
.avatar-stack span:nth-child(2) { background: var(--green); }
.avatar-stack span:nth-child(3) { background: var(--gold); color: var(--navy); }

.hero-scene { position: relative; min-height: 590px; isolation: isolate; }
.hero-orbit {
  position: absolute;
  inset: 3% 6% 4%;
  border: 1px solid color-mix(in srgb, var(--gold) 42%, transparent);
  border-radius: 48% 52% 43% 57% / 60% 43% 57% 40%;
  animation: orbitMorph 9s ease-in-out infinite alternate;
}
.scene-card {
  position: absolute;
  inset: 7% 4% 9%;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 46px;
  background:
    linear-gradient(165deg, rgba(255,255,255,.08), transparent 35%),
    linear-gradient(145deg, #17364f, var(--navy) 66%);
  box-shadow: 0 42px 90px rgba(3,14,25,.28);
  transform: rotate(2.5deg);
}
.scene-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .26;
  background-image: linear-gradient(rgba(255,255,255,.17) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.17) 1px, transparent 1px);
  background-size: 54px 54px;
  transform: perspective(300px) rotateX(52deg) scale(1.4) translateY(24%);
}
.city-silhouette { position: absolute; inset-inline: 7%; bottom: 18%; height: 42%; opacity: .28; background: repeating-linear-gradient(90deg, transparent 0 7%, rgba(255,255,255,.24) 7% 13%, transparent 13% 17%); clip-path: polygon(0 100%,0 55%,8% 55%,8% 31%,17% 31%,17% 62%,25% 62%,25% 42%,34% 42%,34% 8%,43% 8%,43% 58%,51% 58%,51% 36%,60% 36%,60% 18%,70% 18%,70% 68%,78% 68%,78% 45%,88% 45%,88% 60%,100% 60%,100% 100%); }
.route-svg { position: absolute; inset: 15%; width: 70%; height: 70%; overflow: visible; }
.route-svg path { fill: none; stroke: var(--gold); stroke-width: 4; stroke-linecap: round; stroke-dasharray: 12 13; animation: routeDash 18s linear infinite; filter: drop-shadow(0 0 8px rgba(221,169,87,.45)); }
.route-svg circle { fill: var(--gold-light); stroke: var(--navy); stroke-width: 6; }
.hero-car { position: absolute; z-index: 3; width: min(70%, 440px); inset-inline-start: 13%; bottom: 2%; filter: drop-shadow(0 34px 28px rgba(0,0,0,.42)); animation: carHover 4.3s ease-in-out infinite; }
.live-pill, .destination-pill { position: absolute; z-index: 4; display: flex; align-items: center; gap: 9px; padding: 12px 15px; border: 1px solid rgba(255,255,255,.12); border-radius: 16px; background: rgba(5,17,30,.82); color: #fff; box-shadow: 0 18px 38px rgba(0,0,0,.22); backdrop-filter: blur(12px); font-size: 12px; font-weight: 700; }
.live-pill { top: 16%; inset-inline-start: -2%; }
.live-pill i { width: 9px; height: 9px; border-radius: 50%; background: #63d8a8; box-shadow: 0 0 0 6px rgba(99,216,168,.13); animation: pulse 1.7s ease infinite; }
.destination-pill { inset-inline-end: -1%; bottom: 22%; }
.destination-pill svg { width: 17px; color: var(--gold); }

.ticker { width: 100%; overflow: hidden; border-block: 1px solid var(--line); background: var(--surface); }
.ticker-track { width: max-content; min-height: 67px; display: flex; align-items: center; gap: 44px; animation: tickerMove 28s linear infinite; }
.ticker-track span { display: flex; align-items: center; gap: 11px; color: var(--ink-soft); font-size: 14px; font-weight: 700; white-space: nowrap; }
.ticker-track span::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }

.section { width: var(--page); margin: 0 auto; padding: 110px 0; }
.section-heading { max-width: 720px; margin-bottom: 50px; }
.section-heading h2 { margin-bottom: 18px; font-size: clamp(38px, 5vw, 64px); line-height: 1.13; }
.section-heading p { font-size: 17px; }
.section-heading.split { max-width: none; display: grid; grid-template-columns: 1fr .8fr; gap: 40px; align-items: end; }

.journey-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.journey-card { position: relative; min-height: 285px; padding: 26px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow-soft); transition: transform .25s ease, border-color .25s ease; }
.journey-card:hover { transform: translateY(-8px); border-color: color-mix(in srgb, var(--gold) 55%, var(--line)); }
.journey-card:nth-child(2) { transform: translateY(28px); }
.journey-card:nth-child(2):hover { transform: translateY(20px); }
.journey-card:nth-child(4) { transform: translateY(28px); }
.journey-card:nth-child(4):hover { transform: translateY(20px); }
.step-number { color: color-mix(in srgb, var(--gold) 65%, var(--ink)); font-size: 13px; font-weight: 800; }
.journey-icon { width: 54px; height: 54px; margin: 26px 0 22px; display: grid; place-items: center; border-radius: 18px; background: var(--bg-soft); color: var(--navy-soft); }
.journey-icon svg { width: 25px; }
.journey-card h3 { margin-bottom: 10px; font-size: 21px; }
.journey-card p { margin: 0; font-size: 14px; }

.duo-section { width: var(--page); margin: 30px auto 0; display: grid; grid-template-columns: 1.06fr .94fr; gap: 18px; }
.experience-card { position: relative; min-height: 600px; padding: clamp(30px, 5vw, 60px); overflow: hidden; border-radius: var(--radius-xl); }
.experience-card.ride { background: var(--navy); color: #fff; }
.experience-card.rental { background: var(--gold-light); color: #102033; }
.experience-card .eyebrow { color: var(--gold); }
.experience-card.rental .eyebrow { color: var(--green); }
.experience-card h2 { max-width: 510px; font-size: clamp(35px, 4.3vw, 58px); line-height: 1.14; }
.experience-card > p { max-width: 520px; color: rgba(255,255,255,.67); }
.experience-card.rental > p { color: rgba(16,32,51,.69); }
.mode-row { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 9px; }
.mode-chip { padding: 10px 13px; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; color: rgba(255,255,255,.86); font-size: 12px; font-weight: 700; }
.rental .mode-chip { border-color: rgba(16,32,51,.16); color: #102033; background: rgba(255,255,255,.28); }
.mini-map { position: absolute; inset-inline: 8%; bottom: -28%; height: 57%; border: 1px solid rgba(255,255,255,.1); border-radius: 38px; background: linear-gradient(125deg, rgba(255,255,255,.04), rgba(255,255,255,.11)); transform: perspective(600px) rotateX(54deg) rotateZ(-5deg); }
.mini-map::after { content: ""; position: absolute; inset: 20% 14%; border: 4px dashed var(--gold); border-radius: 50%; }
.rental-visual { position: absolute; inset-inline-end: -8%; bottom: -5%; width: 78%; filter: drop-shadow(0 30px 28px rgba(20,33,45,.25)); transform: rotate(-8deg); }

.trust-panel { position: relative; padding: clamp(36px, 6vw, 72px); overflow: hidden; border-radius: var(--radius-xl); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.trust-panel::after { content: ""; position: absolute; width: 280px; height: 280px; inset-inline-end: -110px; top: -110px; border: 60px solid color-mix(in srgb, var(--gold) 15%, transparent); border-radius: 50%; }
.trust-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: center; }
.trust-copy h2 { font-size: clamp(38px, 5vw, 64px); line-height: 1.14; }
.trust-list { display: grid; gap: 12px; }
.trust-item { padding: 20px; display: grid; grid-template-columns: 48px 1fr; gap: 15px; align-items: center; border-radius: 19px; background: var(--bg); }
.trust-item i { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 16px; background: var(--surface); color: var(--green); }
.trust-item i svg { width: 22px; }
.trust-item h3 { margin: 0 0 6px; font-size: 16px; }
.trust-item p { margin: 0; font-size: 13px; line-height: 1.7; }

.cta-section { width: var(--page); margin: 0 auto 90px; position: relative; min-height: 390px; padding: clamp(38px, 7vw, 84px); display: grid; place-items: center; overflow: hidden; border-radius: var(--radius-xl); background: linear-gradient(135deg, var(--navy-soft), var(--navy)); color: #fff; text-align: center; }
.cta-section::before, .cta-section::after { content: ""; position: absolute; border: 1px solid rgba(221,169,87,.32); border-radius: 50%; }
.cta-section::before { width: 530px; height: 530px; inset-inline-start: -240px; top: -320px; }
.cta-section::after { width: 340px; height: 340px; inset-inline-end: -130px; bottom: -220px; }
.cta-content { position: relative; z-index: 2; max-width: 720px; }
.cta-content h2 { margin-bottom: 16px; font-size: clamp(39px, 5vw, 66px); }
.cta-content p { color: rgba(255,255,255,.7); }
.cta-content .hero-actions { justify-content: center; margin-top: 28px; }

.inner-main { min-height: 70vh; padding-top: 126px; }
.inner-hero { width: var(--page); min-height: 400px; margin: 0 auto 35px; padding: clamp(38px, 7vw, 78px); position: relative; display: grid; align-items: end; overflow: hidden; border-radius: var(--radius-xl); background: linear-gradient(140deg, var(--navy-soft), var(--navy)); color: #fff; }
.inner-hero::before { content: ""; position: absolute; inset: 0; opacity: .18; background-image: radial-gradient(circle at 2px 2px, white 1.5px, transparent 0); background-size: 36px 36px; }
.inner-hero::after { content: ""; position: absolute; width: 350px; height: 350px; inset-inline-end: -90px; top: -120px; border: 58px solid rgba(221,169,87,.15); border-radius: 50%; }
.inner-hero-content { position: relative; z-index: 2; max-width: 780px; }
.breadcrumb { margin-bottom: 45px; display: flex; gap: 9px; color: rgba(255,255,255,.62); font-size: 13px; }
.inner-hero h1 { margin-bottom: 18px; font-size: clamp(43px, 6vw, 75px); }
.inner-hero p { max-width: 690px; margin: 0; color: rgba(255,255,255,.7); font-size: 16px; }
.content-layout { width: var(--page); margin: 0 auto; padding: 45px 0 100px; display: grid; grid-template-columns: 260px 1fr; gap: 32px; align-items: start; }
.side-card { position: sticky; top: 110px; padding: 18px; border: 1px solid var(--line); border-radius: 22px; background: var(--surface); }
.side-card strong { display: block; margin: 4px 8px 13px; }
.side-card a { display: block; padding: 11px 12px; border-radius: 12px; color: var(--ink-soft); font-size: 13px; }
.side-card a:hover { background: var(--bg-soft); color: var(--ink); }
.article-card { padding: clamp(26px, 5vw, 58px); border: 1px solid var(--line); border-radius: var(--radius-xl); background: var(--surface); box-shadow: var(--shadow-soft); }
.article-section { padding-block: 12px 36px; border-bottom: 1px solid var(--line); scroll-margin-top: 120px; }
.article-section + .article-section { padding-top: 36px; }
.article-section:last-child { border-bottom: 0; padding-bottom: 0; }
.article-section h2 { font-size: clamp(25px, 3vw, 36px); }
.article-section h3 { margin-top: 28px; font-size: 19px; }
.article-section p, .article-section li { color: var(--ink-soft); line-height: 1.9; font-size: 15px; }
.article-section ul { padding-inline-start: 22px; }
.update-note { margin-bottom: 26px; padding: 14px 16px; border-radius: 14px; background: var(--bg); color: var(--ink-soft); font-size: 13px; }

.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.support-card { min-height: 230px; padding: 25px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 24px; background: var(--surface); box-shadow: var(--shadow-soft); transition: transform .2s ease; }
.support-card:hover { transform: translateY(-6px); }
.support-card .journey-icon { margin: 0 0 22px; }
.support-card h2 { font-size: 21px; }
.support-card p { font-size: 14px; }
.support-card a { margin-top: auto; color: var(--green); font-size: 14px; font-weight: 700; }
.faq-list { display: grid; gap: 10px; }
.faq-item { border: 1px solid var(--line); border-radius: 18px; background: var(--surface); overflow: hidden; }
.faq-question { width: 100%; padding: 20px; display: flex; align-items: center; justify-content: space-between; gap: 16px; border: 0; background: transparent; text-align: start; font-weight: 700; }
.faq-question svg { width: 19px; transition: transform .25s ease; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-answer p { padding: 0 20px 20px; margin: 0; font-size: 14px; }
.faq-item.is-open .faq-answer { max-height: 220px; }
.faq-item.is-open .faq-question svg { transform: rotate(45deg); }

.site-footer { width: var(--page); margin: 0 auto 26px; overflow: hidden; border-radius: 30px; background: var(--navy); color: #fff; }
.footer-main { padding: 42px; display: grid; grid-template-columns: 1.4fr repeat(2, .8fr); gap: 44px; }
.footer-brand p { max-width: 420px; color: rgba(255,255,255,.55); font-size: 14px; }
.footer-title { display: block; margin-bottom: 15px; color: var(--gold); font-size: 13px; font-weight: 800; }
.footer-links { display: grid; gap: 11px; }
.footer-links a { color: rgba(255,255,255,.7); font-size: 13px; }
.footer-links a:hover { color: #fff; }
.footer-bottom { padding: 19px 42px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.09); color: rgba(255,255,255,.46); font-size: 12px; }

[data-reveal] { animation: revealIn .78s cubic-bezier(.2,.8,.2,1) both; }
[data-reveal-delay="1"] { animation-delay: .1s; }
[data-reveal-delay="2"] { animation-delay: .2s; }
[data-reveal-delay="3"] { animation-delay: .3s; }

@keyframes routeDash { to { stroke-dashoffset: -250; } }
@keyframes revealIn { from { transform: translateY(25px); } to { transform: none; } }
@keyframes pulse { 50% { box-shadow: 0 0 0 10px rgba(99,216,168,0); } }
@keyframes carHover { 50% { transform: translateY(-12px) rotate(1deg); } }
@keyframes orbitMorph { to { border-radius: 56% 44% 55% 45% / 43% 56% 44% 57%; transform: rotate(4deg); } }
@keyframes tickerMove { to { transform: translateX(-50%); } }
html[dir="rtl"] .ticker-track { animation-direction: reverse; }

@media (max-width: 980px) {
  :root { --page: min(100% - 28px, 760px); }
  .site-header { top: 10px; }
  .site-nav { position: fixed; top: 90px; inset-inline: 14px; padding: 12px; display: grid; gap: 4px; border: 1px solid var(--line); border-radius: 22px; background: var(--surface); box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: .25s ease; }
  .menu-open .site-nav { opacity: 1; visibility: visible; transform: none; }
  .site-nav a { padding: 14px; }
  .menu-button { display: grid; }
  .hero { min-height: auto; padding-top: 125px; grid-template-columns: 1fr; text-align: center; }
  .hero-copy { display: grid; justify-items: center; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero-scene { width: min(100%, 650px); min-height: 560px; margin-inline: auto; }
  .journey-grid { grid-template-columns: repeat(2, 1fr); }
  .journey-card:nth-child(even), .journey-card:nth-child(even):hover { transform: none; }
  .duo-section { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; gap: 35px; }
  .content-layout { grid-template-columns: 1fr; }
  .side-card { position: static; display: flex; overflow-x: auto; }
  .side-card strong { display: none; }
  .side-card a { flex: 0 0 auto; }
  .support-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --page: calc(100% - 24px); --radius-xl: 28px; }
  .site-header { min-height: 64px; padding: 8px; border-radius: 19px; background: var(--glass); border-color: var(--line); backdrop-filter: blur(16px); }
  .site-header { gap: 6px; justify-content: space-between; }
  .site-header .brand { position: absolute; inset-inline-start: 8px; top: 8px; min-width: 42px; }
  .brand img { width: 42px; height: 42px; border-radius: 13px; }
  .site-header .brand-name { display: none; }
  .header-actions { position: absolute; inset-inline-end: 8px; top: 8px; margin: 0; gap: 5px; }
  .icon-button, .menu-button { width: 40px; height: 40px; border-radius: 12px; }
  .hero { padding-top: 112px; padding-bottom: 45px; gap: 22px; }
  .hero-copy { width: 100%; min-width: 0; }
  .hero h1 { width: 100%; max-width: 100%; font-size: clamp(36px, 10.2vw, 44px); }
  .hero-copy > p { font-size: 15px; }
  .hero-actions { width: 100%; flex-direction: column; }
  .hero-actions .button { width: 100%; flex: none; padding-inline: 14px; }
  .hero-trust { align-items: flex-start; text-align: start; }
  .hero-scene { min-height: 420px; }
  .scene-card { inset: 5% 1% 8%; border-radius: 32px; }
  .hero-car { width: 74%; inset-inline-start: 11%; }
  .live-pill { inset-inline-start: 2%; }
  .destination-pill { inset-inline-end: 1%; bottom: 19%; }
  .section { padding: 75px 0; }
  .section-heading { margin-bottom: 32px; }
  .section-heading.split { grid-template-columns: 1fr; gap: 4px; }
  .section-heading h2 { font-size: 37px; }
  .journey-grid { grid-template-columns: 1fr; }
  .journey-card { min-height: 235px; }
  .journey-card:nth-child(n), .journey-card:nth-child(n):hover { transform: none; }
  .experience-card { min-height: 540px; padding: 29px; }
  .experience-card h2 { font-size: 35px; }
  .rental-visual { width: 93%; inset-inline-end: -14%; }
  .trust-panel { padding: 27px 20px; }
  .trust-item { padding: 15px; }
  .cta-section { min-height: 430px; padding: 30px 20px; }
  .inner-main { padding-top: 100px; }
  .inner-hero { min-height: 360px; padding: 28px; }
  .breadcrumb { margin-bottom: 35px; }
  .content-layout { padding-top: 15px; }
  .article-card { padding: 23px 18px; }
  .footer-main { padding: 32px 24px; grid-template-columns: 1fr; gap: 27px; }
  .footer-bottom { padding: 18px 24px; flex-direction: column; }
}

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