/* =====================================================
   LM BIORÉSONANCE — ADDITIONS
   Parcours · Compteurs · FAQ · Décorations
   ===================================================== */

/* === HERO — PHOTO OVERLAY === */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('hero-bg.jpg') center 40% / cover no-repeat;
  opacity: 0.13;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 0;
}

/* === PARCOURS — 3 ÉTAPES === */
.parcours-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
  margin-top: 16px;
}

.parcours-step {
  text-align: center;
  padding: 0 24px;
}

.parcours-arrow {
  display: flex;
  align-items: center;
  padding-top: 36px;
  color: var(--rose-light);
}

.parcours-arrow svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.parcours-step__num {
  display: none;
}

.parcours-step__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: var(--rose-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(78, 158, 130, 0.25);
  position: relative;
  z-index: 1;
  transition: all var(--transition);
}

.parcours-step:hover .parcours-step__icon {
  background: var(--rose);
  border-color: var(--rose);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(78, 158, 130, 0.30);
}

.parcours-step:hover .parcours-step__icon svg {
  color: white;
}

.parcours-step__icon svg {
  width: 30px;
  height: 30px;
  color: var(--rose);
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: color var(--transition);
}

.parcours-step h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--plum);
  margin-bottom: 10px;
}

.parcours-step p {
  font-size: 0.92rem;
  color: var(--text-medium);
  line-height: 1.75;
}

@media (max-width: 768px) {
  .parcours-grid {
    grid-template-columns: 1fr;
  }
  .parcours-arrow {
    justify-content: center;
    padding: 0;
    transform: rotate(90deg);
    height: 32px;
  }
  .parcours-step { padding: 0 16px; }
}

/* === COMPTEURS ANIMÉS === */
.stats-section {
  padding: 64px 0;
  background: var(--plum);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(78, 158, 130, 0.20) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(91, 155, 200, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  position: relative;
  z-index: 1;
}

.stat-card {
  text-align: center;
  padding: 32px 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.stat-card:last-child { border-right: none; }

.stat-card__value {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: white;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.stat-card__value em {
  font-style: italic;
  color: var(--rose-light);
}

.stat-card__label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-card:nth-child(even) { }
  .stat-card:last-child, .stat-card:nth-last-child(2) { border-bottom: none; }
}

/* === FAQ === */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), border-color var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--rose-light);
}

.faq-item[open] {
  border-color: var(--rose);
}

.faq-item summary {
  padding: 20px 24px;
  font-weight: 500;
  font-size: 0.97rem;
  color: var(--plum);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
  transition: color var(--transition);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item[open] summary { color: var(--rose); }

.faq-item summary::after {
  content: '';
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: var(--rose-pale);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%234E9E82' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform var(--transition), background-color var(--transition);
}

.faq-item[open] summary::after {
  transform: rotate(180deg);
  background-color: var(--rose-pale);
}

.faq-body {
  padding: 4px 24px 22px;
  font-size: 0.93rem;
  color: var(--text-medium);
  line-height: 1.85;
  border-top: 1px solid var(--border);
}

.faq-body p + p { margin-top: 10px; }

/* === DÉCORATIONS BOTANIQUES === */
.botanical {
  position: absolute;
  pointer-events: none;
  opacity: 0.14;
  color: var(--rose);
}
.botanical--tl { top: -30px; left: -50px; transform: rotate(-20deg) scale(0.85); }
.botanical--br { bottom: -30px; right: -50px; transform: rotate(160deg) scale(0.85); }
.botanical--tr { top: 20px; right: -40px; transform: rotate(25deg) scale(0.7); }
.botanical--bl { bottom: 20px; left: -40px; transform: rotate(-160deg) scale(0.7); }

/* === CONTACT — ENTRETIEN TÉLÉPHONIQUE === */
.contact-tel-cta {
  background: linear-gradient(135deg, var(--rose-pale), #D8EEF8);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: box-shadow var(--transition);
}

.contact-tel-cta:hover {
  box-shadow: var(--shadow-md);
}

.contact-tel-cta__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--rose);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(78, 158, 130, 0.35);
}

.contact-tel-cta__icon svg {
  width: 22px;
  height: 22px;
  color: white;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-tel-cta__content strong {
  display: block;
  font-size: 0.95rem;
  color: var(--plum);
  margin-bottom: 3px;
}

.contact-tel-cta__content p {
  font-size: 0.83rem;
  color: var(--text-medium);
  margin: 0;
  line-height: 1.5;
}

.contact-tel-cta__num {
  margin-left: auto;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--plum);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

@media (max-width: 640px) {
  .contact-tel-cta { flex-wrap: wrap; }
  .contact-tel-cta__num { margin-left: 0; width: 100%; text-align: center; }
}

/* === ICÔNES SVG DOMAINES === */
.domain-card__icon {
  font-size: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.domain-card__icon svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: var(--rose);
}

/* =====================================================
   ENRICHISSEMENT VISUEL — RYTHME & PROFONDEUR
   ===================================================== */

/* === VAGUES DE TRANSITION === */
.wave-divider {
  line-height: 0;
  font-size: 0;
  overflow: hidden;
  display: block;
  margin-top: -1px;
  margin-bottom: -1px;
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: 70px;
}

/* === SECTION OCÉAN — TÉMOIGNAGES SOMBRES === */
.section--ocean {
  background: linear-gradient(160deg, #04182A 0%, #0A2E45 40%, #10405E 70%, #06202E 100%);
  position: relative;
  overflow: hidden;
}
.section--ocean::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 18% 60%, rgba(78, 158, 130, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 82% 30%, rgba(91, 155, 200, 0.14) 0%, transparent 50%);
  pointer-events: none;
}
.section--ocean .section__tag {
  background: rgba(78, 158, 130, 0.20);
  border-color: rgba(78, 158, 130, 0.38);
  color: #80C4A8;
}
.section--ocean .section__title { color: white; }
.section--ocean .section__title em { color: var(--rose-light); }

.section--ocean .review-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.30);
}
.section--ocean .review-card:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(78, 158, 130, 0.32);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.42);
}
.section--ocean .review-stars { color: #F0C060; }
.section--ocean .review-text  { color: rgba(255, 255, 255, 0.82); }
.section--ocean .review-author { color: var(--rose-light); }
.section--ocean .review-card::before { color: rgba(255, 255, 255, 0.10); }

.section--ocean .reviews-coming {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
.section--ocean .btn-google-review {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.72);
}
.section--ocean .btn-google-review:hover {
  background: rgba(255, 255, 255, 0.13);
  color: white;
  border-color: rgba(255, 255, 255, 0.22);
}
.section--ocean .botanical { color: white; opacity: 0.08; }

/* === BOKEH PHOTO OVERLAY — L.I.F.E SYSTEM === */
.section--bokeh {
  position: relative;
  overflow: hidden;
}
.section--bokeh::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('hero-bg.jpg') center 35% / cover no-repeat;
  opacity: 0.04;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}
.section--bokeh > .container { position: relative; z-index: 1; }

/* === CARTES MÉTHODE — BARRE BAS AU SURVOL === */
.method-card {
  position: relative;
  overflow: hidden;
}
.method-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--lavender));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.40s ease;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}
.method-card:hover::after { transform: scaleX(1); }

/* === CARTES DOMAINES — BARRE GAUCHE AU SURVOL === */
.domain-card {
  position: relative;
  overflow: hidden;
}
.domain-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--rose), var(--lavender));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.38s ease;
}
.domain-card:hover::after { transform: scaleY(1); }

/* === CARTES SÉANCES — BARRE BAS AU SURVOL === */
.seance-card {
  position: relative;
  overflow: hidden;
}
.seance-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--rose), var(--lavender));
  transform: scaleX(0);
  transition: transform 0.38s ease;
}
.seance-card:hover::after { transform: scaleX(1); }

/* === TARIFS — FOND SUBTIL === */
#tarifs.section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 50%, var(--bg) 100%);
}

/* === CALLOUT RYTHME SÉANCES === */
.tarif-rythme {
  margin-bottom: 36px;
  background: linear-gradient(135deg, var(--rose-pale), #D8EEF8);
  border: 1.5px solid rgba(78, 158, 130, 0.28);
  border-left: 4px solid var(--rose);
  border-radius: var(--radius-md);
  padding: 26px 32px;
}
.tarif-rythme__content strong {
  display: block;
  font-size: 0.94rem;
  color: var(--plum);
  margin-bottom: 8px;
}
.tarif-rythme__content p {
  font-size: 0.88rem;
  color: var(--text-medium);
  line-height: 1.75;
  margin: 0;
}
.tarif-rythme__metaphore {
  margin-top: 16px;
  padding: 14px 22px;
  background: rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-style: italic;
  font-weight: 300;
  color: var(--plum);
  line-height: 1.8;
}

.tarif-condition {
  font-size: 0.78rem;
  color: var(--text-light);
  font-style: italic;
  margin-top: 4px;
  line-height: 1.4;
}

/* === BANDEAU PHILOSOPHIE === */
.philosophy-band {
  background: linear-gradient(135deg, var(--plum) 0%, var(--plum-medium) 100%);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.philosophy-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(78, 158, 130, 0.24) 0%, transparent 60%);
  pointer-events: none;
}
.philosophy-band__inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 0 24px;
}
.philosophy-band__quote {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-style: italic;
  font-weight: 300;
  color: white;
  line-height: 1.75;
  margin: 0 0 14px;
}
.philosophy-band__author {
  display: block;
  font-size: 0.82rem;
  color: var(--rose-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* === SECTION FORFAITS === */
.forfaits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}
.forfait-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.forfait-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.forfait-card--featured {
  border-color: var(--rose);
  box-shadow: 0 8px 32px rgba(78, 158, 130, 0.16);
}
.forfait-card--featured:hover {
  box-shadow: 0 16px 48px rgba(78, 158, 130, 0.26);
}
.forfait-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--rose);
  color: white;
  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.forfait-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--plum);
  margin-bottom: 8px;
}
.forfait-goal {
  font-size: 0.88rem;
  color: var(--text-medium);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}
.forfait-content {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 24px;
}
.forfait-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-dark);
}
.forfait-item em {
  color: var(--text-medium);
  font-style: normal;
  font-size: 0.84rem;
}
.forfait-item__dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  background: linear-gradient(135deg, var(--rose), var(--lavender));
  border-radius: 50%;
}
.forfait-pricing {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.forfait-original {
  font-size: 0.88rem;
  color: var(--text-light);
  text-decoration: line-through;
}
.forfait-price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--plum);
  line-height: 1;
}
.forfait-saving {
  font-size: 0.80rem;
  color: var(--rose);
  font-weight: 600;
  background: var(--rose-pale);
  padding: 3px 9px;
  border-radius: 20px;
}
.forfait-conditions {
  font-size: 0.84rem;
  color: var(--text-medium);
  line-height: 1.6;
}
.forfait-conditions small {
  display: block;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 3px;
}
@media (max-width: 640px) {
  .forfaits-grid { grid-template-columns: 1fr; }
}

/* === L.I.F.E SYSTEM — GALERIE PHOTOS === */
.life-showcase {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
  margin-top: 40px;
}
.life-showcase__item {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
  background: #f0f4f7;
}
.life-showcase__item img,
.life-showcase__item-gif {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.life-showcase__item--contain img {
  object-fit: contain;
  background: white;
  padding: 12px;
}
.life-showcase__item--gif {
  min-height: 220px;
}
.life-showcase__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(14, 63, 94, 0.75));
  padding: 24px 14px 10px;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.88);
  font-style: italic;
  text-align: center;
}
@media (max-width: 640px) {
  .life-showcase { grid-template-columns: 1fr; }
  .life-showcase__item--gif { min-height: 180px; }
}

/* === SÉANCE À DISTANCE — INFO BOX === */
.seance-distance-info {
  margin-top: 32px;
  background: linear-gradient(135deg, var(--rose-pale), #D8EEF8);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  position: relative;
  overflow: hidden;
}
.seance-distance-info__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 10px;
}
.seance-distance-info h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--plum);
  margin-bottom: 10px;
}
.seance-distance-info__lead {
  font-size: 0.94rem;
  color: var(--text-medium);
  line-height: 1.75;
  margin-bottom: 18px;
}
.seance-distance-info__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}
.seance-distance-info__benefits {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.seance-distance-info__benefit {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.88rem;
  color: var(--plum);
}
.seance-distance-info__benefit::before {
  content: '\2713';
  color: var(--rose);
  font-weight: 600;
  flex-shrink: 0;
}
.seance-distance-info__science {
  background: rgba(255, 255, 255, 0.65);
  border-left: 3px solid var(--rose);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 16px;
  font-size: 0.86rem;
  color: var(--text-medium);
  font-style: italic;
  line-height: 1.7;
}
.seance-distance-info__temoin {
  margin-top: 18px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-md);
  font-size: 0.87rem;
  color: var(--text-medium);
  line-height: 1.7;
  border: 1px solid rgba(78, 158, 130, 0.18);
}
.seance-distance-info__temoin strong { color: var(--plum); }
@media (max-width: 640px) {
  .seance-distance-info__body { grid-template-columns: 1fr; }
  .seance-distance-info { padding: 24px 20px; }
}
