/* ─────────────────────────────────────────────
   CUSTOM PROPERTIES
───────────────────────────────────────────── */
:root {
  --navy:        #0A1628;
  --navy-mid:    #0D1D35;
  --navy-light:  #142440;
  --gold:        #C9A84C;
  --gold-light:  #DDB96A;
  --gold-dark:   #A8882E;
  --gold-glass:  rgba(201, 168, 76, 0.12);
  --gold-border: rgba(201, 168, 76, 0.25);
  --white:       #FFFFFF;
  --off-white:   #F7F6F2;
  --gray-100:    #F1F0EC;
  --gray-200:    #E4E3DC;
  --gray-400:    #9E9D93;
  --gray-600:    #6B6A60;
  --gray-800:    #2A2924;
  --green-wa:    #25D366;

  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:  'DM Sans', system-ui, -apple-system, sans-serif;

  --ease:   cubic-bezier(0.4, 0, 0.2, 1);
  --dur:    0.3s;

  --shadow-sm: 0 2px 8px rgba(10,22,40,.07);
  --shadow-md: 0 8px 24px rgba(10,22,40,.11);
  --shadow-lg: 0 20px 56px rgba(10,22,40,.18);

  --r-sm:  6px;
  --r-md:  14px;
  --r-lg:  24px;
}

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

/* ─────────────────────────────────────────────
   LAYOUT
───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}
.text-center { text-align: center; }

/* ─────────────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.8vw, 2.7rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.18;
  letter-spacing: -.4px;
  margin-bottom: 16px;
}
.section-title.on-dark { color: var(--white); }
.section-sub {
  font-size: 1.025rem;
  color: var(--gray-600);
  max-width: 580px;
  margin-bottom: 60px;
}
.section-sub.on-dark { color: rgba(255,255,255,.55); }
.section-sub.mx-auto { margin-left: auto; margin-right: auto; }

/* ─────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 30px;
  border-radius: var(--r-sm);
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .2px;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease),
              transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,.35);
}
.btn-ghost-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.35);
}
.btn-ghost-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.08);
  transform: translateY(-1px);
}
.btn-ghost-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-ghost-navy:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-whatsapp {
  background: var(--green-wa);
  color: var(--white);
  border-color: var(--green-wa);
  font-size: 1rem;
  padding: 17px 38px;
}
.btn-whatsapp:hover {
  background: #1ebe5a;
  border-color: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37,211,102,.32);
}

/* ─────────────────────────────────────────────
   SCROLL ANIMATIONS
───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
.reveal.d5 { transition-delay: .40s; }
.reveal.d6 { transition-delay: .48s; }

/* ─────────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────────── */
.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 900;
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.site-nav.scrolled {
  background: rgba(10,22,40,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--gold-border), 0 4px 32px rgba(0,0,0,.35);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  padding: 0 36px;
  max-width: 1300px;
  margin: 0 auto;
}

/* Logo */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  flex-shrink: 0;
}
.brand-emblem { width: 46px; height: 46px; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.2px;
}
.brand-sub {
  font-size: .62rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 3px;
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 38px;
  align-items: center;
}
.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  position: relative;
  transition: color var(--dur);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--dur) var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

/* Mobile toggle */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.nav-burger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--dur) var(--ease);
  display: block;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  display: none;
  flex-direction: column;
  background: var(--navy-mid);
  border-top: 1px solid var(--gold-border);
  padding: 8px 36px 24px;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  color: rgba(255,255,255,.75);
  font-size: .975rem;
  font-weight: 500;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: color var(--dur);
}
.nav-drawer a:hover { color: var(--gold); }
.nav-drawer a:last-child { border-bottom: none; color: var(--gold); }

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  background:
    linear-gradient(rgba(10,22,40,.82), rgba(10,22,40,.88)),
    url('../assets/stand.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 130px 0 90px;
  overflow: hidden;
}

/* Subtle radial glow */
.hero-glow {
  position: absolute;
  top: 20%;
  right: 8%;
  width: 620px;
  height: 620px;
  background: radial-gradient(ellipse, rgba(201,168,76,.07) 0%, transparent 68%);
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute;
  bottom: -10%;
  left: 20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(37,99,235,.05) 0%, transparent 70%);
  pointer-events: none;
}

/* EU stars ring – decorative */
.hero-eu-ring {
  display: none;
}

.hero-content { position: relative; z-index: 2; max-width: 760px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-glass);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px 6px 12px;
  border-radius: 100px;
  margin-bottom: 32px;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(.7); }
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6.5vw, 4.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 26px;
}
.hero h1 em { font-style: italic; color: var(--gold); }

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.58);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 48px;
}
.hero-sub strong { color: rgba(255,255,255,.85); font-weight: 500; }

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-rule {
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 28px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* ─────────────────────────────────────────────
   STATS BAR
───────────────────────────────────────────── */
.stats-bar {
  background: var(--navy-mid);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-cell {
  padding: 38px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.05);
  position: relative;
  overflow: hidden;
  transition: background var(--dur);
}
.stat-cell:last-child { border-right: none; }
.stat-cell::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .55s var(--ease);
}
.stat-cell:hover { background: rgba(201,168,76,.04); }
.stat-cell:hover::after { width: 56%; }
.stat-num {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-lbl {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .3px;
  line-height: 1.4;
}

/* ─────────────────────────────────────────────
   HOW IT WORKS
───────────────────────────────────────────── */
.how-section {
  padding: 108px 0;
  background: var(--off-white);
}
.how-header { margin-bottom: 72px; }

.steps-wrap { position: relative; }
.steps-connector {
  display: none;
  position: absolute;
  top: 27px;
  left: calc(10% + 27px);
  right: calc(10% + 27px);
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    var(--gold-border) 0,
    var(--gold-border) 8px,
    transparent 8px,
    transparent 18px
  );
  pointer-events: none;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
.step-card {
  text-align: center;
  padding: 0 8px;
  transition: transform var(--dur);
}
.step-card:hover { transform: translateY(-4px); }
.step-icon {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  border: 1.5px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  transition: background var(--dur), border-color var(--dur), box-shadow var(--dur);
}
.step-card:hover .step-icon {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 0 8px rgba(201,168,76,.12);
}
.step-card:hover .step-icon svg { stroke: var(--navy); }
.step-badge {
  position: absolute;
  top: -7px;
  right: -7px;
  width: 20px;
  height: 20px;
  background: var(--gold);
  color: var(--navy);
  font-size: .62rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-title {
  font-family: var(--serif);
  font-size: .975rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.step-desc {
  font-size: .8rem;
  color: var(--gray-600);
  line-height: 1.55;
}

/* ─────────────────────────────────────────────
   FEATURED MODELS
───────────────────────────────────────────── */
.models-section {
  padding: 108px 0;
  background: var(--white);
}
.models-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.models-header .section-sub { margin-bottom: 0; }
.models-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.model-card {
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  background: var(--white);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur);
  cursor: pointer;
}
.model-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-border);
}

/* Model image area */
.model-img {
  position: relative;
  height: 188px;
  overflow: hidden;
}
.model-img-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Car silhouette SVG inside each card */
.model-car-svg {
  width: 88%;
  max-width: 260px;
  opacity: .45;
  position: relative;
  z-index: 1;
  transition: opacity var(--dur), transform var(--dur);
}
.model-card:hover .model-car-svg { opacity: .65; transform: scale(1.03); }
/* Dot grid overlay */
.model-img::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(circle, rgba(201,168,76,.07) 1px, transparent 1px);
  background-size: 22px 22px;
}
/* Bottom fade */
.model-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  z-index: 2;
}
.model-savings-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  background: var(--gold);
  color: var(--navy);
  font-size: .68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: .3px;
  white-space: nowrap;
}

/* Model card body */
.model-body { padding: 22px 24px 26px; }
.model-brand-lbl {
  font-size: .68rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}
.model-name {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.model-specs {
  font-size: .8rem;
  color: var(--gray-400);
  margin-bottom: 18px;
}
.model-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 1px;
  transition: color var(--dur), gap var(--dur);
}
.model-link:hover { color: var(--gold-dark); gap: 10px; }

/* Per-model gradient backgrounds */
.bg-tesla   { background: linear-gradient(135deg, #0A1628 0%, #0d2040 50%, #152a50 100%); }
.bg-bmw     { background: linear-gradient(135deg, #0A1628 0%, #101c30 50%, #1a2a42 100%); }
.bg-hyundai { background: linear-gradient(135deg, #0c1a2e 0%, #0f2035 60%, #162840 100%); }
.bg-byd     { background: linear-gradient(135deg, #0A1628 0%, #0e1f32 50%, #162033 100%); }
.bg-peugeot { background: linear-gradient(135deg, #0b1a2e 0%, #121f30 50%, #182438 100%); }

/* ─────────────────────────────────────────────
   WHY AUTO BRUXELAS
───────────────────────────────────────────── */
.why-section {
  padding: 108px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.why-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(201,168,76,.035) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  position: relative;
  z-index: 1;
}
.why-card {
  padding: 40px 32px;
  border: 1px solid var(--gold-border);
  border-radius: var(--r-md);
  background: rgba(255,255,255,.025);
  transition: border-color var(--dur), background var(--dur), transform var(--dur);
}
.why-card:hover {
  border-color: rgba(201,168,76,.5);
  background: rgba(255,255,255,.05);
  transform: translateY(-4px);
}
.why-icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--gold-glass);
  border: 1px solid var(--gold-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  transition: background var(--dur), border-color var(--dur);
}
.why-card:hover .why-icon-wrap {
  background: rgba(201,168,76,.22);
  border-color: var(--gold);
}
.why-title {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.why-desc {
  font-size: .865rem;
  color: rgba(255,255,255,.48);
  line-height: 1.72;
}

/* ─────────────────────────────────────────────
   FAQ
───────────────────────────────────────────── */
.faq-section { padding: 108px 0; background: var(--off-white); }
.faq-header { max-width: 600px; }
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-item:first-child { border-top: 1px solid var(--gray-200); }

.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--serif);
  font-size: 1.06rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: color var(--dur);
}
.faq-btn.active { color: var(--gold-dark); }
.faq-btn:hover  { color: var(--gold-dark); }

.faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  line-height: 1;
  color: var(--gray-400);
  transition: transform var(--dur), background var(--dur), border-color var(--dur), color var(--dur);
}
.faq-btn.active .faq-icon {
  transform: rotate(45deg);
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-glass);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .42s var(--ease);
}
.faq-body.open { max-height: 400px; }
.faq-body-inner {
  padding-bottom: 26px;
  font-size: .93rem;
  color: var(--gray-600);
  line-height: 1.78;
}
.faq-body-inner strong { color: var(--navy); font-weight: 600; }

/* ─────────────────────────────────────────────
   FINAL CTA
───────────────────────────────────────────── */
.cta-section {
  padding: 120px 0;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(201,168,76,.065) 0%, transparent 65%);
  pointer-events: none;
}
.cta-section h2 {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 5.5vw, 3.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -.8px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.cta-section h2 em { font-style: italic; color: var(--gold); }
.cta-section p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.5);
  max-width: 500px;
  margin: 0 auto 52px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-email {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .875rem;
  color: rgba(255,255,255,.42);
  transition: color var(--dur);
}
.cta-email:hover { color: var(--gold); }
.cta-divider {
  color: rgba(255,255,255,.2);
  font-size: .8rem;
}
.hs-form-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: 0 8px 40px rgba(0,0,0,.25);
  color: var(--gray-800);
}
@media (max-width: 480px) {
  .hs-form-wrapper { padding: 24px 18px; }
}

/* ── Custom contact form ── */
.hs-form-wrapper .form-intro {
  font-size: .9rem;
  color: var(--gray-600) !important;
  margin-bottom: 28px;
  line-height: 1.65;
  text-align: center;
  border-bottom: 1px solid var(--gray-100);
  padding-bottom: 24px;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  color: var(--gray-600) !important;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.form-group input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-size: 1rem;
  font-family: var(--sans);
  color: var(--gray-800);
  background: var(--gray-100);
  transition: border-color var(--dur), background var(--dur);
}
.form-group input::placeholder { color: var(--gray-400); }
.form-group input:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}
.form-group input.error {
  border-color: #e53e3e;
  background: #fff5f5;
}
.phone-field-wrap {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  background: var(--gray-100);
  overflow: hidden;
  transition: border-color var(--dur);
}
.phone-field-wrap:focus-within {
  border-color: var(--gold);
  background: #fff;
}
.phone-field-wrap.error { border-color: #e53e3e; }
.phone-prefix {
  padding: 13px 12px 13px 14px;
  font-size: .95rem;
  color: var(--gray-800);
  white-space: nowrap;
  border-right: 1.5px solid var(--gray-200);
  background: #fff;
  user-select: none;
}
.phone-field-wrap input {
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  flex: 1;
}
.phone-field-wrap input:focus { outline: none; }
.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 24px;
  font-size: 1rem;
  padding: 16px 24px;
  border-radius: 10px;
  letter-spacing: .01em;
}
.hs-form-wrapper .form-disclaimer {
  margin-top: 14px;
  font-size: .76rem;
  color: var(--gray-400) !important;
  text-align: center;
}
.form-success {
  text-align: center;
  padding: 32px 0;
}
.form-success svg {
  margin: 0 auto 20px;
}
.form-success h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.hs-form-wrapper .form-success p {
  color: var(--gray-600) !important;
  font-size: .95rem;
  line-height: 1.6;
}

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.site-footer {
  background: #060d1b;
  border-top: 1px solid var(--gold-border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  margin-bottom: 28px;
}
.footer-about .brand-name {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 2px;
}
.footer-about .brand-sub-sm {
  font-size: .62rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 18px;
}
.footer-about p {
  font-size: .84rem;
  color: rgba(255,255,255,.38);
  line-height: 1.75;
  max-width: 300px;
}
.footer-col-title {
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.footer-links-list { display: flex; flex-direction: column; gap: 13px; }
.footer-links-list a {
  font-size: .84rem;
  color: rgba(255,255,255,.4);
  transition: color var(--dur);
}
.footer-links-list a:hover { color: var(--white); }
.footer-location-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: .84rem;
  color: rgba(255,255,255,.4);
  margin-bottom: 12px;
}
.footer-location-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: .75rem;
  color: rgba(255,255,255,.22);
}
.footer-copy a { color: rgba(255,255,255,.32); transition: color var(--dur); }
.footer-copy a:hover { color: var(--gold); }
.footer-gold-mark {
  display: flex;
  align-items: center;
  gap: 8px;
}
.gold-star-sm {
  font-size: .7rem;
  color: var(--gold);
  letter-spacing: 3px;
}

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .nav-links  { gap: 26px; }
  .steps-grid { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
  .steps-connector { display: none; }
  .models-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links    { display: none; }
  .nav-inner .btn { display: none; }
  .nav-burger   { display: flex; }
  .stats-grid   { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(3),
  .stat-cell:nth-child(4) { border-top: 1px solid rgba(255,255,255,.05); }
  .stat-cell:nth-child(4) { border-right: none; }
  .steps-grid   { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .models-grid  { grid-template-columns: 1fr; }
  .why-grid     { grid-template-columns: 1fr; gap: 20px; }
  .models-header { flex-direction: column; align-items: flex-start; }
  .footer-grid  { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid > :first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 520px) {
  .steps-grid { grid-template-columns: 1fr; }
  .hero h1    { font-size: 2.2rem; letter-spacing: -.5px; }
  .hero-ctas  { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; }
  .cta-divider { display: none; }
}

/* ─────────────────────────────────────────────
   SOBRE NÓS
───────────────────────────────────────────── */
.sobre-section {
  padding: 112px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.sobre-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 75% 55%, rgba(201,168,76,.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 10% 20%, rgba(201,168,76,.04) 0%, transparent 60%);
  pointer-events: none;
}
.sobre-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
}
.sobre-lead {
  font-size: 1.06rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 18px;
  line-height: 1.78;
}
.sobre-body {
  font-size: .96rem;
  color: rgba(255,255,255,.48);
  line-height: 1.82;
  margin-bottom: 40px;
}
.sobre-body strong {
  color: rgba(255,255,255,.82);
  font-weight: 600;
}
.sobre-stats {
  display: flex;
  gap: 0;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.09);
}
.sobre-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding-right: 24px;
}
.sobre-stat + .sobre-stat {
  padding-left: 24px;
  padding-right: 0;
  border-left: 1px solid rgba(255,255,255,.09);
}
.sobre-num {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -.5px;
}
.sobre-lbl {
  font-size: .71rem;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
}

/* Pillars card */
.sobre-visual {
  display: flex;
  justify-content: center;
}
.sobre-pillars-card {
  width: 100%;
  max-width: 430px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.18);
  border-radius: var(--r-lg);
  padding: 8px;
  backdrop-filter: blur(8px);
}
.sobre-pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 18px;
  border-radius: var(--r-md);
  transition: background var(--dur) var(--ease);
  cursor: default;
}
.sobre-pillar:hover { background: rgba(255,255,255,.05); }
.sobre-pillar + .sobre-pillar {
  border-top: 1px solid rgba(255,255,255,.06);
}
.sobre-pillar-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--gold-glass);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sobre-pillar-title {
  font-size: .9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 5px;
  line-height: 1.3;
}
.sobre-pillar-desc {
  font-size: .8rem;
  color: rgba(255,255,255,.42);
  line-height: 1.65;
}

/* ─────────────────────────────────────────────
   TESTEMUNHOS
───────────────────────────────────────────── */
.testimonials-section {
  padding: 112px 0;
  background: var(--off-white);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.testi-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.testi-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  z-index: 1;
}
.testi-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

/* Card header — navy block with savings */
.testi-header {
  background: var(--navy);
  padding: 28px 26px 22px;
  position: relative;
  overflow: hidden;
}
.testi-header::after {
  content: '\201C';
  position: absolute;
  right: 18px;
  bottom: -18px;
  font-family: var(--serif);
  font-size: 9rem;
  line-height: 1;
  color: rgba(201,168,76,.12);
  pointer-events: none;
  user-select: none;
}
.testi-model-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 14px;
}
.testi-model-chip::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.testi-savings-hero {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -.5px;
  margin-bottom: 4px;
}
.testi-savings-label {
  font-size: .72rem;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
}

/* Card body */
.testi-body {
  padding: 22px 26px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.testi-stars {
  display: flex;
  gap: 1px;
  margin-bottom: 14px;
}
.testi-stars span {
  color: var(--gold);
  font-size: .95rem;
}
.testi-quote {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.78;
  font-style: italic;
  flex: 1;
  margin-bottom: 20px;
}
.testi-divider {
  height: 1px;
  background: var(--gray-200);
  margin-bottom: 16px;
}
.testi-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testi-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-size: .72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  letter-spacing: .5px;
}
.testi-name {
  font-size: .86rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}
.testi-location {
  font-size: .74rem;
  color: var(--gray-400);
}
.testi-delivery-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .69rem;
  font-weight: 600;
  color: var(--gold-dark);
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.22);
  padding: 4px 9px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 960px) {
  .sobre-inner         { grid-template-columns: 1fr; gap: 52px; }
  .sobre-visual        { display: none; }
  .testi-grid          { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .sobre-stats         { flex-direction: column; gap: 24px; }
  .sobre-stat + .sobre-stat { border-left: none; border-top: 1px solid rgba(255,255,255,.09); padding-left: 0; padding-top: 24px; }
}
