/* ============================================================
   CANCET BANQUE — Charte Graphique Luxe Verte v2.0
   Palette : Forêt Sombre · Émeraude · Or · Blanc Cassé
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700&family=JetBrains+Mono:wght@400;600&display=swap');

/* ── Variables ──────────────────────────────────────────────── */
:root {
  /* Palette verte luxe */
  --forest:        #022C22;   /* Fond général */
  --emerald-deep:  #064E3B;   /* Header / Footer */
  --emerald-mid:   #065F46;
  --emerald-light: #047857;
  --emerald-glow:  #10B981;   /* CTA principal */
  --emerald-soft:  #34D399;   /* Hover / accents */
  --gold:          #D4AF37;   /* Bordures prestige */
  --gold-light:    #E8C84A;
  --gold-pale:     #F5E898;
  --off-white:     #F3F4F6;   /* Texte principal */
  --white-dim:     rgba(243,244,246,.75);
  --white-faint:   rgba(243,244,246,.45);

  /* Glassmorphism */
  --glass-bg:      rgba(6,78,59,.45);
  --glass-border:  rgba(212,175,55,.18);
  --glass-shadow:  0 8px 32px rgba(2,44,34,.4);

  /* Ombres */
  --shadow-sm:     0 2px 12px rgba(2,44,34,.3);
  --shadow-md:     0 8px 32px rgba(2,44,34,.45);
  --shadow-lg:     0 20px 60px rgba(2,44,34,.55);
  --shadow-gold:   0 8px 32px rgba(212,175,55,.3);
  --shadow-green:  0 8px 32px rgba(16,185,129,.3);

  /* Rayons */
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     22px;
  --radius-xl:     32px;
  --radius-cta:    12px;

  /* Typographie */
  --font-head:     'Cormorant Garamond', Georgia, serif;
  --font-body:     'DM Sans', 'Segoe UI', sans-serif;
  --font-mono:     'JetBrains Mono', 'Courier New', monospace;

  /* Transitions */
  --transition:    all .3s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--forest);
  color: var(--off-white);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── Scrollbar ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--emerald-deep); }
::-webkit-scrollbar-thumb { background: var(--emerald-light); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ── Selection ──────────────────────────────────────────────── */
::selection { background: rgba(212,175,55,.35); color: var(--forest); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar-cb {
  background: var(--emerald-deep);
  border-bottom: 2px solid var(--gold);
  padding: .85rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}
.navbar-cb.scrolled {
  padding: .6rem 0;
  box-shadow: var(--shadow-lg);
  background: rgba(6,78,59,.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

/* Logo */
.navbar-brand-cb {
  display: flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
}
.brand-icon-cb {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--forest);
  font-weight: 800;
  box-shadow: var(--shadow-gold);
  font-family: var(--font-head);
  flex-shrink: 0;
  letter-spacing: -1px;
}
.brand-texts { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name-cb {
  font-family: var(--font-head);
  font-size: 1.15rem; font-weight: 700;
  color: var(--gold);
  letter-spacing: .05em;
}
.brand-sub-cb {
  font-size: .62rem;
  color: var(--white-dim);
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Nav links */
.navbar-cb .nav-link {
  color: var(--white-dim) !important;
  font-weight: 500;
  font-size: .875rem;
  letter-spacing: .02em;
  padding: .45rem .9rem !important;
  border-radius: 6px;
  transition: var(--transition);
  position: relative;
}
.navbar-cb .nav-link::after {
  content: '';
  position: absolute; bottom: 3px; left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
  border-radius: 2px;
}
.navbar-cb .nav-link:hover,
.navbar-cb .nav-link.active {
  color: var(--gold) !important;
  background: rgba(212,175,55,.08);
}
.navbar-cb .nav-link:hover::after,
.navbar-cb .nav-link.active::after { left: 10%; right: 10%; }

/* Bouton CTA navbar */
.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--emerald-glow);
  color: #fff !important;
  font-weight: 700;
  font-size: .85rem;
  padding: .5rem 1.3rem !important;
  border-radius: var(--radius-cta);
  border: none;
  box-shadow: var(--shadow-green);
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-nav-cta:hover {
  background: var(--emerald-soft);
  transform: translateY(-1px);
  box-shadow: 0 12px 36px rgba(16,185,129,.45);
  color: #fff !important;
}
.btn-nav-cta::after { display: none !important; }

/* Outline nav */
.btn-nav-outline {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: var(--white-dim) !important;
  border: 1.5px solid rgba(212,175,55,.35);
  border-radius: 8px;
  padding: .48rem 1.1rem;
  font-size: .85rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}
.btn-nav-outline:hover {
  color: var(--gold) !important;
  border-color: rgba(212,175,55,.7);
  background: rgba(212,175,55,.08);
}

/* Mobile toggler */
.navbar-toggler { border: 1px solid rgba(212,175,55,.3); padding: .4rem .6rem; }
.navbar-toggler-icon { filter: invert(1) sepia(1) saturate(3) hue-rotate(10deg); }

/* Mobile menu */
@media (max-width: 991.98px) {
  .navbar-cb .navbar-collapse {
    background: rgba(6,78,59,.98);
    border-radius: 0 0 16px 16px;
    padding: .75rem 1rem 1rem;
    border-top: 1px solid rgba(212,175,55,.15);
    margin-top: .25rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
  }
  .navbar-cb .nav-link::after { display: none !important; }
  .d-flex.align-items-center.gap-2 {
    flex-direction: column;
    align-items: stretch !important;
    gap: .5rem !important;
    margin-top: .75rem;
    padding-top: .75rem;
    border-top: 1px solid rgba(255,255,255,.06);
  }
  .btn-nav-outline,
  .btn-nav-cta {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
    padding: .65rem 1rem !important;
  }
}

/* ============================================================
   BOUTONS
   ============================================================ */
.btn-cb-primary {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: .5rem;
  background: var(--emerald-glow);
  color: #fff !important;
  font-weight: 700;
  font-size: .9rem;
  padding: .8rem 2rem;
  border: none;
  border-radius: var(--radius-cta);
  box-shadow: var(--shadow-green);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none !important;
  letter-spacing: .02em;
  white-space: nowrap;
}
.btn-cb-primary:hover {
  background: var(--emerald-soft);
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(16,185,129,.5);
  color: #fff !important;
}

.btn-cb-gold {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: .5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--forest) !important;
  font-weight: 700;
  font-size: .9rem;
  padding: .8rem 2rem;
  border: none;
  border-radius: var(--radius-cta);
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none !important;
  letter-spacing: .02em;
}
.btn-cb-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(212,175,55,.5);
  color: var(--forest) !important;
}

.btn-cb-outline {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: .5rem;
  background: transparent;
  color: var(--emerald-glow) !important;
  font-weight: 600;
  font-size: .9rem;
  padding: .75rem 1.9rem;
  border: 1.5px solid var(--emerald-glow);
  border-radius: var(--radius-cta);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none !important;
}
.btn-cb-outline:hover {
  background: var(--emerald-glow);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}

.btn-cb-ghost {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: .5rem;
  background: rgba(212,175,55,.1);
  color: var(--gold) !important;
  font-weight: 600;
  font-size: .9rem;
  padding: .75rem 1.9rem;
  border: 1.5px solid rgba(212,175,55,.3);
  border-radius: var(--radius-cta);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none !important;
}
.btn-cb-ghost:hover {
  background: var(--gold);
  color: var(--forest) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* ============================================================
   LAYOUT & SECTIONS
   ============================================================ */
.section-pad     { padding: 100px 0; }
.section-pad-sm  { padding: 64px 0; }
.section-pad-xs  { padding: 44px 0; }

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(212,175,55,.1);
  color: var(--gold);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(212,175,55,.25);
  margin-bottom: 1.25rem;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--off-white);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.section-title span,
.text-gold { color: var(--gold) !important; }
.text-emerald { color: var(--emerald-glow) !important; }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--white-dim);
  max-width: 600px;
  line-height: 1.75;
}

.divider-gold {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 1.25rem auto;
}
.divider-gold.left { margin-left: 0; }

/* Bg helpers */
.bg-forest       { background: var(--forest); }
.bg-emerald-deep { background: var(--emerald-deep); }
.bg-emerald-mid  { background: var(--emerald-mid); }
.bg-pattern {
  background: var(--forest);
  background-image:
    linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.015) 1px, transparent 1px);
  background-size: 52px 52px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--forest) 0%, #043527 40%, #022C22 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 75% 40%, rgba(16,185,129,.07) 0%, transparent 65%),
    radial-gradient(ellipse 50% 70% at 10% 80%, rgba(212,175,55,.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}

/* Mini hero (inner pages) */
.hero-mini {
  background: linear-gradient(135deg, var(--emerald-deep) 0%, var(--forest) 100%);
  padding: 100px 0 64px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(212,175,55,.15);
}
.hero-mini::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 80% 50%, rgba(16,185,129,.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-mini::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}

/* Stat bar in hero */
.stat-bar {
  background: rgba(6,78,59,.6);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(212,175,55,.15);
  border-radius: var(--radius-md);
  padding: 1.25rem 2rem;
}
.stat-number {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: .78rem;
  color: var(--white-faint);
  margin-top: .2rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.stat-divider { width: 1px; background: rgba(212,175,55,.15); }

/* ============================================================
   GLASS CARDS (Services)
   ============================================================ */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,.4), transparent);
}
.glass-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,175,55,.35);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(16,185,129,.08);
}
.glass-card .card-icon-cb {
  width: 60px; height: 60px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  background: rgba(212,175,55,.12);
  color: var(--gold);
  border: 1px solid rgba(212,175,55,.2);
  transition: var(--transition);
}
.glass-card:hover .card-icon-cb {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--forest);
  box-shadow: var(--shadow-gold);
  border-color: transparent;
}
.glass-card h4 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--off-white);
  margin-bottom: .6rem;
}
.glass-card p {
  font-size: .875rem;
  color: var(--white-dim);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Solid card variant */
.solid-card {
  background: rgba(6,79,59,.5);
  border: 1px solid rgba(212,175,55,.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  height: 100%;
}
.solid-card:hover {
  border-color: rgba(212,175,55,.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* Pricing cards */
.pricing-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: var(--transition);
  height: 100%;
  position: relative;
}
.pricing-card.featured {
  border-color: var(--gold);
  background: rgba(6,78,59,.6);
}
.pricing-card.featured::before {
  content: 'Plus populaire';
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--forest);
  font-size: .7rem; font-weight: 700;
  padding: .25rem 1rem;
  border-radius: 50px;
  letter-spacing: .08em; text-transform: uppercase;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.price-amount {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  color: var(--off-white);
  line-height: 1;
}
.price-amount span { font-size: 1.2rem; color: var(--white-dim); vertical-align: top; margin-top: .5rem; display: inline-block; }
.price-period { font-size: .85rem; color: var(--white-faint); }

/* Feature list in pricing */
.feature-list { list-style: none; padding: 0; margin: 1.5rem 0; }
.feature-list li {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  font-size: .875rem;
  color: var(--white-dim);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li .check { color: var(--emerald-glow); font-size: .95rem; }
.feature-list li .cross { color: rgba(255,255,255,.2); font-size: .95rem; }

/* ============================================================
   STEPS (Process)
   ============================================================ */
.step-item-cb { position: relative; padding-left: 5rem; margin-bottom: 2.5rem; }
.step-number-cb {
  position: absolute; left: 0; top: 0;
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 1.25rem; font-weight: 700; color: var(--forest);
  box-shadow: var(--shadow-gold);
  flex-shrink: 0;
  z-index: 1;
}
.step-item-cb:not(:last-child) .step-number-cb::after {
  content: '';
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  width: 2px; height: calc(100% + 1rem);
  background: linear-gradient(var(--gold-pale), transparent);
  margin-top: .5rem;
  opacity: .3;
}
.step-item-cb h5 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--off-white);
  margin-bottom: .35rem;
}
.step-item-cb p {
  font-size: .875rem;
  color: var(--white-dim);
  line-height: 1.7;
}

/* ============================================================
   SIMULATEUR
   ============================================================ */
.simulator-wrap {
  background: var(--glass-bg);
  backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}
.simulator-result {
  background: rgba(16,185,129,.08);
  border: 1px solid rgba(16,185,129,.2);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}
.result-value {
  font-family: var(--font-head);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--emerald-glow);
  line-height: 1;
}
.result-label {
  font-size: .75rem;
  color: var(--white-faint);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: .3rem;
}

/* Sliders verts */
.form-range-cb {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(16,185,129,.2);
  outline: none;
  cursor: pointer;
  transition: var(--transition);
}
.form-range-cb::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald-glow), var(--emerald-soft));
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(16,185,129,.5);
  border: 2px solid rgba(255,255,255,.2);
}
.form-range-cb::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--emerald-glow);
  cursor: pointer;
  border: 2px solid rgba(255,255,255,.2);
}

/* Form dark theme */
.form-label-cb {
  font-size: .82rem;
  font-weight: 600;
  color: var(--white-dim);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: .4rem;
  display: block;
}
.form-control-cb,
.form-select-cb {
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  padding: .75rem 1rem;
  font-size: .9rem;
  color: var(--off-white);
  font-family: var(--font-body);
  transition: var(--transition);
  width: 100%;
}
.form-control-cb:focus,
.form-select-cb:focus {
  outline: none;
  border-color: var(--emerald-glow);
  box-shadow: 0 0 0 3px rgba(16,185,129,.15);
  background: rgba(255,255,255,.1);
}
.form-control-cb::placeholder { color: rgba(243,244,246,.3); }
.form-select-cb { cursor: pointer; }
.form-select-cb option { background: var(--emerald-deep); color: var(--off-white); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card-cb {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.testimonial-card-cb:hover {
  border-color: rgba(212,175,55,.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.star-rating-cb { color: var(--gold); font-size: .9rem; }
.quote-icon-cb { color: var(--gold); font-size: 2.5rem; opacity: .2; line-height: 1; }
.testimonial-avatar-cb {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald-light), var(--emerald-glow));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 700; color: #fff;
  font-family: var(--font-head);
  flex-shrink: 0;
  border: 2px solid rgba(212,175,55,.3);
}

/* ============================================================
   TRUST / PARTNERS BAR
   ============================================================ */
.trust-bar {
  background: rgba(6,78,59,.4);
  border: 1px solid rgba(212,175,55,.1);
  border-radius: var(--radius-md);
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .8rem;
  color: var(--white-faint);
  font-weight: 500;
  letter-spacing: .04em;
}
.trust-item i { color: var(--gold); font-size: 1rem; }

/* ============================================================
   ACCORDION FAQ
   ============================================================ */
.accordion-cb .accordion-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border) !important;
  border-radius: var(--radius-sm) !important;
  margin-bottom: .75rem;
  overflow: hidden;
}
.accordion-cb .accordion-button {
  background: transparent !important;
  color: var(--off-white) !important;
  font-weight: 600;
  font-size: .9rem;
  padding: 1.25rem 1.5rem;
  box-shadow: none !important;
  font-family: var(--font-body);
}
.accordion-cb .accordion-button:not(.collapsed) {
  color: var(--gold) !important;
  background: rgba(212,175,55,.06) !important;
}
.accordion-cb .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23D4AF37' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}
.accordion-cb .accordion-body {
  background: rgba(6,78,59,.3);
  color: var(--white-dim);
  font-size: .875rem;
  line-height: 1.8;
  padding: .75rem 1.5rem 1.25rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer-cb {
  background: var(--emerald-deep);
  border-top: 2px solid var(--gold);
  padding: 80px 0 0;
  color: var(--white-dim);
}
.footer-brand-name {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .05em;
}
.footer-desc {
  color: var(--white-faint);
  font-size: .85rem;
  line-height: 1.8;
  margin-top: .75rem;
}
.footer-heading {
  color: var(--off-white);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: .75rem;
}
.footer-heading::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: .6rem; }
.footer-links a {
  color: var(--white-faint);
  text-decoration: none;
  font-size: .85rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-links a::before { content: '›'; opacity: .4; }
.footer-links a:hover::before { opacity: 1; color: var(--gold); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: 1rem;
  font-size: .85rem;
  color: var(--white-faint);
}
.footer-contact-item i {
  color: var(--gold);
  font-size: 1rem;
  margin-top: .1rem;
  flex-shrink: 0;
}

.footer-badge-row {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  background: rgba(212,175,55,.1);
  color: var(--gold);
  font-size: .68rem;
  font-weight: 700;
  padding: .28rem .75rem;
  border-radius: 50px;
  border: 1px solid rgba(212,175,55,.2);
  letter-spacing: .04em;
}

.footer-siret-block {
  background: rgba(2,44,34,.5);
  border: 1px solid rgba(212,175,55,.15);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  margin-top: 1rem;
  font-size: .78rem;
  color: var(--white-faint);
  font-family: var(--font-mono);
  line-height: 1.8;
}
.footer-siret-block strong { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(212,175,55,.1);
  padding: 1.5rem 0;
  margin-top: 3rem;
  font-size: .78rem;
  color: var(--white-faint);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom a { color: var(--white-faint); text-decoration: none; transition: var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* Social */
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--white-faint);
  font-size: 1rem;
  transition: var(--transition);
  text-decoration: none;
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--forest);
  transform: translateY(-2px);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-28px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(28px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes shimmer-gold {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,.4); }
  50%       { box-shadow: 0 0 0 12px rgba(16,185,129,0); }
}
@keyframes glow-orb {
  0%, 100% { opacity: .4; transform: scale(1); }
  50%       { opacity: .7; transform: scale(1.1); }
}

.animate-fade-up   { opacity: 0; animation: fadeInUp .7s ease forwards; }
.animate-fade-left  { opacity: 0; animation: fadeInLeft .7s ease forwards; }
.animate-fade-right { opacity: 0; animation: fadeInRight .7s ease forwards; }
.float-anim { animation: float 5s ease-in-out infinite; }
.pulse-green { animation: pulse-green 2s infinite; }

.text-shimmer-gold {
  background: linear-gradient(120deg, var(--gold) 0%, var(--gold-light) 40%, #fff8d4 50%, var(--gold-light) 60%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer-gold 3s linear infinite;
}

/* Scroll reveal */
.reveal       { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal-left  { opacity: 0; transform: translateX(-30px); transition: opacity .7s ease, transform .7s ease; }
.reveal-right { opacity: 0; transform: translateX(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }

.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
.delay-4 { animation-delay: .4s; }
.delay-5 { animation-delay: .5s; }
.delay-6 { animation-delay: .6s; }

/* Decorative orb */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: glow-orb 6s ease-in-out infinite;
}
.orb-green  { background: rgba(16,185,129,.12); }
.orb-gold   { background: rgba(212,175,55,.1); }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-off-white  { color: var(--off-white) !important; }
.text-white-dim  { color: var(--white-dim) !important; }
.text-white-faint{ color: var(--white-faint) !important; }
.text-gold       { color: var(--gold) !important; }
.text-emerald    { color: var(--emerald-glow) !important; }
.bg-glass        { background: var(--glass-bg); backdrop-filter: blur(16px); }
.border-gold     { border-color: var(--gold) !important; }
.rounded-xl      { border-radius: var(--radius-xl) !important; }
.rounded-lg      { border-radius: var(--radius-lg) !important; }
.shadow-gold     { box-shadow: var(--shadow-gold) !important; }
.shadow-green    { box-shadow: var(--shadow-green) !important; }
.font-head       { font-family: var(--font-head); }
.font-mono       { font-family: var(--font-mono); }

/* Pulse dot */
.pulse-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--emerald-glow);
  border-radius: 50%;
  animation: pulse-green 2s infinite;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
  .section-pad { padding: 70px 0; }
}
@media (max-width: 767.98px) {
  .section-pad { padding: 54px 0; }
  .hero-section { min-height: auto; padding: 110px 0 60px; }
  .stat-divider { display: none; }
  .step-item-cb { padding-left: 4rem; }
  .step-number-cb { width: 46px; height: 46px; font-size: 1.05rem; }
}
@media (max-width: 575.98px) {
  .section-pad { padding: 44px 0; }
  .section-title { font-size: 1.7rem; }
  .btn-cb-primary, .btn-cb-outline, .btn-cb-gold, .btn-cb-ghost {
    padding: .65rem 1.4rem;
    font-size: .85rem;
  }
  .glass-card, .solid-card { padding: 1.5rem; }
  .simulator-wrap { padding: 1.5rem; }
  .footer-cb { padding: 54px 0 0; }
}