/* =============================================
   CAROLINE — Coach de vie sentimentale
   Palette : Rose #e8708a / Corail #e8551e / Violet #7c4dbd / Or #d4a843
   ============================================= */

/* ── Variables ── */
:root {
  --pink:          #e8708a;
  --pink-dark:     #c8526f;
  --pink-light:    #fde8ed;
  --coral:         #e8551e;
  --coral-dark:    #c4461a;
  --purple:        #7c4dbd;
  --purple-dark:   #5a3490;
  --purple-light:  #e8d8f8;
  --gold:          #d4a843;
  --gold-dark:     #b88c2e;
  --gold-light:    #f7e9c8;
  --cream:         #fdf8f4;
  --cream-dark:    #f4ede4;
  --text-dark:     #2c1a1a;
  --text-mid:      #6a4a5a;
  --text-light:    #a09098;
  --white:         #ffffff;
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --shadow-soft:   0 4px 30px rgba(232, 112, 138, 0.10);
  --shadow-card:   0 8px 40px rgba(232, 112, 138, 0.14);
  --transition:    0.3s ease;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
em { font-style: italic; color: var(--pink); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-align: center;
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(212, 168, 67, 0.35);
  animation: pulseGold 3s ease-in-out infinite;
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 168, 67, 0.55);
  animation: none;
}

.btn-pink {
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(232,112,138,0.35);
}
.btn-pink:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(232,112,138,0.5);
}

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

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

.btn-full { width: 100%; }
.btn-large { padding: 18px 44px; font-size: 1.1rem; }

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--pink-light);
  box-shadow: 0 2px 16px rgba(232,112,138,0.10);
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Logo / nom */
.navbar-logo { flex-shrink: 0; }
.navbar-logo img {
  height: 46px;
  width: auto;
  object-fit: contain;
  display: block;
}
.navbar-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--pink-dark);
  white-space: nowrap;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.navbar-name-sub {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-mid);
  font-family: 'Nunito', sans-serif;
  letter-spacing: 0.01em;
}

/* Liens centrés */
.navbar-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0 auto;
}
.navbar-links li a {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
  padding: 7px 12px;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.navbar-links li a:hover,
.navbar-links li a.active {
  color: var(--pink-dark);
  background: var(--pink-light);
}

/* CTA */
.navbar-cta {
  flex-shrink: 0;
  padding: 9px 18px !important;
  font-size: 0.82rem !important;
  white-space: nowrap;
  animation: pulseGold 3s ease-in-out infinite;
  max-width: 200px;
}
.navbar-cta:hover { animation: none; transform: translateY(-2px); }

/* Burger mobile */
.navbar-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: var(--transition);
}
.navbar-burger:hover { background: var(--pink-light); }
.navbar-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.navbar-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #3a1a2e 0%, #5c2550 35%, #8c3a7a 60%, #c45a9a 85%, #e87abc 100%);
  display: flex;
  flex-direction: row;
  align-items: stretch;
  overflow: hidden;
  padding-top: 100px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(212,168,67,0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-glow {
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,112,138,0.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.particles {
  position: absolute;
  top: 20%;
  left: 5%;
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow:
    50px 90px 0 rgba(212,168,67,0.5),
    100px 40px 0 rgba(255,255,255,0.3),
    140px 170px 0 rgba(212,168,67,0.35),
    80px 220px 0 rgba(255,255,255,0.2),
    200px 80px 0 rgba(212,168,67,0.4),
    260px 150px 0 rgba(255,255,255,0.15);
  animation: floatParticles 7s ease-in-out infinite;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1 1 50%;
  max-width: 600px;
  padding: 60px 24px 80px calc((100vw - 1100px)/2 + 24px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-logo {
  margin-bottom: 28px;
}
.hero-logo img {
  max-width: 280px;
  width: 100%;
  filter: drop-shadow(0 4px 20px rgba(212,168,67,0.4));
}

.hero-title {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  word-break: keep-all;
  overflow-wrap: normal;
  hyphens: none;
  line-height: 1.3;
}
.hero-title-accent {
  color: var(--gold);
  display: block;
}

.hero-subtitle {
  color: rgba(255,255,255,0.88);
  font-size: 1.15rem;
  margin-bottom: 36px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  line-height: 1.75;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

/* Bandeau autorité */
.hero-authority {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 12px;
  margin-bottom: 20px;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(212,168,67,0.3);
  border-radius: 50px;
  padding: 10px 20px;
  width: fit-content;
}
.hero-authority i {
  color: var(--gold);
  margin-right: 5px;
}

.hero-reassurance {
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 10px;
  line-height: 1.6;
}
.hero-reassurance i { color: var(--gold); margin-right: 4px; }
.hero-reassurance span { white-space: nowrap; }
.reassurance-sep { color: rgba(255,255,255,0.3); }

.hero-image-wrapper {
  flex: 1 1 45%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 1;
}

.hero-photo-frame {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-photo-frame img {
  width: 440px;
  max-width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center top;
  border-radius: 220px 220px 0 0;
  border: 3px solid rgba(212,168,67,0.35);
  box-shadow: 0 -20px 80px rgba(232,112,138,0.25);
}

/* ── Section commons ── */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-label {
  display: inline-block;
  background: var(--pink-light);
  color: var(--pink-dark);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title { margin-bottom: 16px; }
.section-desc { color: var(--text-mid); max-width: 600px; margin: 0 auto; }

/* ── Problems ── */
.problems {
  padding: 100px 0;
  background: var(--white);
}
.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}
.problem-card {
  background: var(--cream);
  border: 1px solid rgba(232,112,138,0.12);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: var(--transition);
}
.problem-card:hover {
  border-color: var(--pink-light);
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}
.problem-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: var(--pink-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--pink-dark);
  font-size: 1.1rem;
}
.problem-card p { color: var(--text-mid); font-size: 0.95rem; line-height: 1.6; margin: 0; }

.problems-transition {
  text-align: center;
  padding: 36px 40px;
  background: linear-gradient(135deg, var(--pink-light), var(--gold-light));
  border-radius: var(--radius-lg);
  font-size: 1.1rem;
  color: var(--text-dark);
}

/* ── Promise ── */
.promise {
  padding: 100px 0;
  background: linear-gradient(135deg, #3a1a2e, #5c2550, #8c3a7a);
  position: relative;
  overflow: hidden;
}
.promise::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,168,67,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.promise-inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.promise-icon-big { margin-bottom: 24px; display: flex; justify-content: center; }
.promise-title { color: var(--white); margin-bottom: 24px; }
.promise-text { color: rgba(255,255,255,0.9); font-size: 1.2rem; line-height: 1.8; margin-bottom: 20px; }
.promise-text strong { color: var(--gold); }
.promise-sub { color: rgba(255,255,255,0.65); font-size: 1rem; margin-bottom: 36px; }
.promise-cta { display: flex; justify-content: center; }

/* Promise CTA row — bilan offert bien visible */
.promise-cta-row {
  display: flex;
  justify-content: center;
}
.promise-cta-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(212,168,67,0.35);
  border-radius: var(--radius-md);
  padding: 18px 28px;
  max-width: 620px;
  width: 100%;
  backdrop-filter: blur(6px);
}
.promise-cta-icon {
  font-size: 2rem;
  flex-shrink: 0;
}
.promise-cta-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}
.promise-cta-text strong {
  color: var(--gold);
  font-size: 1rem;
  font-weight: 700;
}
.promise-cta-text span {
  color: rgba(255,255,255,0.72);
  font-size: 0.88rem;
  line-height: 1.5;
}
.promise-cta-card .btn {
  flex-shrink: 0;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .promise-cta-card {
    flex-direction: column;
    text-align: center;
    padding: 20px 18px;
  }
  .promise-cta-text { text-align: center; }
}

/* ── Testimonials / Elfsight ── */
.testimonials {
  padding: 80px 0;
  background: var(--cream);
}
.elfsight-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

/* ── Process ── */
.process {
  padding: 100px 0;
  background: var(--white);
}

.process-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}

.process-photo {
  position: sticky;
  top: 100px;
}
.process-photo > img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(232,112,138,0.2);
  object-fit: cover;
  height: 380px;
}
.process-photo-caption {
  margin-top: 12px;
}
.process-photo-small {
  width: 100%;
  height: 160px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.process-timeline { display: flex; flex-direction: column; gap: 24px; }

.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.step-number {
  width: 56px; height: 56px; min-width: 56px;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(232,112,138,0.35);
}
.step-content {
  background: var(--cream);
  border: 1px solid rgba(232,112,138,0.12);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  flex: 1;
  transition: var(--transition);
}
.step-content:hover { box-shadow: var(--shadow-soft); border-color: var(--pink-light); }
.step-content h3 { margin-bottom: 8px; font-size: 1.15rem; }
.step-content p { color: var(--text-mid); margin-bottom: 12px; font-size: 0.95rem; }
.step-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--pink-light); color: var(--pink-dark);
  padding: 3px 12px; border-radius: 50px; font-size: 0.78rem; font-weight: 600;
}

.process-formats {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
}
.format-badge {
  display: flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--pink-light), var(--gold-light));
  color: var(--text-dark);
  padding: 10px 22px; border-radius: 50px;
  font-size: 0.9rem; font-weight: 600;
}
.format-badge i { color: var(--pink-dark); }

/* ── Benefits ── */
.benefits {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--cream), var(--cream-dark));
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.benefit-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s ease;
  border-top: 3px solid transparent;
}
.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
  border-top-color: var(--gold);
}
.benefit-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--pink-light), var(--gold-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--pink-dark); font-size: 1.3rem;
  margin: 0 auto 18px;
}
.benefit-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.benefit-card p { color: var(--text-mid); font-size: 0.92rem; line-height: 1.65; }

/* ── About ── */
.about {
  padding: 100px 0;
  background: var(--white);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}
.about-image-col { text-align: center; }

.about-photos-stack {
  margin-bottom: 24px;
}
.about-photo-main {
  width: 300px;
  height: 380px;
  border-radius: 150px 150px 20px 20px;
  overflow: hidden;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(232,112,138,0.2);
  border: 4px solid var(--pink-light);
}
.about-photo-main img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}

.about-credentials {
  display: flex; flex-direction: column; gap: 8px; align-items: center;
}
.credential {
  display: flex; align-items: center; gap: 8px;
  background: var(--cream);
  border: 1px solid var(--pink-light);
  padding: 7px 16px; border-radius: 50px;
  font-size: 0.83rem; font-weight: 600; color: var(--text-mid);
}
.credential i { color: var(--gold); }

.about-logo { margin-bottom: 20px; }
.about-logo img { max-width: 240px; width: 100%; }

.about-text-col p {
  color: var(--text-mid); margin-bottom: 16px;
  font-size: 0.97rem; line-height: 1.8;
}
.about-text-col p strong { color: var(--text-dark); }

.about-values {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px;
}
.about-values span {
  display: flex; align-items: center; gap: 6px;
  background: var(--pink-light); color: var(--pink-dark);
  padding: 5px 12px; border-radius: 50px; font-size: 0.82rem; font-weight: 700;
}
.about-values span i { color: var(--gold); }

/* ── Offer ── */
.offer {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--cream), #ffe8ef);
}
.offer-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 24px;
  align-items: start;
}
.offer-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: var(--transition);
  min-width: 0; /* évite tout débordement en grid */
}
.offer-card:hover { transform: translateY(-6px); }
.offer-card--paid {
  border: 2px solid var(--pink);
  box-shadow: 0 12px 60px rgba(232,112,138,0.2);
}

.offer-badge-tag {
  display: inline-block;
  background: var(--gold-light); color: var(--gold-dark);
  padding: 4px 14px; border-radius: 50px; font-size: 0.8rem; font-weight: 700; margin-bottom: 14px;
}
.offer-badge-tag--featured { background: var(--pink); color: var(--white); }

.offer-card h3 { font-size: 1.1rem; margin-bottom: 6px; line-height: 1.35; }
.offer-card { font-size: 0.9rem; }
.offer-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem; font-weight: 600; color: var(--pink); margin-bottom: 4px;
}
.offer-duration { color: var(--text-light); font-size: 0.88rem; margin-bottom: 24px; display: flex; align-items: center; gap: 6px; }
.offer-duration i { color: var(--pink-light); font-size: 0.85rem; }
.offer-tagline { color: var(--text-mid); font-style: italic; font-size: 0.88rem; margin: 4px 0 14px; }
.offer-note { font-size: 0.8rem; color: var(--text-light); text-align: center; margin-top: 12px; font-style: italic; }
.promise-note { color: rgba(255,255,255,0.55); font-size: 0.85rem; margin-top: 12px; }
.offer-includes { list-style: none; margin-bottom: 24px; }
.offer-includes li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 6px 0; border-bottom: 1px solid var(--cream-dark);
  font-size: 0.88rem; color: var(--text-mid);
}
.offer-includes li:last-child { border-bottom: none; }
.offer-includes li i { color: var(--gold); margin-top: 3px; min-width: 16px; }

.offer-guarantee {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--pink-light); border-radius: var(--radius-sm);
  padding: 14px; margin-bottom: 24px; font-size: 0.87rem;
}
.offer-guarantee i { color: var(--pink); margin-top: 3px; min-width: 16px; }

/* ── SOS Dépannage ── */
.sos-block {
  margin-top: 48px;
  background: linear-gradient(135deg, #1a0a2e 0%, #2d1050 50%, #3d0e2e 100%);
  border-radius: var(--radius-lg);
  border: 2px solid rgba(255,100,100,0.30);
  box-shadow: 0 8px 60px rgba(220,50,50,0.18), 0 2px 20px rgba(0,0,0,0.25);
  overflow: hidden;
  position: relative;
}
.sos-block::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(255,80,80,0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.sos-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  padding: 44px 48px;
  position: relative;
  z-index: 1;
}
.sos-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,80,80,0.2);
  border: 1px solid rgba(255,100,100,0.40);
  color: #ff9999;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.sos-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}
.sos-tagline {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 22px;
}
.sos-tagline em { color: #ffb3b3; font-style: italic; }
.sos-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sos-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.82);
  font-size: 0.93rem;
}
.sos-list li i {
  color: #ff7c7c;
  margin-top: 3px;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.sos-right {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
}
.sos-price-box {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  width: 100%;
}
.sos-duration {
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  margin-bottom: 6px;
}
.sos-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  margin: 8px 0 6px;
  text-shadow: 0 2px 12px rgba(255,100,100,0.4);
}
.sos-cta-label {
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
  margin-bottom: 20px;
}
.btn-sos {
  background: linear-gradient(135deg, #e03030, #c01515);
  color: #fff !important;
  border-color: transparent !important;
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 24px;
  box-shadow: 0 4px 24px rgba(220,30,30,0.40);
  transition: var(--transition);
}
.btn-sos:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(220,30,30,0.55);
  background: linear-gradient(135deg, #ff4040, #d91f1f);
}
.sos-note {
  color: rgba(255,255,255,0.40);
  font-size: 0.76rem;
  margin-top: 12px;
  font-style: italic;
}
@media (max-width: 780px) {
  .sos-inner {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }
  .sos-right { min-width: unset; }
  .sos-title { font-size: 1.6rem; }
}

/* ── FAQ ── */
.faq {
  padding: 100px 0;
  background: var(--white);
}
.faq-list {
  max-width: 800px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 10px;
}
.faq-item {
  background: var(--cream);
  border: 1px solid rgba(232,112,138,0.12);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open {
  border-color: var(--pink-light);
  box-shadow: var(--shadow-soft);
}
.faq-question {
  width: 100%; background: none; border: none;
  padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  cursor: pointer;
  font-family: 'Nunito', sans-serif; font-size: 0.98rem; font-weight: 600;
  color: var(--text-dark); text-align: left; transition: var(--transition);
}
.faq-question:hover { color: var(--pink); }
.faq-question i { color: var(--pink); transition: transform 0.3s ease; min-width: 14px; font-size: 0.82rem; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer p { padding: 0 22px 18px; color: var(--text-mid); font-size: 0.94rem; line-height: 1.75; }

/* ── Values ── */
.values {
  padding: 100px 0;
  background: var(--cream);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}
.value-item {
  text-align: center;
  padding: 36px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: all 0.4s ease;
}
.value-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.value-item > i { font-size: 1.8rem; color: var(--gold); margin-bottom: 14px; display: block; }
.value-item h4 { font-size: 1.1rem; margin-bottom: 10px; color: var(--pink-dark); }
.value-item p { color: var(--text-mid); font-size: 0.91rem; line-height: 1.65; }

/* ── CTA Final ── */
.cta-final {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, #3a1a2e 0%, #5c2550 40%, #c45a9a 80%, #e87abc 100%);
  overflow: hidden;
}
.cta-final-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(212,168,67,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-final-inner { text-align: center; position: relative; z-index: 1; }
.cta-final-logo {
  margin: 0 auto 32px;
  display: flex; justify-content: center;
}
.cta-final-logo img {
  max-width: 200px;
  filter: drop-shadow(0 4px 20px rgba(212,168,67,0.5));
}
.cta-final-title { color: var(--white); margin-bottom: 16px; font-size: clamp(1.8rem, 4vw, 2.6rem); }
.cta-final-sub {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem; margin-bottom: 44px;
  max-width: 560px; margin-left: auto; margin-right: auto;
}
.cta-final-btns {
  display: flex; gap: 20px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 28px;
}
.cta-final-reassure {
  color: rgba(255,255,255,0.55); font-size: 0.88rem;
  display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap;
}
.cta-final-reassure i { color: var(--gold); }

/* ── Footer ── */
.site-footer {
  background: #1a0a14;
  color: rgba(255,255,255,0.65);
  padding: 50px 0 28px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}
.footer-location {
  font-size: 0.85rem;
  display: flex; align-items: center; gap: 6px;
}
.footer-location i { color: var(--gold); }
.footer-contact a {
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  display: flex; align-items: center; gap: 6px; margin-top: 6px;
  transition: var(--transition);
}
.footer-contact a:hover { color: var(--gold); }
.footer-nav { display: flex; gap: 12px; flex-wrap: wrap; }

.footer-legal {
  text-align: center;
  font-size: 0.83rem; line-height: 1.8;
}
.footer-legal a { color: rgba(163,107,240,0.9); }
.footer-legal a:hover { color: var(--gold); }
.footer-mentions { margin-top: 8px; color: rgba(255,255,255,0.4); }
.footer-mentions a { text-decoration: underline; }

/* ── Modales ── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  backdrop-filter: blur(4px);
}
.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px; max-width: 600px; width: 100%;
  max-height: 85vh; overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 80px rgba(0,0,0,0.3);
}
.modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px; border: none;
  background: var(--cream); border-radius: 50%;
  cursor: pointer; font-size: 0.95rem; color: var(--text-mid);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.modal-close:hover { background: var(--pink-light); color: var(--pink); }
.modal-box h3 { margin-bottom: 18px; padding-right: 40px; }
.modal-box p { margin-bottom: 14px; color: var(--text-mid); font-size: 0.94rem; line-height: 1.75; }

/* ── Scroll Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ── Animations ── */
@keyframes floatParticles {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-18px); }
}

@keyframes pulseGold {
  0%, 100% { box-shadow: 0 4px 20px rgba(212,168,67,0.35); }
  50% { box-shadow: 0 4px 28px rgba(212,168,67,0.6), 0 0 0 5px rgba(212,168,67,0.08); }
}

/* ── Responsive ── */
/* Burger visible dès 1024px pour couvrir toutes les tablettes/Android */
@media (max-width: 1024px) {
  .navbar-burger {
    display: flex !important;
    min-width: 44px;
    min-height: 44px;  /* zone tactile suffisante sur Android */
    align-items: center;
    justify-content: center;
  }
  .navbar-cta { display: none !important; }
  .navbar-links {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    padding: 8px 16px 20px;
    gap: 0;
    border-bottom: 2px solid var(--pink-light);
    box-shadow: 0 12px 40px rgba(232,112,138,0.22);
    z-index: 9998;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .navbar-links.open { display: flex; }
  .navbar-links li a {
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    display: block;
    border-bottom: 1px solid var(--cream-dark);
    color: var(--text-dark);
    -webkit-tap-highlight-color: transparent;
  }
  .navbar-links li:last-child a { border-bottom: none; }
  .navbar-mobile-cta {
    display: block !important;
    margin-top: 12px;
    padding: 15px 20px;
    text-align: center;
    font-size: 0.97rem;
    font-weight: 700;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: white !important;
  }
  .navbar-mobile-cta:hover,
  .navbar-mobile-cta:active {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold)) !important;
    color: white !important;
  }
  /* Sur très petits écrans, réduire le nom */
  .navbar-name-sub { display: none; }
  .navbar-name { font-size: 1rem; }
}

/* Cacher le lien CTA mobile sur desktop */
.navbar-mobile-cta { display: none; }

@media (max-width: 960px) {
  /* Hero : colonne unique, texte en haut, photo en bas */
  .hero {
    padding-top: 72px;
    padding-bottom: 0;
    flex-direction: column !important;
    align-items: stretch;
    min-height: auto;
    text-align: center;
  }
  .hero-content {
    flex: none !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 44px 28px 36px !important;
    box-sizing: border-box;
    justify-content: flex-start;
  }
  .hero-title {
    font-size: clamp(2rem, 8vw, 2.8rem) !important;
    word-break: keep-all;
    hyphens: none;
    white-space: normal;
  }
  .hero-logo img { max-width: 200px; margin: 0 auto; }
  .hero-ctas { justify-content: center; }
  .hero-reassurance { justify-content: center; }

  /* Photo en bas, pleine largeur */
  .hero-image-wrapper {
    flex: none !important;
    width: 100% !important;
    height: auto !important;
    min-height: auto !important;
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }
  .hero-photo-frame {
    width: 100% !important;
    height: auto !important;
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }
  .hero-photo-frame img {
    width: min(65vw, 280px) !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: center bottom;
    border-radius: 140px 140px 0 0 !important;
    display: block;
    margin: 0 auto;
  }

  .process-layout {
    grid-template-columns: 1fr;
  }
  .process-photo { position: static; }
  .process-photo > img { height: 280px; }

  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-image-col { order: 2; }
  .about-text-col { order: 1; }
  .about-photo-main { width: 260px; height: 330px; }

  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer-contact a { justify-content: center; }
  .footer-nav { justify-content: center; }
}

@media (max-width: 600px) {
  .hero-photo-frame img {
    width: min(80vw, 280px);
  }
  .hero-title { font-size: 1.7rem; }
  .btn-large { padding: 14px 24px; font-size: 0.95rem; }
  .cta-final-btns { flex-direction: column; align-items: center; }
  .offer-cards { grid-template-columns: 1fr; }
  .offer-card { padding: 22px 18px; }
  .offer-guarantee { font-size: 0.82rem; padding: 10px; }
  .sticky-ctas { gap: 8px; }
  .btn-outline-sticky, .btn-primary-sticky { padding: 6px 12px; font-size: 0.76rem; }
  .section-header { margin-bottom: 36px; }
  .problems { padding: 70px 0; }
  .process { padding: 70px 0; }
  .benefits { padding: 70px 0; }
  .about { padding: 70px 0; }
  .offer { padding: 70px 0; }
  .faq { padding: 70px 0; }
  .values { padding: 70px 0; }
}
