@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --ink: #14161c;
  --ink-soft: #3a3f4a;
  --muted: #6b7180;
  --line: #e7e8ec;
  --surface: #ffffff;
  --canvas: #f6f6f8;
  --canvas-alt: #eef0f4;

  --brand: #d81324;
  --brand-dark: #a80f1c;
  --brand-tint: #fdeceb;
  --navy: #12172b;
  --navy-soft: #1c2340;
  --gold: #e8a83c;
  --whatsapp: #22c55e;
  --whatsapp-dark: #189146;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(20, 22, 28, 0.06), 0 1px 1px rgba(20, 22, 28, 0.04);
  --shadow-md: 0 8px 24px rgba(20, 22, 28, 0.08);
  --shadow-lg: 0 20px 48px rgba(20, 22, 28, 0.16);

  --container: 1120px;
  --gutter: clamp(20px, 5vw, 48px);

  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--canvas);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

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

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section {
  padding: 56px 0;
}
.section-canvas { background: var(--canvas); }
.section-surface { background: var(--surface); }
.section-navy { background: var(--navy); color: #fff; }

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 10px;
}
.section-navy .eyebrow { color: var(--gold); }

.section-title {
  font-size: clamp(1.5rem, 1.1rem + 1.5vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  line-height: 1.15;
}
.section-desc {
  color: var(--muted);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 0 36px;
  line-height: 1.6;
}
.section-navy .section-desc { color: #b8bccb; }

.section-head {
  text-align: center;
}
.section-head .section-desc { margin-left: auto; margin-right: auto; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 999px;
  padding: 13px 24px;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn:active { transform: scale(0.97); }
.btn-block { width: 100%; }
.btn-brand { background: var(--brand); color: #fff; box-shadow: 0 6px 16px rgba(216, 19, 36, 0.28); }
.btn-brand:hover { background: var(--brand-dark); }
.btn-whatsapp { background: var(--whatsapp); color: #fff; box-shadow: 0 6px 16px rgba(34, 197, 94, 0.28); }
.btn-whatsapp:hover { background: var(--whatsapp-dark); }
.btn-ghost { background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.35); }
.btn-ghost:hover { background: rgba(255,255,255,0.2); }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-outline:hover { border-color: var(--ink); }
.btn-sm { padding: 9px 16px; font-size: 0.82rem; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(20, 22, 28, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  min-width: 0;
}
.brand-mark .logo-badge {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.brand-mark .logo-badge svg { width: 19px; height: 19px; color: #fff; }
.brand-mark .brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
}
.brand-mark .brand-text strong {
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.brand-mark .brand-text span {
  font-size: 0.68rem;
  color: #a7abbb;
  font-weight: 500;
}
.header-cta { display: flex; align-items: center; gap: 10px; }
.header-phone {
  display: none;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
}
.header-phone svg { width: 16px; height: 16px; color: var(--gold); }

@media (min-width: 640px) {
  .brand-mark .brand-text strong { font-size: 1rem; }
  .header-phone { display: flex; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18,23,43,0.55) 0%, rgba(18,23,43,0.88) 65%, var(--navy) 100%);
}
.hero-content {
  position: relative;
  padding: 52px 0 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}
.hero-photo {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,0.85);
  box-shadow: var(--shadow-lg);
  flex-shrink: 0;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold);
}
.hero-eyebrow svg { width: 13px; height: 13px; }
.hero-name {
  font-size: clamp(1.6rem, 1.2rem + 2vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.1;
}
.hero-role {
  color: #c3c7d6;
  font-size: 0.98rem;
  margin: 0;
  max-width: 460px;
}
.hero-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #8be6ad;
}
.hero-status .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34,197,94,0.2);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 6px;
}
.hero-stats {
  display: flex;
  gap: clamp(20px, 6vw, 56px);
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.14);
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-size: 1.5rem; font-weight: 800; }
.hero-stat span { font-size: 0.74rem; color: #a7abbb; text-transform: uppercase; letter-spacing: 0.05em; }

@media (min-width: 860px) {
  .hero-content { padding: 76px 0 60px; }
  .hero-photo { width: 116px; height: 116px; }
}

/* ===== Feature grid ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--brand-tint);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-card h3 {
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0 0 16px;
  min-height: 2.4em;
  line-height: 1.3;
}

@media (min-width: 640px) {
  .feature-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ===== Car grid & cards ===== */
.car-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) {
  .car-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .car-grid { grid-template-columns: repeat(3, 1fr); }
}

.car-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.car-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.car-card-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--canvas-alt);
  overflow: hidden;
}
.car-card-photo img { width: 100%; height: 100%; object-fit: cover; }
.car-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.car-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 6px 11px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(4px);
}
.car-badge-stock {
  background: rgba(34,197,94,0.92);
  color: #fff;
}
.car-badge-rebate {
  background: rgba(232,168,60,0.95);
  color: var(--navy);
}
.car-card-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.car-card h3 {
  margin: 0 0 14px;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.price-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}
.price-cell {
  background: var(--canvas);
  border-radius: var(--radius-sm);
  padding: 12px 12px 10px;
}
.price-cell .term {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  display: block;
  margin-bottom: 4px;
}
.price-cell .amount {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
  display: block;
}
.price-cell .amount small { font-size: 0.68rem; font-weight: 600; color: var(--muted); }
.price-cell .deposit {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 2px;
}
.price-note {
  font-size: 0.72rem;
  color: var(--muted);
  margin: 0 0 16px;
}
.car-card .btn { margin-top: auto; }

/* ===== Countdown ===== */
.countdown-band {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 32px clamp(20px, 5vw, 44px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  position: relative;
  overflow: hidden;
}
.countdown-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(216,19,36,0.35), transparent 55%),
              radial-gradient(circle at 85% 80%, rgba(232,168,60,0.25), transparent 55%);
}
.countdown-band > * { position: relative; }
.countdown-title { font-size: 1.05rem; font-weight: 800; margin: 0; }
.countdown-units { display: flex; gap: 10px; }
.countdown-units .unit {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  padding: 12px 14px;
  min-width: 64px;
}
.countdown-units .num { display: block; font-size: 1.5rem; font-weight: 800; font-variant-numeric: tabular-nums; }
.countdown-units .label { font-size: 0.64rem; text-transform: uppercase; letter-spacing: 0.05em; color: #b8bccb; }
.countdown-note { font-size: 0.76rem; color: #a7abbb; margin: 0; }
.countdown-urgency {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(232,168,60,0.15);
  border: 1px solid rgba(232,168,60,0.35);
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  margin: 0;
}

/* ===== Lead form ===== */
.lead-panel {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  padding: clamp(24px, 4vw, 40px);
  display: grid;
  gap: 32px;
}
@media (min-width: 860px) {
  .lead-panel { grid-template-columns: 1fr 1fr; align-items: center; }
}
.lead-copy h3 { font-size: 1.35rem; font-weight: 800; margin: 0 0 10px; }
.lead-copy p { color: var(--muted); margin: 0 0 20px; line-height: 1.6; }
.lead-copy ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.lead-copy li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9rem; color: var(--ink-soft); }
.lead-copy li svg { width: 18px; height: 18px; color: var(--whatsapp); flex-shrink: 0; margin-top: 1px; }

.field { margin-bottom: 14px; }
.field label { display: block; font-size: 0.78rem; font-weight: 700; color: var(--ink-soft); margin-bottom: 6px; }
.field input,
.field select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-family: inherit;
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  background: var(--canvas);
}
.field select { appearance: auto; }
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-tint);
  background: #fff;
}

/* ===== Testimonials ===== */
.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 640px) { .testi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .testi-grid { grid-template-columns: repeat(3, 1fr); } }

.testi-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.testi-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 12px; }
.testi-stars { display: flex; gap: 2px; }
.testi-stars svg { width: 15px; height: 15px; color: var(--gold); }
.testi-google {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--muted);
  flex-shrink: 0;
}
.testi-google svg { width: 13px; height: 13px; }
.testi-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 18px;
  flex: 1;
}
.testi-foot { display: flex; align-items: center; gap: 10px; }
.testi-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--navy-soft);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem;
  flex-shrink: 0;
}
.testi-meta { min-width: 0; }
.testi-name { font-weight: 700; font-size: 0.85rem; display: block; }
.testi-sub { font-size: 0.74rem; color: var(--muted); }
.testi-cta { text-align: center; margin-top: 28px; }

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  transition: transform 0.25s ease;
}
.gallery-grid a:hover img { transform: scale(1.04); }
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 980px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }

/* ===== Showroom ===== */
.showroom-panel {
  display: grid;
  gap: 32px;
  align-items: center;
}
@media (min-width: 900px) {
  .showroom-panel { grid-template-columns: 1fr 1fr; gap: 48px; }
}
.showroom-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
}
.showroom-photo img { width: 100%; height: 100%; object-fit: cover; }
.showroom-content .section-title { margin-bottom: 14px; }
.showroom-desc {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 20px;
}
.showroom-features {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.showroom-features li {
  background: var(--brand-tint);
  color: var(--brand-dark);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 7px 13px;
  border-radius: 999px;
}
.showroom-address {
  display: flex;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 22px;
}
.showroom-address svg { width: 18px; height: 18px; color: var(--brand); flex-shrink: 0; margin-top: 2px; }
.showroom-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ===== Accessories ===== */
.perk-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 640px) { .perk-grid { grid-template-columns: repeat(4, 1fr); } }
.perk-card { text-align: center; }
.perk-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 10px;
  color: var(--gold);
}
.perk-icon svg { width: 26px; height: 26px; }
.perk-card span { font-size: 0.78rem; font-weight: 600; color: #d7dae4; }

/* ===== Terms ===== */
.terms-box {
  background: var(--canvas-alt);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.7;
}
.terms-box strong { color: var(--ink-soft); }

/* ===== Footer ===== */
.site-footer {
  position: relative;
  background: var(--navy);
  color: #fff;
  padding: 52px 0 28px;
  overflow: hidden;
}
.footer-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.55;
}
.footer-bg-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--navy) 0%, rgba(18,23,43,0.55) 30%, rgba(18,23,43,0.55) 55%, var(--navy) 100%);
}
.site-footer .wrap { position: relative; z-index: 1; }
.footer-showroom-link {
  display: block;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.footer-showroom-link:hover { color: var(--gold); }
.footer-grid {
  display: grid;
  gap: 32px;
  margin-bottom: 36px;
}
@media (min-width: 860px) {
  .footer-grid { grid-template-columns: 1.1fr 0.9fr; align-items: start; }
}
.footer-agent {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 20px;
}
.footer-agent img {
  width: 60px; height: 60px; border-radius: 50%;
  object-fit: cover; border: 2px solid rgba(255,255,255,0.25);
  flex-shrink: 0;
}
.footer-agent h3 { margin: 0; font-size: 1.05rem; font-weight: 800; }
.footer-agent p { margin: 3px 0 0; font-size: 0.82rem; color: #a7abbb; }
.footer-address {
  font-size: 0.85rem;
  color: #c3c7d6;
  line-height: 1.7;
  display: flex;
  gap: 10px;
}
.footer-address svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-form-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  padding: 24px;
}
.footer-form-card h4 { margin: 0 0 16px; font-size: 0.95rem; font-weight: 700; }
.footer-form-card .field label { color: #d7dae4; }
.footer-form-card .field input,
.footer-form-card .field select {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.18);
  color: #fff;
}
.footer-form-card .field select option { color: var(--ink); }
.footer-form-card .field input::placeholder { color: #7c8199; }
.footer-form-card .field input:focus,
.footer-form-card .field select:focus { background: rgba(255,255,255,0.1); box-shadow: 0 0 0 3px rgba(216,19,36,0.35); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  font-size: 0.76rem;
  color: #7c8199;
  text-align: center;
}

/* ===== CTA Lead Modal ===== */
.cta-modal {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
}
.cta-modal.cta-modal-active { opacity: 1; visibility: visible; }
.cta-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18,23,43,0.6);
  backdrop-filter: blur(2px);
}
.cta-modal-panel {
  position: relative;
  width: 100%;
  max-width: 400px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(24px, 5vw, 32px);
  transform: translateY(10px);
  transition: transform 0.2s ease;
}
.cta-modal.cta-modal-active .cta-modal-panel { transform: translateY(0); }
.cta-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: var(--canvas-alt);
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-modal-panel h3 { margin: 0 0 6px; font-size: 1.15rem; font-weight: 800; padding-right: 24px; }
.cta-modal-sub { margin: 0 0 20px; color: var(--muted); font-size: 0.86rem; line-height: 1.5; }

/* ===== Splash ===== */
.splash {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
.splash.splash-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.splash-content {
  position: relative;
  width: 100%;
  padding: 0 clamp(20px, 6vw, 48px);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.splash-card {
  position: relative;
  width: min(300px, 72vw);
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: visible;
  margin-bottom: 44px;
  opacity: 0;
  animation: splashFade 0.7s ease 0.1s forwards;
}
.splash-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}
@keyframes splashFade { to { opacity: 1; } }
.splash-photo {
  position: absolute;
  left: 50%;
  bottom: -34px;
  transform: translateX(-50%);
  width: 76px;
  height: 76px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--navy);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  animation: splashPhotoRise 0.6s ease 0.4s forwards;
}
@keyframes splashPhotoRise {
  from { opacity: 0; transform: translateX(-50%) translateY(10px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.splash-photo img { width: 100%; height: 100%; object-fit: cover; }
.splash-title {
  margin: 0;
  font-size: clamp(1.15rem, 1rem + 1vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  opacity: 0;
  transform: translateY(10px);
  animation: splashRise 0.6s ease 0.5s forwards;
}
.splash-subtitle {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  animation: splashRise 0.6s ease 0.62s forwards;
}
@keyframes splashRise {
  to { opacity: 1; transform: translateY(0); }
}
.splash-progress {
  width: min(220px, 60vw);
  height: 3px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  overflow: hidden;
  margin-top: 4px;
  opacity: 0;
  animation: splashRise 0.5s ease 0.75s forwards;
}
.splash-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--brand), var(--gold));
  border-radius: inherit;
  animation: splashFill 2.6s ease 0.9s forwards;
}
@keyframes splashFill { to { width: 100%; } }
.splash-skip {
  margin-top: 4px;
  background: transparent;
  border: none;
  color: #9aa0b4;
  font-size: 0.76rem;
  font-weight: 600;
  cursor: pointer;
  opacity: 0;
  animation: splashRise 0.5s ease 0.9s forwards;
}
.splash-skip:hover { color: #fff; }

/* ===== Responsive polish ===== */
@media (min-width: 1024px) {
  .section { padding: 80px 0; }
}
