/* ============================================================
   Imogen Motors — Design System
   Dark blue, modern, premium
   ============================================================ */

:root {
  /* Core palette */
  --navy-900: #060d1c;
  --navy-800: #0a1428;
  --navy-700: #0d1b34;
  --navy-600: #12203d;
  --navy-500: #182a4d;
  --navy-400: #22375f;
  --line: rgba(148, 176, 224, 0.14);
  --line-strong: rgba(148, 176, 224, 0.28);

  /* Accents */
  --gold: #c9a86a;
  --gold-soft: #e2c78f;
  --blue: #4d7cff;
  --blue-soft: #7ea0ff;

  /* Text */
  --text: #eaf0fb;
  --text-muted: #9fb0cc;
  --text-dim: #6c7f9e;

  /* Gradients */
  --grad-gold: linear-gradient(135deg, #e2c78f 0%, #c9a86a 45%, #a5824a 100%);
  --grad-blue: linear-gradient(135deg, #7ea0ff 0%, #4d7cff 100%);
  --grad-surface: linear-gradient(160deg, rgba(24, 42, 77, 0.6), rgba(10, 20, 40, 0.4));

  /* Shape & motion */
  --radius: 16px;
  --radius-lg: 24px;
  --radius-sm: 10px;
  --shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.65);
  --shadow-soft: 0 12px 32px -12px rgba(0, 0, 0, 0.5);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1200px;

  --font-sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Fraunces", Georgia, "Times New Roman", serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  background: var(--navy-800);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

/* Ambient background glow */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(900px 600px at 80% -5%, rgba(77, 124, 255, 0.14), transparent 60%),
    radial-gradient(700px 500px at 0% 10%, rgba(201, 168, 106, 0.08), transparent 55%);
  pointer-events: none;
  z-index: 0;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.section { padding: 96px 0; position: relative; z-index: 1; }
.section-sm { padding: 64px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.section-title em { color: var(--gold); font-style: italic; }
.section-lead {
  color: var(--text-muted);
  max-width: 560px;
  margin-top: 18px;
  font-size: 1.05rem;
}
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .section-lead { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--grad-gold);
  color: #1a1204;
  box-shadow: 0 10px 30px -8px rgba(201, 168, 106, 0.5);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -10px rgba(201, 168, 106, 0.65); }
.btn-ghost {
  border: 1px solid var(--line-strong);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-soft); transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn-lg { padding: 17px 34px; font-size: 1rem; }

/* ---------- Navbar ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(8, 15, 30, 0.72);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s var(--ease);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand .logo-mark { width: 44px; height: 44px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
  transition: color 0.25s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--grad-gold);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 10px; border: 1px solid var(--line); }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--text); position: relative; transition: 0.3s; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--text); transition: 0.3s; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 88px 0 96px; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 5.4vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-lead {
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 500px;
  margin: 26px 0 34px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 52px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}
.stat-num {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
}
.stat-num span { color: var(--gold); }
.stat-label { font-size: 0.82rem; color: var(--text-dim); margin-top: 8px; letter-spacing: 0.04em; }

.hero-visual { position: relative; }
.hero-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: var(--grad-surface);
  box-shadow: var(--shadow);
  position: relative;
}
.hero-card img { width: 100%; height: 480px; object-fit: cover; }
.hero-card .car-photo { height: 480px; }
.hero-badge {
  position: absolute;
  top: 20px; left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(8, 15, 30, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-strong);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 12px var(--gold); }
.hero-float {
  position: absolute;
  bottom: -26px; right: -22px;
  padding: 20px 24px;
  border-radius: var(--radius);
  background: rgba(10, 20, 40, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-float .icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--grad-gold);
  color: #1a1204;
}
.hero-float .icon svg { width: 24px; height: 24px; }
.hero-float .ft { font-weight: 700; font-size: 0.98rem; }
.hero-float .fs { font-size: 0.78rem; color: var(--text-dim); }

/* Car photo — SVG/gradient fallback base */
.car-photo {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* ---------- Trust bar ---------- */
.trust-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(6, 13, 28, 0.5);
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 26px 0;
  flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 12px; color: var(--text-muted); font-weight: 600; font-size: 0.92rem; }
.trust-item svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; }

/* ---------- Feature cards ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature-card {
  padding: 34px 30px;
  border-radius: var(--radius);
  background: var(--grad-surface);
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.feature-card:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.feature-card .fc-icon {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: rgba(201, 168, 106, 0.1);
  border: 1px solid rgba(201, 168, 106, 0.25);
  color: var(--gold);
  margin-bottom: 22px;
}
.feature-card .fc-icon svg { width: 26px; height: 26px; }
.feature-card h3 { font-size: 1.22rem; font-weight: 700; margin-bottom: 10px; }
.feature-card p { color: var(--text-muted); font-size: 0.96rem; }

/* ---------- Car grid / cards ---------- */
.inventory-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.filter-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.chip {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: 0.25s var(--ease);
}
.chip:hover { border-color: var(--line-strong); color: var(--text); }
.chip.active { background: var(--grad-gold); color: #1a1204; border-color: transparent; }
.result-count { color: var(--text-dim); font-size: 0.9rem; }

.car-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.car-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--grad-surface);
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.car-card:hover { transform: translateY(-6px); border-color: var(--line-strong); box-shadow: var(--shadow-soft); }
.car-card-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.car-card-media .car-photo { transition: transform 0.6s var(--ease); }
.car-card:hover .car-card-media .car-photo { transform: scale(1.06); }
.car-tag {
  position: absolute;
  top: 14px; left: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(8, 15, 30, 0.78);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-strong);
  color: var(--gold-soft);
}
.car-card-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.car-card-body .make { font-size: 0.78rem; color: var(--text-dim); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700; }
.car-card-body h3 { font-size: 1.24rem; font-weight: 700; margin: 6px 0 14px; }
.car-specs { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.car-spec { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; color: var(--text-muted); }
.car-spec svg { width: 15px; height: 15px; color: var(--gold); opacity: 0.85; }
.car-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.car-price { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 600; }
.car-price small { font-size: 0.7rem; color: var(--text-dim); display: block; letter-spacing: 0.06em; font-family: var(--font-sans); }
.car-link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.86rem; font-weight: 700; color: var(--gold); }
.car-link svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.car-card:hover .car-link svg { transform: translateX(4px); }

/* ---------- Car detail ---------- */
.detail-top { padding: 40px 0 20px; }
.breadcrumb { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: var(--text-dim); margin-bottom: 28px; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { opacity: 0.5; }
.detail-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: start; }
.detail-gallery { position: sticky; top: 100px; }
.detail-hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  aspect-ratio: 16 / 11;
  box-shadow: var(--shadow);
}
.detail-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 14px; }
.detail-thumb { border-radius: 12px; overflow: hidden; aspect-ratio: 16/11; border: 1px solid var(--line); cursor: pointer; transition: 0.3s; }
.detail-thumb:hover, .detail-thumb.active { border-color: var(--gold); }

.detail-info .make { font-size: 0.82rem; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; }
.detail-info h1 { font-family: var(--font-serif); font-weight: 500; font-size: clamp(2rem, 4vw, 2.9rem); line-height: 1.05; margin: 8px 0 16px; letter-spacing: -0.02em; }
.detail-price-row { display: flex; align-items: baseline; gap: 14px; margin: 22px 0; padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.detail-price { font-family: var(--font-serif); font-size: 2.6rem; font-weight: 600; }
.detail-price-note { font-size: 0.85rem; color: var(--text-dim); }
.detail-desc { color: var(--text-muted); margin: 22px 0; }
.spec-table { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin: 24px 0; }
.spec-row { background: var(--navy-700); padding: 16px 20px; }
.spec-row .k { font-size: 0.76rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.06em; }
.spec-row .v { font-weight: 700; margin-top: 4px; }
.detail-features { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0; }
.detail-features span { padding: 8px 14px; border-radius: 999px; border: 1px solid var(--line); font-size: 0.82rem; color: var(--text-muted); }

/* ---------- Payment / crypto ---------- */
.pay-box {
  border-radius: var(--radius);
  border: 1px solid rgba(201, 168, 106, 0.3);
  background: linear-gradient(160deg, rgba(201, 168, 106, 0.08), rgba(10, 20, 40, 0.3));
  padding: 28px;
  margin-top: 26px;
}
.pay-box h4 { display: flex; align-items: center; gap: 10px; font-size: 1.05rem; margin-bottom: 8px; }
.pay-box h4 svg { width: 22px; height: 22px; color: var(--gold); }
.pay-box p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 18px; }
.crypto-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.crypto-badge {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  font-weight: 700; font-size: 0.88rem;
}
.crypto-badge .sym { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; font-size: 0.8rem; font-weight: 800; }
.crypto-note { font-size: 0.8rem; color: var(--text-dim); display: flex; align-items: center; gap: 8px; }
.crypto-note svg { width: 15px; height: 15px; flex-shrink: 0; }

/* ---------- Split / about ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split-media { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line-strong); aspect-ratio: 4/3; box-shadow: var(--shadow); }
.about-list { margin-top: 28px; display: grid; gap: 18px; }
.about-list li { display: flex; gap: 14px; }
.about-list .num { font-family: var(--font-serif); color: var(--gold); font-size: 1.1rem; font-weight: 600; flex-shrink: 0; }
.about-list h4 { font-size: 1.05rem; margin-bottom: 4px; }
.about-list p { color: var(--text-muted); font-size: 0.94rem; }

.stat-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-card { padding: 30px 26px; border-radius: var(--radius); background: var(--grad-surface); border: 1px solid var(--line); text-align: center; }
.stat-card .big { font-family: var(--font-serif); font-size: 2.6rem; font-weight: 600; color: var(--text); }
.stat-card .big span { color: var(--gold); }
.stat-card .lbl { color: var(--text-muted); font-size: 0.88rem; margin-top: 8px; }

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.timeline { display: grid; gap: 0; margin-top: 20px; }
.timeline-item { display: grid; grid-template-columns: 120px 1fr; gap: 28px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.timeline-item:last-child { border-bottom: none; }
.timeline-year { font-family: var(--font-serif); font-size: 1.6rem; color: var(--gold); font-weight: 600; }
.timeline-item h4 { font-size: 1.1rem; margin-bottom: 6px; }
.timeline-item p { color: var(--text-muted); font-size: 0.95rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: start; }
.contact-info-card { padding: 34px; border-radius: var(--radius); background: var(--grad-surface); border: 1px solid var(--line); }
.contact-method { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.contact-method:last-child { border-bottom: none; }
.contact-method .cm-icon { width: 46px; height: 46px; flex-shrink: 0; display: grid; place-items: center; border-radius: 12px; background: rgba(201,168,106,0.1); border: 1px solid rgba(201,168,106,0.25); color: var(--gold); }
.contact-method .cm-icon svg { width: 22px; height: 22px; }
.contact-method .ct { font-size: 0.78rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.06em; }
.contact-method .cv { font-weight: 700; margin-top: 3px; font-size: 1.02rem; }
.contact-method .cs { font-size: 0.85rem; color: var(--text-muted); margin-top: 2px; }

.form-card { padding: 36px; border-radius: var(--radius); background: var(--grad-surface); border: 1px solid var(--line); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 0.84rem; font-weight: 700; margin-bottom: 8px; color: var(--text-muted); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: rgba(6, 13, 28, 0.6);
  border: 1px solid var(--line);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 106, 0.12);
}
.field textarea { resize: vertical; min-height: 130px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%239fb0cc' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.form-note { font-size: 0.82rem; color: var(--text-dim); margin-top: 6px; display: flex; align-items: center; gap: 8px; }
.form-note svg { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; }
.form-success { display: none; padding: 18px 20px; border-radius: var(--radius-sm); background: rgba(77, 124, 255, 0.12); border: 1px solid rgba(77, 124, 255, 0.35); color: var(--blue-soft); font-weight: 600; margin-bottom: 20px; }
.form-success.show { display: flex; align-items: center; gap: 10px; }
.form-success svg { width: 20px; height: 20px; }

/* ---------- CTA band ---------- */
.cta-band {
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  background: linear-gradient(135deg, rgba(24,42,77,0.9), rgba(10,20,40,0.7));
  border: 1px solid var(--line-strong);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 50% 0%, rgba(201,168,106,0.14), transparent 70%);
}
.cta-band h2 { font-family: var(--font-serif); font-weight: 500; font-size: clamp(1.9rem, 3.6vw, 2.8rem); position: relative; letter-spacing: -0.02em; }
.cta-band p { color: var(--text-muted); max-width: 520px; margin: 16px auto 30px; position: relative; }
.cta-actions { display: flex; gap: 14px; justify-content: center; position: relative; flex-wrap: wrap; }

/* ---------- Page header ---------- */
.page-header { padding: 72px 0 40px; text-align: center; position: relative; }
.page-header h1 { font-family: var(--font-serif); font-weight: 500; font-size: clamp(2.4rem, 5vw, 3.8rem); letter-spacing: -0.025em; line-height: 1.04; }
.page-header h1 em { color: var(--gold); font-style: italic; }
.page-header p { color: var(--text-muted); max-width: 560px; margin: 18px auto 0; font-size: 1.08rem; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); background: rgba(6, 13, 28, 0.6); padding: 64px 0 30px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand p { color: var(--text-muted); font-size: 0.92rem; max-width: 300px; }
.footer-col h5 { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 18px; }
.footer-col a { display: block; color: var(--text-muted); font-size: 0.92rem; padding: 6px 0; transition: color 0.25s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 26px; border-top: 1px solid var(--line); color: var(--text-dim); font-size: 0.85rem; flex-wrap: wrap; gap: 12px; }
.footer-crypto { display: flex; align-items: center; gap: 8px; }
.footer-crypto svg { width: 16px; height: 16px; color: var(--gold); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Empty state ---------- */
.empty { text-align: center; padding: 80px 20px; color: var(--text-dim); grid-column: 1 / -1; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .detail-gallery { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .feature-grid, .value-grid { grid-template-columns: 1fr 1fr; }
  .stat-cards { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 78px; left: 0; right: 0;
    background: rgba(8, 15, 30, 0.98);
    backdrop-filter: blur(18px);
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid var(--line);
  }
  .nav.open .nav-links a { padding: 12px 0; font-size: 1rem; }
  .car-grid, .feature-grid, .value-grid, .stat-cards { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .hero { padding: 48px 0 64px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .form-row { grid-template-columns: 1fr; }
  .spec-table { grid-template-columns: 1fr; }
  .cta-band { padding: 44px 24px; }
  .timeline-item { grid-template-columns: 1fr; gap: 8px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-float { right: 0; }
  .container { padding: 0 18px; }
}
