/* Meilleur IPTV Plus — French tricolor / RMC inspired */
@import url("icons.css");

:root {
  --fr-blue: #0055a4;
  --fr-blue-bright: #3d8bfd;
  --fr-blue-dark: #002395;
  --fr-red: #ef4135;
  --fr-red-dark: #c41e24;
  --fr-white: #ffffff;
  --fr-navy: #060b18;
  --fr-navy-mid: #0c1830;
  --bg-deep: #060b18;
  --bg-card: rgba(10, 20, 40, 0.75);
  --bg-elevated: rgba(15, 30, 58, 0.55);
  --accent: var(--fr-blue-bright);
  --accent-2: var(--fr-red);
  --accent-gold: var(--fr-white);
  --accent-wc: var(--fr-red);
  --text: var(--fr-white);
  --text-muted: #b8c9e0;
  --border: rgba(255, 255, 255, 0.12);
  --glow: 0 0 60px rgba(61, 139, 253, 0.35);
  --glow-red: 0 0 40px rgba(239, 65, 53, 0.35);
  --glow-blue: 0 0 50px rgba(0, 85, 164, 0.25);
  --glow-rgb: 61, 139, 253;
  --glow-red-rgb: 239, 65, 53;
  --radius: 16px;
  --radius-lg: 24px;
  --font: "Inter", system-ui, sans-serif;
  --font-display: "Outfit", var(--font);
  --header-h: 72px;
  --section-y: clamp(2rem, 4vw, 3.25rem);
  --section-y-tight: clamp(1.5rem, 3vw, 2.25rem);
  --section-header-mb: clamp(1.25rem, 2.5vw, 1.75rem);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background: linear-gradient(165deg, var(--fr-navy) 0%, var(--fr-navy-mid) 45%, #0a1428 100%);
  pointer-events: none;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* Background mesh */
.bg-mesh {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 70% 45% at 15% 10%, rgba(var(--glow-rgb), 0.22), transparent 55%),
    radial-gradient(ellipse 50% 40% at 85% 20%, rgba(var(--glow-red-rgb), 0.14), transparent 50%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(255, 255, 255, 0.06), transparent 55%),
    linear-gradient(180deg, transparent 0%, rgba(0, 35, 149, 0.08) 50%, rgba(196, 30, 58, 0.06) 100%);
  pointer-events: none;
}
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(61, 139, 253, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
}
.bg-mesh::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--fr-blue) 33.33%, var(--fr-white) 33.33%, var(--fr-white) 66.66%, var(--fr-red) 66.66%);
  opacity: 0.85;
}

.container { width: min(1200px, 92vw); margin-inline: auto; }
.section {
  padding: var(--section-y) 0;
}
.section + .section {
  padding-top: var(--section-y-tight);
}
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--section-header-mb);
}
.section-cta {
  text-align: center;
  margin-top: 1.25rem;
}
.section-cta--spaced {
  margin-top: 1.5rem;
}
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fr-blue-bright);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-desc { color: var(--text-muted); font-size: 1.05rem; }

/* Glass */
.glass {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.glass-strong {
  background: rgba(6, 14, 32, 0.92);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(var(--glow-rgb), 0.2);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(6, 11, 24, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(90deg, var(--fr-blue), var(--fr-white), var(--fr-red)) 1;
  box-shadow: 0 4px 30px rgba(0, 20, 60, 0.5);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1200px, 92vw);
  margin-inline: auto;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-img {
  display: block;
  height: 42px;
  width: auto;
  max-width: min(240px, 58vw);
  object-fit: contain;
  object-position: left center;
}
.footer-brand .logo-img {
  height: 38px;
  max-width: 220px;
}
.nav { display: flex; align-items: center; gap: 2rem; }
.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav a:hover, .nav a.active { color: var(--fr-white); }
.nav a.active { color: var(--fr-blue-bright); }
.nav-cta {
  padding: 0.55rem 1.25rem !important;
  background: linear-gradient(135deg, var(--fr-red), var(--fr-red-dark));
  color: var(--fr-white) !important;
  border-radius: 999px;
  font-weight: 600 !important;
  box-shadow: var(--glow-red);
}
.nav-cta:hover {
  box-shadow: 0 0 32px rgba(var(--glow-red-rgb), 0.55);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* Hero */
.hero {
  min-height: min(100dvh, 920px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--header-h);
  padding-bottom: clamp(1.5rem, 4vw, 2.5rem);
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  top: 10%;
  right: -15%;
  width: min(560px, 75vw);
  height: min(560px, 75vw);
  background:
    radial-gradient(circle at 30% 40%, rgba(var(--glow-rgb), 0.25) 0%, transparent 45%),
    radial-gradient(circle at 70% 60%, rgba(var(--glow-red-rgb), 0.15) 0%, transparent 50%);
  pointer-events: none;
  animation: float-orb 8s ease-in-out infinite;
}
@keyframes float-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, 30px) scale(1.05); }
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(1000px, 96vw);
  max-width: 100%;
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 2.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(0, 35, 100, 0.5);
  border: 1px solid rgba(var(--glow-rgb), 0.4);
  color: var(--fr-white);
  margin-bottom: 1.5rem;
  animation: pulse-glow 3s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(var(--glow-rgb), 0.3); }
  50% { box-shadow: 0 0 35px rgba(var(--glow-red-rgb), 0.35); }
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  max-width: 920px;
  margin-inline: auto;
}
.hero h1 .gradient {
  background: linear-gradient(90deg, var(--fr-white) 0%, var(--fr-blue-bright) 40%, var(--fr-red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: min(820px, 100%);
  margin-inline: auto;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
  width: 100%;
  max-width: 640px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}
.btn-primary {
  background: linear-gradient(135deg, var(--fr-blue-bright), var(--fr-blue));
  color: var(--fr-white);
  box-shadow: 0 4px 24px rgba(var(--glow-rgb), 0.45);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(var(--glow-rgb), 0.55);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--fr-white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.btn-secondary:hover {
  background: rgba(var(--glow-rgb), 0.15);
  border-color: var(--fr-blue-bright);
  box-shadow: 0 0 24px rgba(var(--glow-rgb), 0.2);
}
.btn-gold {
  background: linear-gradient(135deg, var(--fr-red), var(--fr-red-dark));
  color: var(--fr-white);
  box-shadow: var(--glow-red);
}
.btn-gold:hover {
  box-shadow: 0 8px 36px rgba(var(--glow-red-rgb), 0.5);
  transform: translateY(-2px);
}

/* Countdown */
.countdown-wrap {
  padding: 1.75rem 2rem;
  border-radius: var(--radius-lg);
  max-width: 640px;
  margin-top: 1rem;
}
.countdown-wrap h3 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fr-blue-bright);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.countdown-item {
  text-align: center;
  padding: 1rem 0.5rem;
  border-radius: var(--radius);
  background: rgba(0, 35, 100, 0.35);
  border: 1px solid rgba(var(--glow-rgb), 0.25);
}
.countdown-item span {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.countdown-item small {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.35rem;
  display: block;
}

/* Stats */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}
.stat-item {
  text-align: center;
  padding: 1.25rem;
}
.stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--fr-blue-bright);
}
.stat-item span { font-size: 0.85rem; color: var(--text-muted); }

/* Cards grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.card {
  padding: 1.75rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--glow-rgb), 0.35);
  box-shadow: var(--glow);
}
.card:hover::before { opacity: 1; }
.card-icon {
  margin-bottom: 1.25rem;
}
.card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}
.card p { color: var(--text-muted); font-size: 0.95rem; }

/* Channel slider */
.channels-section {
  overflow: visible;
  padding-top: var(--section-y-tight);
  padding-bottom: var(--section-y-tight);
}
.channels-section .section-header {
  margin-bottom: 1rem;
}
.channels-slider-wrap {
  position: relative;
  padding: 0.5rem 0;
  overflow: hidden;
}
.channels-track {
  display: flex;
  gap: 1.25rem;
  animation: scroll-channels 40s linear infinite;
  width: max-content;
}
.channels-track:hover { animation-play-state: paused; }
@keyframes scroll-channels {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.channel-pill {
  flex-shrink: 0;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  background: var(--bg-card);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.channel-pill.sport { border-color: rgba(var(--glow-red-rgb), 0.5); color: #ff8a82; }
.channel-pill.news { border-color: rgba(255, 255, 255, 0.25); }
.channel-pill.cinema { border-color: rgba(var(--glow-rgb), 0.35); }

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
  overflow: visible;
}
.price-card {
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: visible;
}
.price-card.featured {
  border-color: rgba(var(--glow-rgb), 0.5);
  box-shadow: var(--glow);
  transform: scale(1.02);
}
/* Badge in normal flow — avoids clip from content-visibility / overflow on .reveal */
.price-badge {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 1.15rem;
  padding: 0.5rem 1.15rem;
  background: linear-gradient(135deg, var(--fr-red), var(--fr-red-dark));
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 700;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  flex-shrink: 0;
  z-index: 1;
}
.price-badge-slot {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0 0 0.15rem;
  flex-shrink: 0;
}
.price-card:has(.price-badge) {
  margin-top: 0;
  padding-top: 1.35rem;
  overflow: visible;
}
.price-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  margin: 1rem 0;
}
.price-amount small { font-size: 1rem; font-weight: 500; color: var(--text-muted); }
.price-features { flex: 1; margin: 1.5rem 0; }
.price-features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.price-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.price-card .btn { width: 100%; margin-top: auto; }

.pricing-section {
  scroll-margin-top: 5rem;
  overflow: visible;
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}
.pricing-section .container {
  overflow: visible;
}
.pricing-tabs {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.35rem;
  margin: 0 auto 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
}
.pricing-section .pricing-tabs { display: flex; justify-content: center; width: fit-content; margin-left: auto; margin-right: auto; }
.pricing-tab {
  padding: 0.65rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: inherit;
  color: var(--text-muted);
  background: transparent;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: var(--transition);
}
.pricing-tab-active {
  color: #fff;
  background: linear-gradient(135deg, var(--fr-blue), var(--fr-blue-bright));
  box-shadow: 0 4px 20px rgba(61, 139, 253, 0.35);
}
button.pricing-tab:hover { color: #fff; background: rgba(255, 255, 255, 0.08); }
.pricing-promo {
  text-align: center;
  font-size: 0.9rem;
  color: var(--fr-blue-bright);
  margin-bottom: 1rem;
}
.pricing-grid-4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  padding-top: 0.5rem;
  overflow: visible;
}
.price-card.glass.reveal,
.pricing-section .pricing-grid .reveal {
  overflow: visible;
  content-visibility: visible;
  contain-intrinsic-size: unset;
}
@media (max-width: 1100px) {
  .pricing-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .pricing-grid-4 { grid-template-columns: 1fr; }
}
.price-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}
.price-bonus {
  font-size: 0.8rem;
  font-weight: 600;
  color: #6ee7a0;
  margin: -0.5rem 0 0.5rem;
}
.price-guarantee {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.75rem;
}
.price-badge-popular {
  background: linear-gradient(135deg, #f97316, var(--fr-red));
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.45);
}
.price-badge-elite {
  background: linear-gradient(135deg, var(--fr-blue), #6366f1);
  box-shadow: 0 4px 20px rgba(61, 139, 253, 0.4);
}
.price-card.featured {
  overflow: visible;
}
.price-card .price-badge-slot + .price-plan-name {
  margin-top: 0;
}
.btn-plan {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.85rem 1rem;
  font-weight: 700;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  color: var(--text);
  transition: var(--transition);
}
.btn-plan:hover {
  border-color: rgba(var(--glow-rgb), 0.6);
  background: rgba(var(--glow-rgb), 0.12);
}
.btn-plan-primary {
  background: linear-gradient(135deg, var(--fr-red), var(--fr-red-dark));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 28px rgba(var(--glow-red-rgb), 0.35);
}
.btn-plan-primary:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}
.pricing-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.pricing-trust-item {
  text-align: center;
  padding: 1rem 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.pricing-trust-item strong {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
}
.pricing-trust-item span {
  font-size: 0.75rem;
  color: var(--text-muted);
}
@media (max-width: 768px) {
  .pricing-trust { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .pricing-trust { grid-template-columns: 1fr; }
}

/* Reviews */
.reviews-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.review-card { padding: 2rem; }
.review-stars { color: var(--fr-blue-bright); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.review-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.85rem;
}
.review-author strong { display: block; font-size: 0.9rem; }
.review-author span { font-size: 0.8rem; color: var(--text-muted); }

/* Devices */
.devices-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 0;
}
.device-item {
  text-align: center;
  padding: 1.5rem 2rem;
  min-width: 120px;
}
.device-item .icon { margin-bottom: 0.5rem; }
.device-item span { font-size: 0.85rem; color: var(--text-muted); }

/* Comparison table */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  margin-top: 2rem;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}
.compare-table th,
.compare-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.compare-table th {
  font-family: var(--font-display);
  font-weight: 600;
  background: rgba(var(--glow-rgb), 0.1);
}
.compare-table tr:hover td { background: rgba(255,255,255,0.02); }
.compare-table .highlight { color: var(--accent); font-weight: 600; }
.check { color: var(--accent); }
.cross { color: #ef4444; }

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.step-card { padding: 2rem; position: relative; }
.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(var(--glow-rgb), 0.2);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.step-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.step-card p { color: var(--text-muted); font-size: 0.9rem; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.contact-form { padding: 2.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--text-muted);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(var(--glow-rgb), 0.2);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.contact-info { padding: 2rem; }
.contact-info-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(var(--glow-rgb), 0.15);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

/* Footer */
.footer {
  padding: 2.5rem 0 1.5rem;
  border-top: 1px solid var(--border);
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 1.75rem;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 1rem 0 1.5rem;
  max-width: 320px;
}
.footer h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: var(--text);
}
.footer ul li { margin-bottom: 0.5rem; }
.footer ul a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer ul a:hover { color: var(--accent); }
.footer-keywords {
  font-size: 0.75rem;
  color: rgba(156, 163, 184, 0.6);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.75rem;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.5);
  transition: var(--transition);
  animation: whatsapp-pulse 2s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 32px rgba(37, 211, 102, 0.6);
}
@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 4px 32px rgba(37, 211, 102, 0.8); }
}

/* Page hero */
.page-hero {
  padding: calc(var(--header-h) + 2rem) 0 1.75rem;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}
.page-hero p { color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.page-hero + .section {
  padding-top: var(--section-y-tight);
}

/* WC banner */
.wc-banner {
  padding: 3rem;
  border-radius: var(--radius-lg);
  text-align: center;
  background: linear-gradient(135deg, rgba(0, 85, 164, 0.2), rgba(255, 255, 255, 0.04), rgba(var(--glow-red-rgb), 0.12));
  border: 1px solid rgba(var(--glow-rgb), 0.35);
  margin: 2rem 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.wc-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Articles blog : contenu visible sans attendre le scroll */
.article-page .reveal {
  opacity: 1;
  transform: none;
}

/* Breadcrumb */
.breadcrumb {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.breadcrumb a:hover { color: var(--accent); }

/* Responsive */
@media (max-width: 900px) {
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 2rem;
    background: rgba(5, 5, 8, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    gap: 1.25rem;
  }
  .nav.open {
    transform: translateY(0);
    opacity: 1;
  }
  .menu-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
}
@media (max-width: 600px) {
  .countdown { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-content {
    width: min(100%, 96vw);
    padding-inline: clamp(0.75rem, 4vw, 1.5rem);
  }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; max-width: 360px; margin-inline: auto; }
}

/* Pricing toolbar + Multi-écrans */
.pricing-toolbar {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}
.btn-multi {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  color: var(--text);
  background: rgba(18, 20, 28, 0.8);
  border: 1px solid rgba(var(--glow-rgb), 0.45);
  border-radius: 999px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow:
    0 0 24px rgba(var(--glow-rgb), 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.btn-multi:hover {
  border-color: rgba(var(--glow-rgb), 0.75);
  box-shadow:
    0 0 40px rgba(var(--glow-rgb), 0.45),
    0 0 80px rgba(var(--glow-rgb), 0.2);
  transform: translateY(-2px);
}
.btn-multi-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  color: #ffffff;
}

/* Multi-écrans panel */
.multi-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(5, 5, 8, 0.75);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.multi-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.multi-panel {
  position: relative;
  width: min(480px, 100%);
  max-height: min(92vh, 720px);
  overflow-y: auto;
  padding: 2rem 2rem 2.25rem;
  border-radius: var(--radius-lg);
  background: rgba(12, 14, 22, 0.92);
  border: 1px solid rgba(var(--glow-rgb), 0.3);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 0 60px rgba(var(--glow-rgb), 0.15),
    0 0 120px rgba(var(--glow-rgb), 0.08),
    0 24px 80px rgba(0, 0, 0, 0.6);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.45s cubic-bezier(0.34, 1.2, 0.64, 1);
}
.multi-overlay.is-open .multi-panel {
  transform: scale(1) translateY(0);
}
.multi-panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, var(--fr-blue), var(--fr-white), var(--fr-red));
  opacity: 0.35;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.multi-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.35);
  color: var(--text-muted);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
}
.multi-close:hover {
  color: var(--text);
  border-color: rgba(var(--glow-rgb), 0.5);
  box-shadow: 0 0 20px rgba(var(--glow-rgb), 0.3);
}
.multi-panel-head {
  margin-bottom: 1.75rem;
  padding-right: 2.5rem;
}
.multi-panel-head h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.multi-panel-head p {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.multi-field {
  margin-bottom: 1.5rem;
}
.multi-field label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
}
.multi-field label strong {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.1rem;
}
.multi-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}
.multi-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 20px rgba(var(--glow-rgb), 0.65);
  cursor: pointer;
  transition: transform 0.2s ease;
}
.multi-slider::-webkit-slider-thumb:hover {
  transform: scale(1.12);
}
.multi-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 20px rgba(var(--glow-rgb), 0.65);
  cursor: pointer;
}
.multi-slider-ticks {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
  font-size: 0.7rem;
  color: rgba(156, 163, 184, 0.5);
}
.multi-select {
  width: 100%;
  padding: 0.9rem 1rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
}
.multi-select:hover,
.multi-select:focus {
  outline: none;
  border-color: rgba(var(--glow-rgb), 0.55);
  box-shadow: 0 0 0 3px rgba(var(--glow-rgb), 0.15);
}
.multi-bonus {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--accent-wc);
  padding: 0.25rem 0.6rem;
  background: rgba(var(--glow-rgb), 0.1);
  border-radius: 6px;
  border: 1px solid rgba(var(--glow-rgb), 0.3);
}
.multi-bonus[hidden] { display: none; }
.multi-total-wrap {
  margin: 1.75rem 0 1.5rem;
  padding: 1.75rem 1.25rem;
  text-align: center;
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(var(--glow-rgb), 0.35);
  box-shadow:
    0 0 40px rgba(var(--glow-rgb), 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.multi-total-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.multi-total-price {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 8vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #fff 0%, var(--accent) 45%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 24px rgba(var(--glow-rgb), 0.55));
  transition: transform 0.3s ease;
}
.multi-total-price.is-updating {
  transform: scale(1.04);
}
.multi-total-detail {
  display: block;
  margin-top: 0.65rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.multi-cta {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
}
body.multi-open { overflow: hidden; }

/* ——— SEO / UX / Performance ——— */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--fr-blue);
  color: #fff;
  font-weight: 600;
  border-radius: 0 0 var(--radius) var(--radius);
}
.skip-link:focus {
  left: 1rem;
  top: 0.5rem;
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.container-narrow { max-width: 820px; margin-left: auto; margin-right: auto; }
.hero-eyebrow {
  display: block;
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fr-blue-bright);
  margin-bottom: 0.5rem;
  text-align: center;
}
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  margin-top: 1.75rem;
  padding: 0;
  list-style: none;
}
.trust-bar li {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-muted);
}
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  padding: 0;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  padding: 1.15rem 1.25rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--fr-blue-bright);
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  padding: 0 1.25rem 1.15rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}
.faq-item a { color: var(--fr-blue-bright); text-decoration: underline; }
.faq-home-section { scroll-margin-top: 5rem; }
.text-center { text-align: center; }

/* Final CTA strip */
.section-cta-final .cta-panel {
  padding: clamp(1.75rem, 4vw, 2.5rem) clamp(1.25rem, 4vw, 2rem);
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}
.section-cta-final .cta-panel .section-title {
  margin-bottom: 0.75rem;
}
.section-cta-final .cta-panel .section-desc {
  margin-bottom: 1.25rem;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
.reveal:not(.price-card) {
  content-visibility: auto;
  contain-intrinsic-size: auto 280px;
}
.price-card.reveal {
  content-visibility: visible;
  contain-intrinsic-size: unset;
}
:focus-visible {
  outline: 2px solid var(--fr-blue-bright);
  outline-offset: 3px;
}

/* Hero — France creative (no event countdown) */
.hero-badge-fr {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.45rem 1.15rem;
  background: linear-gradient(90deg, rgba(0, 85, 164, 0.35), rgba(255, 255, 255, 0.12), rgba(239, 65, 53, 0.3));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  margin-inline: auto;
  max-width: 100%;
}
.france-live-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 1.25rem;
  width: 100%;
  max-width: 920px;
  margin-inline: auto;
}
.hero .stats-row {
  width: 100%;
  max-width: 920px;
  margin-inline: auto;
}
.hero .trust-bar {
  max-width: 920px;
  margin-inline: auto;
  margin-top: 1.25rem;
}
.live-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 1.1rem 0.75rem;
  text-align: center;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  transition: var(--transition);
}
.live-tile:hover {
  border-color: rgba(var(--glow-rgb), 0.5);
  transform: translateY(-2px);
}
.live-tile .tile-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.35rem;
}
.live-tile strong { display: block; font-size: 0.75rem; font-weight: 700; color: var(--text); }
.live-tile span { font-size: 0.65rem; color: var(--text-muted); }
.stats-row { margin-top: 1.5rem; }
.tricolore-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 0;
}
.tricolore-card {
  padding: 1.75rem 1.25rem;
  text-align: center;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.tricolore-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}
.tricolore-card.blue::before { background: var(--fr-blue); }
.tricolore-card.white::before { background: #fff; }
.tricolore-card.red::before { background: var(--fr-red); }
.tricolore-card h3 { font-family: var(--font-display); font-size: 1.1rem; margin: 0.75rem 0 0.5rem; }
.tricolore-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.55; }
@media (max-width: 768px) {
  .france-live-grid { grid-template-columns: repeat(2, 1fr); }
  .tricolore-section { grid-template-columns: 1fr; }
}

/* Blog grid (accueil + articles) */
.blog-section { scroll-margin-top: 5rem; background: linear-gradient(180deg, transparent, rgba(0, 85, 164, 0.06)); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}
.blog-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover {
  border-color: rgba(var(--glow-rgb), 0.45);
  transform: translateY(-3px);
}
.blog-card-thumb {
  padding: 1.25rem 1.25rem 0;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
  color: var(--fr-blue-bright);
  opacity: 0.9;
}
.blog-card-body { padding: 0 1.25rem 1.25rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fr-blue-bright);
  margin-bottom: 0.5rem;
}
.blog-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.35;
  margin-bottom: 0.5rem;
}
.blog-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  flex: 1;
  line-height: 1.55;
}
.blog-card-link {
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fr-blue-bright);
}
.blog-card-link:hover { text-decoration: underline; }
.blog-list-page { padding: 2rem 0 4rem; }
.blog-list-intro { max-width: 640px; margin-bottom: 2rem; color: var(--text-muted); line-height: 1.7; }
.blog-list-grid { display: grid; gap: 1rem; }
.blog-list-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem 1.25rem;
  align-items: center;
  padding: 1.25rem 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
.blog-list-item:hover {
  border-color: rgba(var(--glow-rgb), 0.45);
  transform: translateX(4px);
}
.blog-list-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--fr-blue-bright);
  opacity: 0.85;
  min-width: 2rem;
}
.blog-list-item h2 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 0.35rem;
  color: var(--text);
}
.blog-list-item p { margin: 0; font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; }
.blog-list-tag {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fr-blue-bright);
  margin-bottom: 0.25rem;
}
.blog-list-arrow { color: var(--fr-blue-bright); font-weight: 600; font-size: 0.9rem; }
.article-related {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.article-related h2 { font-size: 1.15rem; margin-bottom: 1rem; }
.article-related ul { list-style: none; padding: 0; margin: 0; }
.article-related li { margin-bottom: 0.5rem; }
.article-related a { color: var(--fr-blue-bright); text-decoration: none; font-weight: 500; }
.article-related a:hover { text-decoration: underline; }
@media (max-width: 600px) {
  .blog-list-item { grid-template-columns: auto 1fr; }
  .blog-list-arrow { display: none; }
}
.article-page { padding: 2rem 0 4rem; }
.article-header { margin-bottom: 2rem; }
.article-header h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
  margin: 0.75rem 0 1rem;
}
.article-meta { font-size: 0.85rem; color: var(--text-muted); }
.article-content {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
}
.article-content h2 {
  font-family: var(--font-display);
  color: var(--text);
  font-size: 1.35rem;
  margin: 2rem 0 0.75rem;
}
.article-content p { margin-bottom: 1rem; }
.article-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.article-content li { margin-bottom: 0.35rem; }
.article-content a { color: var(--fr-blue-bright); text-decoration: underline; }
.article-cta-box {
  margin-top: 2.5rem;
  padding: 1.75rem;
  text-align: center;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(var(--glow-rgb), 0.35);
  background: rgba(var(--glow-rgb), 0.08);
}
.article-toc {
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}
.article-toc strong { display: block; margin-bottom: 0.5rem; color: var(--text); }
.article-toc ol { padding-left: 1.25rem; color: var(--text-muted); font-size: 0.9rem; }
.article-toc li { margin-bottom: 0.35rem; }
.article-toc a { color: var(--fr-blue-bright); }
.article-table-wrap { overflow-x: auto; margin: 1.5rem 0; }
.article-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.article-table th,
.article-table td {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  text-align: left;
}
.article-table th {
  background: rgba(var(--glow-rgb), 0.12);
  color: var(--text);
  font-weight: 600;
}
.article-table td { color: var(--text-muted); }
.provider-card {
  padding: 1.25rem;
  margin: 1rem 0;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}
.provider-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--text); }
.provider-card p { margin-bottom: 0.5rem; }
.provider-card a { color: var(--fr-blue-bright); font-weight: 600; }
.article-faq { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.article-faq h2 { margin-bottom: 1rem; }
.article-internal-links {
  margin: 2rem 0;
  padding: 1.25rem;
  border-left: 3px solid var(--fr-blue-bright);
  background: rgba(var(--glow-rgb), 0.06);
  font-size: 0.9rem;
}
.article-internal-links ul { list-style: none; padding: 0; }
.article-internal-links li { margin-bottom: 0.35rem; }
