@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* Skip navigation */
.skip-nav {
  position: absolute; left: -9999px; top: auto; width: 1px; height: 1px;
  overflow: hidden; z-index: 9999;
}
.skip-nav:focus {
  position: fixed; left: 1rem; top: 0; width: auto; height: auto;
  overflow: visible; background: #3b82f6; color: #fff; padding: 0.65rem 1.25rem;
  border-radius: 0 0 0.5rem 0.5rem; font-weight: 700; font-size: 0.9rem;
  text-decoration: none;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── BODY + FOND ── */
body {
  min-height: 100vh;
  background: #07111f;
  color: #f8fafc;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  overflow-x: hidden;
  position: relative;
}

/* Grille de points subtile */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(rgba(59,130,246,0.07) 1px, transparent 1px);
  background-size: 36px 36px;
}

/* Orbes de fond */
body::after {
  content: ''; position: fixed; z-index: 0; pointer-events: none;
  width: 900px; height: 900px; border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.13) 0%, transparent 65%);
  filter: blur(80px); top: -300px; left: -300px;
}
.bg-orb-purple {
  display: none; /* géré par pseudo-éléments ci-dessous */
}

/* Second orbe violet en bas à droite via JS impossible — on hack avec outline */
main::after {
  content: ''; position: fixed; z-index: 0; pointer-events: none;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(139,92,246,0.11) 0%, transparent 65%);
  filter: blur(80px); bottom: -200px; right: -200px;
}

/* ── NAV ── */
/* .topnav, .topnav-brand/-logo/-links/-download/-hamburger : voir css/topnav.css (partagé) */
.topnav-cta {
  background: linear-gradient(135deg,#3b82f6,#6366f1) !important;
  color: #fff !important; font-weight: 700 !important;
  box-shadow: 0 2px 12px rgba(59,130,246,0.35) !important; border: none !important;
}
.topnav-cta:hover { filter: brightness(1.1) !important; }

/* ── MAIN ── */
main {
  max-width: 130rem; margin: 0 auto;
  padding: 6rem 1.5rem 1.5rem;
  position: relative; z-index: 1;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes gradientSweep {
  0%   { background-position: 0% center; }
  100% { background-position: 300% center; }
}
@keyframes borderGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(59,130,246,0.4), 0 8px 32px rgba(59,130,246,0.15); }
  50%       { box-shadow: 0 0 0 4px rgba(59,130,246,0.1), 0 12px 40px rgba(59,130,246,0.25); }
}
@keyframes stripeSheen {
  from { background-position: -200% center; }
  to   { background-position: 200% center; }
}

/* ── HERO ── */
.hero {
  text-align: center; margin-bottom: 2.5rem;
  animation: fadeUp 0.6s cubic-bezier(.22,1,.36,1) both;
}
.hero-badge {
  display: inline-flex; align-items: center;
  background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.3);
  color: #34d399; font-size: 0.8rem; font-weight: 700;
  padding: 0.35rem 1.1rem; border-radius: 2rem; margin-bottom: 1.5rem;
  box-shadow: 0 0 16px rgba(16,185,129,0.1);
}
/* Même traitement que le H1 de la page d'accueil : texte blanc plein,
   un mot-clé en dégradé animé, entrée en 2 lignes. */
.hero h1 {
  font-size: clamp(2rem, 5vw, 4rem); font-weight: 900;
  letter-spacing: -0.05em; line-height: 1.08;
  color: #f8fafc; margin-bottom: 1.25rem;
  animation: fadeUp 0.7s 0.18s cubic-bezier(.22,1,.36,1) both, heroGlowPulse 4s 1.5s ease-in-out infinite;
}
.hero h1 .line1, .hero h1 .line2 { display: block; }
.hero-title-grad {
  background: linear-gradient(270deg, #93c5fd 0%, #a78bfa 25%, #f472b6 50%, #a78bfa 75%, #93c5fd 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: heroGradShift 5s ease infinite;
  display: inline-block;
}
@keyframes heroGlowPulse {
  0%,100% { text-shadow: 0 0 40px rgba(167,139,250,0.0); }
  50%      { text-shadow: 0 0 60px rgba(167,139,250,0.35), 0 0 120px rgba(147,197,253,0.2); }
}
@keyframes heroGradShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero-sub { color: #f1f5f9; font-size: 1rem; margin-bottom: 1.75rem; }

/* Hero CTA */
@keyframes trialPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(59,130,246,0.55), 0 4px 20px rgba(59,130,246,0.35); }
  50%       { box-shadow: 0 0 0 10px rgba(59,130,246,0), 0 6px 32px rgba(59,130,246,0.55); }
}
@keyframes trialShimmer {
  from { background-position: -200% center; }
  to   { background-position: 200% center; }
}
.btn-hero-trial {
  display: inline-block; text-decoration: none; position: relative; overflow: hidden;
  color: #fff; font-size: 1rem; font-weight: 800;
  padding: 0.9rem 2.25rem; border-radius: 0.9rem;
  border: 1px solid rgba(99,179,237,0.5);
  background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 50%, #60a5fa 100%);
  background-size: 200% auto;
  box-shadow: 0 4px 24px rgba(59,130,246,0.45);
  animation: trialPulse 2.4s ease-in-out infinite;
  transition: transform 0.18s, box-shadow 0.18s;
  letter-spacing: 0.01em;
}
.btn-hero-trial::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.3) 50%, transparent 65%);
  background-size: 200% 100%;
  animation: trialShimmer 2.4s linear infinite;
}
.btn-hero-trial:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 40px rgba(59,130,246,0.65);
  animation: none;
}

/* ── TRUST BAR ── */
.trust-bar {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem;
  margin-bottom: 3rem;
  animation: fadeUp 0.6s 0.1s cubic-bezier(.22,1,.36,1) both;
}
/* ── OFFER ROWS ── */
.plan-offers {
  display: flex; flex-direction: column; gap: 0.35rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid #1e3a5f;
}
.offer-row {
  display: flex; align-items: center; gap: 0.85rem;
  padding: 0.75rem 0.9rem; border-radius: 0.7rem;
  border: 1px solid #1e3a5f;
  text-decoration: none; color: inherit;
  background: rgba(255,255,255,0.02);
  transition: all 0.18s;
}
.offer-row:hover {
  border-color: rgba(59,130,246,0.45);
  background: rgba(59,130,246,0.06);
}
.offer-row--primary {
  border-color: rgba(59,130,246,0.4);
  background: rgba(59,130,246,0.08);
}
.offer-row--primary:hover {
  border-color: rgba(59,130,246,0.7);
  background: rgba(59,130,246,0.14);
}
.offer-info { flex: 1; min-width: 0; }
.offer-badge {
  font-size: 0.65rem; font-weight: 800; color: #34d399;
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 0.15rem;
}
.offer-name {
  font-size: 0.94rem; font-weight: 700; color: #e2e8f0;
}
.offer-row--primary .offer-name { color: #93c5fd; }
.offer-desc { font-size: 0.8rem; color: #f1f5f9; margin-top: 0.1rem; }
.offer-price {
  font-size: 1.02rem; font-weight: 800; color: #f8fafc;
  white-space: nowrap; flex-shrink: 0;
}
.offer-ht { font-size: 0.74rem; font-weight: 500; color: #e2e8f0; }
.offer-arrow {
  color: #f1f5f9; font-size: 1rem; flex-shrink: 0;
  transition: transform 0.15s, color 0.15s;
}
.offer-row:hover .offer-arrow { transform: translateX(3px); color: #93c5fd; }
.offer-row--disabled {
  pointer-events: none; cursor: not-allowed; opacity: 0.6;
}
.offer-arrow--disabled {
  font-size: 0.72rem; font-weight: 800; color: #f59e0b;
  text-transform: uppercase; letter-spacing: 0.04em;
  white-space: nowrap;
}
.offer-warning {
  font-size: 0.84rem; color: #f59e0b; line-height: 1.55;
  padding: 0.65rem 0.9rem;
  border-top: 1px solid rgba(245,158,11,0.2);
  background: rgba(245,158,11,0.06);
  border-radius: 0 0 0.85rem 0.85rem;
  margin-top: 0;
}

.trust-item {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.8rem; font-weight: 600; color: #f1f5f9;
  background: #0d1829; border: 1px solid #1e3a5f;
  padding: 0.5rem 1.1rem; border-radius: 2rem;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.trust-item:hover {
  color: #93c5fd; border-color: rgba(59,130,246,0.35);
  background: rgba(59,130,246,0.06);
}

/* ── PLANS GRID ── */
.plans-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; margin-bottom: 2rem; align-items: start;
}

/* ── PLAN CARD ── */
.plan-card {
  background: #0d1829;
  border: 1px solid #1e3a5f;
  border-radius: 1.1rem;
  overflow: hidden;
  display: flex; flex-direction: column;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(.34,1.56,.64,1), box-shadow 0.3s, border-color 0.25s;
  animation: fadeUp 0.55s 0.15s cubic-bezier(.22,1,.36,1) both;
}
.plan-card:nth-child(2) { animation-delay: 0.28s; }
.plan-card:focus-visible { outline: 2px solid #3b82f6; outline-offset: 3px; }

/* État sélectionné (clic sur la carte) */
.plan-card--selected {
  border-color: #3b82f6 !important;
  box-shadow: 0 0 0 2px rgba(59,130,246,0.55), 0 20px 50px rgba(59,130,246,0.25) !important;
}
.plan-card--selected::after {
  content: '✓ Sélectionné';
  position: absolute; top: 0.85rem; right: 0.85rem;
  background: #3b82f6; color: #fff;
  font-size: 0.68rem; font-weight: 800;
  padding: 0.25rem 0.65rem; border-radius: 2rem;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 12px rgba(59,130,246,0.4);
  z-index: 2;
}

/* Barre colorée en haut */
.plan-card::before {
  content: ''; display: block; height: 3px;
  background: linear-gradient(90deg, #334155, #475569);
  flex-shrink: 0;
}
.plan-card--featured::before {
  background: linear-gradient(90deg, #3b82f6, #6366f1, #8b5cf6, #3b82f6);
  background-size: 300% auto;
  animation: stripeSheen 3s linear infinite;
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}
.plan-card--featured {
  border-color: rgba(59,130,246,0.45);
  box-shadow: 0 0 0 1px rgba(59,130,246,0.2), 0 8px 32px rgba(59,130,246,0.12);
  animation: fadeUp 0.55s 0.28s cubic-bezier(.22,1,.36,1) both, borderGlow 3.5s 1s ease-in-out infinite;
}
.plan-card--featured:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 0 1px rgba(59,130,246,0.35), 0 24px 60px rgba(59,130,246,0.25);
}

/* Header */
.plan-header {
  padding: 1.4rem 1.6rem 1.1rem;
  border-bottom: 1px solid #1e3a5f;
}
.plan-name {
  font-size: 0.85rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #f1f5f9; margin-bottom: 0.4rem;
}
.plan-card--featured .plan-name { color: #60a5fa; }
.plan-name-row {
  display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.4rem;
}
.plan-recommended {
  font-size: 0.78rem; font-weight: 700;
  background: rgba(59,130,246,0.15);
  border: 1px solid rgba(59,130,246,0.35);
  color: #93c5fd;
  padding: 0.25rem 0.7rem; border-radius: 2rem;
  letter-spacing: 0.02em;
  box-shadow: 0 0 10px rgba(59,130,246,0.15);
}
.plan-tagline { font-size: 0.9rem; color: #f1f5f9; line-height: 1.5; }

.price-row {
  display: flex; align-items: baseline; gap: 0.5rem; margin-bottom: 0.3rem;
}
.price-big {
  font-size: 2.75rem; font-weight: 900; color: #f1f5f9; line-height: 1;
  text-shadow: 0 0 30px rgba(248,250,252,0.12);
}
.plan-card--featured .price-big {
  background: linear-gradient(135deg, #e2e8f0, #93c5fd);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.price-meta { font-size: 0.78rem; color: #f1f5f9; }
.price-sub { font-size: 0.88rem; font-weight: 600; color: #60a5fa; }
.price-sub-label { font-weight: 400; color: #f1f5f9; }

/* Divider */
.plan-divider { display: none; }

/* Includes banner */
.plan-includes-banner {
  margin: 0; padding: 0.65rem 1.6rem;
  background: rgba(59,130,246,0.12);
  border-top: 1px solid rgba(59,130,246,0.2);
  border-bottom: 1px solid rgba(59,130,246,0.2);
  font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #93c5fd;
}

/* Sections */
.plan-section {
  padding: 1.1rem 1.6rem;
  border-bottom: 1px solid #1e3a5f;
  flex: 1;
}
.plan-section--maint { background: rgba(255,255,255,0.02); }
.section-label {
  font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #f1f5f9; margin-bottom: 0.75rem;
}
.feat-list {
  list-style: none; display: flex; flex-direction: column; gap: 0.5rem;
}
.feat-list li {
  font-size: 0.88rem; color: #f1f5f9; line-height: 1.45;
  display: flex; align-items: flex-start; gap: 0.6rem;
}
.feat-list li::before {
  content: '✓';
  color: #22c55e; font-size: 0.75rem; font-weight: 900;
  flex-shrink: 0; margin-top: 0.1rem;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 50%; width: 1.1rem; height: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}
.plan-card--featured .feat-list li { color: #f1f5f9; }
.plan-card--featured .feat-list li::before {
  color: #60a5fa;
  background: rgba(59,130,246,0.12);
  border-color: rgba(59,130,246,0.25);
}
.maint-intro { font-size: 0.8rem; color: #f1f5f9; margin-bottom: 0.6rem; font-style: italic; }

/* CTA bouton plan */
.plan-cta-wrap { padding: 1.2rem 1.6rem; }
.btn-plan {
  display: block; text-align: center; text-decoration: none;
  padding: 0.8rem 1rem; border-radius: 0.75rem;
  font-weight: 700; font-size: 0.9rem; transition: all 0.2s;
  background: rgba(255,255,255,0.06); color: #e2e8f0;
  border: 1px solid rgba(255,255,255,0.12);
}
.btn-plan:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.22); transform: translateY(-1px); }
.btn-plan--primary {
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  color: #fff; border-color: transparent;
  box-shadow: 0 4px 20px rgba(59,130,246,0.4);
  position: relative; overflow: hidden;
}
.btn-plan--primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.18) 50%, transparent 60%);
  background-size: 200% 100%; transform: translateX(-100%);
  transition: transform 0.5s;
}
.btn-plan--primary:hover::before { transform: translateX(200%); }
.btn-plan--primary:hover { filter: brightness(1.1); box-shadow: 0 8px 30px rgba(59,130,246,0.55); transform: translateY(-2px); }
.btn-plan--disabled {
  pointer-events: none; cursor: not-allowed; opacity: 0.6;
}

/* ── LISTE D'ATTENTE VENTES ── */
.waitlist-form { margin-top: 0.7rem; }
.waitlist-row { display: flex; gap: 0.5rem; }
.waitlist-input {
  flex: 1; min-width: 0;
  padding: 0.65rem 0.85rem; border-radius: 0.65rem;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.04); color: #f8fafc;
  font-size: 0.85rem;
}
.waitlist-input::placeholder { color: #94a3b8; }
.waitlist-input:focus { outline: none; border-color: rgba(59,130,246,0.6); }
.waitlist-btn {
  flex-shrink: 0; padding: 0.65rem 1rem; border-radius: 0.65rem;
  border: 1px solid rgba(59,130,246,0.4);
  background: rgba(59,130,246,0.14); color: #93c5fd;
  font-weight: 700; font-size: 0.82rem; cursor: pointer;
  transition: all 0.18s;
}
.waitlist-btn:hover { background: rgba(59,130,246,0.22); border-color: rgba(59,130,246,0.6); }
.waitlist-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.waitlist-msg { font-size: 0.78rem; margin-top: 0.45rem; }
.waitlist-msg--success { color: #34d399; font-weight: 600; }
.waitlist-msg--error { color: #f87171; }

.waitlist-unified {
  max-width: 640px; margin: 0 auto 3rem;
  padding: 1.5rem 1.75rem;
  background: rgba(59,130,246,0.05);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: 1.1rem;
  text-align: center;
}
.waitlist-unified-text { font-size: 0.9rem; color: #e2e8f0; margin-bottom: 1rem; line-height: 1.5; }
.waitlist-unified-text strong { color: #f1f5f9; }
.waitlist-unified .waitlist-form { margin-top: 0; }
.waitlist-unified .waitlist-row { max-width: 420px; margin: 0 auto; }
.waitlist-unified .waitlist-msg { text-align: center; }
.waitlist-plan-choice { display: flex; justify-content: center; gap: 0.5rem; margin-bottom: 0.85rem; }
.waitlist-radio {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.45rem 1rem; border-radius: 2rem;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.03);
  font-size: 0.82rem; font-weight: 600; color: #cbd5e1;
  cursor: pointer; transition: all 0.18s;
}
.waitlist-radio:has(input:checked) {
  border-color: rgba(59,130,246,0.6);
  background: rgba(59,130,246,0.14);
  color: #93c5fd;
}
.waitlist-radio input { accent-color: #3b82f6; }

/* ── COMMUN ── */
.common-section {
  background: #0d1829;
  border: 1px solid #1e3a5f;
  border-radius: 1.1rem;
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.5rem;
  position: relative; overflow: hidden;
  animation: fadeUp 0.55s 0.4s cubic-bezier(.22,1,.36,1) both;
}
.common-section::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #334155, #1e3a5f, #334155);
}
.common-label {
  font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #f1f5f9; margin-bottom: 1rem;
}
.common-list {
  list-style: none;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.55rem 2rem;
}
.common-list li {
  font-size: 0.88rem; color: #f1f5f9; line-height: 1.4;
  display: flex; align-items: flex-start; gap: 0.6rem;
}
.common-list li::before {
  content: '•'; color: #64748b; flex-shrink: 0; font-size: 0.8rem; margin-top: 0.1rem;
}

/* ── BOTTOM ROW ── */
.bottom-row {
  display: grid; grid-template-columns: 1fr auto;
  gap: 1.5rem; margin-bottom: 4rem; align-items: start;
  animation: fadeUp 0.55s 0.5s cubic-bezier(.22,1,.36,1) both;
}
.bottom-row--single {
  grid-template-columns: 1fr;
  justify-content: center;
}
.bottom-row--single .reseau-card {
  max-width: 420px; margin: 0 auto;
}
.reseau-card {
  background: rgba(59,130,246,0.06);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: 0.875rem;
  padding: 1.1rem 1.4rem;
  min-width: 220px;
  font-size: 0.82rem; color: #f1f5f9; line-height: 1.6;
  transition: border-color 0.2s, background 0.2s;
}
.reseau-card:hover { border-color: rgba(59,130,246,0.4); background: rgba(59,130,246,0.09); }
.reseau-label {
  font-size: 0.65rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #60a5fa; margin-bottom: 0.6rem;
}
.reseau-devis {
  font-style: italic; color: #f1f5f9; margin-top: 0.4rem; margin-bottom: 0.8rem;
}
.btn-reseau {
  display: inline-block; text-decoration: none;
  font-size: 0.78rem; font-weight: 700; color: #93c5fd;
  border: 1px solid rgba(59,130,246,0.3);
  padding: 0.4rem 0.85rem; border-radius: 2rem;
  background: rgba(59,130,246,0.1);
  transition: background 0.2s, border-color 0.2s;
}
.btn-reseau:hover { background: rgba(59,130,246,0.2); border-color: rgba(59,130,246,0.55); }

/* ── FAQ ACCORDION ── */
.faq-section { margin-bottom: 4rem; }
.faq-section h2 {
  font-size: 1.5rem; font-weight: 800;
  text-align: center; margin-bottom: 2rem;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.faq-accordion {
  max-width: 48rem; margin: 0 auto;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.faq-item {
  background: #0d1829; border: 1px solid #1e3a5f;
  border-radius: 0.875rem; overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item.open {
  border-color: rgba(59,130,246,0.5);
  box-shadow: 0 0 20px rgba(59,130,246,0.08);
}
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.25rem; gap: 0.75rem;
  background: none; border: none; cursor: pointer;
  color: #f8fafc; font-size: 0.95rem; font-weight: 600;
  text-align: left; transition: color 0.2s;
}
.faq-question:hover { color: #93c5fd; }
.faq-chevron {
  font-size: 1.25rem; color: #f1f5f9; flex-shrink: 0;
  display: inline-block; transition: transform 0.25s, color 0.2s;
}
.faq-item.open .faq-chevron { transform: rotate(90deg); color: #60a5fa; }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 0.88rem; color: #f1f5f9; line-height: 1.7;
  padding: 0 1.25rem;
}
.faq-answer strong { color: #f8fafc; }
.faq-item.open .faq-answer { max-height: 400px; padding: 0 1.25rem 1.25rem; }

/* ── CTA BOX ── */
@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(99,102,241,0.25), 0 8px 40px rgba(59,130,246,0.12); }
  50%       { box-shadow: 0 0 30px 4px rgba(99,102,241,0.1), 0 12px 60px rgba(59,130,246,0.22); }
}
.cta-box {
  text-align: center;
  background: linear-gradient(135deg, rgba(59,130,246,0.08) 0%, rgba(99,102,241,0.08) 50%, rgba(139,92,246,0.08) 100%);
  border: 1px solid rgba(99,102,241,0.3);
  border-radius: 1.5rem; padding: 3.5rem 2rem;
  position: relative; overflow: hidden;
  animation: ctaGlow 4s ease-in-out infinite;
}
.cta-box::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, #3b82f6 30%, #6366f1 60%, #8b5cf6, transparent);
}
.cta-box h2 {
  font-size: 1.85rem; font-weight: 900; margin-bottom: 0.75rem;
  background: linear-gradient(135deg, #f8fafc 0%, #93c5fd 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.cta-box p { color: #f1f5f9; margin-bottom: 2rem; font-size: 1rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #fff; text-decoration: none;
  padding: 0.8rem 1.85rem; border-radius: 0.75rem; font-weight: 700;
  transition: filter 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(59,130,246,0.35);
}
.btn-primary:hover { filter: brightness(1.1); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(59,130,246,0.5); }
.btn-shine { position: relative; overflow: hidden; }
.btn-shine::before {
  content: ''; position: absolute; top: 0; left: -60%; width: 40%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-20deg);
  animation: btn-shine-sweep 3.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes btn-shine-sweep {
  0%   { left: -60%; }
  18%  { left: 130%; }
  100% { left: 130%; }
}
.btn-secondary {
  background: rgba(255,255,255,0.06); color: #f8fafc; text-decoration: none;
  padding: 0.8rem 1.85rem; border-radius: 0.75rem; font-weight: 600;
  border: 1px solid #334155; transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: #475569; transform: translateY(-2px); }

/* ── PRICE TOGGLE (inusité actuellement mais conservé) ── */
.price-toggle {
  display: inline-flex; align-items: center;
  background: #111c2d; border: 1px solid #1e3a5f;
  border-radius: 0.75rem; padding: 0.25rem; margin-bottom: 1.5rem;
}
.toggle-btn {
  background: none; border: none; cursor: pointer;
  color: #f1f5f9; font-size: 0.875rem; font-weight: 600;
  padding: 0.4rem 1.25rem; border-radius: 0.5rem; transition: all 0.2s;
}
.toggle-btn.active { background: #3b82f6; color: #fff; }

/* ── PREFERS-REDUCED-MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── RESPONSIVE ── */
/* Media query mobile .topnav-hamburger/.topnav-links : voir css/topnav.css (partagé) */
@media (max-width: 640px) {
  .plans-grid { grid-template-columns: 1fr; }
  .common-list { grid-template-columns: 1fr; }
  .bottom-row { grid-template-columns: 1fr; }
  .reseau-card { min-width: unset; }
}

/* ── LANG TOGGLE ── */
.lang-toggle{display:flex;align-items:center;gap:0.2rem;background:rgba(255,255,255,0.05);border:1px solid rgba(255,255,255,0.1);border-radius:2rem;padding:0.2rem 0.4rem;margin-left:0.5rem}
.lang-opt{background:none;border:none;cursor:pointer;font-size:0.72rem;font-weight:700;color:#f1f5f9;padding:0.15rem 0.4rem;border-radius:1rem;transition:all 0.15s}
.lang-opt.lang-active,.lang-opt:hover{color:#f8fafc;background:rgba(59,130,246,0.25)}
