/* ============================================================
   DMX Services — Stylesheet
   Palette : blanc / beige clair, bleu nuit, terracotta & doré
   ============================================================ */

:root {
  /* Couleurs de marque */
  --navy-900: #0f2a3f;
  --navy-800: #143552;
  --navy-700: #1d4567;
  --navy-50:  #eaf0f6;

  --terra-600: #c2614a;
  --terra-500: #d97757;
  --terra-100: #fbe9e1;

  --gold-500:  #c8a25b;
  --gold-100:  #f6ecd6;

  --beige-50:  #fbf7f1;
  --beige-100: #f4ede0;
  --beige-200: #ece2cf;

  --ink-900: #15212e;
  --ink-700: #2b3a4a;
  --ink-500: #5a6b7d;
  --ink-400: #7a8a9b;
  --ink-300: #aebac6;

  --white: #ffffff;
  --line:  #e6dfd1;

  /* Système */
  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  --shadow-xs: 0 1px 2px rgba(15, 42, 63, 0.06);
  --shadow-sm: 0 4px 14px rgba(15, 42, 63, 0.06);
  --shadow:    0 10px 30px rgba(15, 42, 63, 0.08);
  --shadow-lg: 0 24px 60px rgba(15, 42, 63, 0.14);

  --container: 1200px;
  --header-h: 76px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset léger ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-700);
  background: var(--beige-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

a {
  color: var(--navy-800);
  text-decoration: none;
  transition: color .25s var(--ease);
}
a:hover { color: var(--terra-600); }

h1, h2, h3, h4 {
  font-family: 'Fraunces', 'Plus Jakarta Sans', serif;
  color: var(--navy-900);
  line-height: 1.15;
  margin: 0 0 .5em;
  font-weight: 600;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.2rem; font-weight: 600; }

p { margin: 0 0 1em; }

ul { padding: 0; margin: 0; list-style: none; }

button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  border: 1.5px solid transparent;
  transition: transform .25s var(--ease), background-color .25s var(--ease),
              color .25s var(--ease), border-color .25s var(--ease),
              box-shadow .25s var(--ease);
  white-space: nowrap;
  letter-spacing: .01em;
}

.btn-sm { padding: 10px 16px; font-size: .88rem; }
.btn-lg { padding: 16px 26px; font-size: 1rem; }
.btn-block { display: flex; width: 100%; }

.btn-primary {
  background: var(--navy-900);
  color: #fff;
  box-shadow: 0 6px 16px rgba(15, 42, 63, .25);
}
.btn-primary:hover {
  background: var(--navy-800);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(15, 42, 63, .30);
}

.btn-secondary {
  background: var(--terra-500);
  color: #fff;
  box-shadow: 0 6px 16px rgba(217, 119, 87, .25);
}
.btn-secondary:hover {
  background: var(--terra-600);
  color: #fff;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--navy-900);
  border-color: rgba(15, 42, 63, .18);
}
.btn-ghost:hover {
  background: var(--navy-900);
  color: #fff;
  border-color: var(--navy-900);
}

.btn-outline {
  background: #fff;
  color: var(--navy-900);
  border-color: var(--line);
}
.btn-outline:hover {
  background: var(--navy-900);
  color: #fff;
  border-color: var(--navy-900);
  transform: translateY(-2px);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 241, .85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, .92);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-xs);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy-900);
  font-weight: 700;
}
.logo-mark {
  width: 36px;
  height: 36px;
  display: inline-flex;
  color: var(--navy-900);
}
.logo-text {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
}
.logo-text strong { font-weight: 700; }
.logo-text span { font-weight: 500; color: var(--ink-500); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-weight: 500;
  font-size: .95rem;
  color: var(--ink-700);
  position: relative;
}
.main-nav a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  height: 2px; width: 0;
  background: var(--terra-500);
  transition: width .25s var(--ease);
  border-radius: 2px;
}
.main-nav a:not(.btn):hover::after { width: 100%; }
.main-nav a:hover { color: var(--navy-900); }
/* CTA du header : fond blanc, texte bleu nuit (s'inverse au survol) */
.nav-cta {
  margin-left: 8px;
  background: #ffffff;
  color: var(--navy-900);
  border: 1.5px solid var(--navy-900);
  box-shadow: 0 4px 10px rgba(15, 42, 63, .08);
}
.nav-cta:hover {
  background: var(--navy-900);
  color: #ffffff;
  border-color: var(--navy-900);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(15, 42, 63, .25);
}

/* Burger */
.burger {
  display: none;
  background: none;
  border: 0;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 10px;
}
.burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy-900);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Sections génériques ---------- */
.section {
  padding: clamp(72px, 9vw, 120px) 0;
  position: relative;
}
.section-light { background: var(--white); }
.section-dark {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: #d6e0eb;
}
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }

.section-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-sub { color: var(--ink-500); font-size: 1.06rem; }
.section-sub.light { color: #b9c5d3; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 11px;
  background: var(--gold-100);
  color: var(--terra-600);
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.eyebrow .dot {
  width: 7px; height: 7px;
  background: var(--terra-500);
  border-radius: 50%;
  display: inline-block;
}
.eyebrow-dark {
  background: var(--navy-50);
  color: var(--navy-800);
}
.eyebrow-dark .dot { background: var(--navy-700); }
.eyebrow-light {
  background: rgba(255,255,255,.08);
  color: var(--gold-500);
  border: 1px solid rgba(255,255,255,.12);
}
.eyebrow-light .dot { background: var(--gold-500); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(60px, 9vw, 110px) 0 clamp(60px, 8vw, 100px);
  overflow: hidden;
  background: linear-gradient(180deg, var(--beige-50) 0%, #fff 100%);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.blob {
  position: absolute;
  filter: blur(80px);
  opacity: .55;
  border-radius: 50%;
}
.blob-1 {
  top: -100px; left: -100px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, var(--gold-100) 0%, rgba(248, 232, 200, .3) 60%, transparent 80%);
}
.blob-2 {
  bottom: -120px; right: -80px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, var(--terra-100) 0%, rgba(251, 233, 225, .25) 60%, transparent 80%);
}
.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, #000 0%, transparent 70%);
  opacity: .25;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}
.hero-text h1 .accent {
  display: inline-block;
  background: linear-gradient(120deg, var(--terra-500), var(--gold-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-text .lead {
  font-size: 1.15rem;
  color: var(--ink-500);
  max-width: 540px;
  margin-bottom: 32px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}
.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 32px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.hero-benefits li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--navy-900);
  font-size: .95rem;
}
.check {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--gold-100);
  color: var(--terra-600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.check svg { width: 14px; height: 14px; }

/* Visuel cartes flottantes */
.hero-visual {
  position: relative;
  height: 100%;
  min-height: 460px;
}
.card-stack {
  position: relative;
  width: 100%;
  height: 100%;
}
.floating-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  box-shadow: var(--shadow);
  animation: floaty 6s ease-in-out infinite;
}

.card-invoice {
  top: 30px;
  left: 0;
  width: 280px;
  z-index: 3;
}
.card-quote {
  top: 130px;
  right: 0;
  width: 270px;
  z-index: 2;
  animation-delay: -2s;
}
.card-relance {
  bottom: 90px;
  left: 30px;
  width: 260px;
  z-index: 4;
  animation-delay: -1s;
}
.card-stat {
  bottom: 10px;
  right: 30px;
  width: 200px;
  z-index: 1;
  background: var(--navy-900);
  color: #fff;
  border-color: var(--navy-900);
  animation-delay: -3s;
  text-align: center;
  padding: 22px;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.fc-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.fc-tag {
  font-size: .75rem;
  background: var(--beige-100);
  color: var(--navy-800);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
}
.tag-soft { background: var(--gold-100); color: var(--terra-600); }
.fc-status {
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.status-paid { background: #e6f4ec; color: #1f7a4d; }
.status-sent { background: #e9eff7; color: var(--navy-800); }

.fc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: .9rem;
  color: var(--ink-500);
}
.fc-row strong { color: var(--navy-900); }

.fc-bar {
  margin-top: 12px;
  height: 6px;
  background: var(--beige-100);
  border-radius: 999px;
  overflow: hidden;
}
.fc-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--terra-500), var(--gold-500));
  border-radius: 999px;
}

.fc-mini {
  display: flex;
  align-items: center;
  gap: 12px;
}
.fc-mini strong { color: var(--navy-900); display: block; font-size: .95rem; }
.fc-mini small { color: var(--ink-500); font-size: .8rem; }
.pulse {
  width: 14px; height: 14px;
  background: #2bb673;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.pulse::after {
  content: '';
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 2px solid #2bb673;
  opacity: 0;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { transform: scale(.6); opacity: .8; }
  100% { transform: scale(1.4); opacity: 0; }
}

.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-500);
}
.stat-label {
  font-size: .82rem;
  color: #c0cdda;
  letter-spacing: .02em;
}

/* ============================================================
   PROBLÈME
   ============================================================ */
.problem { background: var(--beige-50); }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.pain-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--gold-500);
}
.pain-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--gold-100);
  color: var(--terra-600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.pain-icon svg { width: 24px; height: 24px; }
.pain-card h3 { margin-bottom: 8px; color: var(--navy-900); font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.05rem; }
.pain-card p { font-size: .95rem; color: var(--ink-500); margin: 0; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  background: var(--beige-50);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--terra-500), var(--gold-500));
  transform: translateX(-101%);
  transition: transform .4s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  background: #fff;
}
.service-card:hover::before { transform: translateX(0); }
.service-ico {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--navy-800);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.service-ico svg { width: 24px; height: 24px; }
.service-card:hover .service-ico {
  background: var(--navy-900);
  color: var(--gold-500);
  border-color: var(--navy-900);
}
.service-card h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.08rem; margin-bottom: 8px; }
.service-card p { font-size: .95rem; color: var(--ink-500); margin: 0; }

/* ============================================================
   PACKS
   ============================================================ */
.packs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}
.pack-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  position: relative;
}
.pack-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.pack-popular {
  background: var(--navy-900);
  color: #d6e0eb;
  border-color: var(--navy-900);
  transform: scale(1.02);
  box-shadow: 0 24px 50px rgba(15, 42, 63, .25);
}
.pack-popular:hover { transform: translateY(-6px) scale(1.02); }
.pack-popular h3, .pack-popular .price, .pack-popular .pack-badge { color: #fff; }
.pack-popular .pack-features li { color: #d6e0eb; }
.pack-popular .pack-features li::before { color: var(--gold-500); }

.popular-tag {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--terra-500);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(217, 119, 87, .35);
}

.pack-head { margin-bottom: 22px; }
.pack-badge {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--terra-600);
  margin-bottom: 10px;
}
.pack-popular .pack-badge { color: var(--gold-500); }
.pack-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-500);
  margin-bottom: 18px;
}
.pack-popular h3 { color: #b9c5d3; }
.pack-price { display: flex; align-items: baseline; gap: 6px; }
.price {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1;
}
.suffix { font-size: .85rem; color: var(--ink-500); }
.pack-popular .suffix { color: #b9c5d3; }

.pack-features {
  list-style: none;
  padding: 22px 0;
  margin: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  flex-grow: 1;
}
.pack-popular .pack-features { border-color: rgba(255,255,255,.1); }
.pack-features li {
  position: relative;
  padding: 7px 0 7px 26px;
  font-size: .92rem;
  color: var(--ink-700);
}
.pack-features li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 7px;
  color: var(--terra-500);
  font-weight: 700;
}

.hourly-banner {
  margin-top: 50px;
  background: linear-gradient(120deg, var(--gold-100) 0%, var(--terra-100) 100%);
  border: 1px solid var(--gold-500);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.hb-icon {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: #fff;
  color: var(--terra-600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hourly-banner > div:nth-child(2) { flex: 1; min-width: 240px; }
.hourly-banner strong { color: var(--navy-900); display: block; font-size: 1.05rem; margin-bottom: 4px; }
.hourly-banner p { margin: 0; color: var(--ink-700); font-size: .95rem; }
.hb-price { color: var(--terra-600); font-weight: 700; }

.packs-disclaimer {
  text-align: center;
  margin-top: 30px;
  color: var(--ink-500);
  font-size: .9rem;
  font-style: italic;
}

/* ============================================================
   POURQUOI DÉLÉGUER
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.why-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
}
.why-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, .07);
  border-color: var(--gold-500);
}
.why-num {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-500);
  margin-bottom: 10px;
}
.why-card h3 { color: #fff; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.1rem; margin-bottom: 8px; }
.why-card p { color: #b9c5d3; font-size: .95rem; margin: 0; }

/* ============================================================
   MÉTHODE — Steps
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  list-style: none;
  counter-reset: step;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--gold-500) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--navy-900);
  color: #fff;
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 6px 14px rgba(15, 42, 63, .25);
}
.step h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.05rem; margin-bottom: 8px; }
.step p { font-size: .92rem; color: var(--ink-500); margin: 0; }

/* ============================================================
   TÉMOIGNAGES
   ============================================================ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testi-card {
  background: var(--beige-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  margin: 0;
  position: relative;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.testi-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.quote-mark {
  position: absolute;
  top: 12px; right: 24px;
  font-family: 'Fraunces', serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--gold-500);
  opacity: .35;
  pointer-events: none;
}
.testi-card blockquote { margin: 0 0 22px; }
.testi-card blockquote p {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--navy-900);
  margin: 0;
}
.testi-card figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .04em;
  flex-shrink: 0;
}
.avatar-1 { background: linear-gradient(135deg, var(--navy-800), var(--navy-700)); }
.avatar-2 { background: linear-gradient(135deg, var(--terra-500), var(--terra-600)); }
.avatar-3 { background: linear-gradient(135deg, var(--gold-500), #b08442); }
.testi-card figcaption strong { display: block; color: var(--navy-900); font-size: .95rem; }
.testi-card figcaption span { color: var(--ink-500); font-size: .85rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-container { max-width: 880px; }
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 4px 24px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.faq-item[open] {
  border-color: var(--gold-500);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 20px 0;
  cursor: pointer;
  font-weight: 600;
  color: var(--navy-900);
  font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-toggle {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--beige-100);
  position: relative;
  flex-shrink: 0;
  transition: background .25s var(--ease), transform .3s var(--ease);
}
.faq-toggle::before, .faq-toggle::after {
  content: '';
  position: absolute;
  background: var(--navy-900);
  border-radius: 2px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq-toggle::before { width: 12px; height: 2px; }
.faq-toggle::after  { width: 2px; height: 12px; transition: transform .3s var(--ease); }
.faq-item[open] .faq-toggle { background: var(--gold-100); transform: rotate(180deg); }
.faq-item[open] .faq-toggle::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-answer {
  padding: 0 0 22px;
  color: var(--ink-500);
}
.faq-answer p { margin: 0; }
.faq-answer strong { color: var(--navy-900); }

/* ============================================================
   CONTACT
   ============================================================ */
.section-cta {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 60%, #18415f 100%);
  color: #d6e0eb;
  position: relative;
  overflow: hidden;
}
.section-cta::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(200,162,91,.18) 0%, transparent 70%);
  border-radius: 50%;
}
.section-cta::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(217,119,87,.14) 0%, transparent 70%);
  border-radius: 50%;
}
.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { color: #fff; }
.contact-info p { color: #b9c5d3; font-size: 1.05rem; max-width: 480px; }

.contact-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.contact-list li:hover {
  background: rgba(255,255,255,.07);
  border-color: var(--gold-500);
}
.ci-ico {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--gold-500);
  color: var(--navy-900);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ci-ico svg { width: 20px; height: 20px; }
.contact-list strong { color: #fff; display: block; font-size: .92rem; margin-bottom: 2px; }
.contact-list span, .contact-list a { color: #b9c5d3; font-size: .95rem; }
.contact-list a:hover { color: var(--gold-500); }

.contact-form {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 36px;
  color: var(--ink-700);
  box-shadow: 0 30px 60px rgba(0,0,0,.25);
}
.contact-form h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  margin-bottom: 22px;
  color: var(--navy-900);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-field { display: flex; flex-direction: column; margin-bottom: 16px; }
.form-row .form-field { margin-bottom: 0; }
.form-field label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 6px;
  letter-spacing: .01em;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 14px;
  background: var(--beige-50);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font-family: inherit;
  font-size: .95rem;
  color: var(--ink-900);
  transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--terra-500);
  box-shadow: 0 0 0 4px rgba(217, 119, 87, .12);
}
.form-field textarea { resize: vertical; min-height: 110px; }

.form-note {
  text-align: center;
  font-size: .82rem;
  color: var(--ink-400);
  margin: 14px 0 0;
}
.form-success {
  margin-top: 14px;
  padding: 14px 16px;
  background: #e6f4ec;
  color: #1f7a4d;
  border-radius: 12px;
  font-weight: 600;
  font-size: .95rem;
  text-align: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #0a1d2e;
  color: #9eaebd;
  padding: 64px 0 0;
  font-size: .92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand p { margin-top: 14px; max-width: 320px; color: #9eaebd; }
.logo-footer { color: #fff; }
.logo-footer .logo-mark { color: var(--gold-500); }
.logo-footer .logo-text strong { color: #fff; }
.logo-footer .logo-text span  { color: #9eaebd; }

.footer-col h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #fff;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 18px;
}
.footer-col a, .footer-col span {
  display: block;
  color: #9eaebd;
  padding: 5px 0;
}
.footer-col a:hover { color: var(--gold-500); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 22px;
  padding-bottom: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .85rem;
  color: #6f8093;
}

/* ============================================================
   FLOATING CTA (mobile)
   ============================================================ */
.floating-cta {
  display: none;
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 40;
  background: var(--terra-500);
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  box-shadow: 0 14px 30px rgba(217, 119, 87, .4);
  align-items: center;
  gap: 8px;
}
.floating-cta:hover { background: var(--terra-600); color: #fff; }
.floating-cta svg { width: 18px; height: 18px; }

/* ============================================================
   ANIMATIONS REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .packs-grid { grid-template-columns: repeat(2, 1fr); }
  .pack-popular { transform: none; }
  .pack-popular:hover { transform: translateY(-6px); }
  .pain-grid, .services-grid, .why-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  /* ----- Refonte du visuel hero en mobile : grille propre ----- */
  .hero-visual {
    min-height: 0;
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }
  .card-stack {
    position: relative;
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .floating-card {
    position: relative;
    top: auto; bottom: auto; left: auto; right: auto;
    width: 100%;
    animation: none;
    padding: 16px;
  }
  .card-invoice  { grid-column: 1 / 2; grid-row: 1; }
  .card-quote    { grid-column: 2 / 3; grid-row: 1; }
  .card-relance  { grid-column: 1 / 2; grid-row: 2; display: flex; align-items: center; }
  .card-stat     { grid-column: 2 / 3; grid-row: 2; padding: 18px; }
  .stat-num      { font-size: 1.75rem; }
  .stat-label    { font-size: .78rem; }
  .fc-tag        { font-size: .68rem; padding: 3px 8px; }
  .fc-status     { font-size: .65rem; padding: 3px 8px; }
  .fc-row        { font-size: .82rem; padding: 4px 0; }
  .fc-mini strong { font-size: .88rem; }
  .fc-mini small  { font-size: .75rem; }

  .main-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 22px 26px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform .3s var(--ease), opacity .3s var(--ease);
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .main-nav a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }
  .main-nav a:last-child { border-bottom: 0; }
  .main-nav a:not(.btn)::after { display: none; }
  .nav-cta { margin: 14px 0 0; align-self: flex-start; }
  .burger { display: flex; }
  .floating-cta { display: inline-flex; }
}

@media (max-width: 560px) {
  .pain-grid, .services-grid, .why-grid, .testi-grid,
  .packs-grid, .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .section-head { margin-bottom: 40px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { flex: 1; justify-content: center; }
  .hero-benefits { gap: 14px 22px; }
  .hourly-banner { flex-direction: column; align-items: flex-start; }
  .contact-form { padding: 26px 22px; }
  .container { padding: 0 18px; }
  .testi-card, .pain-card, .service-card, .pack-card { padding: 24px 22px; }
  .pack-card { padding: 28px 22px; }
  .floating-cta span { display: none; }
  .floating-cta { padding: 14px; }
  .floating-cta svg { width: 22px; height: 22px; }
}

/* En-dessous de 420px : on empile les 4 cartes sur une seule colonne */
@media (max-width: 420px) {
  .card-stack { grid-template-columns: 1fr; }
  .card-invoice  { grid-column: 1; grid-row: 1; }
  .card-quote    { grid-column: 1; grid-row: 2; }
  .card-relance  { grid-column: 1; grid-row: 3; }
  .card-stat     { grid-column: 1; grid-row: 4; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
