/* ============================================================
   MAIN.CSS — Edith Wernert Hypnothérapeute
   Palette : #F8F5F0 / #2C4A3E / #C8956C / #FFFEFA
   Fonts   : Playfair Display + Inter
   ============================================================ */

/* --- Reset & Base ------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #F8F5F0;
  --primary:   #2C4A3E;
  --secondary: #C8956C;
  --card:      #FFFEFA;
  --dark:      #1E3830;
  --text:      #1A1A1A;
  --text-sec:  #6B6560;
  --border:    #E2DDD6;
  --white:     #FFFFFF;

  --font-h:    'Playfair Display', Georgia, serif;
  --font-b:    'Inter', system-ui, -apple-system, sans-serif;

  --radius:    12px;
  --radius-sm: 6px;
  --shadow:    0 4px 24px rgba(44,74,62,0.10);
  --shadow-lg: 0 8px 48px rgba(44,74,62,0.15);

  --container: 1200px;
  --section:   100px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Typography -------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-h);
  line-height: 1.2;
  color: var(--primary);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: var(--text-sec);
  line-height: 1.75;
}

em, .italic {
  font-family: var(--font-h);
  font-style: italic;
  color: var(--secondary);
}

/* --- Layout ------------------------------------------------ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: var(--section) 0; }

.section--dark {
  background: var(--primary);
  color: var(--white);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--white); }

.section--dark p,
.section--dark .lead { color: rgba(255,255,255,0.8); }

.section--cream { background: var(--card); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.text-center { text-align: center; }
.text-right  { text-align: right; }

/* --- Buttons ----------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-b);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--secondary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(200,149,108,0.35);
}
.btn-primary:hover { box-shadow: 0 8px 28px rgba(200,149,108,0.45); }

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: var(--white); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.btn-lg { padding: 18px 44px; font-size: 1.1rem; }
.btn-sm { padding: 10px 22px; font-size: 0.9rem; }

/* --- Cards ------------------------------------------------- */
.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.card--accent {
  border-left: 4px solid var(--secondary);
  padding-left: 28px;
}

/* --- Badges / Tags ----------------------------------------- */
.badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge-primary { background: rgba(44,74,62,0.1); color: var(--primary); }
.badge-secondary { background: rgba(200,149,108,0.15); color: var(--secondary); }

/* --- Section label ----------------------------------------- */
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--secondary);
  flex-shrink: 0;
}
.section-label span {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--secondary);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
  background: rgba(248,245,240,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(44,74,62,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 80px;
  width: auto;
  display: block;
}

.nav { display: flex; align-items: center; gap: 8px; }

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--primary); background: rgba(44,74,62,0.06); }
.nav-link.active { color: var(--primary); font-weight: 600; }

.nav-cta {
  background: var(--secondary);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(200,149,108,0.4);
  background: var(--secondary) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px;
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link {
  font-size: 1.4rem;
  font-family: var(--font-h);
  padding: 16px 32px;
  text-align: center;
  width: 100%;
}
.mobile-nav .nav-cta {
  background: var(--secondary);
  color: var(--white);
  font-size: 1.1rem;
  padding: 16px 40px;
  border-radius: 50px;
  margin-top: 16px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
  background: linear-gradient(150deg, var(--bg) 0%, #EFE9E0 100%);
}

#hero-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  opacity: 0;
}
.hero-eyebrow-line {
  width: 48px;
  height: 2px;
  background: var(--secondary);
}
.hero-eyebrow-text {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
}

.hero-stars {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  opacity: 0;
}
.stars {
  display: flex;
  gap: 3px;
}
.star { color: #F4B942; font-size: 1.1rem; }
.hero-stars-text {
  font-size: 0.9rem;
  color: var(--text-sec);
}
.hero-stars-text strong { color: var(--text); }

.hero h1 {
  margin-bottom: 24px;
  opacity: 0;
}
.hero h1 em {
  display: block;
  font-size: 0.6em;
  color: var(--secondary);
  margin-top: 8px;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-sec);
  margin-bottom: 40px;
  max-width: 540px;
  opacity: 0;
  line-height: 1.75;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 48px;
  opacity: 0;
}

.hero-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--text-sec);
}
.hero-phone a {
  font-weight: 600;
  color: var(--primary);
  transition: color 0.2s;
}
.hero-phone a:hover { color: var(--secondary); }

.hero-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-placeholder {
  width: 480px;
  max-width: 100%;
  height: 580px;
  background: linear-gradient(145deg, rgba(44,74,62,0.08) 0%, rgba(200,149,108,0.12) 100%);
  border-radius: 40% 60% 60% 40% / 50% 50% 60% 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.hero-badge {
  position: absolute;
  bottom: 32px;
  left: -16px;
  background: var(--card);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 200px;
}
.hero-badge-icon {
  width: 44px;
  height: 44px;
  background: rgba(44,74,62,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.hero-badge-text { font-size: 0.82rem; line-height: 1.3; }
.hero-badge-text strong { display: block; font-size: 1rem; color: var(--primary); }

/* ============================================================
   STATS / CHIFFRES CHOCS
   ============================================================ */
.stats-bar {
  padding: 60px 0;
  background: var(--primary);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  divide-x: 1px solid rgba(255,255,255,0.15);
}
.stat-item {
  text-align: center;
  padding: 16px 24px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-h);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
}

/* ============================================================
   SECTION PROMESSE
   ============================================================ */
.promise-icon {
  width: 64px;
  height: 64px;
  background: rgba(200,149,108,0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.promise-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0;
}
.promise-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1rem;
  color: var(--text);
}
.promise-list li::before {
  content: '✓';
  width: 24px;
  height: 24px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================================
   SECTION MÉTHODE HypnoNoah
   ============================================================ */
.method-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.method-steps::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 32px;
  bottom: 32px;
  width: 2px;
  background: var(--border);
}
.method-step {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  position: relative;
}
.step-number {
  width: 56px;
  height: 56px;
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  flex-shrink: 0;
  z-index: 1;
  transition: background 0.3s, border-color 0.3s;
}
.method-step:hover .step-number {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.step-content h4 { margin-bottom: 6px; color: var(--primary); }
.step-content p { color: var(--text-sec); font-size: 0.95rem; margin: 0; }
.step-duration {
  display: inline-block;
  margin-top: 8px;
  padding: 2px 10px;
  background: rgba(200,149,108,0.12);
  color: var(--secondary);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
}

/* ============================================================
   SECTION OBJECTIONS
   ============================================================ */
.objection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.objection-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
}
.objection-q {
  font-family: var(--font-h);
  font-style: italic;
  font-size: 1rem;
  color: var(--text-sec);
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.objection-q::before { content: '«'; color: var(--secondary); font-size: 1.5rem; line-height: 1; }
.objection-a {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   TIMELINE BÉNÉFICES
   ============================================================ */
.timeline {
  position: relative;
  padding-left: 32px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--secondary), var(--primary));
}
.timeline-item {
  position: relative;
  padding-bottom: 36px;
  padding-left: 28px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -36px;
  top: 4px;
  width: 18px;
  height: 18px;
  background: var(--secondary);
  border-radius: 50%;
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--secondary);
}
.timeline-when {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 4px;
}
.timeline-title {
  font-family: var(--font-h);
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 4px;
}
.timeline-desc {
  font-size: 0.9rem;
  color: var(--text-sec);
  margin: 0;
}

/* ============================================================
   TÉMOIGNAGES
   ============================================================ */
.testimonials-slider {
  overflow: hidden;
  position: relative;
}
.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--card);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.testimonial-text {
  font-family: var(--font-h);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
}
.testimonial-text::before { content: '«\2009'; color: var(--secondary); }
.testimonial-text::after  { content: '\2009»'; color: var(--secondary); }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: rgba(44,74,62,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-size: 1.1rem;
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 0.95rem; }
.testimonial-meta { font-size: 0.82rem; color: var(--text-sec); }

.slider-controls {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}
.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--card);
  color: var(--primary);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  cursor: pointer;
}
.slider-btn:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* ============================================================
   SECTION EDITH — PRÉSENTATION
   ============================================================ */
.about-image-wrap {
  position: relative;
}
.about-image {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 40% 60% 55% 45% / 45% 50% 60% 40%;
}
.about-image-placeholder {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, rgba(44,74,62,0.1), rgba(200,149,108,0.15));
  border-radius: 40% 60% 55% 45% / 45% 50% 60% 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.5;
}
.about-diplomas {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
}
.about-diplomas li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-sec);
}
.about-diplomas li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: 50%;
  flex-shrink: 0;
}
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(44,74,62,0.06);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
}

/* ============================================================
   TARIFS
   ============================================================ */
.pricing-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 40px 36px;
  border: 1px solid var(--border);
  text-align: center;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.pricing-card.featured h3,
.pricing-card.featured .pricing-price,
.pricing-card.featured .pricing-name { color: var(--white); }
.pricing-card.featured p,
.pricing-card.featured .pricing-feature { color: rgba(255,255,255,0.8); }

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary);
  color: var(--white);
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.pricing-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.pricing-name {
  font-family: var(--font-h);
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 8px;
}
.pricing-price {
  font-family: var(--font-h);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin: 12px 0 4px;
}
.pricing-price sup { font-size: 1.4rem; vertical-align: top; margin-top: 8px; }
.pricing-period {
  font-size: 0.85rem;
  color: var(--text-sec);
  margin-bottom: 24px;
}
.pricing-features {
  list-style: none;
  text-align: left;
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-sec);
}
.pricing-feature::before {
  content: '✓';
  color: var(--secondary);
  font-weight: 700;
  flex-shrink: 0;
}
.pricing-card.featured .pricing-feature::before { color: rgba(200,149,108,0.9); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.faq-item {
  border-bottom: 1px solid var(--border);
  background: var(--card);
}
.faq-item:last-child { border-bottom: none; }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  cursor: pointer;
  transition: background 0.2s;
  gap: 16px;
}
.faq-question:hover { background: rgba(44,74,62,0.03); }
.faq-question h4 {
  font-size: 1rem;
  font-family: var(--font-b);
  font-weight: 600;
  color: var(--text);
  margin: 0;
}
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(44,74,62,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--primary); color: var(--white); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
}
.faq-answer-inner {
  padding: 0 28px 24px;
  font-size: 0.95rem;
  color: var(--text-sec);
  line-height: 1.7;
}

/* ============================================================
   SECTION CTA FINAL
   ============================================================ */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(200,149,108,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto 40px; }
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}
.cta-section .btn-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  font-weight: 600;
}
.cta-section .btn-phone:hover { color: var(--white); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.65);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: var(--font-h);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-logo span {
  display: block;
  font-size: 0.75rem;
  font-family: var(--font-b);
  font-weight: 400;
  color: rgba(255,255,255,0.5);
}
.footer-desc { font-size: 0.9rem; line-height: 1.65; margin-bottom: 20px; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  margin-bottom: 8px;
}
.footer-contact-item a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--secondary); }
.footer-heading {
  font-family: var(--font-b);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--secondary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}
.footer-siret { font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--secondary); }

/* ============================================================
   STICKY CTA MOBILE
   ============================================================ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--card);
  padding: 12px 16px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
  gap: 10px;
}

/* ============================================================
   CALCULATOR SECTION
   ============================================================ */
.calculator {
  background: var(--card);
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.calculator-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}
.input-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-sec);
  margin-bottom: 8px;
}
.input-group input[type="range"] {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--border);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.input-group input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--secondary);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(200,149,108,0.4);
}
.input-value {
  font-family: var(--font-h);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 6px;
}
.calculator-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.calc-result {
  text-align: center;
}
.calc-result-number {
  font-family: var(--font-h);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
}
.calc-result-label {
  font-size: 0.8rem;
  color: var(--text-sec);
  margin-top: 4px;
}

/* ============================================================
   INNER PAGES
   ============================================================ */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(150deg, var(--bg) 0%, #EFE9E0 100%);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-sec);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--primary); }
.breadcrumb-sep { color: var(--border); }

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-card { flex: 0 0 calc(50% - 12px); }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
  :root { --section: 60px; }

  .nav { display: none; }
  .hamburger { display: flex; }
  .sticky-cta { display: flex; }

  .grid-2 { grid-template-columns: 1fr; gap: 32px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .objection-grid { grid-template-columns: 1fr; }
  .calculator-inputs { grid-template-columns: 1fr; }
  .calculator-results { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .hero { padding-top: 100px; }
  .hero-image-wrap { display: none; }
  .hero-content { max-width: 100%; }

  .pricing-cards { grid-template-columns: 1fr; }

  .testimonial-card { flex: 0 0 calc(100%); }

  .footer-bottom { flex-direction: column; text-align: center; }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .header, .footer, .sticky-cta, #hero-canvas { display: none; }
  .section { padding: 40px 0; }
}

/* ============================================================
   UTILITIES
   ============================================================ */
.mt-8  { margin-top:  8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom:  8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border-width: 0;
}
