:root {
  --navy: #1E3A5F;
  --navy-deep: #15293F;
  --navy-darker: #0F1F30;
  --navy-soft: #2C4A70;
  --orange: #F26419;
  --orange-soft: #FF7A2D;
  --cream: #FAF7F2;
  --cream-warm: #F4EEE1;
  --ink: #0F1A2A;
  --ink-muted: #5C6D82;
  --line: rgba(15, 26, 42, 0.08);
  --line-mid: rgba(15, 26, 42, 0.14);
  --line-dark: rgba(250, 247, 242, 0.1);
  --line-dark-mid: rgba(250, 247, 242, 0.18);

  --radius: 20px;
  --radius-sm: 12px;
  --radius-lg: 28px;

  --shadow-sm: 0 2px 8px rgba(15, 26, 42, 0.04), 0 1px 2px rgba(15, 26, 42, 0.03);
  --shadow-md: 0 8px 24px rgba(15, 26, 42, 0.06), 0 2px 6px rgba(15, 26, 42, 0.03);
  --shadow-lg: 0 24px 56px rgba(15, 26, 42, 0.1), 0 6px 12px rgba(15, 26, 42, 0.04);
  --shadow-orange: 0 12px 32px rgba(242, 100, 25, 0.25);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Manrope", system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  font-weight: 400;
  font-size: 16px;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--orange-soft));
  width: 0%;
  z-index: 200;
  transition: width 0.08s linear;
  box-shadow: 0 0 14px rgba(242, 100, 25, 0.55);
  pointer-events: none;
}

/* ===== NAV ===== */
nav.top {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(15, 31, 48, 0.7);
  border-bottom: 1px solid var(--line-dark);
  transition: background 0.3s var(--ease), padding 0.3s var(--ease);
}

nav.top.scrolled {
  background: rgba(15, 31, 48, 0.92);
  padding: 12px 32px;
}

nav.top .brand img {
  height: 32px;
  width: auto;
  display: block;
}

nav.top .links {
  display: flex;
  gap: 4px;
  align-items: center;
}

nav.top .links a {
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(250, 247, 242, 0.7);
  border-radius: 8px;
  transition: all 0.25s var(--ease);
  position: relative;
}

nav.top .links a:hover {
  color: var(--cream);
  background: rgba(250, 247, 242, 0.05);
}

nav.top .links a.active {
  color: var(--cream);
  background: rgba(242, 100, 25, 0.15);
}

nav.top .lang {
  display: flex;
  gap: 2px;
  background: rgba(250, 247, 242, 0.04);
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 3px;
}

nav.top .lang a {
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(250, 247, 242, 0.55);
  border-radius: 999px;
  transition: all 0.2s;
}

nav.top .lang a:hover { color: var(--cream); }

nav.top .lang a.active {
  background: var(--orange);
  color: white;
  box-shadow: 0 2px 8px rgba(242, 100, 25, 0.3);
}

nav.top .cta {
  background: var(--orange);
  color: white;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s var(--ease);
  box-shadow: 0 4px 12px rgba(242, 100, 25, 0.25);
}

nav.top .cta:hover {
  background: var(--orange-soft);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(242, 100, 25, 0.35);
}

/* =====================================================
   MOBILE NAV WITH BURGER MENU
   ===================================================== */

/* Burger button — hidden on desktop */
.burger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--cream);
  z-index: 110;
}

.burger svg {
  width: 24px;
  height: 24px;
  display: block;
}

/* Mobile drawer — hidden by default */
.mobile-drawer,
.mobile-drawer-overlay { display: none; }

@media (max-width: 900px) {
  nav.top {
    padding: 12px 16px;
    gap: 10px;
  }
  nav.top .brand img { height: 26px; }
  /* Hide desktop links & lang pill */
  nav.top .links { display: none; }
  nav.top .lang { display: none; }
  /* Show burger */
  nav.top .burger { display: inline-flex; align-items: center; justify-content: center; }
  /* CTA smaller, one line */
  nav.top .cta {
    padding: 9px 14px;
    font-size: 12px;
    white-space: nowrap;
    letter-spacing: 0;
  }
}

@media (max-width: 420px) {
  nav.top .cta { padding: 8px 12px; font-size: 11px; }
  nav.top .brand img { height: 22px; }
}

/* Drawer panel */
.mobile-drawer {
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 85%);
  height: 100vh;
  background: var(--navy-deep);
  padding: 72px 24px 32px;
  z-index: 120;
  transition: right 0.3s var(--ease);
  box-shadow: -20px 0 40px rgba(0, 0, 0, 0.35);
  overflow-y: auto;
}

.mobile-drawer.open { right: 0; }

.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 26, 42, 0.65);
  backdrop-filter: blur(4px);
  z-index: 115;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-drawer-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 34px; height: 34px;
  border: none;
  background: rgba(250, 247, 242, 0.08);
  color: var(--cream);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
}

.mobile-drawer-close:hover {
  background: rgba(242, 100, 25, 0.2);
  color: var(--orange);
}

.mobile-drawer-section {
  margin-bottom: 28px;
}

.mobile-drawer-section h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.45);
  margin-bottom: 10px;
}

.mobile-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mobile-drawer-links a {
  padding: 12px 14px;
  color: var(--cream);
  font-size: 16px;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.2s;
}

.mobile-drawer-links a:hover,
.mobile-drawer-links a.active {
  background: rgba(242, 100, 25, 0.12);
  color: var(--orange-soft);
}

.mobile-drawer-lang {
  display: flex;
  gap: 6px;
}

.mobile-drawer-lang a {
  flex: 1;
  text-align: center;
  padding: 12px;
  background: rgba(250, 247, 242, 0.06);
  color: rgba(250, 247, 242, 0.7);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: all 0.2s;
  border: 1px solid rgba(250, 247, 242, 0.08);
}

.mobile-drawer-lang a.active {
  background: var(--orange);
  color: white;
  border-color: var(--orange);
}

.mobile-drawer-lang a:hover:not(.active) {
  background: rgba(250, 247, 242, 0.1);
  color: var(--cream);
}

/* =====================================================
   MOBILE: Hero top spacing fix (star plaque overlap)
   ===================================================== */
@media (max-width: 900px) {
  section.hero {
    padding-top: 100px !important;
    min-height: auto;
  }
  .hero-eyebrow--google {
    font-size: 12px;
    padding: 8px 14px;
    margin-bottom: 20px;
  }
  .hero-eyebrow--google .stars { font-size: 12px; }

  /* Breadcrumbs on detail pages also need extra top */
  .breadcrumbs { padding-top: 90px !important; }

  /* Fleet/terms hero also need extra top */
  .fleet-hero,
  .rterms-hero { padding-top: 40px !important; }
}

/* =====================================================
   FOOTER: 2 columns on mobile
   ===================================================== */
@media (max-width: 860px) {
  .footer-top {
    grid-template-columns: 1fr 1fr !important;
    gap: 28px !important;
  }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 420px) {
  .footer-top { grid-template-columns: 1fr !important; }
  .footer-brand { grid-column: auto; }
}

/* Investor landing hero padding on mobile */
@media (max-width: 900px) {
  .invest-hero,
  section.hero-invest,
  .hero-invest {
    padding-top: 100px !important;
  }
}

/* ===== HERO ===== */
section.hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy-deep);
  color: var(--cream);
  padding: 160px 0 100px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 1200px 600px at 85% 15%, rgba(242, 100, 25, 0.18), transparent 60%),
    radial-gradient(ellipse 900px 500px at 10% 85%, rgba(44, 74, 112, 0.6), transparent 65%),
    radial-gradient(ellipse 600px 400px at 50% 50%, rgba(30, 58, 95, 0.3), transparent 70%);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: float 20s ease-in-out infinite;
  will-change: transform;
}

.orb.orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(242, 100, 25, 0.3);
  top: 15%;
  right: 10%;
}

.orb.orb-2 {
  width: 500px;
  height: 500px;
  background: rgba(44, 74, 112, 0.5);
  bottom: 10%;
  left: 5%;
  animation-delay: -10s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.1); }
}

.hero .container {
  position: relative;
  z-index: 2;
  will-change: transform, opacity;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(242, 100, 25, 0.12);
  border: 1px solid rgba(242, 100, 25, 0.25);
  font-size: 13px;
  font-weight: 500;
  color: var(--orange-soft);
  letter-spacing: 0.01em;
  margin-bottom: 40px;
  opacity: 0;
  animation: fade-up 0.9s var(--ease) 0.1s forwards;
}

.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(242, 100, 25, 0.6); }
  50% { opacity: 0.6; box-shadow: 0 0 0 8px rgba(242, 100, 25, 0); }
}

/* Word-by-word heading reveal (hero h1) */
.hero h1 {
  font-size: clamp(42px, 7vw, 88px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin-bottom: 32px;
  max-width: 16ch;
  color: var(--cream);
}

.hero h1 .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(36px);
  animation: word-reveal 0.9s var(--ease) forwards;
  will-change: transform, opacity;
}

@keyframes word-reveal {
  to { opacity: 1; transform: none; }
}

.hero h1 .accent {
  color: var(--orange);
  position: relative;
  display: inline-block;
}

.hero h1 .accent::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 0.06em;
  height: 0.12em;
  background: rgba(242, 100, 25, 0.2);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: underline-draw 0.8s var(--ease) 1.2s forwards;
}

@keyframes underline-draw {
  to { transform: scaleX(1); }
}

.hero p.lead {
  font-size: clamp(17px, 1.5vw, 21px);
  max-width: 62ch;
  color: rgba(250, 247, 242, 0.75);
  font-weight: 400;
  line-height: 1.55;
  margin-bottom: 48px;
  opacity: 0;
  animation: fade-up 0.9s var(--ease) 0.75s forwards;
}

.hero p.lead strong {
  color: var(--cream);
  font-weight: 600;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 80px;
  opacity: 0;
  animation: fade-up 0.9s var(--ease) 0.9s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--orange);
  color: white;
  box-shadow: var(--shadow-orange);
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 80%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 70%
  );
  transition: none;
  pointer-events: none;
}

.btn-primary:hover {
  background: var(--orange-soft);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(242, 100, 25, 0.35);
}

.btn-primary:hover::before {
  animation: btn-shimmer 0.9s ease;
}

@keyframes btn-shimmer {
  0% { left: -100%; }
  100% { left: 180%; }
}

.btn-ghost {
  background: rgba(250, 247, 242, 0.06);
  color: var(--cream);
  border: 1px solid rgba(250, 247, 242, 0.18);
}

.btn-ghost:hover {
  background: rgba(250, 247, 242, 0.1);
  border-color: rgba(250, 247, 242, 0.3);
}

.btn .arrow {
  transition: transform 0.25s var(--ease);
  display: inline-block;
}

.btn:hover .arrow {
  transform: translateX(4px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2px;
  padding: 32px;
  background: rgba(250, 247, 242, 0.03);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  animation: fade-up 0.9s var(--ease) 1.05s forwards;
}

.hero-stat {
  padding: 12px 20px;
  position: relative;
}

.hero-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 10%;
  bottom: 10%;
  right: 0;
  width: 1px;
  background: var(--line-dark);
}

@media (max-width: 860px) {
  .hero-stat:not(:last-child)::after { display: none; }
}

.hero-stat .label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.5);
  margin-bottom: 8px;
}

.hero-stat .value {
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.025em;
}

.hero-stat .value .suffix {
  color: var(--orange);
  font-size: 0.7em;
  margin-left: 2px;
}

.hero-stat .note {
  font-size: 12px;
  color: rgba(250, 247, 242, 0.55);
  line-height: 1.4;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}

/* ===== SECTIONS ===== */
section {
  padding: 120px 0;
  position: relative;
}

section.dark {
  background: var(--navy-deep);
  color: var(--cream);
}

section.cream-warm {
  background: var(--cream-warm);
}

.section-head {
  margin-bottom: 72px;
  max-width: 780px;
}

h2 {
  font-size: clamp(34px, 4.8vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 20px;
}

h2 .accent { color: var(--orange); }

.section-head p.subtitle {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-muted);
  line-height: 1.6;
  max-width: 62ch;
}

section.dark .section-head p.subtitle {
  color: rgba(250, 247, 242, 0.7);
}

/* ===== PROPOSITION ===== */
.prop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.prop-card {
  background: white;
  padding: 40px 36px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

.prop-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s var(--ease);
}

.prop-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(242, 100, 25, 0.2);
}

.prop-card:hover::before { transform: scaleX(1); }

.prop-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-soft) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: white;
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(242, 100, 25, 0.25);
  transition: transform 0.35s var(--ease);
}

.prop-card:hover .prop-icon {
  transform: rotate(-4deg) scale(1.05);
}

.prop-card h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.prop-card p {
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.65;
}

/* ===== STEPS ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.step {
  background: white;
  padding: 36px 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: all 0.3s var(--ease);
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-num {
  font-family: "IBM Plex Mono", monospace;
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  display: inline-block;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--orange);
}

.step h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.step p {
  color: var(--ink-muted);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ===== ECONOMICS ===== */
.econ-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 960px) {
  .econ-grid { grid-template-columns: 1fr 1fr; }
}

.scenario {
  background: rgba(250, 247, 242, 0.04);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.4s var(--ease);
}

.scenario:hover {
  transform: translateY(-4px);
}

.scenario--base {
  border-color: rgba(242, 100, 25, 0.35);
  background: linear-gradient(180deg, rgba(242, 100, 25, 0.06) 0%, rgba(250, 247, 242, 0.03) 100%);
  box-shadow: 0 24px 60px rgba(242, 100, 25, 0.1);
}

.scenario-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.scenario--base .scenario-badge {
  background: var(--orange);
  color: white;
}

.scenario--cons .scenario-badge {
  background: rgba(250, 247, 242, 0.1);
  color: rgba(250, 247, 242, 0.75);
}

.scenario h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.scenario .assumptions {
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  color: rgba(250, 247, 242, 0.55);
  margin-bottom: 28px;
}

.econ-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid rgba(250, 247, 242, 0.06);
  font-size: 15px;
  gap: 16px;
}

.econ-line .key {
  color: rgba(250, 247, 242, 0.72);
  flex: 1;
}

.econ-line .val {
  font-family: "IBM Plex Mono", monospace;
  color: var(--cream);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.econ-line.subtract .val {
  color: rgba(250, 247, 242, 0.6);
}

.econ-line.subtract .val::before {
  content: "− ";
  opacity: 0.6;
}

.econ-line.sub {
  padding: 7px 0 7px 20px;
  font-size: 13px;
  border: none;
}

.econ-line.sub .key { color: rgba(250, 247, 242, 0.5); }

.econ-line.sub .val {
  color: rgba(250, 247, 242, 0.6);
  font-weight: 500;
}

.profit-box {
  margin-top: 28px;
  padding: 28px 24px;
  background: rgba(242, 100, 25, 0.1);
  border: 1px solid rgba(242, 100, 25, 0.25);
  border-radius: var(--radius);
}

.scenario--cons .profit-box {
  background: rgba(250, 247, 242, 0.05);
  border-color: var(--line-dark-mid);
}

.profit-box .plabel {
  font-size: 13px;
  font-weight: 500;
  color: rgba(250, 247, 242, 0.7);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.profit-box .pvalue {
  font-size: 44px;
  font-weight: 800;
  color: var(--cream);
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.scenario--base .profit-box .pvalue { color: var(--orange); }

.kpi-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line-dark);
}

.kpi {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.kpi .label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.5);
}

.kpi .value {
  font-size: 32px;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.02em;
  line-height: 1;
}

.kpi .note {
  font-size: 12px;
  color: rgba(250, 247, 242, 0.5);
}

/* Projection */
.projection {
  margin-top: 56px;
  padding: 48px 40px;
  background: rgba(250, 247, 242, 0.03);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
}

.projection-head { margin-bottom: 36px; }

.projection h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.projection .sub {
  font-size: 15px;
  color: rgba(250, 247, 242, 0.6);
  line-height: 1.55;
  max-width: 62ch;
}

.proj-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
}

.proj-cell {
  background: rgba(250, 247, 242, 0.04);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  padding: 24px 22px;
  transition: all 0.3s var(--ease);
}

.proj-cell:hover {
  background: rgba(250, 247, 242, 0.08);
  transform: translateY(-3px);
  border-color: rgba(242, 100, 25, 0.25);
}

.proj-cell .yr {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.5);
  margin-bottom: 14px;
}

.proj-cell .amt {
  font-size: 24px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.proj-cell .amt.positive { color: var(--orange); }

.proj-cell .det {
  font-size: 12px;
  color: rgba(250, 247, 242, 0.55);
}

.proj-total {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.proj-total .label {
  font-size: 16px;
  color: rgba(250, 247, 242, 0.75);
  font-weight: 500;
}

.proj-total .value {
  font-size: 40px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.03em;
}

/* ===== TERMS ===== */
.terms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.term {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  padding: 32px 36px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  transition: all 0.3s var(--ease);
}

@media (min-width: 768px) {
  .term {
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
  }
}

.term:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(242, 100, 25, 0.2);
  transform: translateX(4px);
}

.term-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.term-idx {
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.08em;
}

.term-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.term-body {
  color: var(--ink-muted);
  font-size: 15.5px;
  line-height: 1.65;
}

.term-body strong {
  color: var(--ink);
  font-weight: 600;
}

/* ===== PROTECTION ===== */
.protect-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.protect-card {
  background: rgba(250, 247, 242, 0.035);
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line-dark);
  transition: all 0.3s var(--ease);
}

.protect-card:hover {
  background: rgba(250, 247, 242, 0.07);
  transform: translateY(-4px);
  border-color: rgba(242, 100, 25, 0.3);
}

.protect-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  background: rgba(242, 100, 25, 0.15);
  color: var(--orange-soft);
  border-radius: 10px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  transition: transform 0.35s var(--ease);
}

.protect-card:hover .protect-tag {
  transform: rotate(-4deg) scale(1.08);
}

.protect-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 10px;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

.protect-card p {
  font-size: 14px;
  color: rgba(250, 247, 242, 0.65);
  line-height: 1.6;
}

/* ===== TRACK ===== */
.track-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.track-card {
  background: white;
  padding: 40px 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: all 0.3s var(--ease);
}

.track-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(242, 100, 25, 0.2);
}

.track-card .stat {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--navy-deep);
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}

.track-card .stat .suffix {
  color: var(--orange);
  font-size: 0.6em;
  margin-left: 4px;
}

.track-card .desc {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.55;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 920px;
  margin: 0 auto;
}

details.faq {
  background: white;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.25s var(--ease);
}

details.faq:hover { border-color: rgba(242, 100, 25, 0.25); }

details.faq[open] {
  box-shadow: var(--shadow-md);
  border-color: rgba(242, 100, 25, 0.25);
}

details.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

details.faq summary::-webkit-details-marker { display: none; }

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(242, 100, 25, 0.1);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  transition: transform 0.3s var(--ease), background 0.3s, color 0.3s;
}

details.faq[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--orange);
  color: white;
}

details.faq .answer {
  padding: 0 28px 26px;
  color: var(--ink-muted);
  font-size: 15.5px;
  line-height: 1.7;
  max-width: 68ch;
  animation: fade-down 0.35s var(--ease);
}

@keyframes fade-down {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: none; }
}

/* ===== CONTACT ===== */
section.contact {
  background: var(--navy-deep);
  color: var(--cream);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

section.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 40%, rgba(242, 100, 25, 0.12), transparent 50%),
    radial-gradient(circle at 80% 60%, rgba(242, 100, 25, 0.06), transparent 60%);
}

.contact .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.contact h2 {
  max-width: 18ch;
  margin: 0 auto 20px;
}

.contact p.lead {
  font-size: 19px;
  color: rgba(250, 247, 242, 0.72);
  max-width: 56ch;
  margin: 0 auto 56px;
  line-height: 1.6;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 0 auto 48px;
}

.contact-method {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 28px 32px;
  background: rgba(250, 247, 242, 0.05);
  border: 1px solid var(--line-dark-mid);
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
  text-align: left;
}

.contact-method:hover {
  background: rgba(242, 100, 25, 0.1);
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.contact-method .type {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.55);
}

.contact-method .val {
  font-size: 20px;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.015em;
}

/* ===== FOOTER ===== */
footer {
  background: var(--navy-darker);
  color: rgba(250, 247, 242, 0.5);
  padding: 40px 0;
  font-size: 13px;
  border-top: 1px solid var(--line-dark);
}

footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

footer .foot-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

footer .foot-brand img {
  height: 28px;
  opacity: 0.9;
}

footer .foot-brand span {
  color: rgba(250, 247, 242, 0.7);
  font-weight: 500;
}

footer .disclaim {
  max-width: 56ch;
  font-size: 12px;
  color: rgba(250, 247, 242, 0.4);
  line-height: 1.55;
}

/* ===== REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal-stagger.visible > * { opacity: 1; transform: none; }

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 80ms; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 240ms; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 320ms; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 400ms; }

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  section { padding: 80px 0; }
  .hero { padding: 120px 0 70px; }
  .hero-stats { padding: 20px; }
  .scenario { padding: 32px 24px; }
  .projection { padding: 32px 24px; }
  .profit-box .pvalue { font-size: 36px; }
  .term { padding: 24px 22px; }
  .contact-method { padding: 22px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===========================================
   v4 additions: conversion-focused components
   (additive — EN/SR pages continue to work)
   =========================================== */

/* Hero trust bullets (under subheading) */
.hero-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fade-up 0.9s var(--ease) 0.85s forwards;
}

.hero-bullet {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(250, 247, 242, 0.82);
  font-weight: 500;
}

.hero-bullet-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(242, 100, 25, 0.18);
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

/* Economics summary cards (above detailed tables) */
.econ-summary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .econ-summary { grid-template-columns: 1fr 1fr; }
}

.econ-summary-card {
  background: rgba(250, 247, 242, 0.04);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 32px 30px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.econ-summary-card:hover {
  transform: translateY(-4px);
}

.econ-summary-card--base {
  border-color: rgba(242, 100, 25, 0.35);
  background: linear-gradient(135deg, rgba(242, 100, 25, 0.08), rgba(250, 247, 242, 0.03));
}

.econ-summary-card--base:hover {
  box-shadow: 0 20px 44px rgba(242, 100, 25, 0.15);
}

.econ-summary-card .scenario-badge {
  margin-bottom: 0;
}

.summary-main {
  margin: 18px 0 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(250, 247, 242, 0.1);
}

.summary-main-value {
  font-size: clamp(40px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--cream);
  font-variant-numeric: tabular-nums;
}

.econ-summary-card--base .summary-main-value {
  color: var(--orange);
}

.summary-main-value .unit {
  font-size: 0.42em;
  font-weight: 500;
  color: rgba(250, 247, 242, 0.55);
  margin-left: 6px;
  letter-spacing: 0;
}

.econ-summary-card--base .summary-main-value .unit {
  color: rgba(242, 100, 25, 0.65);
}

.summary-main-label {
  font-size: 13.5px;
  color: rgba(250, 247, 242, 0.7);
  margin-top: 10px;
  font-weight: 500;
  line-height: 1.4;
}

.summary-details {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.summary-detail {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.summary-detail .k {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.5);
}

.summary-detail .v {
  font-family: "IBM Plex Mono", monospace;
  font-size: 17px;
  font-weight: 600;
  color: var(--cream);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}

@media (max-width: 480px) {
  .summary-details { grid-template-columns: 1fr 1fr; gap: 14px; }
  .econ-summary-card { padding: 26px 22px; }
}

/* Monthly figure inside detail profit-box */
.profit-box .pmonthly {
  margin-top: 12px;
  font-size: 16px;
  color: rgba(250, 247, 242, 0.72);
  font-family: "IBM Plex Mono", monospace;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.scenario--base .profit-box .pmonthly {
  color: rgba(242, 100, 25, 0.78);
}

/* Scenario subtitle (small italic line below h3) */
.scenario-sub {
  font-size: 13px;
  color: rgba(250, 247, 242, 0.55);
  margin-top: 2px;
  margin-bottom: 18px;
  font-style: italic;
}

/* Projection intro line (highlight before 3-year horizon) */
.projection-intro {
  font-size: 17px;
  color: var(--cream);
  font-weight: 500;
  margin-bottom: 32px;
  line-height: 1.5;
  max-width: 62ch;
  padding: 18px 22px;
  background: rgba(242, 100, 25, 0.08);
  border-left: 3px solid var(--orange);
  border-radius: 8px;
}

/* Track-record badge above heading */
.track-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(242, 100, 25, 0.1);
  border: 1px solid rgba(242, 100, 25, 0.2);
  color: var(--orange);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.track-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2.4s ease-in-out infinite;
}

/* Conclusion line under track cards */
.track-conclusion {
  margin-top: 48px;
  padding: 28px 36px;
  background: white;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.5;
  letter-spacing: -0.01em;
  border-left: 4px solid var(--orange);
  text-align: left;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA micro-trigger under button */
.cta-microtrigger {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(250, 247, 242, 0.55);
  font-family: "IBM Plex Mono", monospace;
  letter-spacing: 0.02em;
}

.cta-microtrigger .sep {
  margin: 0 8px;
  opacity: 0.5;
}

/* Footer compact contacts row */
footer .foot-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

footer .foot-contacts {
  display: flex;
  gap: 12px;
  font-size: 12px;
  flex-wrap: wrap;
  align-items: center;
}

footer .foot-contacts a {
  color: rgba(250, 247, 242, 0.55);
  transition: color 0.2s;
}

footer .foot-contacts a:hover {
  color: var(--orange-soft);
}

footer .foot-contacts .sep {
  color: rgba(250, 247, 242, 0.25);
}

/* ===========================================
   v4.1 hotfixes: hero compact + bullet cards +
   summary visibility + badge colors
   =========================================== */

/* Hero: tighter vertical rhythm so it fits initial viewport */
section.hero {
  padding: 110px 0 70px;
  min-height: auto;
}

@media (max-width: 860px) {
  section.hero { padding: 100px 0 60px; }
}

.hero-eyebrow { margin-bottom: 28px; }
.hero h1 { margin-bottom: 24px; }
.hero p.lead { margin-bottom: 28px; }
.hero-cta { margin-bottom: 48px; }
.hero-stats { padding: 24px; }

/* Hero trust bullets — now as proper mini-cards */
.hero-bullets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 10px;
  margin-bottom: 36px;
  max-width: 720px;
}

.hero-bullet {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(250, 247, 242, 0.05);
  border: 1px solid rgba(250, 247, 242, 0.14);
  border-radius: 12px;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(250, 247, 242, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.25s var(--ease);
  line-height: 1.3;
}

.hero-bullet:hover {
  background: rgba(250, 247, 242, 0.08);
  border-color: rgba(242, 100, 25, 0.35);
  transform: translateY(-1px);
}

.hero-bullet-check {
  width: 22px;
  height: 22px;
}

/* Economics summary cards — stronger visual weight */
.econ-summary-card {
  background: rgba(250, 247, 242, 0.06);
  border: 1px solid rgba(250, 247, 242, 0.18);
}

.econ-summary-card--base {
  background: linear-gradient(135deg, rgba(242, 100, 25, 0.16), rgba(250, 247, 242, 0.05));
  border-color: rgba(242, 100, 25, 0.5);
  box-shadow: 0 20px 44px rgba(242, 100, 25, 0.15);
}

.econ-summary-card--base:hover {
  box-shadow: 0 28px 60px rgba(242, 100, 25, 0.22);
}

/* Badge colors INSIDE summary cards (the base selector didn't catch these) */
.econ-summary-card--base .scenario-badge {
  background: var(--orange);
  color: white;
  margin-bottom: 0;
}

.econ-summary-card--cons .scenario-badge {
  background: rgba(250, 247, 242, 0.14);
  color: rgba(250, 247, 242, 0.85);
  margin-bottom: 0;
}

/* ==========================================================
   ZURO CARS main page — adds (extends investor landing CSS)
   ========================================================== */

/* Hero booking form */
.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr auto;
  gap: 12px;
  background: rgba(250, 247, 242, 0.06);
  border: 1px solid rgba(250, 247, 242, 0.18);
  border-radius: 16px;
  padding: 14px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin-bottom: 32px;
  max-width: 820px;
  opacity: 0;
  animation: fade-up 0.9s var(--ease) 0.75s forwards;
}

@media (max-width: 720px) {
  .booking-form {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .booking-form .bf-submit {
    grid-column: span 2;
  }
}

.bf-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 14px;
  background: rgba(15, 31, 48, 0.5);
  border-radius: 10px;
  border: 1px solid transparent;
  transition: border-color 0.2s;
}

.bf-field:focus-within {
  border-color: var(--orange);
}

.bf-field label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.6);
}

.bf-field input {
  background: transparent;
  border: none;
  color: var(--cream);
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  padding: 2px 0;
  outline: none;
  width: 100%;
}

.bf-field input::placeholder {
  color: rgba(250, 247, 242, 0.4);
}

/* Date inputs — hide default icon on desktop, keep accessible */
.bf-field input[type="date"] {
  color-scheme: dark;
  cursor: pointer;
}

.bf-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 24px;
  background: var(--orange);
  color: white;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
  height: 100%;
  min-height: 56px;
}

.bf-submit:hover {
  background: var(--orange-soft);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(242, 100, 25, 0.35);
}

/* Fleet preview section */
.fleet-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding: 6px;
  background: white;
  border-radius: 999px;
  border: 1px solid var(--line);
  max-width: fit-content;
  box-shadow: var(--shadow-sm);
}

.fleet-tab {
  padding: 10px 22px;
  border: none;
  background: transparent;
  color: var(--ink-muted);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}

.fleet-tab:hover {
  color: var(--ink);
}

.fleet-tab.active {
  background: var(--navy-deep);
  color: var(--cream);
}

@media (max-width: 520px) {
  .fleet-tab { padding: 8px 16px; font-size: 13px; }
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 1020px) {
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .fleet-grid { grid-template-columns: 1fr; gap: 16px; }
  /* Show only 3 cards on mobile (hide rest), see .fleet-card[data-mobile="hide"] */
  .fleet-card.mobile-hide { display: none; }
}

.fleet-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s var(--ease);
  display: flex;
  flex-direction: column;
}

.fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(242, 100, 25, 0.25);
}

.fleet-card.hidden {
  display: none;
}

.fleet-photo {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f0eae0;
}

.fleet-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.fleet-card:hover .fleet-photo img {
  transform: scale(1.05);
}

.fleet-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 12px;
  background: rgba(30, 58, 95, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: white;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
}

.fleet-badge--premium { background: rgba(242, 100, 25, 0.92); }

.fleet-info {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.fleet-name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.2;
}

.fleet-specs {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--ink-muted);
  margin-bottom: 18px;
}

.fleet-spec {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.fleet-spec::before {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--orange);
  border-radius: 50%;
  display: inline-block;
}

.fleet-spec:first-child::before {
  display: none;
}

.fleet-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.fleet-price {
  font-size: 14px;
  color: var(--ink-muted);
}

.fleet-price strong {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.fleet-price .currency {
  color: var(--orange);
}

.fleet-book {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: var(--orange);
  color: white;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s var(--ease);
}

.fleet-book:hover {
  background: var(--orange-soft);
  transform: translateX(2px);
  box-shadow: 0 6px 16px rgba(242, 100, 25, 0.3);
}

.fleet-all-link {
  text-align: center;
  margin-top: 40px;
}

.fleet-all-link a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-weight: 600;
  font-size: 15px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
  padding-bottom: 2px;
}

.fleet-all-link a:hover {
  border-color: var(--orange);
}

/* Trust bar — the row of 4 signals right under hero */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  overflow: hidden;
  margin-top: -60px;
  position: relative;
  z-index: 3;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 780px) {
  .trust-bar {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -30px;
  }
}

.trust-item {
  padding: 26px 22px;
  text-align: center;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.trust-item:last-child { border-right: none; }

@media (max-width: 780px) {
  .trust-item:nth-child(2n) { border-right: none; }
  .trust-item:nth-child(1), .trust-item:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }
}

.trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(242, 100, 25, 0.1);
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
}

.trust-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
}

.trust-note {
  font-size: 12px;
  color: var(--ink-muted);
  line-height: 1.3;
}

/* Fleet section bg tweak */
section.fleet-section {
  padding-top: 140px; /* extra room because trust-bar sits above */
}

@media (max-width: 780px) {
  section.fleet-section { padding-top: 100px; }
}

/* ==========================================================
   v1.1 hotfixes — compact hero + Google reviews eyebrow
   ========================================================== */

/* Hero h1: reduce size so full hero fits on standard desktop viewport */
.hero h1 {
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.05;
  margin-bottom: 20px;
}

.hero p.lead {
  font-size: clamp(16px, 1.3vw, 18px);
  margin-bottom: 24px;
}

section.hero {
  padding: 100px 0 60px;
}

@media (max-width: 860px) {
  section.hero { padding: 90px 0 50px; }
}

/* Google-reviews eyebrow (replaces generic eyebrow on hero) */
.hero-eyebrow--google {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(250, 247, 242, 0.08);
  border: 1px solid rgba(250, 247, 242, 0.18);
  font-size: 13px;
  font-weight: 500;
  color: rgba(250, 247, 242, 0.92);
  text-decoration: none;
  margin-bottom: 28px;
  transition: all 0.25s var(--ease);
  cursor: pointer;
  opacity: 0;
  animation: fade-up 0.9s var(--ease) 0.1s forwards;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-eyebrow--google:hover {
  background: rgba(250, 247, 242, 0.12);
  border-color: rgba(242, 100, 25, 0.45);
  transform: translateY(-1px);
}

.hero-eyebrow--google .stars {
  color: #FFB61C;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 1;
}

.hero-eyebrow--google .rating {
  font-weight: 700;
  color: var(--cream);
  font-size: 14px;
}

.hero-eyebrow--google .sep {
  opacity: 0.4;
  margin: 0 2px;
}

/* ==========================================================
   v1.2 — tighter spacing + more life in motion
   ========================================================== */

/* Halve section vertical padding */
section { padding: 70px 0; }
@media (max-width: 768px) { section { padding: 50px 0; } }

/* Section headers: smaller top margin */
.section-head { margin-bottom: 44px; }
@media (max-width: 768px) { .section-head { margin-bottom: 32px; } }

/* Fleet section specifically — compensate for trust bar overlap */
section.fleet-section {
  padding-top: 100px;
}
@media (max-width: 780px) {
  section.fleet-section { padding-top: 70px; }
}

/* Trust bar: less negative margin so section feels closer to hero */
.trust-bar {
  margin-top: -40px;
}
@media (max-width: 780px) {
  .trust-bar { margin-top: -20px; }
}

/* Hero trimming */
section.hero { padding: 90px 0 50px; }
@media (max-width: 860px) { section.hero { padding: 80px 0 40px; } }

/* ===== MORE LIFE: micro-interactions ===== */

/* Trust bar items — subtle hover lift */
.trust-item {
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
  position: relative;
}

.trust-item:hover {
  background: rgba(242, 100, 25, 0.04);
}

.trust-item:hover .trust-icon {
  transform: scale(1.1) rotate(-4deg);
}

.trust-icon {
  transition: transform 0.35s var(--ease);
}

/* Fleet card badge — subtle floating effect */
.fleet-badge {
  animation: badge-float 3s ease-in-out infinite;
}

@keyframes badge-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

/* Fleet card hover: photo subtle zoom (already exists), add book-button arrow translate */
.fleet-card:hover .fleet-book {
  background: var(--orange-soft);
  box-shadow: 0 8px 22px rgba(242, 100, 25, 0.35);
}

/* Fleet-book arrow slides on card hover too */
.fleet-book {
  position: relative;
  transition: all 0.3s var(--ease);
}

/* Price animate on card hover */
.fleet-card:hover .fleet-price strong {
  color: var(--orange);
  transition: color 0.3s var(--ease);
}

.fleet-price strong {
  transition: color 0.3s var(--ease);
}

/* Eyebrow with stars — make stars gently shimmer */
.hero-eyebrow--google .stars {
  background: linear-gradient(90deg, #FFB61C 0%, #FFD75F 50%, #FFB61C 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: stars-shimmer 3.5s ease-in-out infinite;
}

@keyframes stars-shimmer {
  0%, 100% { background-position: 200% 50%; }
  50% { background-position: -50% 50%; }
}

/* Booking form field — subtle entrance as user scrolls */
.bf-field input {
  transition: all 0.2s var(--ease);
}

.bf-field input:focus {
  transform: translateX(1px);
}

/* Reveal animations — slightly more dramatic */
.reveal {
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transform: translateY(24px);
}

.reveal-stagger > * {
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
  transform: translateY(20px);
}

/* Fleet cards should animate in stagger-style. The grid has reveal-stagger. */
/* Ensure each card has its own transition delay */
.fleet-grid.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0ms; }
.fleet-grid.reveal-stagger.visible > *:nth-child(2) { transition-delay: 100ms; }
.fleet-grid.reveal-stagger.visible > *:nth-child(3) { transition-delay: 200ms; }
.fleet-grid.reveal-stagger.visible > *:nth-child(4) { transition-delay: 300ms; }
.fleet-grid.reveal-stagger.visible > *:nth-child(5) { transition-delay: 400ms; }
.fleet-grid.reveal-stagger.visible > *:nth-child(6) { transition-delay: 500ms; }

/* Trust bar items: also stagger-reveal */
.trust-bar.reveal.visible .trust-item {
  animation: trust-pop 0.6s var(--ease) both;
}

.trust-bar.reveal .trust-item:nth-child(1) { animation-delay: 0ms; }
.trust-bar.reveal .trust-item:nth-child(2) { animation-delay: 100ms; }
.trust-bar.reveal .trust-item:nth-child(3) { animation-delay: 200ms; }
.trust-bar.reveal .trust-item:nth-child(4) { animation-delay: 300ms; }

@keyframes trust-pop {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Bottom link arrow slide on hover */
.fleet-all-link a::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 1px;
  background: var(--orange);
  transition: width 0.3s var(--ease);
  margin-left: 6px;
  vertical-align: middle;
}

.fleet-all-link a:hover::after {
  width: 20px;
}

/* Accent underline under h2 */
h2 .accent {
  position: relative;
}

/* Hero h1 — on larger screens, add subtle pulse to the accent part */
@media (min-width: 768px) {
  .hero h1 .accent::after {
    content: "";
    position: absolute;
    left: 0; right: 0;
    bottom: -4px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
    transform: scaleX(0);
    transform-origin: center;
    animation: underline-pulse 3.5s ease-in-out infinite;
  }
}

@keyframes underline-pulse {
  0%, 100% { transform: scaleX(0); opacity: 0; }
  30%, 70% { transform: scaleX(1); opacity: 1; }
}

/* ==========================================================
   Part 2: how-to-book, ZuroClub+, why-us, reviews, investor banner
   ========================================================== */

/* ========== How to book — 3 steps ========== */
.book-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

@media (max-width: 860px) {
  .book-steps { grid-template-columns: 1fr; gap: 18px; }
}

.book-step {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px 30px;
  text-align: center;
  position: relative;
  transition: all 0.35s var(--ease);
}

.book-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(242, 100, 25, 0.25);
}

.book-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--orange), var(--orange-soft));
  color: white;
  font-size: 20px;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 18px;
  box-shadow: 0 6px 16px rgba(242, 100, 25, 0.25);
  transition: transform 0.35s var(--ease);
}

.book-step:hover .book-step-num {
  transform: scale(1.05) rotate(-4deg);
}

.book-step h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.book-step p {
  font-size: 14.5px;
  color: var(--ink-muted);
  line-height: 1.55;
}

/* ========== ZuroClub+ loyalty cards ========== */
.loyalty-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.loyalty-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(242, 100, 25, 0.12);
  border: 1px solid rgba(242, 100, 25, 0.28);
  color: var(--orange);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.loyalty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@media (max-width: 960px) {
  .loyalty-grid { grid-template-columns: 1fr; gap: 18px; max-width: 420px; margin: 0 auto; }
}

.loyalty-card {
  position: relative;
  padding: 32px 28px 28px;
  border-radius: var(--radius);
  color: var(--cream);
  overflow: hidden;
  transition: all 0.4s var(--ease);
  border: 1px solid transparent;
}

.loyalty-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 24px 50px rgba(15, 26, 42, 0.25);
}

/* Silver: brushed silver */
.loyalty-card--silver {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(0, 0, 0, 0.05) 100%),
    linear-gradient(105deg, #a8adb5 0%, #cfd3d8 25%, #8d9299 50%, #c4c9cf 75%, #989ea5 100%);
}

/* Gold: warm metallic gold */
.loyalty-card--gold {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.05) 100%),
    linear-gradient(105deg, #bb8b3a 0%, #e5c26a 25%, #a87625 50%, #d9b55e 75%, #a07120 100%);
}

/* Platinum: bright white metallic */
.loyalty-card--platinum {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(0, 0, 0, 0.03) 100%),
    linear-gradient(105deg, #c0c3c8 0%, #eef0f2 25%, #aeb1b6 50%, #e3e5e8 75%, #b6b9bd 100%);
  color: var(--navy-deep);
}

.loyalty-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.15) 50%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.loyalty-card:hover::before {
  opacity: 1;
  animation: card-shine 1.2s ease;
}

@keyframes card-shine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.loyalty-tier {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
}

.loyalty-tier-name {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--orange);
}

.loyalty-tier-sub {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy-deep);
  opacity: 0.85;
}

.loyalty-card--platinum .loyalty-tier-sub {
  color: var(--navy-deep);
}

.loyalty-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.loyalty-perks li {
  font-size: 14px;
  line-height: 1.45;
  color: var(--navy-deep);
  padding-left: 22px;
  position: relative;
  font-weight: 500;
}

.loyalty-perks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.loyalty-card--platinum .loyalty-perks li {
  color: var(--navy-deep);
}

.loyalty-req {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 10px;
  background: rgba(30, 58, 95, 0.14);
  color: var(--navy-deep);
  border-radius: 6px;
  display: inline-block;
  letter-spacing: 0.02em;
}

.loyalty-terms {
  margin-top: 32px;
  text-align: center;
  font-size: 13px;
  color: var(--ink-muted);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}

.loyalty-terms strong {
  color: var(--ink);
}

/* ========== Why ZURO — 4 cards ========== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

@media (max-width: 1020px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .why-grid { grid-template-columns: 1fr; }
}

.why-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s var(--ease);
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(242, 100, 25, 0.22);
}

.why-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(242, 100, 25, 0.12);
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
  transition: transform 0.35s var(--ease);
}

.why-card:hover .why-icon {
  transform: scale(1.08) rotate(-4deg);
  background: rgba(242, 100, 25, 0.22);
}

.why-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.why-card p {
  font-size: 13.5px;
  color: var(--ink-muted);
  line-height: 1.55;
}

/* ========== Reviews ========== */
.reviews-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 24px 36px;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  max-width: 660px;
  margin: 0 auto 44px;
  flex-wrap: wrap;
}

.reviews-rating-num {
  font-size: 56px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.03em;
}

.reviews-rating-stars {
  color: #FFB61C;
  font-size: 20px;
  letter-spacing: 3px;
  margin-bottom: 4px;
}

.reviews-rating-count {
  font-size: 13px;
  color: var(--ink-muted);
}

.reviews-rating-count a {
  color: var(--orange);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.reviews-rating-count a:hover {
  border-color: var(--orange);
}

.reviews-rating-divider {
  width: 1px;
  height: 60px;
  background: var(--line);
}

@media (max-width: 560px) {
  .reviews-rating-divider { display: none; }
  .reviews-header { padding: 20px 24px; gap: 16px; }
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width: 980px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

.review-card {
  background: white;
  padding: 24px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.review-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.review-avatar {
  width: 36px;
  height: 36px;
  background: var(--orange);
  color: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.review-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.review-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.review-stars {
  color: #FFB61C;
  font-size: 11px;
  letter-spacing: 1px;
}

.review-text {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.5;
  flex: 1;
}

/* ========== Investor banner ========== */
.investor-banner {
  background: var(--navy-deep);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 780px) {
  .investor-banner {
    padding: 32px 28px;
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
}

.investor-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 300px at 80% 50%, rgba(242, 100, 25, 0.2), transparent 70%),
    radial-gradient(ellipse 400px 200px at 10% 50%, rgba(44, 74, 112, 0.4), transparent 70%);
  pointer-events: none;
}

.investor-text {
  position: relative;
  z-index: 2;
  flex: 1;
  min-width: 0;
}

.investor-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.investor-text h3 {
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 8px;
  color: var(--cream);
}

.investor-text p {
  font-size: 15px;
  color: rgba(250, 247, 242, 0.7);
  line-height: 1.55;
  max-width: 56ch;
}

.investor-cta {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: var(--orange);
  color: white;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.25s var(--ease);
  box-shadow: var(--shadow-orange);
  flex-shrink: 0;
}

.investor-cta:hover {
  background: var(--orange-soft);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(242, 100, 25, 0.4);
}

.investor-cta .arrow {
  transition: transform 0.25s var(--ease);
}

.investor-cta:hover .arrow {
  transform: translateX(4px);
}

/* ========== Cars footer — richer than investor one ========== */
footer.cars-footer {
  background: var(--navy-darker);
  color: rgba(250, 247, 242, 0.7);
  padding: 56px 0 28px;
  font-size: 14px;
}

.cars-footer .container {
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
}

@media (max-width: 860px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 520px) {
  .footer-top { grid-template-columns: 1fr; }
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: rgba(250, 247, 242, 0.65);
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--orange-soft); }

.footer-brand img {
  height: 32px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 13.5px;
  color: rgba(250, 247, 242, 0.55);
  line-height: 1.55;
  max-width: 36ch;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
  font-size: 12px;
  color: rgba(250, 247, 242, 0.4);
}

/* ==========================================================
   v1.3 — SVG icons in trust-bar and why-cards
   ========================================================== */
.trust-icon svg,
.why-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.why-icon svg { width: 22px; height: 22px; }

/* Slightly adjust icon box sizing to accommodate SVG nicely */
.trust-icon { 
  width: 42px;
  height: 42px;
}

.why-icon { 
  width: 46px;
  height: 46px;
  border-radius: 12px;
}

/* ==========================================================
   /cars/[model]/ — CAR DETAIL PAGE
   ========================================================== */

/* Breadcrumbs */
.breadcrumbs {
  padding: 100px 0 0;
  font-size: 13px;
  color: var(--ink-muted);
}

.breadcrumbs a {
  color: var(--ink-muted);
  transition: color 0.2s;
  border-bottom: 1px solid transparent;
}

.breadcrumbs a:hover {
  color: var(--orange);
  border-color: var(--orange);
}

.breadcrumbs .sep {
  margin: 0 8px;
  opacity: 0.4;
}

.breadcrumbs .current {
  color: var(--ink);
  font-weight: 500;
}

/* Car header — gallery on left, info panel on right */
.car-main {
  padding: 32px 0 60px;
}

.car-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 980px) {
  .car-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* Gallery */
.car-gallery {
  position: relative;
}

.gallery-main {
  aspect-ratio: 16 / 10;
  background: #f0eae0;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.4s var(--ease);
}

.gallery-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 14px;
  background: rgba(30, 58, 95, 0.92);
  backdrop-filter: blur(8px);
  color: white;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  z-index: 2;
}

/* Gallery nav arrows */
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  color: var(--navy-deep);
  transition: all 0.25s var(--ease);
  z-index: 3;
  box-shadow: var(--shadow-sm);
}

.gallery-nav:hover {
  background: white;
  transform: translateY(-50%) scale(1.08);
  color: var(--orange);
}

.gallery-nav.prev { left: 14px; }
.gallery-nav.next { right: 14px; }

/* Thumbnails */
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 10px;
}

@media (max-width: 560px) {
  .gallery-thumbs { grid-template-columns: repeat(6, 1fr); gap: 6px; }
}

.gallery-thumb {
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s var(--ease);
  background: #f0eae0;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.gallery-thumb:hover img {
  transform: scale(1.08);
}

.gallery-thumb.active {
  border-color: var(--orange);
  box-shadow: 0 4px 14px rgba(242, 100, 25, 0.28);
}

/* Info panel — sticky on desktop */
.car-info {
  position: sticky;
  top: 100px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

@media (max-width: 980px) {
  .car-info { position: static; }
}

.car-category-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.car-cat-badge {
  padding: 5px 12px;
  background: rgba(242, 100, 25, 0.12);
  color: var(--orange);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
}

.car-rating-inline {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--ink-muted);
}

.car-rating-inline .stars {
  color: #FFB61C;
  font-size: 11px;
  letter-spacing: 1px;
}

.car-title {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 4px;
}

.car-subtitle {
  font-size: 14px;
  color: var(--ink-muted);
  margin-bottom: 22px;
}

.car-price-block {
  background: var(--cream-warm);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  margin-bottom: 22px;
}

.car-price-label {
  font-size: 12px;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 4px;
  font-weight: 600;
}

.car-price-main {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.car-price-from {
  font-size: 14px;
  color: var(--ink-muted);
}

.car-price-value {
  font-size: 34px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.car-price-value .currency {
  color: var(--orange);
}

.car-price-period {
  font-size: 14px;
  color: var(--ink-muted);
}

.car-price-note {
  margin-top: 6px;
  font-size: 12px;
  color: var(--ink-muted);
  line-height: 1.4;
}

/* Quick specs — 4 squares in panel */
.car-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.car-spec {
  background: var(--cream-warm);
  border-radius: 10px;
  padding: 12px 14px;
}

.car-spec-label {
  font-size: 11px;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 3px;
  font-weight: 600;
}

.car-spec-value {
  font-size: 14px;
  color: var(--ink);
  font-weight: 700;
}

/* Inline booking mini-form */
.car-book-form {
  background: var(--cream-warm);
  border-radius: 10px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}

.car-book-form .bf-field {
  padding: 8px 12px;
  background: white;
}

.car-book-form .bf-field label { color: var(--ink-muted); }
.car-book-form .bf-field input {
  color: var(--ink);
  font-size: 14px;
}
.car-book-form .bf-field input::placeholder { color: rgba(15,31,48,0.4); }

.car-book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  background: var(--orange);
  color: white;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  width: 100%;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(242, 100, 25, 0.3);
}

.car-book-btn:hover {
  background: var(--orange-soft);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(242, 100, 25, 0.4);
}

.car-book-btn .arrow { transition: transform 0.25s; }
.car-book-btn:hover .arrow { transform: translateX(4px); }

.car-book-micro {
  text-align: center;
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: 10px;
}

/* Description block */
.car-desc-section {
  padding: 60px 0;
}

.car-desc-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
}

@media (max-width: 860px) {
  .car-desc-grid { grid-template-columns: 1fr; gap: 32px; }
}

.car-desc h2 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--ink);
}

.car-desc p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-muted);
  margin-bottom: 14px;
}

/* Включено в аренду — side card */
.car-included {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 28px;
  box-shadow: var(--shadow-sm);
}

.car-included h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.car-included-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.car-included-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.45;
}

.car-included-list li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--orange);
}

/* Requirements */
.car-reqs-section {
  background: var(--cream-warm);
  padding: 60px 0;
}

.car-reqs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

@media (max-width: 860px) {
  .car-reqs-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
  .car-reqs-grid { grid-template-columns: 1fr; }
}

.car-req-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 22px 20px;
  transition: all 0.3s var(--ease);
}

.car-req-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.car-req-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(242, 100, 25, 0.12);
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.car-req-icon svg {
  width: 18px;
  height: 18px;
}

.car-req-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.car-req-card p {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.5;
}

/* Similar cars section */
.similar-cars-section {
  padding: 60px 0;
}

.similar-head {
  text-align: center;
  margin-bottom: 40px;
}

.similar-head h2 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.similar-head p {
  font-size: 15px;
  color: var(--ink-muted);
}

.similar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .similar-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .similar-grid { grid-template-columns: 1fr; }
}

/* ==========================================================
   Car page — price tiers table inside info panel
   ========================================================== */
.car-price-tiers {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed rgba(15, 31, 48, 0.15);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.price-tier {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border-radius: 7px;
  font-size: 13px;
  transition: background 0.2s;
}

.price-tier:hover {
  background: rgba(242, 100, 25, 0.06);
}

.tier-days {
  color: var(--ink-muted);
  font-weight: 500;
}

.tier-rate {
  color: var(--ink);
  font-weight: 700;
  font-size: 14px;
}

.tier-rate .currency { color: var(--orange); }

.tier-per {
  color: var(--ink-muted);
  font-size: 11px;
  font-weight: 500;
}

.tier-rate--note {
  color: var(--ink-muted);
  font-weight: 500;
  font-size: 12px;
  font-style: italic;
}

/* Best-value tier — highlighted */
.price-tier--best {
  background: rgba(242, 100, 25, 0.08);
  border: 1px solid rgba(242, 100, 25, 0.2);
}

.price-tier--best:hover {
  background: rgba(242, 100, 25, 0.12);
}

.price-tier--best .tier-days {
  color: var(--orange);
  font-weight: 600;
}

.price-tier--best .tier-rate {
  color: var(--orange);
}

.price-tier--best .tier-days::before {
  content: "★ ";
  font-size: 10px;
}

/* ==========================================================
   Car page — description list "Подойдёт для:"
   ========================================================== */
.car-desc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 4px 0 16px 2px;
}

.car-desc-list li {
  padding-left: 22px;
  position: relative;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-muted);
}

.car-desc-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.car-desc p strong {
  color: var(--ink);
  font-weight: 700;
}

/* ==========================================================
   Car page — Equipment block (under gallery, fills empty space)
   ========================================================== */
.car-equipment {
  margin-top: 28px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px 20px;
  box-shadow: var(--shadow-sm);
}

.car-equipment h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.car-equipment h3::before {
  content: "";
  width: 3px;
  height: 16px;
  background: var(--orange);
  border-radius: 2px;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

@media (max-width: 640px) {
  .equipment-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

.equipment-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--cream-warm);
  border-radius: 10px;
  transition: all 0.25s var(--ease);
  border: 1px solid transparent;
}

.equipment-item:hover {
  background: rgba(242, 100, 25, 0.06);
  border-color: rgba(242, 100, 25, 0.22);
  transform: translateY(-1px);
}

.equipment-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(242, 100, 25, 0.12);
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.equipment-icon svg {
  width: 15px;
  height: 15px;
}

.equipment-item:hover .equipment-icon {
  background: var(--orange);
  color: white;
}

.equipment-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
}

/* Car extras — small stat chips under equipment */
.car-extras {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.car-extra-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(30, 58, 95, 0.06);
  border-radius: 999px;
  font-size: 12px;
  color: var(--ink);
  font-weight: 500;
}

.car-extra-chip strong {
  color: var(--orange);
  font-weight: 700;
}

/* Car description disclaimer — small italic line */
.car-desc-disclaimer {
  margin-top: 12px !important;
  font-size: 12.5px !important;
  color: var(--ink-muted) !important;
  line-height: 1.5 !important;
  opacity: 0.75;
}

/* ==========================================================
   /fleet/ — CATALOG PAGE
   ========================================================== */
.fleet-page {
  padding: 40px 0 80px;
}

.fleet-hero {
  padding-top: 100px;
  padding-bottom: 32px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.fleet-hero h1 {
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 14px;
}

.fleet-hero h1 .accent {
  color: var(--orange);
}

.fleet-hero p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-muted);
}

/* Filter bar */
.fleet-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 32px 0 40px;
  padding: 6px;
  background: white;
  border-radius: 999px;
  border: 1px solid var(--line);
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
  box-shadow: var(--shadow-sm);
}

.fleet-filter {
  padding: 10px 22px;
  border: none;
  background: transparent;
  color: var(--ink-muted);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}

.fleet-filter:hover {
  color: var(--ink);
}

.fleet-filter.active {
  background: var(--navy-deep);
  color: var(--cream);
}

@media (max-width: 520px) {
  .fleet-filter { padding: 8px 16px; font-size: 13px; }
}

/* Grid that shows/hides based on filter */
.fleet-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 1020px) { .fleet-full-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .fleet-full-grid { grid-template-columns: 1fr; } }

.fleet-full-grid .fleet-card.hidden { display: none; }

/* Catalog card — clickable whole card (when it has a detail page) */
.fleet-card.has-page {
  cursor: pointer;
}

.fleet-card a.card-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.fleet-card {
  position: relative;
}

.fleet-card .fleet-bottom a,
.fleet-card .fleet-bottom .fleet-price {
  position: relative;
  z-index: 2;
}

/* "No page yet" badge for cars without detail pages */
.fleet-nopage-note {
  font-size: 11px;
  color: var(--ink-muted);
  opacity: 0.7;
  font-style: italic;
}


/* ==========================================================
   /rental-terms/ — TERMS PAGE (renamed: rterms-* to avoid
   collision with .terms / .terms-grid on investor landing)
   ========================================================== */
.rterms-page {
  padding: 100px 0 80px;
}

.rterms-hero {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.rterms-hero h1 {
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 14px;
}

.rterms-hero h1 .accent { color: var(--orange); }

.rterms-hero p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-muted);
}

.rterms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

@media (max-width: 760px) {
  .rterms-grid { grid-template-columns: 1fr; }
}

.rterms-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 30px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease);
}

.rterms-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(242, 100, 25, 0.22);
}

.rterms-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.rterms-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(242, 100, 25, 0.12);
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rterms-card-icon svg {
  width: 18px;
  height: 18px;
}

.rterms-card-head h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.rterms-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rterms-card li {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink);
  padding-left: 22px;
  position: relative;
}

.rterms-card li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.rterms-card li strong { font-weight: 700; color: var(--ink); }

.rterms-footer-cta {
  background: var(--cream-warm);
  border-radius: var(--radius);
  padding: 36px 40px;
  margin-top: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.rterms-footer-cta h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 6px;
}

.rterms-footer-cta p {
  font-size: 14px;
  color: var(--ink-muted);
}

.rterms-footer-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  background: var(--orange);
  color: white;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  box-shadow: var(--shadow-orange);
}

.rterms-footer-cta a:hover {
  background: var(--orange-soft);
  transform: translateY(-2px);
}


/* ==========================================================
   Footer — social icons row
   ========================================================== */
.footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(250, 247, 242, 0.06);
  color: rgba(250, 247, 242, 0.7);
  transition: all 0.25s var(--ease);
  border: 1px solid rgba(250, 247, 242, 0.08);
}

.social-icon svg {
  width: 18px;
  height: 18px;
}

.social-icon:hover {
  background: var(--orange);
  color: white;
  border-color: var(--orange);
  transform: translateY(-2px);
}

/* Contact list — when it has the socials row, keep phone/email as text but below */
.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-list li {
  font-size: 14px;
  color: rgba(250, 247, 242, 0.65);
}

.footer-contact-list a {
  color: inherit;
  transition: color 0.2s;
}

.footer-contact-list a:hover { color: var(--orange-soft); }

/* ==========================================================
   v13 UX FIXES: Mobile nav burger, spacing fixes, footer 2-col
   ========================================================== */

/* Burger button — hidden on desktop, shown on mobile */
.burger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 110;
  position: relative;
}

.burger svg {
  width: 24px;
  height: 24px;
  color: var(--cream);
  transition: transform 0.25s var(--ease);
}

.burger[aria-expanded="true"] svg {
  transform: rotate(90deg);
}

/* Mobile drawer — hidden by default */
.mobile-drawer {
  display: none;
}

/* MOBILE NAV BEHAVIOR */
@media (max-width: 900px) {
  nav.top {
    padding: 12px 16px;
    gap: 12px;
  }
  nav.top .brand img { height: 24px; }
  /* Hide desktop items */
  nav.top .links { display: none; }
  nav.top .lang { display: none; }
  /* Show burger */
  nav.top .burger { display: inline-flex; align-items: center; justify-content: center; }
  /* CTA smaller on mobile but stays visible */
  nav.top .cta {
    padding: 9px 14px;
    font-size: 12px;
    white-space: nowrap;
  }

  /* Mobile drawer opens from right */
  .mobile-drawer {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85%);
    height: 100vh;
    background: var(--navy-deep);
    padding: 80px 24px 32px;
    z-index: 100;
    transition: right 0.3s var(--ease);
    box-shadow: -20px 0 40px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
  }

  .mobile-drawer.open {
    right: 0;
  }

  .mobile-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 26, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }

  .mobile-drawer-overlay.visible {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-drawer-section {
    margin-bottom: 32px;
  }

  .mobile-drawer-section h5 {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(250, 247, 242, 0.45);
    margin-bottom: 12px;
  }

  .mobile-drawer-links {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .mobile-drawer-links a {
    padding: 12px 14px;
    color: var(--cream);
    font-size: 16px;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.2s;
  }

  .mobile-drawer-links a:hover,
  .mobile-drawer-links a.active {
    background: rgba(242, 100, 25, 0.12);
    color: var(--orange-soft);
  }

  .mobile-drawer-lang {
    display: flex;
    gap: 6px;
  }

  .mobile-drawer-lang a {
    flex: 1;
    text-align: center;
    padding: 12px;
    background: rgba(250, 247, 242, 0.06);
    color: rgba(250, 247, 242, 0.7);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    transition: all 0.2s;
    border: 1px solid rgba(250, 247, 242, 0.08);
  }

  .mobile-drawer-lang a.active {
    background: var(--orange);
    color: white;
    border-color: var(--orange);
  }

  .mobile-drawer-lang a:hover:not(.active) {
    background: rgba(250, 247, 242, 0.1);
    color: var(--cream);
  }

  .mobile-drawer-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(250, 247, 242, 0.08);
    color: var(--cream);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1;
  }

  .mobile-drawer-close:hover {
    background: rgba(242, 100, 25, 0.2);
    color: var(--orange);
  }
}

/* Hero eyebrow Google plaque: on small screens don't overlap with top */
@media (max-width: 900px) {
  section.hero {
    padding-top: 100px !important;  /* more space from nav */
    min-height: auto;  /* allow hero to shrink if content is short */
  }

  .hero-eyebrow--google {
    font-size: 12px;
    padding: 8px 14px;
    margin-bottom: 20px;
  }

  .hero-eyebrow--google .stars {
    font-size: 12px;
  }
}

/* Breadcrumbs: extra top padding on mobile */
@media (max-width: 900px) {
  .breadcrumbs { padding-top: 90px !important; }
}

/* Footer: 2 columns on mobile (instead of 1 stacked) */
@media (max-width: 860px) {
  .footer-top {
    grid-template-columns: 1fr 1fr !important;
    gap: 28px !important;
  }
  /* Brand column spans 2 */
  .footer-brand {
    grid-column: span 2;
  }
}

/* At very small sizes, go to 1 column */
@media (max-width: 420px) {
  .footer-top {
    grid-template-columns: 1fr !important;
  }
  .footer-brand {
    grid-column: auto;
  }
}

/* Investor landing hero — check if it exists as class; if .hero same as main, mobile fix should work.
   Check padding-top on invest pages and fix the header overlap issue */

/* Investor landing 'Условия работы с инвестором' broken layout — 
   The terms block showed squished columns. Look for .terms class in investor CSS */

/* =====================================================
   INVESTOR LANDING: group brand with "back to main" link
   ===================================================== */
.brand-group {
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand-group .back-to-main {
  font-size: 13px;
  color: rgba(250, 247, 242, 0.55);
  transition: color 0.2s;
  white-space: nowrap;
}

.brand-group .back-to-main:hover {
  color: var(--orange-soft);
}

@media (max-width: 900px) {
  .brand-group .back-to-main { display: none; }
}

/* ==========================================================
   v15 MOBILE FIX — invest landing hero overflow
   ========================================================== */
@media (max-width: 600px) {
  /* Reduce container padding on small screens */
  .container { padding: 0 20px; }

  /* Invest hero h1: force smaller size + allow word wrap */
  section.hero h1 {
    font-size: clamp(32px, 9vw, 48px) !important;
    max-width: 100% !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  /* Invest hero lead paragraph: ensure wrap */
  section.hero p.lead {
    font-size: 15px !important;
    max-width: 100% !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  /* CTA buttons: stack vertically, full width on very narrow screens */
  .hero-cta {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .hero-cta .btn {
    width: 100%;
    justify-content: center;
    font-size: 14px;
    padding: 14px 20px;
  }

  /* Hero bullets: single column on phones, readable */
  .hero-bullets {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    max-width: 100% !important;
    margin-bottom: 28px;
  }
  .hero-bullet {
    font-size: 13px;
    padding: 12px 14px;
  }

  /* Hero stats: 2×2 grid on mobile */
  .hero-stats {
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
    padding: 20px !important;
  }
  .hero-stat {
    padding: 8px 6px !important;
  }
  .hero-stat .value {
    font-size: clamp(24px, 7vw, 32px) !important;
  }
  .hero-stat .label {
    font-size: 10px;
    letter-spacing: 0.05em;
  }
  .hero-stat .note { font-size: 11px; }
}

/* Very narrow phones (iPhone SE) */
@media (max-width: 380px) {
  .container { padding: 0 16px; }
  section.hero h1 { font-size: 30px !important; }
  .hero-stats {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
}

/* =====================================================
   Fleet pagination — Load More button
   ===================================================== */
.fleet-load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.fleet-load-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: white;
  color: var(--ink);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  box-shadow: var(--shadow-sm);
}

.fleet-load-more:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(242, 100, 25, 0.15);
}

.fleet-load-more .count {
  font-weight: 500;
  color: var(--ink-muted);
  font-size: 13px;
}

.fleet-load-more:hover .count {
  color: var(--orange);
}

.fleet-load-more .arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s var(--ease);
}

.fleet-load-more:hover .arrow {
  transform: translateY(2px);
}

/* Hidden cards — for progressive loading */
.fleet-full-grid .fleet-card[data-hidden="true"] {
  display: none;
}

/* "Soon" teaser card */
.fleet-soon-wrap {
  margin-top: 64px;
  padding: 48px 40px;
  background: linear-gradient(135deg, var(--navy-deep) 0%, #1a2f48 100%);
  border-radius: var(--radius-lg);
  text-align: center;
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.fleet-soon-wrap::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(242, 100, 25, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.fleet-soon-eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(242, 100, 25, 0.18);
  color: var(--orange-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 16px;
  position: relative;
}

.fleet-soon-wrap h3 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  position: relative;
}

.fleet-soon-wrap p {
  font-size: 15px;
  color: rgba(250, 247, 242, 0.75);
  max-width: 560px;
  margin: 0 auto 24px;
  line-height: 1.55;
  position: relative;
}

.fleet-soon-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  background: var(--orange);
  color: white;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.25s var(--ease);
  box-shadow: var(--shadow-orange);
  position: relative;
}

.fleet-soon-cta:hover {
  background: var(--orange-soft);
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .fleet-soon-wrap { padding: 36px 24px; }
}

/* ==========================================================
   Legal pages (Privacy Policy, Terms of Use)
   ========================================================== */
.legal-section {
  padding: 60px 0 100px;
  background: var(--cream);
}

.legal-container {
  max-width: 820px;
}

.legal-section h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 20px 0 12px;
  color: var(--ink);
}

.legal-section h2 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 36px 0 12px;
  color: var(--ink);
}

.legal-section p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-muted);
  margin: 0 0 14px;
}

.legal-section ul {
  padding-left: 20px;
  margin: 8px 0 16px;
}

.legal-section ul li {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-muted);
  margin-bottom: 6px;
}

.legal-section a {
  color: var(--orange);
  text-decoration: underline;
  text-decoration-color: rgba(242, 100, 25, 0.35);
  text-underline-offset: 3px;
  transition: all 0.2s var(--ease);
}

.legal-section a:hover {
  text-decoration-color: var(--orange);
}

.legal-section strong {
  color: var(--ink);
  font-weight: 600;
}

.legal-updated {
  font-size: 13px !important;
  color: var(--ink-muted);
  margin-bottom: 32px !important;
  opacity: 0.7;
}

.legal-section .breadcrumb {
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--ink-muted);
}

.legal-section .breadcrumb a {
  text-decoration: none;
  color: var(--ink-muted);
}

.legal-section .breadcrumb a:hover {
  color: var(--orange);
}

.legal-section .breadcrumb .current {
  color: var(--ink);
  font-weight: 500;
}

.legal-section .breadcrumb span:not(.current) {
  margin: 0 6px;
  opacity: 0.5;
}


/* ==========================================================
   Cookie consent banner
   ========================================================== */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  background: var(--navy-deep);
  color: var(--cream);
  border-radius: 16px;
  padding: 20px 22px 18px;
  box-shadow: 0 16px 48px rgba(15, 28, 46, 0.35), 0 2px 8px rgba(15, 28, 46, 0.2);
  z-index: 9998;
  transform: translateY(120%);
  transition: transform 0.55s cubic-bezier(0.25, 0.1, 0.25, 1.2);
  font-size: 14px;
  line-height: 1.55;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner-content {
  margin-bottom: 14px;
}

.cookie-banner-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-banner-title::before {
  content: "🍪";
  font-size: 16px;
}

.cookie-banner-text {
  color: rgba(250, 247, 242, 0.75);
  font-size: 13px;
}

.cookie-banner-text a {
  color: var(--orange-soft);
  text-decoration: underline;
  text-decoration-color: rgba(246, 139, 62, 0.4);
  text-underline-offset: 2px;
}

.cookie-banner-text a:hover {
  color: var(--orange);
  text-decoration-color: var(--orange);
}

.cookie-banner-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cookie-btn {
  flex: 1 1 auto;
  min-width: 0;
  padding: 10px 16px;
  border-radius: 10px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
}

.cookie-btn-accept {
  background: var(--orange);
  color: white;
  flex: 2 1 0;
}

.cookie-btn-accept:hover {
  background: var(--orange-soft);
  transform: translateY(-1px);
}

.cookie-btn-reject {
  background: rgba(250, 247, 242, 0.08);
  color: var(--cream);
  border: 1px solid rgba(250, 247, 242, 0.18);
}

.cookie-btn-reject:hover {
  background: rgba(250, 247, 242, 0.14);
  border-color: rgba(250, 247, 242, 0.3);
}

@media (max-width: 600px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 16px 18px 14px;
  }
}
