:root {
  --bg: #000000;
  --surface: #0a0a0a;
  --surface-alt: #111111;
  --text: #f5f5f5;
  --muted: #999999;
  --gold: #60a5fa;
  --gold-light: #93c5fd;
  --gold-soft: rgba(96, 165, 250, 0.14);
  --gold-glow: rgba(96, 165, 250, 0.4);
  --accent: #3b82f6;
  --primary: #60a5fa;
  --red-muted: rgba(59, 130, 246, 0.25);
  --border: rgba(96, 165, 250, 0.18);
  --radius: 14px;
  --font: 'Segoe UI', system-ui, sans-serif;
  --max: 1140px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color 0.25s var(--ease-out); }
a:hover { text-decoration: none; color: var(--gold-light); }
.container { width: min(var(--max), 100% - 32px); margin-inline: auto; }

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--left { transform: translateX(-32px); }
.reveal--right { transform: translateX(32px); }
.reveal--scale { transform: scale(0.94); }
.reveal--left.is-visible,
.reveal--right.is-visible,
.reveal--scale.is-visible { transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.demo-bar {
  background: #1e3a8a;
  color: #fff;
  font-size: 0.82rem;
  text-align: center;
  padding: 8px 16px;
  position: relative;
  z-index: 50;
}
.demo-bar a { color: #93c5fd; }

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 12, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background 0.35s var(--ease-out), border-color 0.35s, padding 0.35s, box-shadow 0.35s;
}
.site-header.is-scrolled {
  background: rgba(10, 10, 12, 0.95);
  border-bottom-color: var(--border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 16px;
  transition: padding 0.35s var(--ease-out);
}
.site-header.is-scrolled .site-header__inner { padding: 12px 0; }

.logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.3s var(--ease-out);
}
.logo:hover { transform: scale(1.02); color: var(--text); }
.logo span { color: var(--gold); font-weight: 400; }

.site-nav { display: flex; gap: 22px; font-size: 0.9rem; }
.site-nav a {
  color: var(--muted);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
}
.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
  border-radius: 2px;
}
.site-nav a.is-active,
.site-nav a:hover { color: var(--text); }
.site-nav a.is-active::after,
.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px;
  cursor: pointer;
  color: var(--text);
  transition: border-color 0.25s, background 0.25s;
}
.nav-toggle:hover { border-color: var(--gold); background: var(--gold-soft); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s, background 0.3s, border-color 0.3s;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.22) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 0.55s var(--ease-out);
}
.btn:hover::before { transform: translateX(120%); }
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--gold {
  background: linear-gradient(135deg, #1e40af 0%, #2563eb 50%, #3b82f6 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px var(--gold-glow);
}
.btn--gold:hover {
  box-shadow: 0 8px 32px var(--gold-glow);
  color: #ffffff;
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  border-color: rgba(96, 165, 250, 0.5);
  background: var(--gold-soft);
  color: var(--text);
}
.btn--block { width: 100%; }

/* ── Hero ── */
.hero {
  position: relative;
  padding: 88px 0 80px;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    url('https://images.unsplash.com/photo-1555215695-3004980ad54e?w=1600&q=85') center/cover no-repeat;
  animation: heroKenBurns 22s ease-in-out infinite alternate;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10, 10, 12, 0.94) 0%, rgba(18, 18, 20, 0.82) 45%, rgba(10, 10, 12, 0.92) 100%),
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(37, 99, 235, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 85% 20%, rgba(120, 45, 45, 0.08) 0%, transparent 50%);
}

/* Speed lines overlay */
.hero__speedlines {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.35;
}
.hero__speedlines span {
  position: absolute;
  height: 1px;
  width: 120px;
  background: linear-gradient(90deg, transparent, rgba(232, 230, 227, 0.25), transparent);
  animation: speedLine 2.8s linear infinite;
}
.hero__speedlines span:nth-child(1) { top: 22%; left: -120px; animation-delay: 0s; }
.hero__speedlines span:nth-child(2) { top: 38%; left: -120px; animation-delay: 0.6s; width: 180px; }
.hero__speedlines span:nth-child(3) { top: 55%; left: -120px; animation-delay: 1.2s; }
.hero__speedlines span:nth-child(4) { top: 72%; left: -120px; animation-delay: 1.8s; width: 140px; }
.hero__speedlines span:nth-child(5) { top: 88%; left: -120px; animation-delay: 2.2s; }
@keyframes speedLine {
  0% { transform: translateX(0); opacity: 0; }
  10% { opacity: 1; }
  100% { transform: translateX(calc(100vw + 240px)); opacity: 0; }
}

/* Brand marquee strip */
.brand-marquee {
  overflow: hidden;
  border-block: 1px solid var(--border);
  background: var(--surface);
  padding: 14px 0;
}
.brand-marquee__track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.brand-marquee__track span {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Fleet showcase */
.fleet-showcase {
  padding: 56px 0 0;
  position: relative;
}
.fleet-showcase__wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.fleet-showcase__wrap img {
  width: 100%;
  aspect-ratio: 21/9;
  object-fit: cover;
  display: block;
  filter: brightness(0.82);
  transition: filter 0.5s var(--ease-out), transform 0.6s var(--ease-out);
}
.fleet-showcase__wrap:hover img {
  filter: brightness(0.95);
  transform: scale(1.02);
}
.fleet-showcase__wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 10, 12, 0.85) 100%);
  pointer-events: none;
}
.fleet-showcase__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 32px;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.fleet-showcase__caption h3 {
  margin: 0 0 6px;
  font-size: 1.35rem;
}
.fleet-showcase__caption p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 480px;
}

/* Floating particles (canvas via rain-demo-effects.js) */
.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

/* Card shine on fleet hover */
.listing-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 42%, rgba(255,255,255,0.06) 50%, transparent 58%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease-out);
  pointer-events: none;
}
.listing-card { position: relative; }
.listing-card:hover::after { transform: translateX(120%); }
@keyframes heroKenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: -1;
  animation: orbFloat 12s ease-in-out infinite;
}
.hero__orb--1 {
  width: 320px; height: 320px;
  background: rgba(96, 165, 250, 0.18);
  top: 10%; right: 5%;
  animation-delay: 0s;
}
.hero__orb--2 {
  width: 240px; height: 240px;
  background: rgba(120, 45, 45, 0.1);
  bottom: 15%; left: 10%;
  animation-delay: -4s;
}
.hero__orb--3 {
  width: 180px; height: 180px;
  background: rgba(96, 165, 250, 0.1);
  top: 50%; left: 45%;
  animation-delay: -8s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -24px) scale(1.05); }
  66% { transform: translate(-16px, 16px) scale(0.95); }
}

.hero__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 600;
  animation: fadeDown 0.8s var(--ease-out) both;
}
.hero__eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}

.hero h1 {
  font-size: clamp(2.1rem, 4.8vw, 3.25rem);
  line-height: 1.1;
  margin: 16px 0 20px;
  background: linear-gradient(135deg, #fff 0%, #f1f5f9 40%, #cbd5e1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeUp 0.9s var(--ease-out) 0.1s both;
}
.hero > .container > .hero__grid > div:first-child > p,
.hero__intro {
  color: var(--muted);
  font-size: 1.08rem;
  margin: 0 0 28px;
  max-width: 540px;
  animation: fadeUp 0.9s var(--ease-out) 0.2s both;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  animation: fadeUp 0.9s var(--ease-out) 0.3s both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  animation: fadeUp 0.9s var(--ease-out) 0.45s both;
}
.hero__stats > div {
  transition: transform 0.35s var(--ease-spring);
}
.hero__stats > div:hover { transform: translateY(-4px); }
.hero__stats strong {
  display: block;
  font-size: 1.6rem;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.hero__stats span { font-size: 0.85rem; color: var(--muted); }

.lead-card {
  background: rgba(20, 28, 46, 0.75);
  border: 1px solid rgba(96, 165, 250, 0.2);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 0 40px rgba(96, 165, 250, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  animation: fadeUp 1s var(--ease-out) 0.35s both, cardGlow 4s ease-in-out infinite;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.4s;
}
.lead-card:hover {
  transform: translateY(-4px);
  border-color: rgba(96, 165, 250, 0.4);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.45), 0 0 48px rgba(96, 165, 250, 0.1);
}
@keyframes cardGlow {
  0%, 100% { box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 40px rgba(212,168,83,0.06); }
  50% { box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 56px rgba(212,168,83,0.12); }
}
.lead-card h3 { margin: 0 0 8px; font-size: 1.2rem; }
.lead-card > p { margin: 0 0 22px; color: var(--muted); font-size: 0.92rem; }

/* ── Sections ── */
.section { padding: 72px 0; position: relative; }
.section--alt {
  background: var(--surface);
  background-image: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(96, 165, 250, 0.04) 0%, transparent 60%);
}
.section__header { text-align: center; margin-bottom: 48px; }
.section__header h2 {
  margin: 0 0 12px;
  font-size: clamp(1.65rem, 3vw, 2rem);
  background: linear-gradient(135deg, var(--text) 0%, var(--muted) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section__header p { margin: 0; color: var(--muted); max-width: 560px; margin-inline: auto; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

/* ── Listing cards ── */
.listing-card {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.45s var(--ease-out), border-color 0.35s, box-shadow 0.45s;
  will-change: transform;
}
.listing-card:not(.tilt-card):hover {
  border-color: rgba(37, 99, 235, 0.45);
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35), 0 0 24px rgba(37, 99, 235, 0.08);
}
.listing-card.tilt-card:hover {
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35), 0 0 24px rgba(37, 99, 235, 0.08);
}
.listing-card__img { aspect-ratio: 4/3; overflow: hidden; }
.listing-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.listing-card:hover .listing-card__img img { transform: scale(1.08); }
.listing-card__body { padding: 22px; }
.listing-card__price { color: var(--gold); font-weight: 700; font-size: 1.15rem; }
.listing-card__meta { color: var(--muted); font-size: 0.88rem; margin-top: 4px; }
.listing-card h3 { margin: 8px 0 0; font-size: 1.05rem; transition: color 0.25s; }
.listing-card:hover h3 { color: var(--gold-light); }

/* ── Testimonials ── */
.testimonial-card {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.4s var(--ease-out), border-color 0.35s, box-shadow 0.4s;
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 8px;
  right: 16px;
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.08;
  font-family: Georgia, serif;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(96, 165, 250, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}
.testimonial-card blockquote { margin: 0 0 16px; font-style: italic; color: var(--text); position: relative; z-index: 1; }
.testimonial-card cite { color: var(--muted); font-style: normal; font-size: 0.88rem; }
.testimonial-card__stars { color: var(--gold); margin-bottom: 12px; letter-spacing: 2px; }

/* ── Forms ── */
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--muted); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font: inherit;
  background: rgba(12, 18, 32, 0.6);
  color: var(--text);
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(96, 165, 250, 0.6);
  box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.15);
  background: rgba(12, 18, 32, 0.9);
}
.form-group textarea { min-height: 90px; resize: vertical; }

/* ── CTA band ── */
.cta-band {
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(154,139,122,0.1) 0%, rgba(154,139,122,0.04) 50%, rgba(120,45,45,0.05) 100%);
  border-block: 1px solid rgba(96, 165, 250, 0.2);
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(212,168,83,0.08), transparent);
  animation: shimmer 8s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { transform: translateX(-100%); opacity: 0; }
  50% { transform: translateX(100%); opacity: 1; }
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { margin: 0 0 12px; }
.cta-band p { color: var(--muted); margin: 0 0 28px; }

/* ── Agent card ── */
.agent-card {
  display: flex;
  gap: 32px;
  align-items: center;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s, border-color 0.35s;
  overflow: hidden;
  position: relative;
}
.agent-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold), var(--gold-light));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s var(--ease-out);
}
.agent-card:hover {
  transform: translateX(4px);
  box-shadow: -8px 16px 40px rgba(0, 0, 0, 0.2);
  border-color: rgba(96, 165, 250, 0.3);
}
.agent-card:hover::after { transform: scaleY(1); }
.agent-card__photo {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.15), 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: transform 0.5s var(--ease-spring), box-shadow 0.4s;
}
.agent-card:hover .agent-card__photo {
  transform: scale(1.05);
  box-shadow: 0 0 0 6px rgba(96, 165, 250, 0.2), 0 12px 32px rgba(0, 0, 0, 0.35);
}
.agent-card__photo img { width: 100%; height: 100%; object-fit: cover; }

/* ── WhatsApp funnel ── */
.wa-funnel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
  animation: fadeUp 0.9s var(--ease-out) 0.55s both;
}
.wa-funnel a {
  background: rgba(26, 37, 64, 0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 14px;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  font-size: 0.88rem;
  transition: transform 0.35s var(--ease-spring), border-color 0.3s, background 0.3s, box-shadow 0.35s;
  backdrop-filter: blur(8px);
}
.wa-funnel a:hover {
  border-color: rgba(96, 165, 250, 0.5);
  background: var(--gold-soft);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  color: var(--text);
}
.wa-funnel strong { display: block; color: var(--gold); margin-bottom: 4px; font-size: 0.95rem; }

/* ── Blog & areas ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s, border-color 0.35s;
}
.blog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(96, 165, 250, 0.4);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
}
.blog-card__img { aspect-ratio: 16/10; overflow: hidden; }
.blog-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.blog-card:hover .blog-card__img img { transform: scale(1.06); }
.blog-card__body { padding: 22px; }
.blog-card__tag { font-size: 0.75rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.08em; }
.blog-card h3 { margin: 8px 0; font-size: 1.05rem; transition: color 0.25s; }
.blog-card:hover h3 { color: var(--gold-light); }
.blog-card p { margin: 0; color: var(--muted); font-size: 0.9rem; }

.areas-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.area-card {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.4s var(--ease-out), border-color 0.35s, box-shadow 0.4s;
}
.area-card:hover {
  transform: translateY(-6px);
  border-color: rgba(96, 165, 250, 0.4);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}
.area-card h3 { margin: 0 0 8px; color: var(--gold); }
.area-card__stat { display: flex; gap: 20px; margin-top: 12px; font-size: 0.88rem; color: var(--muted); flex-wrap: wrap; }

.conversion-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
  padding: 40px 0;
}
.conversion-strip > div {
  padding: 20px;
  border-radius: var(--radius);
  transition: transform 0.35s var(--ease-spring), background 0.35s;
}
.conversion-strip > div:hover {
  transform: translateY(-4px);
  background: rgba(96, 165, 250, 0.06);
}
.conversion-strip strong {
  display: block;
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 6px;
}

.booking-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.booking-summary {
  background: var(--gold-soft);
  border: 1px solid rgba(96, 165, 250, 0.3);
  border-radius: var(--radius);
  padding: 28px;
}
.map-embed iframe { width: 100%; height: 280px; border: 0; border-radius: var(--radius); }

/* ── Footer ── */
.site-footer {
  padding: 48px 0 28px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.88rem;
}
.site-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px; margin-bottom: 28px; }
.site-footer h4 { color: var(--text); margin: 0 0 12px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 6px; }
.site-footer__copy { text-align: center; padding-top: 20px; border-top: 1px solid var(--border); }

/* ── WhatsApp float ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  background: #25d366;
  color: #fff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s;
  animation: waPulse 2.5s ease-in-out infinite;
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: waRing 2.5s ease-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.55);
  text-decoration: none;
  animation: none;
}
@keyframes waPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}
@keyframes waRing {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* ── Page hero (inner pages) ── */
.page-hero {
  padding: 64px 0;
  position: relative;
  overflow: hidden;
  background: var(--surface);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% -20%, rgba(96, 165, 250, 0.15) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  animation: fadeUp 0.8s var(--ease-out) both;
  background: linear-gradient(135deg, var(--text), var(--muted));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-hero p { animation: fadeUp 0.8s var(--ease-out) 0.15s both; color: var(--muted); max-width: 560px; }

/* ── Mobile ── */
@media (max-width: 768px) {
  .hero__grid, .grid-3, .grid-2, .site-footer__grid, .agent-card { grid-template-columns: 1fr; }
  .agent-card { flex-direction: column; text-align: center; }
  .site-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(20, 28, 46, 0.98);
    padding: 16px;
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(16px);
    animation: fadeDown 0.3s var(--ease-out);
  }
  .site-nav.is-open { display: flex; }
  .site-header { position: sticky; }
  .nav-toggle { display: block; }
  .blog-grid, .areas-grid, .wa-funnel, .booking-layout, .conversion-strip { grid-template-columns: 1fr; }
  .hero { padding: 56px 0 64px; }
  .hero__orb { opacity: 0.5; }
}

/* ── 3D tilt on fleet cards ── */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
}
.tilt-card__glare {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,0.08), transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 2;
}
.tilt-card:hover .tilt-card__glare { opacity: 1; }
