/* =====================================================================
   ServeurIPTV4K — French editorial modernism.
   Palette: France blue #013655, red #E12D25, white #FAFDFF, dark #050200.
   Type: Inter across the board (300-900), italic accents in the accent color.
   ===================================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, svg { display: block; max-width: 100%; }

/* ---------- Tokens ---------- */
:root {
  /* Given palette */
  --fr-blue:  #013655;
  --fr-red:   #E12D25;
  --fr-white: #FAFDFF;
  --fr-black: #050200;

  /* Light theme (default) */
  --bg:            #FAFDFF;
  --bg-elevated:   #FFFFFF;
  --bg-inverted:   #013655;
  --surface:       #F3F7FA;
  --text:          #013655;
  --text-strong:   #001C2E;
  --text-muted:    rgba(1, 54, 85, 0.68);
  --text-subtle:   rgba(1, 54, 85, 0.46);
  --border:        rgba(1, 54, 85, 0.12);
  --border-strong: rgba(1, 54, 85, 0.28);
  --accent:        #E12D25;
  --accent-hover:  #C91C15;
  --accent-fg:     #FAFDFF;
  --shadow-sm:     0 1px 2px rgba(1,54,85,.05);
  --shadow-lg:     0 24px 60px -24px rgba(1,54,85,.18), 0 2px 4px rgba(1,54,85,.04);
  --grain-op:      0.02;
}

html[data-theme="dark"] {
  --bg:            #050200;
  --bg-elevated:   #0E0906;
  --bg-inverted:   #FAFDFF;
  --surface:       #100A07;
  --text:          #FAFDFF;
  --text-strong:   #FFFFFF;
  --text-muted:    rgba(250, 253, 255, 0.68);
  --text-subtle:   rgba(250, 253, 255, 0.42);
  --border:        rgba(250, 253, 255, 0.13);
  --border-strong: rgba(250, 253, 255, 0.30);
  --accent:        #E12D25;
  --accent-hover:  #F04D45;
  --accent-fg:     #FAFDFF;
  --shadow-sm:     0 1px 2px rgba(0,0,0,.4);
  --shadow-lg:     0 24px 60px -20px rgba(0,0,0,.9), 0 2px 4px rgba(0,0,0,.4);
  --grain-op:      0.035;
}

/* ---------- Base ---------- */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  transition: background .35s ease, color .35s ease;
  overflow-x: hidden;
  position: relative;
}
/* Subtle grain — anchors the palette so the flat backgrounds don't look sterile */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 200;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.5  0 0 0 0 0.5  0 0 0 0 0.5  0 0 0 1 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='1'/></svg>");
  opacity: var(--grain-op);
  mix-blend-mode: multiply;
}
html[data-theme="dark"] body::before { mix-blend-mode: screen; }

::selection { background: var(--accent); color: var(--accent-fg); }

.container { max-width: 1240px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }

.font-serif  { font-family: 'Inter', sans-serif; font-weight: 700; letter-spacing: -.02em; }
em, .em      { font-style: italic; color: var(--accent); font-family: inherit; font-weight: inherit; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 999px; background: var(--accent);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .6; transform: scale(.75); }
}

.arrow { display: inline-block; transition: transform .25s ease; }
a:hover .arrow, button:hover .arrow { transform: translateX(4px); }

/* =========================================================================
   NAV
   ========================================================================= */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.15rem 0;
}
.brand {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -.025em;
  color: var(--text-strong);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: .5rem;
  transition: color .2s;
}
.brand em { font-style: italic; color: var(--accent); }
.brand-flag {
  display: inline-block; width: 5px; height: 18px;
  background: linear-gradient(to bottom,
    var(--fr-blue) 0 33.33%,
    var(--fr-white) 33.33% 66.66%,
    var(--fr-red) 66.66%);
  border-radius: 1px;
  outline: 1px solid var(--border);
  outline-offset: -1px;
  transition: transform .3s;
}
html[data-theme="dark"] .brand-flag {
  background: linear-gradient(to bottom,
    #4E7EA5 0 33.33%,
    var(--fr-white) 33.33% 66.66%,
    var(--fr-red) 66.66%);
}
.brand:hover .brand-flag { transform: translateY(-1px) rotate(-3deg); }

.nav-links { display: flex; gap: 2.25rem; }
.nav-link {
  font-size: .89rem; font-weight: 500;
  color: var(--text-muted); text-decoration: none;
  letter-spacing: -.005em;
  position: relative; padding: .25rem 0;
  transition: color .2s;
}
.nav-link:hover { color: var(--text-strong); }
.nav-link::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px;
  background: var(--accent);
  transition: right .35s cubic-bezier(.4, 0, .2, 1);
}
.nav-link:hover::after { right: 0; }

.nav-actions { display: flex; align-items: center; gap: 1rem; }

.theme-toggle {
  background: transparent; color: var(--text);
  border: 1px solid var(--border); border-radius: 999px;
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; padding: 0;
  transition: border-color .2s, transform .35s, color .2s;
}
.theme-toggle:hover { border-color: var(--border-strong); color: var(--accent); }
.theme-toggle svg { transition: opacity .3s, transform .5s; position: absolute; }
.theme-toggle .ico-sun  { opacity: 0; transform: rotate(-90deg) scale(.5); }
.theme-toggle .ico-moon { opacity: 1; transform: rotate(0deg) scale(1); }
html[data-theme="dark"] .theme-toggle .ico-sun  { opacity: 1; transform: rotate(0deg) scale(1); }
html[data-theme="dark"] .theme-toggle .ico-moon { opacity: 0; transform: rotate(90deg) scale(.5); }

/* Buttons */
.btn-primary {
  display: inline-flex; align-items: center; gap: .55rem; justify-content: center;
  padding: .78rem 1.4rem;
  background: var(--accent); color: var(--accent-fg);
  font-family: 'Inter', sans-serif;
  font-size: .9rem; font-weight: 500;
  border: none; border-radius: 3px;
  cursor: pointer; text-decoration: none;
  letter-spacing: -.005em;
  transition: background .2s, transform .1s, box-shadow .25s;
  box-shadow: 0 1px 0 rgba(0,0,0,.05), 0 6px 24px -12px rgba(225,45,37,.45);
}
.btn-primary:hover { background: var(--accent-hover); box-shadow: 0 1px 0 rgba(0,0,0,.05), 0 12px 32px -12px rgba(225,45,37,.55); }
.btn-primary:active { transform: translateY(1px); }
.btn-primary.btn-lg { padding: 1rem 1.75rem; font-size: .95rem; }

.btn-secondary {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .78rem 1.4rem;
  background: transparent; color: var(--text-strong);
  font-family: 'Inter', sans-serif;
  font-size: .9rem; font-weight: 500;
  border: 1px solid var(--border-strong);
  border-radius: 3px;
  cursor: pointer; text-decoration: none;
  transition: border-color .2s, background .2s, color .2s;
}
.btn-secondary:hover { border-color: var(--text-strong); background: var(--surface); }

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  padding: clamp(3rem, 8vw, 7rem) 0 clamp(4rem, 10vw, 9rem);
  position: relative;
}
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
@media (max-width: 920px) { .hero-inner { grid-template-columns: 1fr; gap: 3.5rem; } }

.hero h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.5rem, 6.5vw, 5rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.035em;
  color: var(--text-strong);
  margin-bottom: 1.75rem;
}
.hero h1 em { font-style: italic; color: var(--accent); }

.hero-sub {
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 2.5rem;
}
.hero-cta { display: flex; gap: .875rem; flex-wrap: wrap; margin-bottom: 3.5rem; }

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, auto));
  gap: 2.5rem;
  border-top: 1px solid var(--border);
  padding-top: 1.75rem;
  max-width: 620px;
}
.hero-trust-item { display: flex; flex-direction: column; gap: .25rem; }
.hero-trust-num {
  font-family: 'Inter', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-strong);
  line-height: 1;
  letter-spacing: -.035em;
}
.hero-trust-sub {
  font-size: .95rem;
  color: var(--text-muted);
  margin-left: 1px;
}
.hero-trust-lbl {
  font-size: .72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-top: .3rem;
}

/* Hero visual — dark editorial card */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  background: linear-gradient(135deg, #012B45 0%, #013655 45%, #002238 100%);
  color: var(--fr-white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  isolation: isolate;
}
html[data-theme="dark"] .hero-visual { border-color: rgba(250,253,255,.08); }

.hero-visual-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(250, 253, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(250, 253, 255, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse at 65% 40%, black 30%, transparent 82%);
  -webkit-mask-image: radial-gradient(ellipse at 65% 40%, black 30%, transparent 82%);
}
.hero-visual-glow {
  position: absolute; z-index: 0;
  top: -20%; right: -30%;
  width: 90%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 45, 37, 0.42) 0%, rgba(225, 45, 37, 0) 66%);
  filter: blur(30px);
  animation: driftGlow 12s ease-in-out infinite alternate;
}
@keyframes driftGlow {
  from { transform: translate(0, 0); }
  to   { transform: translate(-30px, 40px) scale(1.05); }
}

.hero-mark {
  position: relative; z-index: 1;
  display: flex; align-items: flex-start;
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  color: var(--fr-white);
  line-height: .85;
  margin-top: 2rem;
  flex: 1;
}
.hero-mark-4 {
  font-size: clamp(6rem, 14vw, 12rem);
  letter-spacing: -.05em;
}
.hero-mark-k {
  font-size: clamp(6rem, 14vw, 12rem);
  letter-spacing: -.03em;
}
.hero-mark-k em {
  font-style: italic; color: var(--fr-red);
}
.hero-mark-caption {
  position: absolute; bottom: -0.5rem; right: 0;
  font-family: 'Inter', sans-serif;
  font-size: .68rem;
  color: rgba(250, 253, 255, .55);
  letter-spacing: .28em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  padding: 1rem 0;
  border-left: 1px solid rgba(250,253,255,.15);
  padding-left: .75rem;
}

.hero-metric {
  position: relative; z-index: 1;
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(250, 253, 255, .12);
}
.hero-metric-value {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.035em;
  color: var(--fr-white);
}
.hero-metric-value span { color: var(--fr-red); }
.hero-metric-label {
  font-size: .72rem;
  color: rgba(250, 253, 255, .55);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-top: .5rem;
}

.hero-badge {
  position: absolute; top: 1.5rem; left: 1.5rem;
  z-index: 2;
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .35rem .8rem;
  background: rgba(250, 253, 255, .08);
  border: 1px solid rgba(250, 253, 255, .18);
  border-radius: 999px;
  color: var(--fr-white);
  font-family: 'Inter', sans-serif;
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: #4ADE80;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, .18);
  animation: pulse 1.8s ease-in-out infinite;
}

/* =========================================================================
   SECTION scaffolding
   ========================================================================= */
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-header { margin-bottom: 4rem; max-width: 780px; }
.section-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.032em;
  color: var(--text-strong);
  margin-bottom: 1.25rem;
}
.section-lede {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.55;
}

/* =========================================================================
   FEATURES
   ========================================================================= */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  border-top: 1px solid var(--border);
  padding-top: 3rem;
}
@media (max-width: 800px) { .features { grid-template-columns: 1fr; gap: 3rem; } }

.feature { position: relative; padding-right: 1rem; }
.feature-index {
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  display: inline-block;
  margin-bottom: 1.5rem;
  line-height: 1;
  letter-spacing: -.035em;
}
.feature-slash { color: var(--text-subtle); margin-left: -.15em; font-style: italic; }
.feature-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-strong);
  margin-bottom: 1rem;
  letter-spacing: -.01em;
}
.feature-desc { color: var(--text-muted); font-size: .96rem; line-height: 1.65; max-width: 34ch; }

/* =========================================================================
   CHANNELS
   ========================================================================= */
.channels-section {
  background: var(--surface);
  padding: clamp(4rem, 8vw, 7rem) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.channel-chips {
  display: flex; flex-wrap: wrap; gap: .65rem .55rem;
  max-width: 1000px;
}
.chip {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .55rem 1.05rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--text);
  transition: border-color .2s, transform .2s, color .2s;
  animation: chipIn .5s cubic-bezier(.4, 0, .2, 1) both;
  opacity: 0;
}
@keyframes chipIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.chip:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.chip-dot {
  width: 5px; height: 5px; border-radius: 999px;
  background: var(--accent);
}
.chip-more {
  background: transparent;
  border-color: transparent;
  color: var(--accent);
  font-style: italic;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  padding-left: .5rem;
}
.channel-note {
  margin-top: 3rem;
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text-muted);
  max-width: 640px;
  border-left: 3px solid var(--accent);
  padding-left: 1.5rem;
  line-height: 1.55;
}

/* =========================================================================
   PRICING
   ========================================================================= */
.pricing-section { background: var(--bg); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }

.plan {
  padding: 2.75rem 2rem 2rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--bg-elevated);
  display: flex; flex-direction: column;
  position: relative;
  transition: border-color .25s, box-shadow .3s, transform .3s;
}
.plan:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.plan-featured {
  border-color: var(--accent);
  border-width: 1.5px;
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}
@media (max-width: 900px) { .plan-featured { transform: translateY(0); } }
.plan-featured:hover { transform: translateY(-10px); }

.plan-badge {
  position: absolute; top: -13px; left: 2rem;
  background: var(--accent); color: var(--accent-fg);
  font-family: 'Inter', sans-serif;
  font-size: .66rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  padding: .35rem .7rem; border-radius: 2px;
}

.plan-name {
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.plan-price {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.5rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1;
  color: var(--text-strong);
  margin-bottom: .5rem;
  letter-spacing: -.035em;
}
.plan-currency {
  font-size: .55em;
  color: var(--text-muted);
  margin-right: .1em;
  vertical-align: baseline;
}
.plan-price-suffix {
  font-size: .9rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.plan-features { list-style: none; padding: 0; margin: 0 0 2rem; flex: 1; }
.plan-features li {
  padding: .7rem 0;
  color: var(--text);
  font-size: .93rem;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: .7rem;
}
.plan-features li::before {
  content: '';
  width: 5px; height: 5px; border-radius: 999px;
  background: var(--accent);
  flex-shrink: 0;
}
.plan-features li:last-child { border-bottom: none; }

.plan-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .9rem 1.5rem;
  background: transparent;
  color: var(--text-strong);
  border: 1px solid var(--text-strong);
  border-radius: 3px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: .88rem; font-weight: 500;
  letter-spacing: -.005em;
  transition: background .25s, color .25s;
}
.plan-cta:hover { background: var(--text-strong); color: var(--bg); }
.plan-featured .plan-cta {
  background: var(--accent);
  color: var(--accent-fg);
  border-color: var(--accent);
  box-shadow: 0 6px 24px -12px rgba(225,45,37,.45);
}
.plan-featured .plan-cta:hover { background: var(--accent-hover); border-color: var(--accent-hover); box-shadow: 0 12px 32px -12px rgba(225,45,37,.55); }

.pricing-trust {
  margin-top: 3rem;
  display: flex; justify-content: center; gap: 2.5rem;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: .87rem;
}
.pricing-trust-item { display: inline-flex; align-items: center; gap: .5rem; }
.pricing-trust-item::before {
  content: '';
  width: 4px; height: 4px; border-radius: 999px; background: var(--accent);
}

/* =========================================================================
   TESTIMONIALS
   ========================================================================= */
.testimonials-section { background: var(--bg); }

.quotes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  margin-top: 2rem;
}
@media (max-width: 900px) { .quotes { grid-template-columns: 1fr; gap: 3rem; } }

.quote {
  padding-left: 2rem;
  border-left: 2px solid var(--accent);
  position: relative;
}
.quote::before {
  content: '“';
  font-family: 'Inter', sans-serif;
  font-size: 5rem;
  font-style: italic;
  color: var(--accent);
  line-height: .7;
  position: absolute;
  top: 0;
  left: .25rem;
  opacity: .18;
  pointer-events: none;
}
.quote-text {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.15rem, 1.7vw, 1.4rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.45;
  letter-spacing: -.015em;
  color: var(--text-strong);
  margin-bottom: 1.5rem;
}
.quote-author { font-family: 'Inter', sans-serif; font-size: .9rem; font-weight: 500; color: var(--text); }
.quote-city { font-size: .78rem; color: var(--text-muted); margin-top: .15rem; letter-spacing: .02em; }

/* =========================================================================
   FAQ
   ========================================================================= */
.faq-section { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.faq-container { max-width: 900px; }

.faq-list { border-top: 1px solid var(--border); margin-top: 2rem; }
.faq-item { border-bottom: 1px solid var(--border); }

.faq-question {
  width: 100%;
  padding: 1.75rem 0;
  text-align: left; background: transparent; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  color: var(--text-strong);
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.02rem, 1.3vw, 1.15rem);
  font-weight: 600;
  letter-spacing: -.015em;
  transition: color .2s;
  line-height: 1.4;
}
.faq-question:hover { color: var(--accent); }
.faq-idx {
  font-family: 'Inter', sans-serif;
  font-size: .68rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: .15em;
  margin-right: 1rem;
  vertical-align: middle;
  display: inline-block;
  padding: .15rem .45rem;
  border: 1px solid var(--border-strong);
  border-radius: 2px;
}
.faq-toggle {
  color: var(--accent);
  font-size: 1.5rem;
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
  font-family: 'Inter', sans-serif;
  flex-shrink: 0;
  line-height: 1;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.4, 0, .2, 1); }
.faq-answer-inner {
  padding: 0 3rem 1.75rem 3rem;
  color: var(--text-muted);
  font-size: .98rem;
  line-height: 1.65;
  max-width: 780px;
}
@media (max-width: 600px) {
  .faq-answer-inner { padding-left: 0; padding-right: 0; }
  .faq-idx { display: block; margin-bottom: .35rem; }
}

/* =========================================================================
   CLOSING CTA
   ========================================================================= */
.closing-cta {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--bg);
}
.closing-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 4.5rem) 2rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-elevated);
  position: relative;
  overflow: hidden;
}
.closing-inner::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(225,45,37,.06) 0%, transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(1,54,85,.08) 0%, transparent 40%);
  pointer-events: none;
}
.closing-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-strong);
  margin-bottom: 1rem;
  letter-spacing: -.035em;
  position: relative;
}
.closing-sub { color: var(--text-muted); margin-bottom: 2rem; font-size: 1.05rem; position: relative; }
.closing-inner .btn-primary { position: relative; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer {
  background: var(--bg-inverted);
  color: var(--fr-white);
  padding: clamp(4rem, 6vw, 5rem) 0 2rem;
  position: relative;
}
html[data-theme="dark"] .footer { background: #08050A; border-top: 1px solid var(--border); }
.footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right,
    var(--fr-blue) 0 33.33%,
    var(--fr-white) 33.33% 66.66%,
    var(--fr-red) 66.66%);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2.2fr repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3rem);
}
@media (max-width: 800px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-inner { grid-template-columns: 1fr; } }

.footer-brand {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--fr-white);
  margin-bottom: 1.25rem;
  letter-spacing: -.035em;
}
.footer-brand em { font-style: italic; color: var(--fr-red); }
.footer-tagline {
  font-family: 'Inter', sans-serif;
  font-size: .93rem;
  color: rgba(250, 253, 255, .62);
  max-width: 380px;
  line-height: 1.6;
  margin-bottom: 2rem;
}
html[data-theme="dark"] .footer-tagline { color: rgba(250,253,255,.55); }

.footer-locale {
  display: inline-flex; align-items: center; gap: .75rem;
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  color: rgba(250, 253, 255, .8);
  letter-spacing: .04em;
  padding: .35rem .75rem;
  border: 1px solid rgba(250, 253, 255, .18);
  border-radius: 999px;
}
.footer-stripe { display: inline-flex; gap: 2px; }
.footer-stripe i {
  display: inline-block; width: 3px; height: 12px;
}
.footer-stripe i:nth-child(1) { background: #4E7EA5; }
.footer-stripe i:nth-child(2) { background: var(--fr-white); }
.footer-stripe i:nth-child(3) { background: var(--fr-red); }

.footer-heading {
  font-family: 'Inter', sans-serif;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(250, 253, 255, .5);
  margin-bottom: 1.25rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .8rem; }
.footer-links a {
  color: rgba(250, 253, 255, .82);
  text-decoration: none;
  font-size: .93rem;
  transition: color .2s;
  position: relative;
}
.footer-links a:hover { color: var(--fr-red); }

.footer-bottom {
  margin-top: clamp(3rem, 5vw, 4rem);
  padding-top: 2rem;
  border-top: 1px solid rgba(250, 253, 255, .1);
  display: flex; justify-content: space-between; align-items: center;
  color: rgba(250, 253, 255, .5);
  font-size: .82rem;
  flex-wrap: wrap; gap: 1rem;
}
.footer-legal-links { display: inline-flex; align-items: center; gap: .75rem; flex-wrap: wrap; }
.footer-legal-links a {
  color: rgba(250, 253, 255, .65);
  text-decoration: none;
  transition: color .2s;
}
.footer-legal-links a:hover { color: var(--fr-red); }

/* =========================================================================
   Reveal on scroll
   ========================================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s cubic-bezier(.16, 1, .3, 1), transform .9s cubic-bezier(.16, 1, .3, 1); }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.in { opacity: 1 !important; transform: none !important; transition: none !important; }
  .eyebrow-dot, .hero-badge-dot, .hero-visual-glow, .chip { animation: none !important; }
}
