
/* ── VARIABLES ── */
:root {
  --primary: #F47920;
  --primary-light: #FF9A45;
  --primary-dim: rgba(244,121,32,0.12);
  --primary-border: rgba(244,121,32,0.3);
  --blue: #0D3B8C;
  --blue-mid: #0A2D6E;
  --dark: #06101E;
  --dark2: #0B1929;
  --dark3: #0F2240;
  --text: #E4EAF4;
  --muted: #7A8FA8;
  --white: #FFFFFF;
}

* { box-sizing: border-box; }

html, body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; }

/* ── NAVBAR ── */
.navbar {
  background: rgba(6,16,30,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(244,121,32,0.2);
}
.navbar-brand img { width: 50px; height: 50px; object-fit: contain; }
.navbar-brand span { color: var(--primary); }
.nav-link { color: var(--muted) !important; font-size: 0.9rem; letter-spacing: 0.02em; }
.nav-link:hover { color: var(--primary-light) !important; }
.btn-demo-nav {
  background: var(--primary);
  color: var(--white) !important;
  font-weight: 600;
  border-radius: 6px;
  padding: 0.4rem 1.2rem;
  font-size: 0.88rem;
  transition: background 0.2s;
}
.btn-demo-nav:hover { background: var(--primary-light); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background:
    radial-gradient(ellipse 80% 60% at 65% 40%, rgba(13,59,140,0.25) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 20% 70%, rgba(244,121,32,0.08) 0%, transparent 60%),
    linear-gradient(160deg, var(--dark) 0%, var(--dark2) 60%, #040e1c 100%);
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 80px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230D3B8C' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 1;
  pointer-events: none;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1;
  color: var(--white);
  animation: fadeUp 0.7s ease 0.1s both;
}
.hero h1 span { color: var(--primary); }
.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 520px;
  animation: fadeUp 0.7s ease 0.2s both;
}
.hero-visual { animation: fadeLeft 0.8s ease 0.3s both; }
.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  animation: fadeUp 0.7s ease 0.4s both;
}
.stat-item strong { font-size: 1.7rem; color: var(--primary); font-weight: 700; }
.stat-item span { font-size: 0.8rem; color: var(--muted); display: block; }

/* Carousel hero */
.hero-carousel-inner {
  border: 1px solid rgba(244,121,32,0.25);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(13,59,140,0.2);
}

/* ── BOUTONS ── */
.btn-gold {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(244,121,32,0.35);
  display: block;
  text-decoration: none;
  text-align: center;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(244,121,32,0.5); color: var(--white); }

.btn-outline-light-custom {
  border: 1px solid rgba(244,121,32,0.4);
  color: var(--text);
  background: transparent;
  padding: 0.85rem 1.8rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  display: block;
  text-decoration: none;
  text-align: center;
}
.btn-outline-light-custom:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-dim); }

/* ── SECTIONS COMMUNES ── */
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.6rem;
}
.section-eyebrow-sm { font-size: 0.7rem; }
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-lead { color: var(--muted); font-size: 1rem; line-height: 1.7; max-width: 560px; }

/* ── PROBLÈME ── */
.section-problem {
  background: var(--dark2);
  padding: 5rem 0;
  border-top: 1px solid rgba(13,59,140,0.3);
}
.problem-card {
  background: var(--dark3);
  border: 1px solid rgba(13,59,140,0.25);
  border-radius: 12px;
  padding: 1.5rem;
  transition: border-color 0.3s;
}
.problem-card:hover { border-color: var(--primary-border); }
.problem-icon { font-size: 1.8rem; color: #f87171; margin-bottom: 0.8rem; }

/* ── FEATURES ── */
.section-features { padding: 5rem 0; }
.feature-card {
  background: var(--dark2);
  border: 1px solid rgba(13,59,140,0.2);
  border-radius: 14px;
  height: 100%;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.feature-card img { width: 100%; border-radius: 14px 14px 0 0; }
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-border);
  box-shadow: 0 10px 40px rgba(13,59,140,0.2);
}
.feature-card h5 { font-family: 'DM Sans', sans-serif; font-weight: 600; color: var(--white); margin-bottom: 0.6rem; }
.feature-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; margin: 0; }

/* ── DÉMO VIDÉO ── */
.section-demo {
  background: linear-gradient(135deg, var(--dark2) 0%, rgba(13,59,140,0.12) 100%);
  padding: 5rem 0;
  border-top: 1px solid rgba(13,59,140,0.3);
  border-bottom: 1px solid rgba(13,59,140,0.3);
}
.video-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(244,121,32,0.3);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.video-gold-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light), transparent);
  z-index: 2;
}
.video-ratio {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  background: var(--dark3);
}
.video-ratio iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.video-badge { font-size: 0.82rem; color: var(--muted); }

/* ── TARIFS ── */
.section-tarifs {
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(13,59,140,0.15) 0%, transparent 70%),
    var(--dark);
  padding: 5rem 0;
}

/* Carte adhésion */
.adhesion-card {
  background: var(--dark2);
  border: 1px solid var(--primary-border);
  border-radius: 14px;
  padding: 1.8rem 2rem;
  position: relative;
  overflow: hidden;
}
.adhesion-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--primary), var(--primary-light), transparent);
}
.adhesion-title {
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin: 0 0 6px;
}
.adhesion-desc { color: var(--muted); font-size: 0.85rem; margin: 0; }
.adhesion-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--primary);
  white-space: nowrap;
}
.adhesion-hr { border-color: rgba(13,59,140,0.25); margin: 1.2rem 0; }
.adhesion-item { font-size: 0.85rem; color: var(--text); }
.adhesion-item i { color: var(--primary); }

/* Séparateur tarifs */
.tarifs-separator { color: rgba(244,121,32,0.5); font-size: 1.6rem; }
.tarifs-separator-text {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 6px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Cartes formules */
.formule-card {
  background: var(--dark2);
  border: 1px solid rgba(13,59,140,0.25);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.formule-card:hover {
  border-color: var(--primary-border);
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(13,59,140,0.2);
}
.formule-card-recommended {
  background: linear-gradient(160deg, var(--dark3) 0%, rgba(13,59,140,0.18) 100%);
  border: 2px solid var(--primary);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(244,121,32,0.15);
}
.formule-card-recommended::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--primary), var(--primary-light), transparent);
}
.formule-badge-recommended {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.formule-title {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  margin-bottom: 4px;
}
.formule-price-wrap { display: flex; align-items: baseline; gap: 6px; margin-bottom: 1.2rem; }
.formule-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.formule-price-gold { color: var(--primary); }
.formule-price-unit { color: var(--muted); font-size: 0.9rem; }
.formule-hr { border-color: rgba(13,59,140,0.25); margin: 0 0 1.2rem; }
.formule-hr-gold { border-color: rgba(244,121,32,0.3); margin: 0 0 1.2rem; }
.formule-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.formule-list li { font-size: 0.87rem; color: var(--text); }
.icon-check { color: #4ade80; flex-shrink: 0; }
.icon-x { color: rgba(136,146,164,0.4); flex-shrink: 0; }
.li-disabled { color: rgba(136,146,164,0.5) !important; text-decoration: line-through; }
.li-highlight { color: var(--primary-light); }

/* Réassurance */
.reassurance-item { font-size: 0.82rem; color: var(--muted); }

/* ── CONTACT / CTA ── */
.section-contact {
  padding: 5rem 0;
  background:
    radial-gradient(ellipse 80% 70% at 50% 50%, rgba(13,59,140,0.18) 0%, transparent 70%),
    var(--dark2);
  border-top: 1px solid rgba(13,59,140,0.3);
}
.contact-desc {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 500px;
  margin: 0 auto 2rem;
}
.contact-phone {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 1.8rem;
  transition: color 0.2s;
}
.contact-phone:hover { color: var(--primary); }
.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--dark3);
  border: 1px solid rgba(244,121,32,0.35);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.95rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.btn-call:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(244,121,32,0.2);
  color: var(--white);
}
.btn-call i { color: var(--primary); font-size: 1.1rem; }
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.95rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 30px rgba(37,211,102,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37,211,102,0.4);
  color: #fff;
}
.contact-hours { color: var(--muted); font-size: 0.8rem; margin-top: 1.2rem; }
.contact-micro { font-size: 0.8rem; color: var(--muted); }


  .avantages-dark {
    background: #12121d;
    color: #ffffff;
    padding: 5rem 0;
  }


  .avantages-dark .advantage-card {
    background: #1f1f33;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-shadow: 0 6px 20px rgba(0,0,0,0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .avantages-dark .advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.6);
  }

  .avantages-dark .advantage-title {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
  }

  .avantages-dark .advantage-desc {
    color: #c0c0d0;
    line-height: 1.6;
    font-size: 0.95rem;
  }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(13,59,140,0.3);
  padding: 2rem 0;
}
.footer-brand { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--white); }
.footer-brand span { color: var(--primary); }
.footer-link { color: var(--muted); font-size: 0.85rem; text-decoration: none; transition: color 0.2s; }
.footer-link:hover { color: var(--primary); }
.footer-copy { color: var(--muted); font-size: 0.8rem; }

/* ── ANIMATIONS ── */
@keyframes fadeDown { from { opacity:0; transform:translateY(-14px); } to { opacity:1; transform:none; } }
@keyframes fadeUp   { from { opacity:0; transform:translateY(22px); }  to { opacity:1; transform:none; } }
@keyframes fadeLeft { from { opacity:0; transform:translateX(30px); }  to { opacity:1; transform:none; } }


/* ── Graphe ── */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  text-align: center;
}

.stat-item span {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Cercle et texte à l'intérieur avec même couleur */
.stat-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
  margin: auto;
  border: 3px solid;
}

/* Couleurs */
.stat-blue { border-color: #4f46e5; color: #4f46e5; }
.stat-green { border-color: #10b981; color: #10b981; }
.stat-yellow { border-color: #f59e0b; color: #f59e0b; }

.stat-circle.stat-blue span.counter { color: #4f46e5; }
.stat-circle.stat-green span.counter { color: #10b981; }
.stat-circle.stat-yellow span.counter { color: #f59e0b; }

.stat-text.stat-blue { color: #4f46e5; }
.stat-text.stat-green { color: #10b981; }
.stat-text.stat-yellow { color: #f59e0b; }

/* Responsive mobile */
@media (max-width: 576px) {
  .hero-stats {
    gap: 0.8rem;
  }
  .stat-circle {
    width: 90px;
    height: 90px;
    font-size: 1rem;
    border-width: 2.5px;
  }
  .stat-item span {
    font-size: 0.75rem;
  }
}