/* ============================================================
   ASSISTTECH — Thème Luxe Hybride
   Header / Hero / Footer  : fond sombre navy
   Sections de contenu     : fond blanc / gris perle
   Accent                  : vert professionnel #047857
   Polices : Playfair Display (titres) · Inter (corps)
   ============================================================ */


/* ── 1. VARIABLES ─────────────────────────────────────────── */

:root {
  /* ── Fonds sombres (header / hero / footer / CTA) */
  --dark:        #060d1b;
  --dark-2:      #0a1729;
  --dark-3:      #0e2040;
  --dark-4:      #132849;

  /* ── Fonds clairs (sections de contenu) */
  --light:       #ffffff;
  --light-alt:   #f7f9fc;
  --light-alt2:  #eef2f8;

  /* ── Texte sur fond clair */
  --title:       #0f172a;
  --body:        #334155;
  --muted:       #64748b;
  --subtle:      #94a3b8;

  /* ── Accent vert professionnel */
  --gold:        #047857;
  --gold-hover:  #065f46;
  --gold-glow:   rgba(4,120,87,.08);
  --gold-border: rgba(4,120,87,.25);
  --gold-grad:   linear-gradient(135deg, #047857 0%, #10b981 100%);

  /* ── Accent bleu (bouton principal) */
  --blue:        #1d4ed8;
  --blue-hover:  #1e40af;
  --blue-glow:   rgba(29,78,216,.2);

  /* ── Bordures et cartes (fond clair) */
  --border-light: #dde3ed;
  --card-shadow:  0 2px 14px rgba(15,23,42,.06);
  --card-shadow-hover: 0 8px 40px rgba(15,23,42,.12);

  /* ── Glassmorphism (hero/header) */
  --glass:        rgba(255,255,255,.05);
  --glass-hover:  rgba(255,255,255,.09);
  --border-dark:  rgba(255,255,255,.08);
  --border-dark-hover: rgba(255,255,255,.18);

  /* ── Texte sur fond sombre */
  --text-hero:    #eef2f8;
  --text-muted-dark: rgba(238,242,248,.55);
  --text-subtle-dark: rgba(238,242,248,.3);

  /* ── Alias de compatibilité */
  --text:        #eef2f8;                      /* texte clair sur fond sombre (hero) */
  --text-muted:  rgba(238,242,248,.55);
  --text-subtle: #94a3b8;                      /* alias pour contact-inline (fond clair) */
  --border:      rgba(255,255,255,.08);
  --text-body:  var(--body);                   /* alias pour contact.html */
  --gold-light: var(--gold-glow);              /* alias pour about.html */
  --dark-3-mid: #102840;                       /* alias hérité */
  --sh-xs:  0 1px 4px rgba(15,23,42,.04);
  --sh-sm:  var(--card-shadow);
  --sh-md:  0 4px 20px rgba(15,23,42,.08);
  --sh-lg:  var(--card-shadow-hover);

  /* ── Polices */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-sans:    'Inter', system-ui, -apple-system, sans-serif;

  /* ── Tailles */
  --text-xs:  .75rem;   --text-sm:  .875rem;  --text-md:  1rem;
  --text-lg:  1.125rem; --text-xl:  1.25rem;  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem; --text-4xl: 2.25rem;  --text-5xl: 3rem;

  /* ── Espacements */
  --sp-1:.25rem; --sp-2:.5rem;  --sp-3:.75rem; --sp-4:1rem;
  --sp-5:1.25rem;--sp-6:1.5rem; --sp-7:1.75rem;--sp-8:2rem;
  --sp-10:2.5rem;--sp-12:3rem;  --sp-14:3.5rem;--sp-16:4rem;  --sp-20:5rem; --sp-24:6rem;

  /* ── Rayons */
  --r-sm:6px; --r-md:12px; --r-lg:18px; --r-xl:24px; --r-2xl:32px; --r-full:9999px;

  /* ── Transitions */
  --tr-fast: .15s ease; --tr: .3s ease;

  /* ── Layout */
  --container: 1200px;
  --header-h:  72px;
}


/* ── 2. RESET ─────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: var(--header-h); }
body {
  font-family: var(--font-sans);
  color: var(--body);
  background: var(--light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }


/* ── 3. TYPOGRAPHIE ───────────────────────────────────────── */

h1, h2 { font-family: var(--font-display); font-weight: 700; color: var(--title); line-height: 1.15; }
h3, h4, h5, h6 { font-family: var(--font-sans); font-weight: 700; color: var(--title); line-height: 1.2; }
h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
p  { line-height: 1.75; }

/* Texte or en dégradé */
.gold-text, .text-accent {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Ligne décorative or sous titre */
.section__title-line::after {
  content: '';
  display: block;
  width: 56px; height: 3px;
  background: var(--gold-grad);
  border-radius: var(--r-full);
  margin: var(--sp-4) auto 0;
}
.section__title-line--left::after { margin-left: 0; }


/* ── 4. LAYOUT ────────────────────────────────────────────── */

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--sp-6); }

/* Sections de contenu — FOND CLAIR */
.section     { padding: var(--sp-20) 0; background: var(--light); }
.section--alt { background: var(--light-alt); }
.section--alt2 { background: var(--light-alt2); }

.section__header { text-align: center; max-width: 680px; margin: 0 auto var(--sp-12); }

.section__tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--gold);
  background: var(--gold-glow);
  border: 1px solid var(--gold-border);
  padding: var(--sp-1) var(--sp-4);
  border-radius: var(--r-full);
  margin-bottom: var(--sp-4);
  text-transform: uppercase;
  letter-spacing: .1em;
}

.section__title {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--title);
  margin-bottom: var(--sp-4);
}
.section__subtitle { font-size: var(--text-lg); color: var(--muted); line-height: 1.75; }

/* Séparateur horizontal or */
.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-light), transparent);
}


/* ── 5. BOUTONS ───────────────────────────────────────────── */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-6);
  border-radius: var(--r-md);
  font-size: var(--text-md); font-weight: 600;
  border: 2px solid transparent;
  transition: var(--tr); white-space: nowrap; cursor: pointer;
}

/* Or — CTA principal sur fond sombre */
.btn--gold {
  background: var(--gold-grad);
  color: #06101a;
  border-color: transparent;
}
.btn--gold:hover { transform: translateY(-2px); filter: brightness(1.1); box-shadow: 0 6px 24px rgba(4,120,87,.35); }

/* Bleu — CTA principal sur fond clair */
.btn--primary {
  background: var(--gold-grad);
  color: #fff;
  border-color: transparent;
}
.btn--primary:hover { filter: brightness(1.1); transform: translateY(-2px); box-shadow: 0 6px 24px var(--gold-glow); }

/* Contour blanc — sur fond sombre */
.btn--outline {
  background: transparent;
  color: var(--text-hero);
  border-color: rgba(255,255,255,.4);
}
.btn--outline:hover { background: var(--glass); border-color: rgba(255,255,255,.7); }

/* Contour or — sur fond clair */
.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold-border);
}
.btn--outline-gold:hover { background: var(--gold-glow); border-color: var(--gold); }

/* Contour navy — sur fond clair */
.btn--outline-dark {
  background: transparent;
  color: var(--blue);
  border-color: rgba(29,78,216,.3);
}
.btn--outline-dark:hover { background: rgba(29,78,216,.05); border-color: var(--blue); }

/* Tailles */
.btn--lg   { padding: var(--sp-4) var(--sp-8); font-size: var(--text-lg); border-radius: var(--r-lg); }
.btn--full { width: 100%; }


/* ── 6. HEADER ────────────────────────────────────────────── */

.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(6,13,27,.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-dark);
  transition: background var(--tr), border-color var(--tr);
}
.header.scrolled {
  background: rgba(6,13,27,.97);
  border-bottom-color: var(--gold-border);
}
.header__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; }

/* Logo */
.logo { display: inline-flex; align-items: center; gap: var(--sp-3); }
.logo__icon {
  width: 40px; height: 40px;
  background: var(--gold-grad);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  overflow: hidden; padding: 6px;
}
.logo__icon img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
  filter: brightness(0);
}
.logo__text { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: #fff; }

/* Nav */
.nav__list { display: flex; align-items: center; gap: var(--sp-1); }
.nav__link {
  display: block; padding: var(--sp-2) var(--sp-4);
  color: rgba(255,255,255,.75);
  font-weight: 500; border-radius: var(--r-sm);
  transition: var(--tr-fast); position: relative;
}
.nav__link::after {
  content: ''; position: absolute; bottom: 2px; left: 50%; right: 50%;
  height: 2px; background: var(--gold-grad); border-radius: var(--r-full);
  transition: var(--tr);
}
.nav__link:hover { color: #fff; }
.nav__link:hover::after,
.nav__link.active::after { left: var(--sp-4); right: var(--sp-4); }
.nav__link.active { color: #fff; }


/* ── 7. HAMBURGER ─────────────────────────────────────────── */

.hamburger {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px; padding: var(--sp-2);
  border-radius: var(--r-sm); border: 1px solid var(--border-dark);
  background: var(--glass); transition: var(--tr-fast);
}
.hamburger:hover { background: var(--glass-hover); }
.hamburger span { display: block; width: 20px; height: 1.5px; background: #fff; border-radius: var(--r-full); transition: var(--tr); transform-origin: center; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* ── 8. HERO (fond sombre animé) ─────────────────────────── */

.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding-top: var(--header-h); overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background: linear-gradient(-45deg, #060d1b, #0a1929, #0d2348, #140e2e);
  background-size: 400% 400%;
  animation: gradient-shift 20s ease infinite;
  z-index: 0;
}
.hero__bg::before {
  content: ''; position: absolute;
  width: 700px; height: 700px; top: -200px; right: -100px;
  background: radial-gradient(circle, rgba(29,78,216,.22) 0%, transparent 70%);
  border-radius: 50%;
}
.hero__bg::after {
  content: ''; position: absolute;
  width: 500px; height: 500px; bottom: -100px; left: 5%;
  background: radial-gradient(circle, rgba(201,168,76,.14) 0%, transparent 70%);
  border-radius: 50%;
}
.hero__content { position: relative; z-index: 1; max-width: 800px; padding: var(--sp-16) var(--sp-6); }

.hero__badge {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  background: var(--glass); color: var(--gold);
  font-size: var(--text-sm); font-weight: 600;
  padding: var(--sp-2) var(--sp-4); border-radius: var(--r-full);
  border: 1px solid var(--gold-border); margin-bottom: var(--sp-6);
  letter-spacing: .04em; backdrop-filter: blur(8px);
}
.hero__badge::before {
  content: ''; width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 700; color: #fff; line-height: 1.15;
  letter-spacing: -.02em; margin-bottom: var(--sp-6);
}
.hero__subtitle { font-size: var(--text-lg); color: var(--text-muted-dark); line-height: 1.8; max-width: 560px; margin-bottom: var(--sp-8); }
.hero__cta { display: flex; flex-wrap: wrap; gap: var(--sp-4); margin-bottom: var(--sp-12); }
.hero__stats { display: flex; flex-wrap: wrap; gap: var(--sp-8); padding-top: var(--sp-8); border-top: 1px solid var(--border-dark); }
.hero__stat strong { display: block; font-family: var(--font-display); font-size: var(--text-3xl); font-weight: 700; color: #fff; line-height: 1; }
.hero__stat span { font-size: var(--text-sm); color: var(--text-muted-dark); margin-top: var(--sp-1); display: block; }

.hero--compact { min-height: 46vh; align-items: flex-end; padding-bottom: var(--sp-16); }
.hero--compact .hero__content { padding: var(--sp-10) var(--sp-6) 0; max-width: 780px; }
.hero--compact .hero__title   { font-size: clamp(1.9rem, 4vw, 2.8rem); }

/* ── PAGE 404 (hero seul, couleurs du site, sans header/footer) ─ */
.page-404 .page-404__hero.hero.hero--compact {
  min-height: 100vh;
  min-height: 100dvh;
  padding-top: 0;
  align-items: center;
  padding-bottom: var(--sp-16);
}
.page-404__inner {
  text-align: center;
  max-width: 40rem;
  margin-inline: auto;
}
.page-404__inner .hero__badge { margin-inline: auto; }
.page-404__code {
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 13vw, 6.5rem);
  font-weight: 800;
  line-height: 1;
  margin: 0 0 var(--sp-4);
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.04em;
}
.page-404__title {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0 0 var(--sp-3);
  line-height: 1.2;
}
.page-404__hint {
  font-size: var(--text-md);
  color: var(--text-muted-dark);
  margin: 0 auto var(--sp-8);
  max-width: 22rem;
  line-height: 1.6;
}
.page-404__cta {
  justify-content: center;
  margin-bottom: 0 !important;
}

/* ── 9. CARTES SERVICE (fond clair) ──────────────────────── */

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); }

.service-card {
  background: var(--light);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  box-shadow: var(--card-shadow);
  transition: var(--tr);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold-grad); transform: scaleX(0); transition: var(--tr);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--card-shadow-hover); border-color: var(--gold-border); }
.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  width: 52px; height: 52px;
  background: var(--gold-glow);
  color: var(--gold);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center; margin-bottom: var(--sp-5);
}
.service-card__icon svg { width: 22px; height: 22px; }
.service-card__title { font-size: var(--text-lg); font-weight: 700; color: var(--title); margin-bottom: var(--sp-3); }
.service-card__desc  { color: var(--muted); font-size: var(--text-sm); line-height: 1.75; }


/* ── 10. TEASER TARIFS (fond clair) ──────────────────────── */

.pricing-teaser__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); margin-bottom: var(--sp-8); }
.pricing-teaser__card {
  background: var(--light); border: 2px solid var(--border-light);
  border-radius: var(--r-xl); padding: var(--sp-8) var(--sp-6);
  text-align: center; position: relative; transition: var(--tr);
  box-shadow: var(--card-shadow);
}
.pricing-teaser__card:hover { border-color: var(--gold-border); box-shadow: var(--card-shadow-hover); transform: translateY(-4px); }
.pricing-teaser__card h3      { font-size: var(--text-xl); color: var(--title); margin-bottom: var(--sp-2); }
.pricing-teaser__card p       { font-size: var(--text-sm); color: var(--muted); }
.pricing-teaser__price {
  font-family: var(--font-display);
  font-size: var(--text-2xl) !important; font-weight: 700 !important;
  background: var(--gold-grad) !important;
  -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  margin: var(--sp-3) 0 !important;
}
.pricing-teaser__card--featured { border-color: var(--gold); box-shadow: 0 8px 32px rgba(4,120,87,.18); transform: scale(1.04); }
.pricing-teaser__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold-grad); color: #06101a;
  font-size: var(--text-xs); font-weight: 800;
  padding: var(--sp-1) var(--sp-4); border-radius: var(--r-full);
  white-space: nowrap; letter-spacing: .06em; text-transform: uppercase;
}
.pricing-teaser__cta { text-align: center; }


/* ── 11. SECTION À PROPOS (fond clair) ───────────────────── */

.about { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-16); align-items: center; }
.about__features { display: flex; flex-direction: column; gap: var(--sp-4); margin-top: var(--sp-6); }
.about__feature { display: flex; align-items: flex-start; gap: var(--sp-4); }
.about__feature-icon {
  width: 40px; height: 40px;
  background: var(--gold-glow); color: var(--gold);
  border: 1px solid var(--gold-border); border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.about__card {
  background: var(--light); border: 1px solid var(--border-light);
  border-radius: var(--r-xl); padding: var(--sp-8);
  box-shadow: var(--card-shadow-hover);
}
.about__stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
.about__stat {
  text-align: center; padding: var(--sp-5);
  background: var(--light-alt); border: 1px solid var(--border-light); border-radius: var(--r-lg);
}
.about__stat strong {
  display: block; font-family: var(--font-display); font-size: var(--text-3xl); font-weight: 700;
  background: var(--gold-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: var(--sp-1);
}
.about__stat span { font-size: var(--text-sm); color: var(--muted); }


/* ── 12. CARTES FORMULES (fond clair) ────────────────────── */

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); align-items: stretch; }

.pricing-card {
  background: var(--light); border: 2px solid var(--border-light);
  border-radius: var(--r-2xl); padding: var(--sp-8);
  box-shadow: var(--card-shadow); transition: var(--tr); position: relative;
  display: flex; flex-direction: column;
  height: 100%;
  min-height: 0;
}
.pricing-card:hover { border-color: var(--gold-border); box-shadow: var(--card-shadow-hover); transform: translateY(-4px); }

.pricing-card--featured {
  border-color: var(--gold); background: #ecfdf5;
  box-shadow: 0 8px 40px var(--gold-glow);
}
.pricing-card--featured:hover { transform: translateY(-4px); }

.pricing-card__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold-grad); color: #06101a;
  font-size: var(--text-xs); font-weight: 800;
  padding: var(--sp-1) var(--sp-5); border-radius: var(--r-full);
  white-space: nowrap; letter-spacing: .06em; text-transform: uppercase;
}

.pricing-card__header { margin-bottom: var(--sp-6); padding-bottom: var(--sp-6); border-bottom: 1px solid var(--border-light); }
.pricing-card__name   { font-size: var(--text-xl); font-weight: 700; color: var(--title); margin-bottom: var(--sp-2); }
.pricing-card__desc   { font-size: var(--text-sm); color: var(--muted); margin-bottom: var(--sp-4); }
.pricing-card__price  {
  font-family: var(--font-display); font-size: 2rem; font-weight: 700;
  background: var(--gold-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1;
}
.pricing-card__price span { font-family: var(--font-sans); font-size: var(--text-md); font-weight: 400; background: none; -webkit-text-fill-color: var(--muted); color: var(--muted); }
.pricing-card__delay { display: inline-flex; align-items: center; gap: var(--sp-1); font-size: var(--text-sm); color: var(--muted); margin-top: var(--sp-3); }

.pricing-card__features {
  display: flex; flex-direction: column; gap: var(--sp-2);
  margin: 0 0 var(--sp-6) 0;
  flex: 1 1 auto;
  min-height: 0;
  list-style: none;
  padding: 0;
}
.pricing-card > .btn { margin-top: auto; flex-shrink: 0; }
.pricing-feature {
  display: flex; align-items: flex-start; gap: var(--sp-3);
  font-size: var(--text-sm); color: var(--body);
  line-height: 1.35;
}
.pricing-feature__text {
  display: flex; flex-direction: column; gap: 0.1rem;
  min-width: 0;
}
.pricing-feature__sub {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.4;
  font-weight: 400;
}
.pricing-feature__check {
  width: 18px; height: 18px; border-radius: 50%;
  background: #dcfce7; border: 1px solid #a7f3d0;
  color: #16a34a;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.pricing-feature__check svg { width: 9px; height: 9px; }


/* ── 13. TABLEAU OPTIONS (fond clair) ────────────────────── */

.options-table-wrapper {
  overflow-x: auto; border-radius: var(--r-xl);
  border: 1px solid var(--border-light); box-shadow: var(--card-shadow);
}
.options-table { width: 100%; border-collapse: collapse; background: var(--light); }
.options-table thead { background: var(--dark-3); }
.options-table thead th {
  padding: var(--sp-4) var(--sp-6); text-align: left;
  font-size: var(--text-xs); font-weight: 700;
  color: var(--gold); text-transform: uppercase; letter-spacing: .1em;
}
.options-table tbody tr { border-bottom: 1px solid var(--border-light); transition: background var(--tr-fast); }
.options-table tbody tr:last-child { border-bottom: none; }
.options-table tbody tr:nth-child(even) { background: var(--light-alt); }
.options-table tbody tr:hover { background: var(--gold-glow); }
.options-table td { padding: var(--sp-4) var(--sp-6); color: var(--body); vertical-align: middle; }
.options-table td:first-child { font-weight: 600; color: var(--title); }
.option-group-header td { padding: var(--sp-7) var(--sp-6) var(--sp-2); background: transparent !important; border-bottom: none; }
.option-group-label { display: inline-flex; align-items: center; gap: var(--sp-2); font-size: .7rem; font-weight: 800; color: var(--gold); text-transform: uppercase; letter-spacing: .12em; background: var(--gold-glow); border: 1px solid var(--gold-border); border-radius: var(--r-full); padding: .25rem .75rem; }
.option-group-label::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.option-icon { display: flex; align-items: center; gap: var(--sp-3); }
.option-icon svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
.price-tag {
  display: inline-flex; align-items: center;
  background: var(--gold-glow); border: 1px solid var(--gold-border);
  color: var(--gold); font-weight: 700; font-size: var(--text-sm);
  padding: var(--sp-1) var(--sp-3); border-radius: var(--r-full); white-space: nowrap;
}


/* ── 14. CARDS LIVRAISON (fond clair) ────────────────────── */

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  align-items: stretch;
}

.delivery-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--light);
  border: 1px solid var(--border-light);
  border-radius: var(--r-2xl);
  padding: var(--sp-8) var(--sp-7);
  box-shadow: var(--card-shadow);
  transition: var(--tr);
  text-align: center;
}
.delivery-card:hover {
  border-color: var(--gold-border);
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-4px);
}

.delivery-card--accent {
  border-color: rgba(16, 185, 129, 0.35);
  background: linear-gradient(180deg, #ecfdf5 0%, var(--light) 42%);
  box-shadow: 0 12px 40px rgba(16, 185, 129, 0.08);
}
.delivery-card--accent:hover {
  border-color: #34d399;
}

.delivery-card__head {
  margin-bottom: var(--sp-5);
}
.delivery-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--sp-4);
  background: var(--gold-glow);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.delivery-card__icon svg { width: 26px; height: 26px; }

.delivery-card__tag {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold);
  margin: 0 0 var(--sp-2);
}
.delivery-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--title);
  line-height: 1.2;
  margin: 0;
}

.delivery-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--sp-5);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.delivery-card__list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.5;
}
.delivery-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.85;
}

.delivery-card__callout {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--body);
  text-align: left;
  margin: 0 0 var(--sp-6);
  padding: var(--sp-4);
  background: rgba(212, 175, 55, 0.09);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: var(--r-lg);
}

.delivery-card__foot {
  margin-top: auto;
  padding-top: var(--sp-2);
}
.delivery-card__price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--title);
  padding: var(--sp-4) var(--sp-4);
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--gold-glow) 0%, rgba(255, 255, 255, 0.4) 100%);
  border: 1px solid var(--gold-border);
  line-height: 1.35;
  text-align: center;
}
.delivery-card__price-row {
  display: block;
  width: 100%;
}

.delivery-card--accent .delivery-card__price {
  background: linear-gradient(135deg, #d1fae5 0%, rgba(255, 255, 255, 0.5) 100%);
  border-color: #a7f3d0;
  color: #065f46;
}


/* ── 15. CARDS SÉCURITÉ (fond clair) ─────────────────────── */

/* Grille 5 cartes : 1 col mobile, 2 cols + dernière centrée tablette, 3+2 centrés desktop */
.security-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
  max-width: 72rem;
  margin-inline: auto;
}
.security-card {
  display: flex; flex-direction: column; align-items: flex-start; gap: var(--sp-3);
  padding: var(--sp-7) var(--sp-6);
  background: var(--light);
  border: 1px solid var(--border-light); border-radius: var(--r-xl);
  box-shadow: var(--card-shadow); transition: var(--tr);
  min-height: 0;
  height: 100%;
}
.security-card:hover { border-color: var(--gold-border); box-shadow: var(--card-shadow-hover); }
.security-card__icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: var(--gold-glow); border: 1px solid var(--gold-border);
  color: var(--gold); border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
}
.security-card__icon svg { width: 20px; height: 20px; }
.security-card__title {
  font-size: var(--text-md);
  font-weight: 700;
  color: var(--title);
  margin: 0;
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.security-card__text {
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  flex: 1 1 auto;
}

@media (min-width: 641px) {
  .security-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }
  .security-card:nth-child(5) {
    grid-column: 1 / -1;
    max-width: min(26rem, 100%);
    justify-self: center;
    width: 100%;
  }
}

@media (min-width: 1025px) {
  .security-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .security-card:nth-child(1),
  .security-card:nth-child(2),
  .security-card:nth-child(3) {
    grid-column: span 2;
  }
  .security-card:nth-child(4) {
    grid-column: 2 / span 2;
  }
  .security-card:nth-child(5) {
    grid-column: 4 / span 2;
    max-width: none;
    justify-self: stretch;
    width: auto;
  }
}


/* ── 16. SECTION CTA (fond sombre) ───────────────────────── */

.cta-section {
  position: relative; padding: var(--sp-24) 0; text-align: center; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--dark-3), var(--dark-2));
}
.cta-section::after {
  content: ''; position: absolute;
  width: 600px; height: 600px; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(201,168,76,.12) 0%, transparent 65%);
  border-radius: 50%; pointer-events: none;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section__title { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; color: #fff; margin-bottom: var(--sp-4); }
.cta-section__text  { font-size: var(--text-lg); color: var(--text-muted-dark); max-width: 500px; margin: 0 auto var(--sp-8); }
.cta-section__buttons { display: flex; flex-wrap: wrap; gap: var(--sp-4); justify-content: center; }


/* ── 17. PAGE CONTACT (fond clair) ───────────────────────── */

.contact-card { background: var(--light); border: 1px solid var(--border-light); border-radius: var(--r-2xl); padding: var(--sp-10); box-shadow: var(--card-shadow-hover); }
.contact-card__title { font-size: var(--text-2xl); font-weight: 700; color: var(--title); margin-bottom: var(--sp-2); }
.contact-card__subtitle { color: var(--muted); margin-bottom: var(--sp-8); }
.contact-item { display: flex; align-items: flex-start; gap: var(--sp-5); padding: var(--sp-5) 0; border-bottom: 1px solid var(--border-light); }
.contact-item:last-of-type { border-bottom: none; }
.contact-item__icon { width: 52px; height: 52px; flex-shrink: 0; background: var(--gold-glow); color: var(--gold); border: 1px solid var(--gold-border); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; }
.contact-item__icon svg { width: 22px; height: 22px; }
.contact-item__label { font-size: var(--text-xs); font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: .1em; margin-bottom: var(--sp-1); }
.contact-item__value { font-size: var(--text-lg); font-weight: 600; color: var(--title); transition: color var(--tr-fast); }
.contact-item__value:hover { color: var(--gold); }
.contact-item__note { font-size: var(--text-sm); color: var(--subtle); margin-top: var(--sp-1); }

.contact-socials { margin-top: var(--sp-8); padding-top: var(--sp-6); border-top: 1px solid var(--border-light); }
.contact-socials__title { font-size: var(--text-xs); font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; margin-bottom: var(--sp-4); }
.contact-socials__list { display: flex; gap: var(--sp-3); }
.social-btn { display: inline-flex; align-items: center; gap: var(--sp-2); padding: var(--sp-3) var(--sp-4); background: var(--light-alt); border: 1px solid var(--border-light); border-radius: var(--r-md); color: var(--body); font-size: var(--text-sm); font-weight: 600; transition: var(--tr); }
.social-btn:hover { background: var(--gold-glow); border-color: var(--gold-border); color: var(--gold); }
.social-btn svg { width: 16px; height: 16px; }

.cta-email-card { background: #ecfdf5; border: 1px solid var(--gold-border); border-radius: var(--r-2xl); padding: var(--sp-8); }
.cta-email-card__icon { width: 52px; height: 52px; background: var(--gold-glow); border: 1px solid var(--gold-border); color: var(--gold); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; margin-bottom: var(--sp-5); }
.cta-email-card__icon svg { width: 24px; height: 24px; }
.cta-email-card__title { font-size: var(--text-xl); font-weight: 700; color: var(--title); margin-bottom: var(--sp-3); }
.cta-email-card__text  { font-size: var(--text-sm); color: var(--muted); line-height: 1.75; margin-bottom: var(--sp-6); }

.info-card { background: var(--light); border: 1px solid var(--border-light); border-radius: var(--r-xl); padding: var(--sp-7); box-shadow: var(--card-shadow); }
.info-card__title { font-size: var(--text-lg); font-weight: 700; color: var(--title); margin-bottom: var(--sp-5); }
.info-list { display: flex; flex-direction: column; gap: var(--sp-4); }
.info-list__item { display: flex; align-items: flex-start; gap: var(--sp-3); font-size: var(--text-sm); color: var(--body); }
.info-list__item svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--gold); margin-top: 2px; }

.faq-list { display: flex; flex-direction: column; gap: var(--sp-2); }
.faq-item { background: var(--light); border: 1px solid var(--border-light); border-radius: var(--r-lg); overflow: hidden; transition: border-color var(--tr-fast); }
.faq-item:hover { border-color: var(--gold-border); }
.faq-item__question { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4); padding: var(--sp-4) var(--sp-6); cursor: pointer; font-weight: 600; color: var(--title); user-select: none; list-style: none; font-size: var(--text-sm); }
.faq-item__question::marker { display: none; }
.faq-item__question svg { flex-shrink: 0; color: var(--gold); transition: transform var(--tr); }
details[open] .faq-item__question svg { transform: rotate(180deg); }
details[open] .faq-item { border-color: var(--gold-border); background: #ecfdf5; }
.faq-item__answer { padding: 0 var(--sp-6) var(--sp-4); font-size: var(--text-sm); color: var(--muted); line-height: 1.75; }


/* ── 18. FOOTER (fond sombre) ─────────────────────────────── */

.footer { background: #020b17; border-top: 1px solid rgba(255,255,255,.06); padding: var(--sp-16) 0 var(--sp-8); }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: var(--sp-8); margin-bottom: var(--sp-10); padding-bottom: var(--sp-10); border-bottom: 1px solid rgba(255,255,255,.06); }
.footer__tagline { font-size: var(--text-sm); color: var(--text-subtle-dark); line-height: 1.7; margin-bottom: var(--sp-5); }
.footer__socials { display: flex; gap: var(--sp-3); }
.footer__social { width: 34px; height: 34px; border-radius: var(--r-sm); background: var(--glass); border: 1px solid var(--border-dark); color: var(--text-subtle-dark); display: flex; align-items: center; justify-content: center; transition: var(--tr-fast); }
.footer__social:hover { background: var(--gold-glow); border-color: var(--gold-border); color: var(--gold); }
.footer__social svg { width: 15px; height: 15px; }
.footer__col-title { font-size: var(--text-xs); font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: .1em; margin-bottom: var(--sp-5); }
.footer__links { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer__link { font-size: var(--text-sm); color: var(--text-subtle-dark); transition: var(--tr-fast); }
.footer__link:hover { color: rgba(255,255,255,.8); padding-left: var(--sp-1); }
.footer__contact-list { display: flex; flex-direction: column; gap: var(--sp-4); }
.footer__contact-item { display: flex; align-items: flex-start; gap: var(--sp-3); font-size: var(--text-sm); color: var(--text-subtle-dark); }
.footer__contact-item svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--gold); margin-top: 3px; }
.footer__contact-item a { color: inherit; text-decoration: none; transition: color var(--tr-fast); }
.footer__contact-item a:hover { color: var(--gold); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--sp-4); font-size: var(--text-sm); color: var(--text-subtle-dark); }
.footer__bottom-links { display: flex; gap: var(--sp-5); }
.footer__bottom-link { color: var(--text-subtle-dark); transition: var(--tr-fast); }
.footer__bottom-link:hover { color: rgba(255,255,255,.6); }


/* ── 19. ANIMATIONS ───────────────────────────────────────── */

@keyframes gradient-shift {
  0%   { background-position: 0%   50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0%   50%; }
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.7); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in-up { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }
.fade-in-up:nth-child(1) { transition-delay: .00s; }
.fade-in-up:nth-child(2) { transition-delay: .10s; }
.fade-in-up:nth-child(3) { transition-delay: .20s; }
.fade-in-up:nth-child(4) { transition-delay: .30s; }
.fade-in-up:nth-child(5) { transition-delay: .40s; }
.fade-in-up:nth-child(6) { transition-delay: .50s; }

.hero .hero__badge    { animation: fadeInUp .6s ease .10s both; }
.hero .hero__title    { animation: fadeInUp .7s ease .20s both; }
.hero .hero__subtitle { animation: fadeInUp .7s ease .30s both; }
.hero .hero__cta      { animation: fadeInUp .7s ease .40s both; }
.hero .hero__stats    { animation: fadeInUp .7s ease .55s both; }


/* ── 20. RESPONSIVE — TABLETTE (≤ 1024px) ────────────────── */

@media (max-width: 1024px) {
  h1 { font-size: var(--text-4xl); }
  h2 { font-size: var(--text-3xl); }

  .nav { position: fixed; top: var(--header-h); left: 0; right: 0; background: rgba(6,13,27,.98); backdrop-filter: blur(20px); padding: var(--sp-4) var(--sp-6) var(--sp-6); border-bottom: 1px solid var(--border-dark); transform: translateY(-110%); opacity: 0; pointer-events: none; transition: transform var(--tr), opacity var(--tr); }
  .nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__list { flex-direction: column; align-items: flex-start; gap: var(--sp-1); }
  .nav__link { width: 100%; padding: var(--sp-3) var(--sp-4); font-size: var(--text-lg); }
  .hamburger { display: flex; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid  { grid-template-columns: 1fr 1fr; }

  .pricing-card--featured { grid-column: span 2; max-width: 520px; width: 100%; margin: 0 auto; }

  .pricing-teaser__cards { grid-template-columns: 1fr 1fr; }
  .pricing-teaser__card--featured { transform: none; }
  .pricing-teaser__badge { position: static; transform: none; display: inline-block; margin-bottom: var(--sp-2); }

  .about { grid-template-columns: 1fr; gap: var(--sp-10); }
  .delivery-grid { grid-template-columns: 1fr 1fr; }
  .footer__grid  { grid-template-columns: 1fr 1fr; }

  .hero--compact { min-height: 38vh; padding-bottom: var(--sp-12); }
}


/* ── 21. RESPONSIVE — MOBILE (≤ 640px) ───────────────────── */

@media (max-width: 640px) {
  :root { --header-h: 64px; }

  .section { padding: var(--sp-14) 0; }
  .section__title { font-size: var(--text-3xl); }
  .section__header { margin-bottom: var(--sp-8); }

  .hero__content { padding: var(--sp-8) var(--sp-4); }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .hero__stats { gap: var(--sp-5); }
  .hero__stats .hero__stat strong { font-size: var(--text-2xl); }

  .hero--compact { min-height: 300px; padding-bottom: var(--sp-10); }
  .hero--compact .hero__title { font-size: 1.6rem; }
  .hero--compact .hero__cta { flex-direction: column; }
  .hero--compact .hero__cta .btn { width: 100%; justify-content: center; }

  .services-grid,
  .pricing-grid,
  .delivery-grid { grid-template-columns: 1fr; }

  .pricing-teaser__cards { grid-template-columns: 1fr; }
  .pricing-card--featured { grid-column: auto; max-width: none; }
  .security-grid { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: center; text-align: center; }
  .footer__bottom-links { flex-wrap: wrap; justify-content: center; }

  .options-table thead th:nth-child(2),
  .options-table tbody td:nth-child(2) { display: none; }

  .contact-page { grid-template-columns: 1fr !important; }
  .commitments-grid { grid-template-columns: 1fr !important; }
}
