/* ============================================================
   DMV Socials — Modern Dark Theme
   Inter for all text, Orbitron for small labels only
   ============================================================ */

:root {
  --bg:          #08080e;
  --bg2:         #0d0d16;
  --bg3:         #111119;
  --orange:      #e8b84b;        /* gold — for CTAs, headline highlights */
  --orange-glow: rgba(232, 184, 75, 0.30);
  --orange-dim:  rgba(232, 184, 75, 0.08);
  --purple:      #8b5cf6;        /* purple — for labels, glows, borders */
  --purple-l:    rgba(139, 92, 246, 0.85);
  --purple-glow: rgba(139, 92, 246, 0.22);
  --purple-dim:  rgba(139, 92, 246, 0.07);
  --border-p:    rgba(139, 92, 246, 0.18);
  --border-o:    rgba(232, 184, 75, 0.22);
  --green:       #22c55e;
  --text:        #f0f0f8;
  --dim:         rgba(240,240,248,0.38);
  --border:      rgba(255,255,255,0.07);
  --radius-sm:   4px;
  --radius:      6px;
  --radius-lg:   4px;
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
strong { color: #fff; font-weight: 700; }
ul { list-style: none; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container        { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.container-narrow { max-width: 720px;  margin: 0 auto; padding: 0 2rem; }
.section          { padding: clamp(80px, 9vw, 130px) 0; }
.section-alt      { background: var(--bg2); }

.section-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 1.2rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 3rem;
  letter-spacing: -0.02em;
}

.text-orange {
  background: linear-gradient(135deg, #f5d778 0%, #e8b84b 40%, #c99a2e 75%, #f0c96a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-purple { color: var(--purple-l); }

/* ============================================================
   BUTTONS — sharp, uppercase, premium
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: transform 0.2s var(--ease), opacity 0.2s, box-shadow 0.25s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-lg { padding: 1rem 2.2rem; font-size: 0.75rem; }

.btn-orange {
  background: var(--orange);
  color: #fff;
}
.btn-orange {
  background: linear-gradient(135deg, #f0c96a 0%, #c99a2e 100%);
  color: #1a1200;
  box-shadow: 0 0 18px rgba(232,184,75,0.25);
}
.btn-orange:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 36px rgba(232,184,75,0.55), 0 0 60px rgba(232,184,75,0.2);
  filter: brightness(1.08);
}

.btn-purple {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-purple:hover {
  border-color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.04);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.18);
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.04);
}

.arrow { transition: transform 0.2s; }
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
#announce-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1100;
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  background: #111119;
  border-bottom: 1px solid rgba(139, 92, 246, 0.25);
  padding: 0.55rem 2.5rem 0.55rem 1.5rem; /* extra right room for × */
  font-size: 0.72rem; font-weight: 500; color: rgba(255,255,255,0.75);
  text-align: center;
  letter-spacing: 0.02em;
  overflow: hidden;
}
.ann-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #fff; opacity: 0.7;
  animation: dot-blink 2s ease-in-out infinite; flex-shrink: 0;
}
.ann-cta {
  font-weight: 700; color: var(--orange);
  white-space: nowrap;
  letter-spacing: 0.04em;
  transition: opacity 0.2s;
}
.ann-cta:hover { opacity: 0.75; }

/* Close button — absolutely positioned at right edge */
.ann-close {
  position: absolute;
  right: 0.65rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.3rem 0.35rem;
  border-radius: 3px;
  transition: color 0.15s ease, background 0.15s ease;
  flex-shrink: 0;
}
.ann-close:hover { color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.1); }

/* ============================================================
   NAV
   ============================================================ */
#nav {
  position: fixed;
  top: 36px; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.55rem 2.5rem;
  background: rgba(9,9,15,0.92);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: transform 0.3s var(--ease), top 0.32s ease;
}
#nav.hidden { transform: translateY(-100%); }

/* Hero padding transition for seamless announce-bar close */
#hero  { transition: padding-top 0.32s ease; }
#m-hero { transition: padding-top 0.32s ease; }

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.nav-logo:hover { opacity: 0.82; }
.logo-accent { color: var(--purple-l); }

.nav-center { display: flex; align-items: center; gap: 0.5rem; }
.nav-link {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dim);
  padding: 0.4rem 0.8rem;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--text); }

.nav-cta { font-size: 0.82rem; padding: 0.6rem 1.3rem; }

/* ============================================================
   HERO — Hormozi centered style
   ============================================================ */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  padding-top: 100px; /* announce bar ~36px + slim nav ~64px */
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(ellipse 55% 45% at 50% 55%, rgba(139, 92, 246, 0.14) 0%, transparent 65%),
    radial-gradient(ellipse 35% 35% at 75% 20%, rgba(139, 92, 246, 0.06) 0%, transparent 55%),
    var(--bg);
}

.hero-video-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0; pointer-events: none;
  opacity: 0.88;
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(to bottom,
      rgba(9,9,15,0.30) 0%,
      rgba(9,9,15,0.45) 55%,
      rgba(9,9,15,0.82) 100%),
    radial-gradient(ellipse 60% 50% at 50% 60%, rgba(139, 92, 246, 0.07) 0%, transparent 65%);
}

.hero-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  width: 100%; max-width: 1100px;
  margin: 0 auto;
  padding: clamp(8rem, 14vw, 16rem) 2rem clamp(3rem, 5vw, 6rem);
}

/* Hero tag — minimal uppercase label */
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.8rem;
}
/* When tag is after the CTA (bottom position) */
.hero-cta-group + .hero-tag {
  margin-top: 3rem;
  margin-bottom: 0;
}
.tag-icon { color: var(--orange); font-size: 0.6rem; }

.hero-headline {
  font-size: clamp(1.3rem, 2.2vw, 2.1rem);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}

.hero-sub {
  font-size: 1.08rem; font-weight: 400;
  color: var(--dim); line-height: 1.35;
  margin-bottom: 2rem; max-width: 560px;
}

.hero-guarantee {
  display: flex; align-items: center; gap: 0.75rem;
  flex-wrap: wrap; justify-content: center;
  font-size: 0.88rem; font-weight: 500;
  color: var(--dim); line-height: 1.6;
  margin-top: 1.5rem;
}
.guarantee-pill {
  color: var(--orange); font-weight: 800; font-size: 0.65rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  white-space: nowrap;
  border-bottom: 1px solid rgba(249,115,22,0.5);
  padding-bottom: 1px;
}

.hero-cta-group { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.cta-micro { font-size: 0.72rem; color: var(--dim); text-align: center; }

/* Extra-large button variant */
.btn-xl { padding: 1.2rem 3rem; font-size: 0.78rem; }

/* ============================================================
   VSL SECTION
   ============================================================ */
.section-vsl {
  padding: clamp(60px, 7vw, 100px) 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  text-align: center;
}
.vsl-section-title {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 900; line-height: 1.15;
  color: #fff; letter-spacing: -0.02em;
  margin-bottom: 2rem;
}
.vsl-box {
  width: 100%; max-width: 680px; margin: 0 auto;
  aspect-ratio: 16/9;
  background: var(--bg3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
  transition: border-color 0.3s;
}
.vsl-box:hover { border-color: rgba(124,58,237,0.35); }
.vsl-box::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(124,58,237,0.06) 0%, transparent 70%);
}
.vsl-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  align-items: center; gap: 0.8rem; text-align: center;
}
.vsl-play {
  filter: drop-shadow(0 0 18px rgba(124,58,237,0.5));
  transition: transform 0.25s, filter 0.25s;
}
.vsl-box:hover .vsl-play { transform: scale(1.08); filter: drop-shadow(0 0 28px rgba(124,58,237,0.8)); }
.vsl-label { font-size: 0.85rem; font-weight: 600; color: var(--dim); }
.vsl-sub   { font-size: 0.7rem; color: rgba(90,104,128,0.55); }

.vsl-bullets {
  display: flex; flex-direction: column; gap: 0.65rem;
  margin: 2rem auto; max-width: 480px; text-align: left;
}
.vsl-bullet {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.9rem; color: var(--text); line-height: 1.5;
}
.vb-check {
  color: var(--green); font-weight: 700;
  flex-shrink: 0; margin-top: 0.1rem;
}
.vsl-cta-row {
  display: flex; flex-direction: column; align-items: center; gap: 0.65rem;
  margin-top: 2rem;
}

/* ============================================================
   LEAD MAGNETS
   ============================================================ */
#ressources { padding-top: 5rem; padding-bottom: 5rem; }
.lm-header { text-align: center; margin-bottom: 3rem; }
.lm-intro {
  font-size: 1rem; color: var(--dim); max-width: 520px;
  margin: -1.5rem auto 0; line-height: 1.7;
}
.lm-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.lm-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  display: flex; flex-direction: column; gap: 0.8rem;
  transition: border-color 0.25s, transform 0.25s;
}
.lm-card:hover {
  border-color: var(--border-p);
  transform: translateY(-3px);
}
.lm-top { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }
.lm-type-badge {
  font-size: 0.68rem; font-weight: 600; color: var(--dim);
  letter-spacing: 0.04em;
}
.lm-tag {
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 0.18rem 0.55rem;
  border-radius: 999px; flex-shrink: 0;
}
.lm-tag-hot { background: rgba(249,115,22,0.15); color: var(--orange); border: 1px solid rgba(249,115,22,0.25); }
.lm-tag     { background: rgba(124,58,237,0.12); color: var(--purple-l); border: 1px solid rgba(124,58,237,0.22); }
.lm-title {
  font-size: 0.95rem; font-weight: 700; color: #fff; line-height: 1.35;
}
.lm-desc {
  font-size: 0.78rem; color: var(--dim); line-height: 1.6; flex: 1;
}
.lm-btn { margin-top: auto; width: 100%; justify-content: center; font-size: 0.8rem; }

@media (max-width: 960px) { .lm-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .lm-grid { grid-template-columns: 1fr; } }

/* Dot */
.dot-pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 8px var(--green);
  flex-shrink: 0; animation: dot-blink 2s ease-in-out infinite;
}
@keyframes dot-blink { 0%,100%{opacity:1;} 50%{opacity:0.2;} }

/* ============================================================
   STATS STRIP
   ============================================================ */
#stats-strip {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.8rem 2rem;
}
.stats-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-around;
  gap: 1.5rem; flex-wrap: wrap;
}
.stat-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.2rem; }
.stat-num-row { display: flex; align-items: baseline; gap: 0.05rem; }
.stat-num, .stat-pre, .stat-suf {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--orange);
  text-shadow: 0 0 20px rgba(249,115,22,0.45);
  letter-spacing: -0.02em; line-height: 1;
}
.stat-pre, .stat-suf { font-size: clamp(1.4rem, 2.5vw, 2rem); }
.stat-label { font-size: 0.72rem; font-weight: 500; color: var(--dim); letter-spacing: 0.02em; text-transform: uppercase; font-family: 'Inter', sans-serif; }
.stat-sep { width: 1px; height: 44px; background: var(--border); flex-shrink: 0; }

/* ============================================================
   CASE STUDY
   ============================================================ */
#case-study { background: var(--bg); }
.case-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  border-radius: var(--radius);
  padding: 2.5rem;
  position: relative; overflow: hidden;
}
.case-card::after {
  content: '"';
  position: absolute; top: -2rem; right: 2.5rem;
  font-size: 10rem; color: rgba(249,115,22,0.04);
  font-family: Georgia, serif; line-height: 1; pointer-events: none;
}

.case-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap; }
.case-avatar {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: var(--purple-dim); border: 1px solid var(--border-p);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 800; color: var(--purple-l);
  font-family: 'Inter', sans-serif; flex-shrink: 0;
}
.case-meta { display: flex; flex-direction: column; gap: 0.15rem; flex: 1; }
.case-meta strong { color: #fff; font-size: 0.95rem; font-weight: 700; }
.case-meta span   { font-size: 0.75rem; color: var(--dim); }
.case-badge {
  font-size: 0.65rem; font-weight: 700;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 0.28rem 0.75rem; border-radius: var(--radius-lg);
  border: 1px solid var(--border-p); color: var(--purple-l);
}

.case-before-after {
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem; align-items: start; margin-bottom: 2rem;
}
.ba-label {
  display: inline-block; font-size: 0.62rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  padding: 0.22rem 0.65rem; border-radius: var(--radius-lg);
  margin-bottom: 0.8rem;
}
.before-label { background: rgba(239,68,68,0.1); color: #ef4444; border: 1px solid rgba(239,68,68,0.22); }
.after-label  { background: rgba(34,197,94,0.1); color: var(--green); border: 1px solid rgba(34,197,94,0.22); }

.case-before li, .case-after li {
  font-size: 0.86rem; color: var(--dim);
  padding: 0.28rem 0 0.28rem 1.1rem; position: relative;
}
.case-before li::before { content: '—'; position: absolute; left: 0; color: #ef4444; }
.case-after  li::before { content: '✓'; position: absolute; left: 0; color: var(--green); }
.case-after  li { color: var(--text); }
.case-arrow-sep { font-size: 1.5rem; color: var(--orange); padding-top: 1.8rem; }
.compare { font-size: 0.76rem; color: var(--dim); font-weight: 400; }

.case-quote {
  font-size: 1rem; font-style: italic; color: var(--text);
  border-left: 2px solid var(--orange); padding-left: 1.1rem; margin-bottom: 2rem;
  line-height: 1.65;
}

.case-numbers {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border); margin-top: 0.5rem;
  background: var(--border); gap: 1px;
}
.case-number-item {
  background: var(--bg2); padding: 1.1rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.2rem; text-align: center;
}
.cn-value {
  font-size: clamp(1rem, 1.8vw, 1.45rem);
  font-weight: 900; letter-spacing: -0.02em; line-height: 1;
}
.cn-value.orange { color: var(--orange); text-shadow: 0 0 14px rgba(249,115,22,0.4); }
.cn-value.purple { color: var(--purple-l); text-shadow: 0 0 14px rgba(124,58,237,0.4); }
.cn-value.green  { color: var(--green);   text-shadow: 0 0 14px rgba(34,197,94,0.4); }
.cn-label { font-size: 0.65rem; color: var(--dim); text-transform: uppercase; letter-spacing: 0.06em; }

/* ============================================================
   OFFER
   ============================================================ */
#offer {
  background:
    radial-gradient(ellipse 55% 50% at 50% 40%, rgba(124,58,237,0.07) 0%, transparent 65%),
    var(--bg);
}
.offer-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-bottom: 2.5rem;
}
.offer-grid-4 { grid-template-columns: repeat(4, 1fr); }
.offer-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.8rem;
  display: flex; flex-direction: column; gap: 0.8rem;
  position: relative; overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.offer-card:hover {
  border-color: rgba(249,115,22,0.3);
  box-shadow: 0 0 30px rgba(249,115,22,0.05);
}
.offer-num {
  position: absolute; top: 1rem; right: 1.2rem;
  font-size: 3.5rem; font-weight: 900;
  color: rgba(124,58,237,0.07); line-height: 1;
  font-family: 'Inter', sans-serif; pointer-events: none;
}
.offer-icon { margin-bottom: 0.2rem; }
.offer-card h3 { font-size: 1rem; font-weight: 700; color: #fff; }
.offer-card p  { font-size: 0.86rem; color: var(--dim); line-height: 1.65; }
.offer-list { display: flex; flex-direction: column; gap: 0.35rem; flex: 1; }
.offer-list li {
  font-size: 0.82rem; color: var(--text);
  padding-left: 1.1rem; position: relative;
}
.offer-list li::before { content: '•'; position: absolute; left: 0; color: var(--purple-l); font-size: 0.9rem; }
.offer-tag {
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.04em; padding: 0.3rem 0.8rem;
  border-radius: var(--radius-lg); border: 1px solid var(--orange);
  color: var(--orange); display: inline-block; margin-top: auto;
}

.offer-statement {
  text-align: center;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 800; color: var(--dim);
  padding: 2rem; margin: 0.5rem 0 2.5rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  letter-spacing: -0.02em;
}
.offer-cta { text-align: center; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.testi-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem;
  display: flex; flex-direction: column; gap: 0.9rem;
  transition: border-color 0.25s, transform 0.25s;
}
.testi-card:hover { border-color: rgba(249,115,22,0.25); transform: translateY(-3px); }
.testi-top { display: flex; align-items: center; justify-content: space-between; }
.testi-stars { color: var(--orange); font-size: 0.75rem; letter-spacing: 0.05em; }
.testi-badge {
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.03em; padding: 0.2rem 0.6rem; border-radius: var(--radius-lg);
  border: 1px solid var(--border-p); color: var(--purple-l);
}
.testi-card blockquote {
  font-size: 0.87rem; color: var(--text); font-style: italic;
  line-height: 1.65; flex: 1;
}
.testi-footer {
  display: flex; align-items: center; gap: 0.7rem;
  border-top: 1px solid var(--border); padding-top: 0.9rem; flex-wrap: wrap;
}
.testi-avatar {
  width: 32px; height: 32px; border-radius: var(--radius-sm);
  background: var(--bg2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 800; color: var(--dim);
  font-family: 'Inter', sans-serif; flex-shrink: 0;
}
.testi-info { flex: 1; display: flex; flex-direction: column; gap: 0.05rem; min-width: 0; }
.testi-info strong { font-size: 0.82rem; color: #fff; font-weight: 700; }
.testi-info span   { font-size: 0.7rem; color: var(--dim); }
.testi-result { font-size: 0.62rem; font-weight: 700; color: var(--orange); white-space: nowrap; margin-left: auto; }

/* Featured testimonial */
.testi-card-featured {
  border-color: rgba(249,115,22,0.25);
  background: linear-gradient(135deg, var(--bg3) 0%, rgba(249,115,22,0.04) 100%);
}
.testi-card-featured blockquote { font-size: 0.93rem; }

/* ============================================================
   6-STEP PROCESS
   ============================================================ */
#process { }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 0.5rem;
}
.process-step {
  background: var(--bg3);
  padding: 2rem 1.8rem;
  display: flex; gap: 1.2rem; align-items: flex-start;
  position: relative;
  transition: background 0.2s;
}
.process-step:hover { background: rgba(124,58,237,0.06); }
.process-step-last { background: rgba(249,115,22,0.04); }
.process-step-last:hover { background: rgba(249,115,22,0.08); }

.process-num {
  font-size: 2.2rem; font-weight: 900; line-height: 1;
  color: rgba(124,58,237,0.2);
  font-family: 'Inter', sans-serif;
  flex-shrink: 0; min-width: 2.5rem;
}
.process-num-orange { color: rgba(249,115,22,0.35); }

.process-content { display: flex; flex-direction: column; gap: 0.55rem; }
.process-title {
  font-size: 0.97rem; font-weight: 700; color: #fff; line-height: 1.3;
}
.process-desc {
  font-size: 0.82rem; color: var(--dim); line-height: 1.65;
}
.process-tag {
  font-size: 0.62rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--purple-l);
  padding: 0.22rem 0.6rem; border-radius: var(--radius-lg);
  border: 1px solid var(--border-p);
  background: var(--purple-dim);
  display: inline-block; margin-top: 0.2rem;
}
.process-tag-orange {
  color: var(--orange);
  border-color: rgba(249,115,22,0.3);
  background: rgba(249,115,22,0.08);
}

@media (max-width: 960px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .process-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PRICING MODEL
   ============================================================ */
#pricing {
  background:
    radial-gradient(ellipse 50% 60% at 50% 50%, rgba(124,58,237,0.06) 0%, transparent 70%),
    var(--bg);
}
#pricing .section-title { text-align: center; }

.pricing-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem; margin-top: 0.5rem; margin-bottom: 2.5rem;
}
.pricing-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2.2rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.pricing-card:hover { border-color: var(--border-p); }
.pricing-card-highlight {
  border-color: rgba(249,115,22,0.3);
  background: linear-gradient(135deg, var(--bg2) 0%, rgba(249,115,22,0.04) 100%);
  box-shadow: 0 0 40px rgba(249,115,22,0.05);
}
.pricing-card-highlight:hover {
  border-color: rgba(249,115,22,0.5);
  box-shadow: 0 0 50px rgba(249,115,22,0.1);
}

.pricing-icon { font-size: 2rem; line-height: 1; }
.pricing-plan {
  font-size: 1.15rem; font-weight: 800; color: #fff; line-height: 1.2;
}
.pricing-desc {
  font-size: 0.87rem; color: var(--dim); line-height: 1.7;
}
.pricing-includes {
  display: flex; flex-direction: column; gap: 0.4rem;
  border-top: 1px solid var(--border); padding-top: 1rem;
}
.pricing-includes li {
  font-size: 0.83rem; color: var(--text); padding-left: 0;
}
.pricing-note {
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--purple-l);
  padding: 0.3rem 0.85rem; border-radius: var(--radius-lg);
  border: 1px solid var(--border-p); background: var(--purple-dim);
  display: inline-block; margin-top: auto;
}
.pricing-note-orange {
  color: var(--orange);
  border-color: rgba(249,115,22,0.3);
  background: rgba(249,115,22,0.08);
}

.pricing-cta {
  display: flex; flex-direction: column; align-items: center; gap: 1.2rem;
  padding-top: 1rem;
}
.pricing-guarantee-line {
  display: flex; align-items: center; gap: 0.75rem;
  flex-wrap: wrap; justify-content: center;
  font-size: 0.9rem; color: var(--dim); line-height: 1.6;
}

@media (max-width: 640px) { .pricing-grid { grid-template-columns: 1fr; } }

/* ============================================================
   GUARANTEE
   ============================================================ */
#guarantee {
  background:
    radial-gradient(ellipse 65% 65% at 50% 50%, rgba(249,115,22,0.07) 0%, transparent 65%),
    var(--bg);
}
.guarantee-wrap {
  max-width: 660px; margin: 0 auto; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
}
.guarantee-icon { filter: drop-shadow(0 0 14px rgba(249,115,22,0.45)); }
.guarantee-label {
  font-family: 'Inter', sans-serif; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--orange);
}
.guarantee-headline {
  font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 900;
  line-height: 1.18; color: #fff; letter-spacing: -0.02em;
}
.guarantee-body { font-size: 0.97rem; color: var(--dim); line-height: 1.78; max-width: 560px; }
.guarantee-fine { font-size: 0.68rem; color: rgba(90,104,128,0.45); max-width: 460px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 0.6rem; }
.faq-item {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 1.15rem 1.5rem;
  background: transparent; border: none;
  color: var(--text); font-family: 'Inter', sans-serif;
  font-size: 0.92rem; font-weight: 600; text-align: left;
  cursor: pointer; gap: 1rem;
  transition: color 0.2s;
}
.faq-question:hover { color: #fff; }
.faq-icon {
  font-size: 1.2rem; color: var(--orange); flex-shrink: 0;
  line-height: 1; transition: transform 0.3s var(--ease);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { overflow: hidden; }
.faq-answer p {
  padding: 0 1.5rem 1.3rem;
  font-size: 0.87rem; color: var(--dim); line-height: 1.75;
}

/* ============================================================
   BOOKING
   ============================================================ */
#booking {
  background:
    radial-gradient(ellipse 55% 55% at 50% 50%, rgba(124,58,237,0.08) 0%, transparent 65%),
    var(--bg);
  text-align: center;
}
.booking-sub { font-size: 0.97rem; color: var(--dim); margin-top: -1.5rem; margin-bottom: 2.5rem; }
/* ---- Cal.com-style booking widget ---- */
.cal-widget {
  display: grid;
  grid-template-columns: 1fr 220px;
  background: var(--bg2);
  border: 1px solid var(--border-p);
  border-radius: 4px;
  overflow: hidden;
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}

/* Left panel */
.cal-left { padding: 2rem 2rem 2rem; border-right: 1px solid var(--border-p); }

.cal-profile {
  display: flex; align-items: center; gap: 0.9rem;
  margin-bottom: 1.25rem;
}
.cal-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--orange); color: #fff;
  font-weight: 800; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cal-name     { font-size: 0.72rem; font-weight: 700; color: var(--dim); text-transform: uppercase; letter-spacing: 0.08em; }
.cal-event-name { font-size: 0.92rem; font-weight: 700; color: #fff; margin-top: 0.15rem; }

.cal-meta-row {
  display: flex; flex-wrap: wrap; gap: 0.6rem 1rem;
  margin-bottom: 1.5rem;
}
.cal-meta-item {
  display: flex; align-items: center; gap: 0.35rem;
  font-size: 0.72rem; color: var(--dim);
}
.cal-meta-item svg { flex-shrink: 0; }

/* Month nav */
.cal-month-nav {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1rem;
}
.cal-month-label {
  font-size: 0.85rem; font-weight: 700; color: #fff;
  min-width: 110px; text-align: center;
}
.cal-nav-btn {
  background: none; border: 1px solid var(--border-p);
  color: var(--dim); width: 28px; height: 28px; border-radius: 3px;
  cursor: pointer; font-size: 1.1rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.15s, color 0.15s;
}
.cal-nav-btn:hover { border-color: var(--orange); color: var(--orange); }

/* Calendar grid */
.cal-weekdays {
  display: grid; grid-template-columns: repeat(7, 1fr);
  margin-bottom: 0.4rem;
}
.cal-weekdays span {
  text-align: center; font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--dim);
  padding: 0.2rem 0;
}
.cal-days {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px;
}
.cal-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  border-radius: 3px; font-size: 0.78rem; font-weight: 500; color: var(--text);
  cursor: pointer; transition: background 0.12s, color 0.12s;
  border: 1px solid transparent;
}
.cal-day:hover:not(.cal-day-empty):not(.cal-day-past) {
  background: rgba(249,115,22,0.12);
  border-color: rgba(249,115,22,0.3);
  color: var(--orange);
}
.cal-day-empty { cursor: default; color: transparent; }
.cal-day-past  { cursor: default; color: var(--border); }
.cal-day-today { font-weight: 800; color: var(--orange); }
.cal-day-selected {
  background: var(--orange) !important;
  color: #fff !important;
  border-color: var(--orange) !important;
}
.cal-day-unavail {
  cursor: default; color: var(--border);
  text-decoration: line-through;
}

/* Right panel — time slots */
.cal-right {
  padding: 1.5rem 1.25rem;
  display: flex; flex-direction: column;
}
.cal-slots-header {
  display: flex; flex-direction: column; gap: 0.25rem;
  margin-bottom: 1rem;
}
.cal-slots-header > span:first-child {
  font-size: 0.82rem; font-weight: 700; color: #fff;
}
.cal-tz {
  font-size: 0.6rem; color: var(--dim); letter-spacing: 0.04em;
}
.cal-slots { display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.cal-slots-hint { font-size: 0.72rem; color: var(--dim); }

.cal-slot {
  padding: 0.55rem 0.9rem;
  background: transparent;
  border: 1px solid var(--border-p);
  border-radius: 3px;
  font-size: 0.78rem; font-weight: 600; color: var(--text);
  cursor: pointer; text-align: center;
  transition: background 0.12s, border-color 0.12s, color 0.12s;
}
.cal-slot:hover {
  background: rgba(249,115,22,0.1);
  border-color: var(--orange);
  color: var(--orange);
}
.cal-slot-selected {
  background: var(--orange) !important;
  border-color: var(--orange) !important;
  color: #fff !important;
}

/* Confirm step */
.cal-confirm {
  display: none; flex-direction: column; gap: 0.75rem;
  margin-top: 0.5rem;
}
.cal-confirm.visible { display: flex; }
.cal-confirm-text {
  font-size: 0.72rem; color: var(--dim); line-height: 1.5;
}
.cal-confirm .btn { font-size: 0.65rem; padding: 0.65rem 1rem; width: 100%; justify-content: center; }

@media (max-width: 620px) {
  .cal-widget { grid-template-columns: 1fr; }
  .cal-left { border-right: none; border-bottom: 1px solid var(--border-p); }
  .cal-right { padding: 1.25rem; }
}
.booking-urgency {
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  margin-top: 2rem; font-size: 0.78rem; font-weight: 600; color: var(--purple-l);
}
.urgency-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--purple-l); box-shadow: 0 0 6px var(--purple-l);
  animation: dot-blink 2s ease-in-out infinite; flex-shrink: 0;
}
.booking-micro { text-align: center; font-size: 0.7rem; color: var(--dim); margin-top: 0.5rem; }

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
#comparison { padding-top: 5rem; padding-bottom: 5rem; }
.cmp-wrapper { margin-top: 2.5rem; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.cmp-table { min-width: 700px; width: 100%; border-collapse: collapse; }

/* Header */
.cmp-head {
  display: grid;
  grid-template-columns: 1fr repeat(5, 120px);
  gap: 0;
  border-bottom: 1px solid var(--border-p);
  padding-bottom: 1rem;
  margin-bottom: 0;
}
.cmp-head-feature { }
.cmp-head-col {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 0.5rem;
}
.cmp-col-dmv {
  background: var(--purple-dim);
  border: 1px solid var(--border-p);
  border-bottom: none;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  position: relative;
}
.cmp-head .cmp-col-dmv::after {
  content: 'MEILLEUR';
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  font-size: 0.5rem; font-weight: 800; letter-spacing: 0.1em;
  background: var(--orange); color: #fff;
  padding: 2px 8px; border-radius: 999px;
}
.cmp-brand-dmv {
  font-size: 0.95rem; font-weight: 800; color: #fff;
}
.cmp-brand-dmv .logo-accent { color: var(--purple-l); }
.cmp-brand-other {
  font-size: 0.78rem; font-weight: 600; color: var(--dim);
}

/* Rows */
.cmp-row {
  display: grid;
  grid-template-columns: 1fr repeat(5, 120px);
  align-items: center;
  border-bottom: 1px solid var(--border);
  min-height: 56px;
}
.cmp-row-alt { background: rgba(255,255,255,0.018); }
.cmp-highlight {
  background: linear-gradient(90deg, rgba(124,58,237,0.06) 0%, rgba(249,115,22,0.04) 100%);
  border-bottom: 1px solid var(--border-p) !important;
}

.cmp-feature {
  padding: 0.75rem 1rem 0.75rem 0;
  font-size: 0.84rem; font-weight: 500; color: var(--text);
  line-height: 1.4;
}
.cmp-feature-bold { font-weight: 700; color: #fff; }

.cmp-cell {
  display: flex; align-items: center; justify-content: center;
  padding: 0.75rem 0.5rem;
}
.cmp-row .cmp-col-dmv {
  background: rgba(124,58,237,0.08);
  border-left: 1px solid var(--border-p);
  border-right: 1px solid var(--border-p);
}

/* Check / cross / partial icons */
.cmp-yes {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(34,197,94,0.15);
  color: #22c55e; font-size: 0.75rem; font-weight: 800;
  box-shadow: 0 0 8px rgba(34,197,94,0.2);
}
.cmp-col-dmv .cmp-yes {
  background: rgba(34,197,94,0.2);
  box-shadow: 0 0 12px rgba(34,197,94,0.35);
  width: 30px; height: 30px; font-size: 0.85rem;
}
.cmp-no {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(239,68,68,0.12);
  color: #ef4444; font-size: 0.8rem; font-weight: 700;
}
.cmp-partial {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(234,179,8,0.12);
  color: #eab308; font-size: 0.8rem; font-weight: 700;
}

.cmp-footnote {
  margin-top: 0.85rem; font-size: 0.68rem; color: var(--dim);
  text-align: right; font-style: italic;
}

@media (max-width: 768px) {
  .cmp-head, .cmp-row { grid-template-columns: 1fr repeat(5, 76px); }
  .cmp-feature { font-size: 0.75rem; padding-right: 0.5rem; }
  .cmp-brand-other { font-size: 0.65rem; }
  .cmp-brand-dmv { font-size: 0.8rem; }
}

/* ============================================================
   TERRITORY MAP
   ============================================================ */
#territory { padding-top: 5rem; padding-bottom: 5rem; }
.map-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.25rem;
}
.map-title-row { display: flex; align-items: center; gap: 0.55rem; }
.map-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--purple-l);
  box-shadow: 0 0 8px var(--purple-l);
  animation: dot-blink 2s ease-in-out infinite;
}
.map-title-text {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  color: var(--purple-l); text-transform: uppercase;
}
.map-subtitle-right {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  color: var(--dim); text-transform: uppercase;
}
.map-wrapper {
  position: relative;
  border: 1px solid var(--border-p);
  border-radius: var(--radius);
  overflow: hidden;
  background: #0d0d18;
}
#territory-map { height: 480px; width: 100%; z-index: 0; }

/* Mapbox GL JS overrides — dark theme */
.mapboxgl-canvas { outline: none; }
.mapboxgl-ctrl-group {
  background: rgba(13,13,24,0.95) !important;
  border: 1px solid var(--border-p) !important;
  border-radius: 3px !important;
  box-shadow: none !important;
}
.mapboxgl-ctrl-group button {
  width: 28px !important; height: 28px !important;
}
.mapboxgl-ctrl-group button + button {
  border-top: 1px solid var(--border-p) !important;
}
.mapboxgl-ctrl-icon { filter: invert(0.7); }
.mapboxgl-ctrl-attrib { display: none !important; }

/* Mapbox popup dark theme */
.mapboxgl-popup-content {
  background: rgba(13,13,20,0.97) !important;
  border: 1px solid var(--border-p) !important;
  border-radius: 3px !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.7) !important;
  padding: 0 !important;
  color: var(--text);
}
.mapboxgl-popup-tip { border-top-color: rgba(13,13,20,0.97) !important; }
.mapboxgl-popup-close-button {
  color: var(--dim) !important;
  font-size: 1.1rem !important;
  padding: 4px 8px !important;
  background: none !important;
}
.mapboxgl-popup-close-button:hover { color: var(--text) !important; }

/* Mapbox custom markers */
.mbx-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}
.mbx-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.mbx-marker:hover .mbx-dot { transform: scale(1.35); }
.mbx-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem; font-weight: 700;
  color: #e0e6f0;
  background: rgba(9,9,15,0.85);
  padding: 2px 6px; border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.08);
  white-space: nowrap; pointer-events: none;
  margin-top: 4px; letter-spacing: 0.04em;
}
.mbx-marker-active .mbx-dot {
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.18), 0 0 10px rgba(34,197,94,0.55);
}
.mbx-marker-soon .mbx-dot {
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.15), 0 0 10px var(--orange-glow);
}
.mbx-marker-locked .mbx-dot {
  background: transparent;
  border: 1.5px solid rgba(90,104,128,0.5);
  box-shadow: none;
}

/* Popup card */
.map-popup {
  padding: 0.75rem 1rem; min-width: 160px;
}
.map-popup .pop-city {
  font-weight: 800; font-size: 0.88rem; color: var(--text); margin-bottom: 0.2rem;
}
.map-popup .pop-status {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; display: flex; align-items: center; gap: 0.35rem;
}
.pop-status.st-active { color: #22c55e; }
.pop-status.st-soon   { color: var(--orange); }
.pop-status.st-locked { color: var(--dim); }
.map-popup .pop-detail {
  font-size: 0.72rem; color: var(--dim); margin-top: 0.4rem; line-height: 1.5;
}

/* Legend */
.map-legend {
  position: absolute; bottom: 1.25rem; left: 1.25rem; z-index: 400;
  background: rgba(9,9,15,0.88); border: 1px solid var(--border-p);
  border-radius: var(--radius-sm); padding: 0.75rem 1rem;
  backdrop-filter: blur(8px);
}
.legend-heading {
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.12em;
  color: var(--dim); text-transform: uppercase; margin-bottom: 0.55rem;
}
.legend-item {
  display: flex; align-items: center; gap: 0.55rem;
  font-size: 0.72rem; color: var(--text); margin-bottom: 0.35rem;
}
.legend-item:last-child { margin-bottom: 0; }
.legend-dot {
  width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
}
.ld-active { background: #22c55e; box-shadow: 0 0 6px rgba(34,197,94,0.6); }
.ld-soon   { background: var(--orange); box-shadow: 0 0 6px var(--orange-glow); }
.ld-locked { background: rgba(90,104,128,0.35); border: 1px solid rgba(90,104,128,0.5); }

@media (max-width: 768px) {
  #territory-map { height: 360px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  background: var(--bg2);
  padding: 3.5rem 2rem 2.5rem;
}
.footer-inner {
  max-width: 720px; margin: 0 auto; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 0;
}
.footer-logo { font-size: 1rem; font-weight: 800; color: #fff; }
.footer-tagline {
  font-size: 0.85rem; color: rgba(255,255,255,0.32);
  margin-top: 1.1rem; letter-spacing: 0.01em;
}
.footer-tagline strong { color: rgba(255,255,255,0.55); }
.footer-links {
  display: flex; gap: 1.5rem; font-size: 0.7rem;
  color: rgba(255,255,255,0.22); margin-top: 1.6rem;
}
.footer-links a { color: inherit; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.55); }
/* thin divider between tagline area and legal */
.footer-divider {
  width: 40px; height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 1.8rem auto;
}
.footer-copy {
  font-size: 0.67rem; color: rgba(255,255,255,0.18);
  line-height: 1.6;
}
.footer-disclaimer {
  font-size: 0.62rem; color: rgba(255,255,255,0.12);
  max-width: 480px; line-height: 1.65; margin-top: 0.6rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .offer-grid, .offer-grid-4 { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-right { display: none; }
  .case-before-after { grid-template-columns: 1fr; }
  .case-arrow-sep { display: none; }
  .case-numbers { grid-template-columns: repeat(3, 1fr); }
  .offer-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 1.75rem; }
  .btn-lg { width: 100%; justify-content: center; }
  .case-numbers { grid-template-columns: 1fr; }
}

/* ============================================================
   MOBILE POLISH  — nothing hidden, everything resizes cleanly
   ============================================================ */

/* ── ≤768px (tablet / large phone) ── */
@media (max-width: 768px) {

  /* ANNOUNCE BAR — wraps to 2 lines, X button at right */
  #announce-bar {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.2rem 0.5rem;
    font-size: 0.63rem;
    padding: 0.45rem 2.5rem 0.45rem 1rem;
    line-height: 1.5;
    text-align: center;
  }
  .ann-dot { flex-shrink: 0; }
  .ann-cta { font-size: 0.63rem; }
  .ann-close { font-size: 0.78rem; right: 0.5rem; }

  /* NAV */
  #nav { padding: 0.4rem 1rem; }
  .nav-center { display: none; }
  .nav-cta { font-size: 0.7rem; padding: 0.42rem 0.85rem; white-space: nowrap; }
  .nav-logo-img { height: 28px; }

  /* HERO */
  .hero-inner { padding: 2rem 1.25rem 2rem; gap: 1rem; }
  .hero-sub br { display: none; }
  .hero-headline { font-size: clamp(1.45rem, 6vw, 1.85rem); line-height: 1.12; }
  .hero-sub { font-size: 0.88rem; padding: 0; line-height: 1.6; margin-bottom: 0; }
  .hero-cta-group { padding: 0; width: 100%; }
  .btn-xl {
    width: 100%;
    justify-content: center;
    text-align: center;
    font-size: 0.82rem;
    padding: 0.95rem 1.25rem;
    white-space: normal;
    line-height: 1.4;
  }
  .hero-tag { font-size: 0.58rem; letter-spacing: 0.06em; margin-top: 0.5rem; }

  /* STATS */
  #stats-strip { padding: 1.5rem 1.25rem; }
  .stats-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 0.75rem;
  }
  .stat-sep { display: none; }
  .stat-num { font-size: clamp(1.45rem, 6.5vw, 2.1rem); }
  .stat-label { font-size: 0.6rem; letter-spacing: 0.06em; }

  /* ABOUT / MAP */
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-stat-row { gap: 0.75rem; flex-wrap: wrap; }
  .about-stat-num { font-size: 1.3rem; }
  .about-stat-label { font-size: 0.6rem; }
  .about-body { font-size: 0.88rem; line-height: 1.7; }
  .bel-map-svg { max-height: 220px; }
  .about-map-col::before { display: none; }

  /* SECTION TITLES & LABELS */
  .section-title { font-size: clamp(1.35rem, 5.5vw, 1.9rem); line-height: 1.15; }
  .section-label { font-size: 0.6rem; letter-spacing: 0.12em; }

  /* FAQ */
  .faq-question { font-size: 0.9rem; padding: 0.9rem 0; line-height: 1.45; }
  .faq-answer-inner { font-size: 0.86rem; line-height: 1.7; }

  /* FINAL CTA */
  #final-cta { padding: 2.75rem 1.5rem 3.5rem !important; }
  #final-cta .section-title { font-size: clamp(1.35rem, 5.5vw, 1.85rem); }
  #final-cta .section-sub { font-size: 0.88rem; }
  #final-cta .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 0.95rem 1.25rem;
    font-size: 0.78rem;
    white-space: normal;
    line-height: 1.4;
  }

  /* SECTION CTA BUTTONS */
  #about .btn { width: 100%; justify-content: center; text-align: center; font-size: 0.78rem; padding: 0.95rem 1.25rem; white-space: normal; line-height: 1.4; }

  /* FOOTER */
  .footer-logo-img { height: 56px; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 0.5rem 1.1rem; font-size: 0.78rem; }
  .footer-copy { font-size: 0.6rem; }
  .footer-disclaimer { font-size: 0.56rem; }
}

/* ── ≤480px (small phones — iPhone SE etc.) ── */
@media (max-width: 480px) {
  #announce-bar { font-size: 0.6rem; padding: 0.4rem 2.5rem 0.4rem 0.9rem; }
  .ann-close { right: 0.4rem; }

  .hero-headline { font-size: clamp(1.35rem, 6.5vw, 1.65rem); }
  .hero-sub { font-size: 0.84rem; }

  .section-title { font-size: clamp(1.25rem, 6vw, 1.6rem); }

  .about-stat-num { font-size: 1.15rem; }

  .btn-lg { width: 100%; justify-content: center; text-align: center; }
  .btn-xl { font-size: 0.78rem; }

  .stat-num { font-size: clamp(1.3rem, 7.5vw, 1.85rem); }
  .stat-label { font-size: 0.58rem; }

  .faq-question { font-size: 0.86rem; }
  .faq-answer-inner { font-size: 0.84rem; }
}

/* ============================================================
   SCROLLING TICKER
   ============================================================ */
.ticker-wrap {
  overflow: hidden;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 0;
  position: relative;
}
.ticker-wrap::before,
.ticker-wrap::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 6rem; z-index: 2;
  pointer-events: none;
}
.ticker-wrap::before { left: 0; background: linear-gradient(to right, var(--bg2), transparent); }
.ticker-wrap::after  { right: 0; background: linear-gradient(to left,  var(--bg2), transparent); }

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 32s linear infinite;
  gap: 2.5rem;
  align-items: center;
}
.ticker-track:hover { animation-play-state: paused; }

.ticker-item {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
  transition: color 0.2s;
}
.ticker-item:hover { color: var(--orange); }

.ticker-sep {
  color: var(--orange);
  font-size: 0.55rem;
  opacity: 0.6;
  flex-shrink: 0;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   OFFER TAG — sharp, no pill
   ============================================================ */
.offer-tag {
  font-size: 0.62rem; font-weight: 800; text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.08em; padding: 0.28rem 0.7rem;
  border-radius: 2px; border: 1px solid var(--orange);
  color: var(--orange); display: inline-block; margin-top: auto;
}

/* Testi badge — sharp */
.testi-badge {
  font-size: 0.6rem; font-weight: 800; text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.08em; padding: 0.18rem 0.55rem;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.45);
}

/* Case badge */
.case-badge {
  font-size: 0.6rem; font-weight: 800;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.22rem 0.7rem; border-radius: 2px;
  border: 1px solid rgba(249,115,22,0.35); color: var(--orange);
}

/* Logo accent — orange */
.logo-accent { color: var(--orange) !important; }

/* Process tag — sharp */
.process-tag {
  font-size: 0.6rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.08em; color: rgba(255,255,255,0.45);
  padding: 0.2rem 0.55rem; border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.12);
  background: transparent;
  display: inline-block; margin-top: 0.2rem;
}
.process-tag-orange {
  color: var(--orange);
  border-color: rgba(249,115,22,0.3);
  background: transparent;
}

/* Pricing note — sharp */
.pricing-note {
  font-size: 0.62rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.08em; color: rgba(255,255,255,0.4);
  padding: 0.25rem 0.7rem; border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.1); background: transparent;
  display: inline-block; margin-top: auto;
}
.pricing-note-orange {
  color: var(--orange);
  border-color: rgba(249,115,22,0.3);
}

/* Section title — crisper */
.section-title {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 900;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 2.5rem;
  letter-spacing: -0.025em;
}

/* Stat numbers — crisper */
.stat-num, .stat-pre, .stat-suf {
  color: #fff;
  text-shadow: none;
}
.stat-label { color: rgba(255,255,255,0.35); letter-spacing: 0.08em; }

/* ============================================================
   RESOURCES SECTION (free training cards)
   ============================================================ */
#ressources { background: var(--bg2); }
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.resource-card {
  background: var(--bg3);
  border: 1px solid var(--border-p);
  border-radius: 4px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: border-color 0.2s, transform 0.2s;
}
.resource-card:hover {
  border-color: rgba(139,92,246,0.45);
  transform: translateY(-2px);
}
.resource-badge {
  display: inline-block;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  width: fit-content;
}
.badge-free     { background: rgba(34,197,94,0.15); color: #22c55e; border: 1px solid rgba(34,197,94,0.3); }
.badge-live     { background: rgba(139,92,246,0.15); color: #a78bfa; border: 1px solid rgba(139,92,246,0.3); }
.badge-new      { background: rgba(232,184,75,0.13); color: #e8b84b; border: 1px solid rgba(232,184,75,0.3); }
.resource-title {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
}
.resource-desc {
  font-size: 0.78rem;
  color: var(--dim);
  line-height: 1.6;
  flex: 1;
}
.resource-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  transition: gap 0.15s;
  margin-top: 0.25rem;
}
.resource-cta:hover { gap: 0.65rem; }
.resource-icon {
  width: 36px; height: 36px;
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  background: rgba(139,92,246,0.1);
  border: 1px solid var(--border-p);
  flex-shrink: 0;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
#faq { background: var(--bg); }
.faq-list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  padding: 1.2rem 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color 0.15s;
}
.faq-question:hover { color: var(--orange); }
.faq-icon {
  width: 22px; height: 22px;
  border: 1px solid var(--border-p);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: var(--dim);
  flex-shrink: 0;
  transition: transform 0.25s, background 0.2s, color 0.2s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(139,92,246,0.12);
  color: #a78bfa;
  border-color: rgba(139,92,246,0.35);
}
.faq-answer {
  overflow: hidden;
}
.faq-answer-inner {
  padding-bottom: 1.2rem;
  font-size: 0.88rem;
  color: var(--dim);
  line-height: 1.75;
  max-width: 680px;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
#about { background: var(--bg2); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-text { display: flex; flex-direction: column; gap: 1.25rem; }
.about-stat-row {
  display: flex;
  gap: 2rem;
  margin-top: 0.5rem;
}
.about-stat-box {
  display: flex; flex-direction: column; gap: 0.2rem;
}
.about-stat-num {
  font-size: 1.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, #f5d778 0%, #e8b84b 40%, #c99a2e 75%, #f0c96a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.about-stat-label {
  font-size: 0.68rem;
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.about-body {
  font-size: 0.9rem;
  color: var(--dim);
  line-height: 1.8;
}
.about-map-col { display: flex; flex-direction: column; gap: 0.75rem; }
.about-map-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ============================================================
   LEAD MAGNET CTA (bottom)
   ============================================================ */
#leadmagnet {
  background: var(--bg3);
  border-top: 1px solid var(--border);
}
.leadmagnet-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 820px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.leadmagnet-visual {
  width: 160px;
  height: 200px;
  background: linear-gradient(145deg, #1a1130 0%, #0d0d1a 100%);
  border: 1px solid var(--border-p);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.5rem;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.leadmagnet-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(139,92,246,0.18) 0%, transparent 70%);
}
.leadmagnet-visual-icon {
  font-size: 2.5rem;
  position: relative; z-index: 1;
}
.leadmagnet-visual-title {
  font-size: 0.65rem;
  font-weight: 800;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.3;
  position: relative; z-index: 1;
}
.leadmagnet-badge {
  position: absolute;
  top: 0.6rem; right: 0.6rem;
  background: var(--orange);
  color: #1a1200;
  font-size: 0.5rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 2px;
  z-index: 2;
}
.leadmagnet-content { display: flex; flex-direction: column; gap: 1rem; }
.leadmagnet-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple);
}
.leadmagnet-title {
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.leadmagnet-desc {
  font-size: 0.82rem;
  color: var(--dim);
  line-height: 1.65;
}

@media (max-width: 600px) {
  .leadmagnet-inner { grid-template-columns: 1fr; text-align: center; }
  .leadmagnet-visual { width: 120px; height: 150px; margin: 0 auto; }
}

/* ============================================================
   NAV & FOOTER LOGO IMAGES
   ============================================================ */
.nav-logo-img {
  height: 34px;
  width: auto;
  display: block;
  opacity: 0.92;
  transition: opacity 0.2s ease;
}
.nav-logo:hover .nav-logo-img {
  opacity: 1;
}
.footer-logo-img {
  height: 88px;
  width: auto;
  opacity: 0.9;
  display: block;
}

/* ============================================================
   DECK-STYLE COMPARISON TABLE (v2 — 9 competitors + DMV)
   ============================================================ */
#comparison {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: var(--bg);
}

.deck-cmp-intro { text-align: center; margin-bottom: 2.5rem; }

.deck-cmp-h1 {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.deck-cmp-h2 {
  font-size: clamp(1.05rem, 1.9vw, 1.45rem);
  font-weight: 700;
  color: var(--orange);
  margin-top: 0.4rem;
  letter-spacing: -0.01em;
}

.dk-red-x {
  display: inline-block;
  color: #ef4444;
  font-weight: 900;
  margin-left: 0.35rem;
  font-size: 1.15em;
}

.deck-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.5rem;
  margin-top: 2rem;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.deck-tbl {
  border-collapse: separate;
  border-spacing: 0;
  min-width: 640px;
  width: 100%;
}

.deck-tbl col.col-feat { width: 148px; }
.deck-tbl col.col-comp { width: 52px; }
.deck-tbl col.col-dmv  { width: 76px; }

/* Header row */
.deck-thead-row th {
  padding: 0.7rem 0.25rem 0.65rem;
  text-align: center;
  vertical-align: middle;
  background: rgba(8,8,18,0.85);
  border-bottom: 1px solid rgba(139,92,246,0.15);
}
.deck-th-label {
  text-align: left !important;
  padding-left: 0.5rem !important;
}
.dk-logo {
  height: 24px;
  width: auto;
  display: block;
  margin: 0 auto;
  opacity: 0.75;
}

/* White pill wrapper so competitor logos are visible on dark bg */
.dk-logo-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 5px;
  padding: 3px 6px;
  line-height: 0;
}
.dk-logo-pill .dk-logo {
  height: 18px;
  max-width: 56px;
}
.dk-badge {
  display: inline-block;
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  padding: 0.2rem 0.4rem;
  border-radius: 3px;
  white-space: nowrap;
  line-height: 1.3;
}

/* DMV head cell */
.deck-th-dmv {
  padding: 0 !important;
  vertical-align: bottom !important;
  border-bottom: none !important;
}
.dk-dmv-head {
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.22);
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  padding: 0.75rem 0.4rem 0.85rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
.dk-dmv-logo {
  height: 44px;
  width: auto;
  max-width: 80px;
  object-fit: contain;
}

/* Body rows */
.deck-tbl tbody tr td {
  padding: 0.6rem 0.25rem;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid rgba(255,255,255,0.035);
  background: rgba(10,10,20,0.7);
}
.deck-tbl tbody tr:nth-child(even) td { background: rgba(6,6,14,0.85); }
.deck-tbl tbody tr:last-child td {
  border-bottom: none;
  background: rgba(139,92,246,0.04) !important;
}
.deck-tbl tbody tr:last-child .deck-dmv-td {
  border-radius: 0 0 10px 10px;
  border-bottom: 1px solid rgba(34,197,94,0.25) !important;
}
.deck-td-label {
  text-align: left !important;
  padding-left: 0.5rem !important;
  font-size: 0.76rem;
  font-weight: 500;
  color: rgba(240,240,248,0.65);
  white-space: nowrap;
}
.deck-tbl tbody tr:last-child .deck-td-label {
  font-weight: 700;
  color: rgba(240,240,248,0.9);
}

/* DMV column */
.deck-dmv-td {
  background: rgba(34,197,94,0.06) !important;
  border-left: 1px solid rgba(34,197,94,0.18) !important;
  border-right: 1px solid rgba(34,197,94,0.18) !important;
}

/* Mobile: DMV column sticks to the right so it's always visible while scrolling */
@media (max-width: 820px) {
  .deck-th-dmv,
  .deck-dmv-td {
    position: sticky;
    right: 0;
    z-index: 3;
  }
  .deck-th-dmv {
    background: rgba(8,8,18,0.97) !important;
  }
  .deck-dmv-td {
    background: rgba(17,26,17,0.97) !important;
    box-shadow: -3px 0 10px rgba(0,0,0,0.5);
  }
}

/* Symbols */
.dk-yes     { color: rgba(34,197,94,0.7);  font-size: 0.85rem; font-weight: 700; }
.dk-no      { color: rgba(255,255,255,0.12); font-size: 0.8rem; font-weight: 700; }
.dk-partial { color: rgba(255,255,255,0.2);  font-size: 0.75rem; font-weight: 600; }
.dk-dmv-yes {
  color: #22c55e;
  font-size: 1.1rem;
  font-weight: 800;
  text-shadow: 0 0 10px rgba(34,197,94,0.55);
}

/* ============================================================
   STATIC BELGIUM MAP with city dots
   ============================================================ */
.map-static-outer {
  border: 1px solid var(--border-p);
  border-radius: var(--radius);
  overflow: hidden;
  background: #0b0b15;
  padding: 1.25rem 1.5rem;
}
.map-static-wrap {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}
.map-static-img {
  width: 100%;
  display: block;
  border-radius: 3px;
}
.map-city-dot {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #ef4444;
  transform: translate(-50%, -50%);
  cursor: pointer;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.2), 0 0 10px rgba(239,68,68,0.55);
  transition: transform 0.15s, box-shadow 0.15s;
  z-index: 10;
}
.map-city-dot:hover {
  transform: translate(-50%, -50%) scale(1.5);
  box-shadow: 0 0 0 4px rgba(239,68,68,0.3), 0 0 20px rgba(239,68,68,0.7);
}
.map-city-dot::after {
  content: attr(data-city);
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(9,9,15,0.94);
  border: 1px solid rgba(139,92,246,0.3);
  padding: 2px 7px;
  border-radius: 2px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s;
}
.map-city-dot:hover::after { opacity: 1; }

/* ============================================================
   ADDITIONAL PURPLE ACCENTS
   ============================================================ */

/* Purple bar before section labels */
.section-label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
}
.section-label::before {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: var(--purple);
  border-radius: 1px;
  flex-shrink: 0;
}

/* Purple top-edge glow on offer cards */
.offer-card {
  border-top: 1px solid var(--border-p);
}
.offer-card:hover {
  border-top-color: rgba(139,92,246,0.5);
  border-color: rgba(139,92,246,0.3);
  box-shadow: 0 0 28px rgba(139,92,246,0.06), 0 4px 20px rgba(0,0,0,0.3);
}

/* Purple open-state on FAQ items */
.faq-item.open {
  border-color: rgba(139,92,246,0.25);
}
.faq-item.open .faq-question { color: var(--purple-l); }

/* Purple left quote border on testimonials */
.testi-card blockquote {
  border-left: 2px solid rgba(139,92,246,0.25);
  padding-left: 0.75rem;
}
.testi-card-featured blockquote {
  border-left-color: rgba(139,92,246,0.5);
}

/* Gold gradient on stat numbers (override) */
.stat-num, .stat-pre, .stat-suf {
  background: linear-gradient(135deg, #f5d778 0%, #e8b84b 45%, #c99a2e 80%, #f0c96a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

/* Purple process step numbers */
.process-num {
  color: rgba(139,92,246,0.28);
}

/* Purple underline on section title text-orange spans */
.section-title .text-orange {
  text-decoration-color: transparent;
}

/* Hero overlay extra purple radial */
#hero {
  background:
    radial-gradient(ellipse 55% 45% at 50% 55%, rgba(139,92,246,0.16) 0%, transparent 65%),
    radial-gradient(ellipse 30% 30% at 80% 15%, rgba(139,92,246,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 25% 30% at 15% 85%, rgba(139,92,246,0.05) 0%, transparent 60%),
    var(--bg);
}

/* Purple border on resource cards */
.resource-card {
  border-color: rgba(139,92,246,0.12);
}
.resource-card:hover {
  border-color: rgba(139,92,246,0.4);
  box-shadow: 0 4px 24px rgba(139,92,246,0.08);
}

/* Purple glow on announce bar */
#announce-bar {
  background: linear-gradient(90deg, #0d0d18 0%, #0f0c1a 50%, #0d0d18 100%);
  border-bottom: 1px solid rgba(139,92,246,0.3);
}
.ann-dot { background: var(--purple-l); animation: dot-blink 2s ease-in-out infinite; }

/* Guarantee section: purple shield */
#guarantee {
  background:
    radial-gradient(ellipse 55% 55% at 50% 40%, rgba(139,92,246,0.09) 0%, transparent 60%),
    radial-gradient(ellipse 35% 40% at 50% 80%, rgba(232,184,75,0.05) 0%, transparent 60%),
    var(--bg);
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form {
  margin-top: 2.5rem;
  display: flex; flex-direction: column; gap: 1.2rem;
}
.cf-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem;
}
@media (max-width: 600px) { .cf-row { grid-template-columns: 1fr; } }
.cf-group { display: flex; flex-direction: column; gap: 0.4rem; }
.cf-label {
  font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: rgba(240,240,248,0.45);
}
.cf-input {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  font-size: 0.92rem; color: #fff;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%; box-sizing: border-box;
}
.cf-input::placeholder { color: rgba(240,240,248,0.25); }
.cf-input:focus {
  border-color: rgba(232,184,75,0.5);
  box-shadow: 0 0 0 3px rgba(232,184,75,0.08);
}
.cf-textarea { min-height: 130px; resize: vertical; }
.cf-submit { align-self: flex-start; margin-top: 0.5rem; }
.section-sub {
  font-size: 0.97rem; color: var(--dim);
  margin-top: 0.5rem; line-height: 1.6;
}
.footer-legal {
  font-size: 0.63rem;
  color: rgba(255,255,255,0.16);
  line-height: 1.75;
  margin-top: 0.5rem;
  letter-spacing: 0.01em;
}

/* ============================================================
   SOCIAL PROOF ROW — avatar stack + member count
   Usage: <div class="sp-row"> ... </div>
   ============================================================ */
.sp-row {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.1rem;
}
.sp-avatars {
  display: flex;
  align-items: center;
}
.sp-av {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  margin-left: -7px;
  flex-shrink: 0;
  position: relative;
  background: rgba(255,255,255,0.07);
}
.sp-av:first-child { margin-left: 0; }
.sp-av img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}
/* Per-avatar face crop overrides */
.sp-av:nth-child(2) img { object-position: 82% 18%; } /* TikTok — face is right side */
.sp-av:nth-child(3) img { object-position: 50% 65%; } /* Play button — face is lower center */
/* "+" overflow indicator */
.sp-av-more {
  font-size: 0.58rem; font-weight: 700;
  color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.07);
  border: 2px solid var(--bg);
  letter-spacing: 0;
}
.sp-text {
  font-size: 0.76rem; line-height: 1.35;
  color: rgba(240,240,248,0.5);
}
.sp-text strong {
  color: rgba(240,240,248,0.82);
  font-weight: 600;
}
