/* ══════════════════════════════════════
   LIMIT BREAKER – STYLES
   ══════════════════════════════════════ */

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

:root {
  --accent: #2ee8a0;
  --accent-dim: #1fcb87;
  --dark: #0d0d0d;
  --dark-2: #141414;
  --dark-3: #1c1c1c;
  --dark-4: #252525;
  --light: #f5f5f0;
  --light-2: #e0dfd8;
  --muted: #888;
  --white: #ffffff;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 8px 32px rgba(0,0,0,0.25);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.4);
}

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; width: 100%; }

body {
  font-family: var(--font-body);
  background: var(--light);
  color: var(--dark);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

.container {
  width: min(100%, 1160px);
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 3rem);
}

.section { padding-block: clamp(5rem, 10vw, 8rem); }
.section-dark { background: var(--dark); color: var(--white); }

/* ─── Reveal animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }
.delay-4 { transition-delay: 0.48s; }

/* ─── Typography ─── */
h1, h2, h3 { font-family: var(--font-display); letter-spacing: 0.02em; line-height: 1.05; }
h1 { font-size: clamp(3.5rem, 8vw, 7rem); }
h2 { font-size: clamp(2.4rem, 5vw, 4rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }

.eyebrow, .section-header .eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-dim);
  margin-bottom: 0.75rem;
}
.section-dark .eyebrow { color: var(--accent); }
.accent { color: var(--accent); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dim);
  border-color: var(--accent-dim);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,240,24,0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}
.btn-ghost-dark {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-ghost-dark:hover {
  background: var(--accent);
  color: var(--dark);
}
.btn-full { width: 100%; justify-content: center; }

/* Bouton mis en avant (ex: "Réductions") : couleur accent + halo pulsant +
   bande lumineuse qui balaye le bouton, pour qu'il attire l'œil parmi
   d'autres boutons au format identique. */
.btn-flash {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-color: var(--accent);
  color: var(--accent);
  animation: btnFlashPulse 2.4s ease-in-out infinite;
}
.btn-flash::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: -60%;
  width: 45%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(46,232,160,0.45), transparent);
  animation: flashShine 3.2s ease-in-out infinite;
  pointer-events: none;
}
.btn-flash:hover {
  background: var(--accent);
  color: var(--dark);
}
@keyframes btnFlashPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(46,232,160,0.35); }
  50% { box-shadow: 0 0 0 6px rgba(46,232,160,0); }
}
@media (prefers-reduced-motion: reduce) {
  .btn-flash, .btn-flash::after { animation: none; }
}

/* ─── Nav ─── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
}
/* Le fond flouté vit sur un pseudo-élément séparé : si on met le
   backdrop-filter directement sur #header, celui-ci devient le
   containing block de ses enfants en position:fixed (dont le menu
   mobile #navLinks), qui se retrouve alors coincé/buggé en haut de
   l'écran dès qu'on a scrollé. */
#header::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}
#header.scrolled::before {
  background: rgba(13,13,13,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo { display: flex; align-items: center; }
.logo-img { height: 52px; width: auto; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--white); }
.btn-nav {
  background: var(--accent) !important;
  color: var(--dark) !important;
  padding: 0.5rem 1rem;
  border-radius: 4px;
}
.btn-nav:hover { background: var(--accent-dim) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Hero ─── */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1600&q=80') center/cover no-repeat;
  transform: scale(1.06);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(13,13,13,0.92) 50%, rgba(13,13,13,0.5) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-block: 8rem 5rem;
  max-width: 780px;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.hero-content h1 { color: var(--white); }
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.72);
  max-width: 540px;
  margin-top: 1.5rem;
  line-height: 1.75;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 4rem;
}
.stat { display: flex; flex-direction: column; gap: 0.25rem; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  line-height: 1;
}
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); letter-spacing: 0.04em; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }

.scroll-down {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-line {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ─── Ticker ─── */
.ticker-wrap {
  background: var(--accent);
  padding: 0.85rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker {
  display: inline-block;
  animation: ticker 30s linear infinite;
}
.ticker span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--dark);
  margin-inline: 1rem;
}
.ticker .sep { color: rgba(13,13,13,0.4); margin-inline: 0.5rem; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ─── Services ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--accent); }
.service-card:hover::before { opacity: 0.05; }
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--dark);
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { margin-bottom: 0.75rem; }
.service-card p { color: #555; font-size: 0.92rem; line-height: 1.7; flex: 1; }
.card-link {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--dark);
  transition: gap var(--transition);
}
.card-link:hover { color: var(--accent-dim); }

/* Rend toute la carte cliquable (la carte doit avoir position:relative) */
.card-link::after {
  content: '';
  position: absolute;
  inset: 0;
}
.expertise-card:hover .card-link { color: var(--accent); }

/* Emplacement photo en haut des cartes (services, expertise) */
.card-media {
  aspect-ratio: 16/10;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.25rem;
}
.card-media .img-placeholder { min-height: 0; }
.card-media img { width: 100%; height: 100%; object-fit: cover; }

/* ─── About ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.about-image {
  position: relative;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}
.about-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--accent);
  color: var(--dark);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  max-width: 260px;
}
.about-badge strong { display: block; font-family: var(--font-display); font-size: 1.4rem; line-height: 1; }
.about-badge span { font-size: 0.78rem; font-weight: 500; line-height: 1.4; }
.about-text h2 { color: var(--white); margin-bottom: 1.25rem; }
.about-text p { color: rgba(255,255,255,0.72); font-size: 0.97rem; line-height: 1.75; margin-bottom: 1rem; }
.about-values { list-style: none; margin-block: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
.about-values li { display: flex; align-items: flex-start; gap: 1rem; }
.value-icon { font-size: 1.25rem; margin-top: 0.1rem; flex-shrink: 0; }
.about-values strong { display: block; color: var(--white); font-size: 1rem; margin-bottom: 0.2rem; }
.about-values p { color: rgba(255,255,255,0.55); font-size: 0.87rem; margin: 0; }

/* ─── Expertise ─── */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: rgba(0,0,0,0.1);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.expertise-card {
  background: var(--white);
  padding: 2.5rem;
  transition: background var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.expertise-card:hover { background: var(--dark); }
.expertise-card:hover h3 { color: var(--accent); }
.expertise-card:hover p { color: rgba(255,255,255,0.65); }
.expertise-card:hover .exp-number { color: rgba(255,255,255,0.1); }
.exp-number {
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(0,0,0,0.06);
  line-height: 1;
  margin-bottom: 0.5rem;
  transition: color var(--transition);
}
.expertise-card h3 { margin-bottom: 0.75rem; transition: color var(--transition); }
.expertise-card p { color: #555; font-size: 0.92rem; line-height: 1.7; transition: color var(--transition); flex: 1; }

/* ─── Pricing ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}
.pricing-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: border-color var(--transition);
}
.pricing-card:hover { border-color: rgba(255,255,255,0.2); }
.pricing-featured {
  background: var(--dark-4);
  border-color: var(--accent);
  transform: scale(1.02);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-lg);
}
.pricing-featured:hover { border-color: var(--accent); }
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 20px;
}
.pricing-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.pricing-price { display: flex; align-items: baseline; gap: 0.25rem; flex-wrap: wrap; }
.price-amount { font-family: var(--font-display); font-size: 2.75rem; color: var(--white); line-height: 1; white-space: nowrap; }
.price-period { font-size: 0.9rem; color: rgba(255,255,255,0.45); }
.pricing-sub { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-top: -0.5rem; }
.pricing-desc { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.65; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.pricing-features li { font-size: 0.88rem; color: rgba(255,255,255,0.72); }
.pricing-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* ─── FAQ ─── */
.faq-list { max-width: 780px; margin-inline: auto; display: flex; flex-direction: column; gap: 1px; }
.faq-item {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item[open] { border-color: var(--accent); }
.faq-item + .faq-item { margin-top: 0.75rem; }
.faq-item summary {
  padding: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent-dim);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { color: var(--accent-dim); }
.faq-body {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.faq-body p { font-size: 0.93rem; color: #555; line-height: 1.75; padding-top: 1rem; }

/* ─── Contact ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.contact-info h2 { color: var(--white); margin-bottom: 1.25rem; }
.contact-info p { color: rgba(255,255,255,0.65); font-size: 0.97rem; line-height: 1.75; margin-bottom: 2rem; }
.contact-person { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.75rem; }
.contact-person img { width: 68px; height: 68px; border-radius: 50%; object-fit: cover; border: 2px solid var(--accent); flex-shrink: 0; }
.contact-person strong { display: block; color: var(--white); font-size: 1.02rem; }
.contact-person span { font-size: 0.82rem; color: rgba(255,255,255,0.55); }
.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.72);
  transition: color var(--transition);
}
a.contact-item:hover { color: var(--accent); }
.contact-icon {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
}

/* ─── Réservation (Calendly) ─── */
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}
.booking-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 1rem;
  text-align: center;
}
.booking-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.08);
}
/* Chaque événement Calendly a un contenu différent (durée, description) donc
   une hauteur propre, réglée au plus près pour éviter tout défilement
   interne comme tout espace vide résiduel. */
.booking-calendly--decouverte { height: 1080px; }
.booking-calendly--collectifs { height: 1080px; }
@media (max-width: 900px) {
  .booking-grid { grid-template-columns: 1fr; max-width: 600px; gap: 2.5rem; }
}
@media (max-width: 560px) {
  .booking-calendly--decouverte { height: 1080px; }
  .booking-calendly--collectifs { height: 1080px; }
}

/* ─── Form ─── */
.contact-form {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--white);
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
}
.form-group select { cursor: pointer; }
.form-group select option { background: var(--dark-3); color: var(--white); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: 0.78rem; color: rgba(255,255,255,0.3); text-align: center; margin-top: -0.5rem; }
.form-success {
  background: rgba(232,240,24,0.1);
  border: 1px solid var(--accent);
  border-radius: 6px;
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
}

/* ─── Footer ─── */
.footer {
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-block: 3rem;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}
.footer-tagline { font-size: 0.88rem; color: rgba(255,255,255,0.35); }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem 1.5rem; }
.footer-nav a { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer-nav a:hover { color: var(--accent); }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.2); margin-top: 0.5rem; }

/* ─── FAB ─── */
.fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 52px;
  height: 52px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(232,240,24,0.4);
  z-index: 900;
  transition: transform var(--transition), box-shadow var(--transition);
}
.fab:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(232,240,24,0.5); }
.fab svg { width: 22px; height: 22px; color: var(--dark); }

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .about-image { order: -1; }
  .about-img-wrap { aspect-ratio: 4/3; }
  .about-badge {
    position: static;
    margin: 1rem auto 0;
    max-width: 100%;
  }
  .pricing-featured { transform: none; }
}

@media (max-width: 1024px) {
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
    z-index: 999;
    overflow-y: auto;
    padding-block: 2rem;
  }
  .nav-links.open { opacity: 1; pointer-events: all; }
  .nav-links a { font-size: 1.25rem; white-space: normal; text-align: center; }
  .nav-links { padding-inline: 1.5rem; }
  .dropdown-menu li a { font-size: 1rem; }
  .hamburger { display: flex; z-index: 1000; position: relative; }
  .logo { z-index: 1000; position: relative; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.25rem; }
  .stat-number { font-size: 1.4rem; }
}

@media (max-width: 700px) {
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { text-align: center; justify-content: center; }
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════
   NAV — SOCIAL ICONS & DROPDOWN
   ══════════════════════════════════════ */
.nav-social { display: flex; align-items: center; gap: 0.6rem; margin-left: 0.15rem; }
.nav-social a { color: rgba(255,255,255,0.6); display: flex; transition: color var(--transition); }
.nav-social a:hover { color: var(--accent); }
.nav-social svg { width: 18px; height: 18px; }

.has-dropdown { display: flex; align-items: center; gap: 0.3rem; position: relative; }
.dropdown-caret {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: inherit;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
  transition: color var(--transition);
}
.dropdown-caret:hover { color: var(--white); }
.dropdown-caret svg { width: 11px; height: 11px; flex-shrink: 0; transition: transform var(--transition); }
.has-dropdown:hover .dropdown-caret svg,
.has-dropdown.open .dropdown-caret svg { transform: rotate(180deg); }

.dropdown-menu {
  list-style: none;
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 280px;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 0.5rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 1001;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown.open .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li a {
  display: block;
  padding: 0.65rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  border-radius: 6px;
  color: rgba(255,255,255,0.75);
}
.dropdown-menu li a:hover { background: rgba(255,255,255,0.06); color: var(--white); }

/* ══════════════════════════════════════
   PAGE HERO (pages secondaires)
   ══════════════════════════════════════ */
.page-hero {
  background: var(--dark);
  padding-top: 10rem;
  padding-bottom: 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(46,232,160,0.12), transparent 70%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 2; }
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
/* min-height combine vh (garde une bannière correcte en hauteur/mobile) et vw
   (empêche le cadre de devenir trop large/court sur grand écran, ce qui
   forcerait le background-size:cover à zoomer énormément dans la photo). */
.page-hero--photo { min-height: max(68vh, 46vw); display: flex; align-items: center; }
/* Photo "coaching liberté" en format portrait : il lui faut un cadre bien
   plus haut que les autres pour éviter un zoom excessif sur grand écran. */
#hero-liberte { min-height: max(70vh, 74vw); }
@media (max-width: 560px) { #hero-liberte { min-height: 50vh; } }
.page-hero--photo::before {
  z-index: 1;
  background: linear-gradient(180deg, rgba(13,13,13,0.55) 0%, rgba(13,13,13,0.93) 100%);
}
@media (max-width: 560px) {
  .page-hero--photo { min-height: 50vh; }
}
.page-hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.page-hero-sub {
  max-width: 640px;
  margin-inline: auto;
  font-size: 1rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.75;
}
.page-hero-media {
  margin-top: 3rem;
  max-width: 1000px;
  margin-inline: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  position: relative;
  z-index: 1;
}
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }

/* ══════════════════════════════════════
   STEPS (bilan / plan / suivi, programme...)
   ══════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}
.step-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.step-number {
  font-family: var(--font-display);
  font-size: 2.75rem;
  color: rgba(0,0,0,0.08);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.step-card h3 { margin-bottom: 0.6rem; min-height: 2.15em; }
.step-card p { font-size: 0.9rem; color: #555; line-height: 1.7; }
.section-dark .step-card { background: var(--dark-3); border-color: rgba(255,255,255,0.08); }
.section-dark .step-number { color: rgba(255,255,255,0.08); }
.section-dark .step-card p { color: rgba(255,255,255,0.6); }

/* ══════════════════════════════════════
   PRICING TABLES (pages coaching + tarifs)
   ══════════════════════════════════════ */
.price-tables {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}
.price-table-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  overflow-x: auto;
}
.price-table-card h3 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
}
.price-table { width: 100%; border-collapse: collapse; min-width: 280px; }
.price-table th, .price-table td {
  text-align: left;
  padding: 0.65rem 0.5rem;
  font-size: 0.87rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.72);
  white-space: nowrap;
}
.price-table th {
  color: rgba(255,255,255,0.4);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}
.price-table td:last-child, .price-table th:last-child { text-align: right; }
.price-table tr:last-child td { border-bottom: none; }
.price-table tbody tr:hover td { color: var(--white); }
.price-table .unit-price { color: rgba(255,255,255,0.4); font-size: 0.78rem; }

.advantages-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.75rem 1.5rem;
  margin-top: 1.5rem;
}
.advantages-list li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.advantages-list li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; }
.section:not(.section-dark) .advantages-list li { color: #444; }

.exclusions-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.75rem 1.5rem;
  margin-top: 1.5rem;
}
.exclusions-list li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.exclusions-list li::before { content: '✗'; color: rgba(255,255,255,0.3); font-weight: 700; flex-shrink: 0; }
.section:not(.section-dark) .exclusions-list li { color: #999; }
.section:not(.section-dark) .exclusions-list li::before { color: #ccc; }

.included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  margin-top: 1rem;
  align-items: start;
}
.included-grid h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.included-card {
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  border: 1px solid;
}
.included-card.is-included { background: rgba(46,232,160,0.06); border-color: rgba(46,232,160,0.35); }
.included-card.is-excluded { background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.1); }
.included-card h3 { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1.25rem; }
.included-card .advantages-list,
.included-card .exclusions-list { margin-top: 0; }
@media (max-width: 700px) {
  .included-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ── Bannière de réduction (pages détail promos) ── */
.discount-banner {
  background: var(--dark-3);
  border: 2px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 2.75rem;
  text-align: center;
  max-width: 460px;
  margin: 2.5rem auto 0;
  box-shadow: 0 0 60px rgba(46,232,160,0.12);
}
.discount-amount {
  font-family: var(--font-display);
  font-size: 4.5rem;
  color: var(--accent);
  line-height: 1;
}
.discount-banner p { color: rgba(255,255,255,0.65); margin-top: 0.75rem; font-size: 0.95rem; line-height: 1.6; }

/* ── Offre flash (séance d'essai, promos limitées dans le temps) ── */
.flash-offer {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 55%, rgba(46,232,160,0.18) 160%);
  border: 2px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 3.5rem) clamp(1.75rem, 5vw, 3rem);
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
  animation: flashPulse 2.4s ease-in-out infinite;
}
.flash-offer::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: -60%;
  width: 45%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.14), transparent);
  animation: flashShine 3.2s ease-in-out infinite;
}
.flash-offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--accent);
  color: var(--dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1.1rem;
  border-radius: 20px;
  margin-bottom: 1.4rem;
  animation: flashBadgePulse 1.5s ease-in-out infinite;
}
.flash-offer-title {
  color: var(--white);
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  margin-bottom: 1rem;
  line-height: 1.05;
}
.flash-offer-title sup { font-size: 0.5em; top: -0.5em; }
.flash-offer-text {
  color: rgba(255,255,255,0.7);
  font-size: 1.02rem;
  max-width: 480px;
  margin: 0 auto 1.85rem;
  line-height: 1.6;
}
.flash-offer-btn { font-size: 0.95rem; padding: 1rem 2.25rem; }

@keyframes flashPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(46,232,160,0.25), 0 20px 60px rgba(46,232,160,0.12); }
  50% { box-shadow: 0 0 0 8px rgba(46,232,160,0), 0 20px 80px rgba(46,232,160,0.3); }
}
@keyframes flashBadgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.07); }
}
@keyframes flashShine {
  0% { left: -60%; }
  55% { left: 130%; }
  100% { left: 130%; }
}
@media (prefers-reduced-motion: reduce) {
  .flash-offer, .flash-offer::before, .flash-offer-badge { animation: none; }
}
@media (max-width: 480px) {
  .flash-offer { padding: 2.25rem 1.5rem; }
}

/* ── Grille de bénéfices ("Pourquoi choisir...") ── */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}
.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem;
  transition: border-color var(--transition), transform var(--transition);
}
.benefit-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.benefit-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  flex-shrink: 0;
  background: rgba(46,232,160,0.14);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefit-icon svg { width: 20px; height: 20px; }
.benefit-card p { font-size: 0.94rem; color: rgba(255,255,255,0.85); line-height: 1.5; margin: 0; font-weight: 600; }
.section:not(.section-dark) .benefit-card { background: var(--white); border-color: rgba(0,0,0,0.07); }
.section:not(.section-dark) .benefit-card p { color: #333; }

/* ── Callout "Le petit plus" ── */
.tip-callout {
  max-width: 760px;
  margin: 2.5rem auto 0;
  background: rgba(46,232,160,0.07);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
}
.tip-badge {
  display: inline-block;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}
.tip-callout p { font-size: 0.95rem; color: rgba(255,255,255,0.75); line-height: 1.7; margin: 0; }
.section:not(.section-dark) .tip-callout p { color: #444; }

/* ══════════════════════════════════════
   PROMOTIONS (parrainage / engagement / duo / liberté)
   ══════════════════════════════════════ */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.promo-card {
  background: var(--dark-4);
  border: 2px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  animation: flashPulse 2.4s ease-in-out infinite;
  transition: transform var(--transition), box-shadow var(--transition);
}
.promo-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(46,232,160,0.16) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--transition);
}
.promo-card::after {
  content: '';
  position: absolute;
  z-index: 0;
  top: 0;
  left: -60%;
  width: 45%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.16), transparent);
  animation: flashShine 3.6s ease-in-out infinite;
  pointer-events: none;
}
.promo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.35);
}
.promo-card:hover::before { opacity: 1; }
.promo-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(46,232,160,0.12);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  position: relative;
  z-index: 1;
}
.promo-icon svg { width: 24px; height: 24px; }
.promo-badge {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  z-index: 1;
  display: inline-block;
  background: var(--accent);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  animation: flashBadgePulse 1.6s ease-in-out infinite;
}
.promo-card h4 { position: relative; z-index: 1; font-family: var(--font-display); font-size: 1.4rem; color: var(--white); margin-bottom: 0.5rem; letter-spacing: 0.02em; }
.promo-card p { position: relative; z-index: 1; font-size: 0.87rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 0.85rem; }
.promo-card a { position: relative; z-index: 1; font-size: 0.82rem; font-weight: 700; color: var(--accent); }
.promo-card a:hover { color: var(--accent-dim); }
@media (prefers-reduced-motion: reduce) {
  .promo-card, .promo-card::after, .promo-badge { animation: none; }
}

/* ══════════════════════════════════════
   SECTIONS AVEC PHOTO DE FOND (page tarifs)
   ══════════════════════════════════════ */
.section-photo { position: relative; overflow: hidden; }
.section-photo-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.24;
}
.section-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,13,13,0.8) 0%, rgba(13,13,13,0.95) 100%);
}
.section-photo > .container { position: relative; z-index: 1; }

/* ══════════════════════════════════════
   TÉMOIGNAGES
   ══════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testimonial-stars { color: var(--accent-dim); font-size: 0.95rem; letter-spacing: 0.15em; }
.testimonial-card p { font-size: 0.92rem; color: #444; line-height: 1.75; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; margin-top: auto; }
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.88rem; }
.testimonial-author span { font-size: 0.78rem; color: var(--muted); }

/* ══════════════════════════════════════
   CTA BANNER (pages coaching)
   ══════════════════════════════════════ */
.cta-banner {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.section:not(.section-dark) .cta-banner { border-top-color: rgba(0,0,0,0.08); }
.cta-banner p { margin-bottom: 1.25rem; font-size: 0.95rem; color: rgba(255,255,255,0.6); }
.section:not(.section-dark) .cta-banner p { color: #555; }

/* ══════════════════════════════════════
   FOOTER — CONTACT & SOCIAL
   ══════════════════════════════════════ */
.footer-contact { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
.footer-contact a { font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-contact a:hover { color: var(--accent); }
.footer-social { display: flex; gap: 0.85rem; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--accent); color: var(--dark); }
.footer-social svg { width: 17px; height: 17px; }

/* ══════════════════════════════════════
   PLACEHOLDER MEDIA (images non récupérées)
   ══════════════════════════════════════ */
.img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: repeating-linear-gradient(135deg, var(--dark-3), var(--dark-3) 10px, var(--dark-4) 10px, var(--dark-4) 20px);
  color: rgba(255,255,255,0.4);
  text-align: center;
  padding: 1.5rem;
  border-radius: inherit;
}
.section:not(.section-dark) .img-placeholder {
  background: repeating-linear-gradient(135deg, #ececea, #ececea 10px, #e2e1db 10px, #e2e1db 20px);
  color: #999;
}
.img-placeholder svg { width: 32px; height: 32px; opacity: 0.6; }
.img-placeholder span { font-size: 0.72rem; letter-spacing: 0.04em; line-height: 1.5; max-width: 220px; }

/* ══════════════════════════════════════
   RÉSEAUX SOCIAUX (flux + boutons)
   ══════════════════════════════════════ */
.social-feed-wrap {
  max-width: 1040px;
  margin: 0 auto 1.25rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.social-feed-mask {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 64px;
  background: var(--dark);
  pointer-events: none;
}
/* Tablette : le widget est bridé par le padding du .container avant même
   d'atteindre son max-width ; on annule ce padding pour qu'il s'élargisse
   davantage sur cette plage. */
@media (min-width: 561px) and (max-width: 1024px) {
  .social-feed-wrap {
    max-width: none;
    margin-inline: clamp(-3rem, -5vw, -1rem);
  }
}
/* Ordinateur : on remonte le plafond de largeur, jusqu'à celui du .container. */
@media (min-width: 1025px) {
  .social-feed-wrap { max-width: 1160px; }
}
/* En format mobile, le widget laisse un grand vide entre la dernière photo et
   le badge (en plus du badge lui-même) : on rogne ce vide en remontant
   l'iframe dans son cadre (overflow:hidden sur .social-feed-wrap), le masque
   ci-dessus se chargeant du badge résiduel. Marge boutons inchangée ici. */
@media (max-width: 560px) {
  .social-feed-wrap { margin-bottom: 2.5rem; }
  .social-feed-wrap iframe { margin-bottom: -96px; }
  .social-feed-mask { height: 24px; }
}
.social-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.social-cta-buttons .btn svg { flex-shrink: 0; }

/* ══════════════════════════════════════
   RESPONSIVE — ajouts
   ══════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav-social { display: none; }
  .has-dropdown { flex-direction: column; align-items: center; width: 100%; gap: 0.5rem; }
  .has-dropdown .dropdown-caret { color: rgba(255,255,255,0.6); font-size: 1.25rem; }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: hidden;
    max-height: 0;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    min-width: 0;
    width: 100%;
  }
  .has-dropdown.open .dropdown-menu { visibility: visible; max-height: 400px; padding: 0.5rem 0 0; }
  .dropdown-menu li a { padding: 0.5rem 0; text-align: center; }
  .nav-links .nav-social { display: flex; margin-top: 1.5rem; }
  .price-tables { grid-template-columns: 1fr; }
  .advantages-list { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .page-hero-media { aspect-ratio: 16/9; }
}
