: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);
}

@media (max-width: 1020px) {
  nav.top .links { display: none; }
}

@media (max-width: 680px) {
  nav.top { padding: 12px 20px; }
  nav.top .brand img { height: 26px; }
  nav.top .lang a { padding: 5px 10px; font-size: 10px; }
}

/* ===== 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; }
}
