/* ===============================
   1. CSS VARIABLES (ROOT)
   =============================== */
/* MODIFICATION: Ajout de --radius-lg et --shadow-lg pour cohérence */
:root {
  --bg0: #fbf8ff;
  --bg1: #f2fbff;
  --card: #ffffffcc;
  --stroke: #ffffff70;
  --text: #1f2430;
  --muted: #5c6475;
  --brand: #ff7a18;
  --brand2: #ffb14a;
  --accent: #7c4dff;
  --accent2: #2dd4bf;
  --shadow: 0 14px 40px rgba(31, 36, 48, 0.1);
  --shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.12);
  --radius: 22px;
  --radius-lg: 36px;
  --max: 1180px;
}

/* ===============================
   2. RESET & BASE
   =============================== */
/* SUPPRESSION: Pas de doublons ici, tout est propre */
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    "Apple Color Emoji",
    "Segoe UI Emoji";
  color: var(--text);
  background:
    radial-gradient(
      1200px 600px at 15% 10%,
      rgba(124, 77, 255, 0.16),
      transparent 55%
    ),
    radial-gradient(
      1000px 500px at 85% 18%,
      rgba(45, 212, 191, 0.18),
      transparent 60%
    ),
    radial-gradient(
      900px 500px at 55% 95%,
      rgba(255, 177, 74, 0.18),
      transparent 55%
    ),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  overflow-x: hidden;
}

/* ===============================
   3. GLOBAL UTILITIES
   =============================== */
a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px;
}

/* MODIFICATION: Glass utility consolidé, suppression du doublon */
.glass {
  background: var(--card);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ===============================
   4. HEADER & NAVIGATION
   =============================== */
/* MODIFICATION: Header consolidé - suppression des 3 définitions de .top-banner */
.top-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 11000;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  color: #1b120a;
  font-weight: 700;
  height: 40px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.ticker {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.ticker__track {
  display: inline-flex;
  gap: 44px;
  padding-left: 100%;
  animation: marquee 16s linear infinite;
  will-change: transform;
}

.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  opacity: 0.95;
  font-size: 13.5px;
  letter-spacing: 0.2px;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(27, 18, 10, 0.35);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.top-banner:hover .ticker__track {
  animation-play-state: paused;
}

/* Header principal */
.header-clean {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  z-index: 10000;
}

/* MODIFICATION: Body padding ajusté pour header fixe */
body {
  padding-top: 90px;
}

/* MODIFICATION: Gestion bannière avec classe has-banner */
body.has-banner {
  padding-top: 130px; /* 40px bannière + 90px header */
}

body.has-banner .header-clean {
  top: 40px;
}

.header-top-clean {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 18px 0 14px;
}

.brand-clean {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 17px;
  color: #111;
}

/* MODIFICATION: Logo consolidé - suppression doublon */
.logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-image: url("../images/image_logo.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
  image-rendering: auto;
}

/* Navigation */
.nav-inline {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
  font-weight: 500;
  margin-left: 80px;
}

.nav-inline a,
.nav-mega > .nav-link {
  color: #6b6b6b;
  font-weight: 500;
  transition: 0.2s ease;
}

.nav-inline a:hover,
.nav-mega > .nav-link:hover {
  color: #000;
}

.nav-mega {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-mega > .nav-link {
  display: flex;
  align-items: center;
  padding: 10px 0;
}

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
  z-index: 20000;
}

.nav-mega:hover .mega-menu,
.nav-mega:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
}

.mega-item {
  position: relative;
  padding: 16px;
  border-radius: 22px;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  background: linear-gradient(135deg, #ffffff, #f4f7ff);
  border: 2px solid #8c7dff;
  color: #2c2c2c;
  transition: 0.25s ease;
}

.mega-item:hover {
  background: linear-gradient(135deg, #eafcff, #c9f6ff);
  border-color: #60d6ff;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(100, 200, 255, 0.25);
}

/* Menu mobile toggle */
.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
}

/* ===============================
   5. MOBILE MENU SHEET
   =============================== */
.sheet {
  position: fixed;
  inset: 0;
  background: rgba(15, 18, 26, 0.25);
  display: none;
  z-index: 10000;
  padding: 18px;
}

.sheet.open {
  display: block;
}

.sheet-panel {
  max-width: 520px;
  margin: 70px auto 0;
  padding: 20px;
}

.sheet-panel a {
  display: block;
  padding: 12px 14px;
  border-radius: 16px;
  font-weight: 800;
  color: var(--text);
}

.sheet-panel a:hover {
  background: rgba(255, 255, 255, 0.7);
}
.sheet-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.sheet-top .brand {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* logo aligné à gauche */
  gap: 10px;
  width: 100%;
}
.x {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.92);
  cursor: pointer;
  font-weight: 900;
}

/* ===============================
   6. BUTTONS
   =============================== */
/* MODIFICATION: Tous les boutons consolidés ici, suppression des 4 doublons */
.btn {
  border: 0;
  cursor: pointer;
  padding: 11px 14px;
  border-radius: 16px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    opacity 0.15s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn.primary {
  color: #0b0b10;
  background: linear-gradient(
    90deg,
    rgba(255, 122, 24, 0.95),
    rgba(255, 177, 74, 0.95)
  );
  box-shadow: 0 12px 26px rgba(255, 122, 24, 0.18);
}

/* MODIFICATION: .btn.ghost consolidé avec hover states */
.btn.ghost {
  background: #f4f2f7;
  color: #3f3d8f;
  border: 2px solid #4b49a8;
  border-radius: 40px;
  padding: 14px 32px;
  font-weight: 600;
  transition: 0.25s ease;
}

.btn.ghost:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

/* Bouton expert spécifique */
.expert-btn {
  background-color: #e9e6fb !important;
  color: #6a3df0 !important;
  border: 1px solid #dcd4ff !important;
  border-radius: 16px;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 15px;
  box-shadow: none;
  transition: 0.2s ease;
}

.expert-btn:hover {
  background-color: #e2ddfb !important;
}

/* ===============================
   7. HERO SECTION
   =============================== */
/* MODIFICATION: Hero consolidé - suppression des 5 définitions de .hero-slider */
.hero-slider {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: clamp(320px, 44vh, 460px);
  margin-top: 16px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
  background: #0b0b10; /* évite flash blanc */
}

.hero--full {
  position: relative;
  left: 50%;
  margin-left: -50vw;
  width: 100vw;
  max-width: none;
  padding: 0;
}

.hero--full .hero-slider {
  width: 100%;
  margin: 0;
  border-radius: 0;
  height: 80vh;
}

.hero--full .hero-slider .hero-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-slider .slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slider .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: translateX(0) scale(1.03);
  transition:
    opacity 900ms ease,
    transform 900ms ease;
  will-change: opacity, transform;
  z-index: 1;
}

.hero-slider .slide.is-active {
  opacity: 1;
  animation: kenburns 6s ease-out both;
}

@keyframes kenburns {
  from {
    transform: translateX(0) scale(1.03);
  }
  to {
    transform: translateX(0) scale(1.1);
  }
}

.hero-slider .veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.35),
    rgba(0, 0, 0, 0.05),
    transparent
  );
}

.hero-slider .content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  align-items: center;
  padding: 26px;
}

.hero--full .hero-slider .content {
  justify-items: center;
  align-items: center;
  text-align: center;
}

/* Hero text elements */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: rgba(31, 36, 48, 0.85);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.85);
  padding: 9px 14px;
  border-radius: 999px;
  width: fit-content;
  font-size: 15px;
}

.spark {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(
    180deg,
    rgba(124, 77, 255, 1),
    rgba(45, 212, 191, 1)
  );
  box-shadow: 0 0 0 6px rgba(124, 77, 255, 0.1);
}

/* MODIFICATION: h1 hero consolidé - suppression doublon */
.hero h1 {
  margin: 14px 0 10px;
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.6px;
}

/* MODIFICATION: .hero-title-clip consolidé - suppression des 3 doublons */
.hero-title-clip {
  margin: 14px 0 10px;
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.03;
  letter-spacing: -0.6px;
  font-weight: 900;
  background-size: 200% 200%;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-stroke: 0px transparent;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
}

@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero-title-clip {
    color: #fff;
    -webkit-text-fill-color: initial;
    -webkit-text-stroke: 0;
  }
}

.sub {
  margin: 0 0 18px;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.6;
  max-width: 60ch;
}

.hero--full .sub {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.hero--full .cta,
.hero--full .badges {
  justify-content: center;
}

/* Hero on image (transparent) */
.hero-on-image,
.hero-slider .hero-left.glass {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  padding: 0 !important;
}

.hero-slider .hero-left::before {
  display: none !important;
}

.hero-on-image .kicker,
.hero-on-image .badge,
.hero-on-image .btn.ghost {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.85);
}

.hero-on-image p {
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

/* Flowing title animation */
.flowing-title {
  position: relative;
  display: inline-block;
}

.flowing-title .ch {
  position: relative;
  display: inline-block;
  color: transparent;
}

.flowing-title .ch::after {
  content: attr(data-char);
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #7c4dff, #4f8dfd, #2dd4bf);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  pointer-events: none;
}

.flowing-title.play .ch::after {
  animation: letterWave 700ms ease forwards;
  animation-delay: var(--delay);
}

.flowing-title .sp {
  display: inline-block;
  width: 0.35em;
}

@keyframes letterWave {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  40% {
    opacity: 1;
    transform: translateY(-3px);
    text-shadow:
      0 0 14px rgba(255, 255, 255, 0.95),
      0 0 32px rgba(255, 255, 255, 0.75),
      0 0 58px rgba(255, 255, 255, 0.55);
  }
  100% {
    opacity: 0;
    transform: translateY(0);
  }
}

/* ===============================
   8. HERO CTA ANIMATIONS
   =============================== */
/* MODIFICATION: Animations consolidées - suppression des 3 versions */
.hero .cta .btn {
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  will-change: transform, box-shadow;
  padding: 14px 22px;
  border-radius: 18px;
  font-size: 16px;
}

.hero .cta .btn.primary {
  background-size: 200% 200%;
  animation:
    heroPulse 3.6s ease-in-out infinite,
    gradientMove 6s ease infinite;
  box-shadow:
    0 14px 30px rgba(255, 122, 24, 0.22),
    0 6px 0 rgba(160, 70, 0, 0.22);
}

.hero .cta .btn.primary::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: inherit;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.95),
    rgba(255, 255, 255, 0) 62%
  );
  filter: blur(16px);
  opacity: 0;
  animation: heroGlow 3.6s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

.hero .cta .btn.primary::after {
  content: "";
  position: absolute;
  top: -45%;
  left: -80%;
  width: 55%;
  height: 220%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.75),
    rgba(255, 255, 255, 0)
  );
  transform: rotate(18deg);
  opacity: 0;
  animation: heroSheen 3.6s ease-in-out infinite;
  pointer-events: none;
}

.hero .cta .btn.ghost {
  animation: heroPulseSoft 4.2s ease-in-out infinite;
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.hero .cta .btn.ghost::before {
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: inherit;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 255, 255, 0.75),
    rgba(255, 255, 255, 0) 65%
  );
  filter: blur(14px);
  opacity: 0;
  animation: heroGlowSoft 4.2s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

.hero .cta .btn.ghost::after {
  content: "";
  position: absolute;
  top: -45%;
  left: -80%;
  width: 55%;
  height: 220%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.45),
    rgba(255, 255, 255, 0)
  );
  transform: rotate(18deg);
  opacity: 0;
  animation: heroSheenSoft 4.2s ease-in-out infinite;
  pointer-events: none;
}

.hero .cta .btn:hover {
  animation-play-state: paused;
  transform: translateY(-3px) scale(1.12);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.hero .cta .btn:active {
  transform: translateY(2px) scale(0.96);
}

/* Keyframes */
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes heroPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.14);
  }
}

@keyframes heroPulseSoft {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@keyframes heroGlow {
  0%,
  100% {
    opacity: 0;
  }
  45%,
  55% {
    opacity: 1;
  }
}

@keyframes heroGlowSoft {
  0%,
  100% {
    opacity: 0;
  }
  45%,
  55% {
    opacity: 0.7;
  }
}

@keyframes heroSheen {
  0% {
    transform: translateX(0) rotate(18deg);
    opacity: 0;
  }
  60% {
    opacity: 0.95;
  }
  100% {
    transform: translateX(280%) rotate(18deg);
    opacity: 0;
  }
}

@keyframes heroSheenSoft {
  0% {
    transform: translateX(0) rotate(18deg);
    opacity: 0;
  }
  65% {
    opacity: 0.7;
  }
  100% {
    transform: translateX(260%) rotate(18deg);
    opacity: 0;
  }
}

/* ===============================
   9. BADGES
   =============================== */
.badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
  color: rgba(31, 36, 48, 0.78);
  font-weight: 750;
  font-size: 13px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.ico {
  width: 28px;
  height: 28px;
  border-radius: 12px;
  background: rgba(124, 77, 255, 0.12);
  display: grid;
  place-items: center;
  border: 1px solid rgba(124, 77, 255, 0.18);
}

/* ===============================
   10. CARDS & GRID SYSTEM
   =============================== */
.card {
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 34px rgba(31, 36, 48, 0.06);
}

.card h3 {
  margin: 6px 0;
}

.card.pad {
  padding: 35px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-right {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  justify-content: center;
}

.grid.cols-2 {
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* ===============================
   11. PRODUCT CARDS
   =============================== */
/* MODIFICATION: .product consolidé - suppression des 2 doublons */
.product {
  padding: 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 16px 40px rgba(31, 36, 48, 0.08);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.product:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(31, 36, 48, 0.12);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  background: linear-gradient(
    90deg,
    rgba(255, 122, 24, 0.95),
    rgba(255, 177, 74, 0.95)
  );
  color: #1b120a;
  font-weight: 900;
  font-size: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 12px;
}

.thumb {
  height: 320px;
  overflow: hidden;
  border-radius: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.thumb img {
  width: 55%;
  height: auto;
}

.product h4 {
  margin: 0 0 6px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 10px;
  font-weight: 900;
}

.price s {
  color: rgba(92, 100, 117, 0.7);
  font-weight: 800;
}

.price b {
  color: #0b0b10;
  font-size: 18px;
}

.product .meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.pill {
  font-size: 12px;
  font-weight: 800;
  color: rgba(31, 36, 48, 0.78);
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(124, 77, 255, 0.09);
  border: 1px solid rgba(124, 77, 255, 0.14);
}

.product .card-thumb {
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
  padding-top: 14px;
}

.product .card-thumb img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 26px rgba(31, 36, 48, 0.1);
  opacity: 0.95;
}

/* Offres section */
#offres {
  padding-top: 24px;
}

#offres .section-title {
  justify-content: center;
  text-align: center;
}

#offres .section-title > div {
  width: 100%;
}

#offres .grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 320px));
  justify-content: center;
  gap: 18px;
}

.offres-card {
  width: min(1100px, calc(100% - 36px));
  margin: 22px auto 26px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 26px;
  padding: 18px;
  border-radius: 30px;
  align-items: center;
}

.offres-card__media {
  border-radius: 26px;
  overflow: hidden;
  min-height: 320px;
}

.offres-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offres-card__content h3 {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 38px);
  line-height: 1.12;
}

.offres-card__list {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.offres-card__cta {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

/* ===============================
   12. STATS
   =============================== */
.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
}

.stat {
  padding: 16px;
  border-radius: 22px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.75),
    rgba(255, 255, 255, 0.6)
  );
  border: 1px solid rgba(255, 255, 255, 0.95);
}

.stat b {
  display: block;
  font-size: 20px;
  margin-bottom: 4px;
}

.stat span {
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}

/* ===============================
   13. SECTIONS & TITLES
   =============================== */
section {
  padding: 32px 0;
}

.section {
  padding: 80px 0;
}

.section-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin: 18px 0 20px;
}

/* MODIFICATION: Centrage consolidé - suppression doublon */
.section-title {
  justify-content: center;
  text-align: center;
}

.section-title > div {
  width: 100%;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: -0.3px;
}

.section-title p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

.small {
  color: var(--muted);
  font-weight: 650;
  line-height: 1.5;
  margin: 0;
  font-size: 14px;
}

/* ===============================
   14. FAQ
   =============================== */
.faq {
  padding: 28px;
}

.faq h2 {
  margin: 0 0 16px;
  text-align: center;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

details {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 22px;
  padding: 14px 18px;
  transition: 0.2s ease;
}

summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-weight: 900;
}

summary::-webkit-details-marker {
  display: none;
}

.chev {
  width: 12px;
  height: 12px;
  border-right: 2px solid #0f766e;
  border-bottom: 2px solid #0f766e;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  margin-left: auto;
}

details[open] .chev {
  transform: rotate(-135deg);
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.6;
}

/* ===============================
   15. EXPERT SECTION
   =============================== */
.expert-section {
  padding: 80px 0;
  display: flex;
  justify-content: center;
}

.expert-card {
  width: min(1150px, 100%);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #f5f3f7;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.08);
}

.expert-media {
  min-height: 480px;
}

.expert-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expert-content {
  padding: 70px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.expert-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  color: #7c4dff;
  margin-bottom: 18px;
}

.expert-content h2 {
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.15;
  margin: 0 0 20px;
}

.expert-content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 28px;
}

.expert-list {
  list-style: none;
  padding: 0;
  margin: 0 0 34px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.expert-list li {
  position: relative;
  padding-left: 26px;
  font-weight: 500;
  color: #444;
}

.expert-list li::before {
  content: "+";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(45, 212, 191, 0.15);
  color: #2dd4bf;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===============================
   16. ABOUT PAGE
   =============================== */
.about-intro {
  padding: 60px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
}

.about-text .lead {
  font-size: 18px;
  font-weight: 500;
  color: #444;
  line-height: 1.8;
}

.about-text p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 18px;
}

/* ===============================
   17. NEWSLETTER
   =============================== */
.newsletter-section {
  padding: 70px 0;
}

.newsletter-card {
  padding: 50px 40px;
  border-radius: 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter-card h2 {
  font-size: clamp(26px, 3vw, 38px);
  margin-bottom: 12px;
}

.newsletter-card p {
  color: #555;
  font-weight: 500;
  margin-bottom: 26px;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 300px;
  margin: 0 auto;
}

/* MODIFICATION: Input consolidé - suppression des 3 doublons */
.newsletter-form input,
.newsletter-section .newsletter-form input[type="email"] {
  padding: 14px 20px;
  border-radius: 30px;
  border: 2px solid #7c4dff;
  background: transparent;
  min-width: 260px;
  width: 100%;
  font-size: 15px;
  text-align: center;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.newsletter-form input:focus {
  border-color: #7c4dff;
  outline: none;
}

.email-glow {
  position: relative;
  display: inline-block;
}

.email-glow input {
  padding: 16px 22px;
  border-radius: 40px;
  border: 2px solid #7c4dff;
  background: transparent;
  min-width: 280px;
  font-size: 15px;
  text-align: center;
  outline: none;
  position: relative;
  z-index: 2;
}

.email-glow::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 40px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.9),
    transparent
  );
  filter: blur(8px);
  animation: energySpin 3s linear infinite;
}

@keyframes energySpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.newsletter-note {
  margin-top: 18px;
  font-size: 13px;
  opacity: 0.75;
}

.newsletter-consent {
  font-size: 0.85rem;
  opacity: 0.75;
  margin-top: 10px;
}

/* ===============================
   18. CONTACT PAGE
   =============================== */
/* MODIFICATION: Contact styles consolidés ici */
.contact .h1 {
  font-size: 36px;
  margin: 10px 0 15px;
}

.contact .h2 {
  font-size: 24px;
  margin-bottom: 15px;
}

.contact .kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #7c4dff;
  font-weight: 600;
}

.p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Formulaire */
.form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 20px;
}

.input,
.textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid #ddd;
  font-size: 15px;
  background: #fff;
  transition: all 0.2s ease;
}

.input:focus,
.textarea:focus {
  outline: none;
  border-color: #7c4dff;
  box-shadow: 0 0 0 3px rgba(124, 77, 255, 0.15);
}

.textarea {
  min-height: 130px;
  resize: vertical;
}

.form .btn {
  align-self: flex-start;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
}

/* Note */
.note {
  background: linear-gradient(
    135deg,
    rgba(124, 77, 255, 0.07),
    rgba(45, 212, 191, 0.07)
  );
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(124, 77, 255, 0.15);
  font-size: 14px;
  line-height: 1.6;
}

.note strong {
  color: #333;
}

/* Contact info grid */
.contact-info-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-size: 15px;
  margin-bottom: 3px;
}

.contact-item p {
  margin: 0;
  font-size: 14px;
  color: #555;
}

.facebook-icon svg {
  width: 35px;
  height: 35px;
}

.facebook-icon svg path {
  fill: #1877f2;
}

.contact-item a {
  color: #1877f2;
  font-weight: 600;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* Place card */
.place-card {
  max-width: 600px;
  margin: 60px auto;
  padding: 26px 30px;
}

.place-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
}

.place-ico {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.place-title {
  font-weight: 700;
  font-size: 16px;
}

.place-sub {
  font-size: 14px;
  color: #666;
}

.place-btn {
  margin-left: 10px;
}

/* ===============================
   19. VIDEO SECTIONS
   =============================== */
.video-hero {
  display: flex;
  justify-content: center;
  padding: 80px 0;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.video-wrapper video {
  width: 100%;
  display: block;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: rgba(0, 0, 0, 0.25);
  color: white;
  padding: 40px;
}

.video-overlay h1 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 25px;
}

.video-btn {
  background: #2ea7df;
  border: none;
  padding: 14px 28px;
  border-radius: 4px;
  font-size: 16px;
  color: white;
  cursor: pointer;
  transition: 0.25s;
}

.video-btn:hover {
  background: #1f8fc2;
}

/* Video testimonials */
.video-testimonials {
  margin-top: 70px;
  text-align: center;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.video-card video {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.video-card p {
  margin-top: 10px;
  font-weight: 600;
}

/* ===============================
   20. TESTIMONIALS
   =============================== */
.testimonials {
  padding: 80px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}

.testimonial-card {
  padding: 28px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 50px rgba(31, 36, 48, 0.08);
  transition: 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(31, 36, 48, 0.15);
}

.stars {
  color: #f5b301;
  font-size: 18px;
  margin-bottom: 14px;
  letter-spacing: 3px;
}

.testimonial-text {
  font-style: italic;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 22px;
}

.testimonial-footer {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.testimonial-video {
  margin-top: 18px;
}

.testimonial-video video {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.extra-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  max-width: 1500px;
  margin: 40px auto;
  padding: 0 18px;
}

.extra-quote {
  width: 100%;
  margin-bottom: 18px;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  font-size: 14px;
  color: #444;
}

.extra-quote p {
  margin: 0 0 6px 0;
}

.extra-quote span {
  font-size: 13px;
  color: #777;
}

.more-testimonials {
  display: block;
  width: fit-content;
  margin: 50px auto 0;
  padding: 12px 26px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-weight: 600;
  color: #3b3b8f;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  pointer-events: none;
}

/* ===============================
   21. FOOTER
   =============================== */
/* MODIFICATION: Footer consolidé - suppression des 3 doublons */
.site-footer {
  position: relative;
  left: 50%;
  margin-left: -50vw;
  width: 100vw;
  background:
    radial-gradient(
      800px 400px at 20% 30%,
      rgba(124, 77, 255, 0.25),
      transparent 60%
    ),
    radial-gradient(
      900px 500px at 80% 70%,
      rgba(45, 212, 191, 0.18),
      transparent 60%
    ),
    linear-gradient(135deg, #2e3fa3, #1d2c7a);
  color: #ffffff;
  padding: 80px 0 40px;
  margin-top: 120px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 60px;
  align-items: flex-start;
}

.footer-brand {
  max-width: 320px;
}

.footer-brand h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.footer-brand p {
  margin: 0 0 18px;
  opacity: 0.9;
  font-size: 14px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column h4 {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 700;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: 0.2s ease;
}

.footer-column a:hover {
  color: #ffffff;
}

.footer-newsletter {
  justify-self: end;
  max-width: 340px;
}

.footer-newsletter h4 {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 700;
}

.footer-newsletter p {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 16px;
}

.footer-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-form input {
  padding: 14px 18px;
  border-radius: 30px;
  border: none;
  font-size: 14px;
}

.footer-form button {
  padding: 14px;
  border-radius: 30px;
  border: none;
  background: white;
  color: #2c3e8f;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

.footer-form button:hover {
  background: #f0f0f0;
}

/* MODIFICATION: Footer social consolidé - suppression doublon */
.footer-social {
  margin-top: 18px;
  display: flex;
  justify-content: flex-start;
}

@media (max-width: 767px) {
  .footer-social {
    justify-content: center;
  }
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  transition: 0.25s ease;
}

.footer-social a:hover {
  transform: scale(1.15);
}

.footer-social svg {
  width: 38px;
  height: 38px;
  fill: #ffffff;
}

.footer-divider {
  width: 100%;
  height: 1px;
  margin: 50px 0 30px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  font-size: 14px;
  opacity: 0.8;
  white-space: nowrap;
}

/* Footer contact structure (page contact) */
.footer-contact-title {
  text-align: center;
  margin-bottom: 40px;
}

.footer-contact-title h2 {
  font-size: 30px;
  font-weight: 700;
}

.footer-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

/* ===============================
   22. POPUPS & NOTIFICATIONS
   =============================== */
/* Sale popup */
.sale-popup {
  position: fixed;
  bottom: 25px;
  left: 25px;
  background: linear-gradient(145deg, #0f172a, #1e293b);
  color: white;
  padding: 16px 20px;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 280px;
  max-width: 340px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 9999;
}
.sale-popup,
.discount-trigger {
  pointer-events: none;
}

.sale-popup.show {
  transform: translateY(0);
  opacity: 1;
}

.popup-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.popup-content strong {
  display: block;
  font-size: 14px;
}

.popup-content span {
  font-size: 13px;
  opacity: 0.9;
}

.popup-content small {
  display: block;
  font-size: 12px;
  opacity: 0.6;
  margin-top: 4px;
}

/* Discount popup */
.discount-trigger {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  cursor: pointer;
  background: linear-gradient(135deg, #2dd4bf, #14b8a6);
  color: white;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  opacity: 0;
  transform: scale(0.8);
  transition: 0.4s ease;
}

.discount-trigger.show {
  opacity: 1;
  transform: scale(1);
}

.discount-trigger:hover {
  transform: scale(1.1);
}

.discount-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 10000;
}

.discount-popup.active {
  opacity: 1;
  visibility: visible;
}

.discount-box {
  background: linear-gradient(145deg, #1e293b, #0f172a);
  color: white;
  padding: 40px;
  border-radius: 20px;
  width: 90%;
  max-width: 420px;
  text-align: center;
  position: relative;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.4);
}

.discount-box h3 {
  margin-bottom: 16px;
}

.discount-box p {
  opacity: 0.85;
  line-height: 1.6;
}

.discount-code {
  margin: 25px 0;
  padding: 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 2px;
}

.discount-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: transparent;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
}

/* ===============================
   23. RESPONSIVE - TABLET (768px - 1023px)
   =============================== */
@media (max-width: 1023px) {
  .grid.cols-2 {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .offres-card {
    grid-template-columns: 1fr;
  }

  .offres-card__media {
    min-height: 220px;
  }

  .expert-card {
    grid-template-columns: 1fr;
  }

  .expert-media {
    min-height: 300px;
  }

  .expert-content {
    padding: 40px 30px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-newsletter {
    justify-self: start;
    grid-column: 1 / -1;
    max-width: 100%;
  }

  .extra-testimonials {
    column-count: 3;
  }

  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===============================
   24. RESPONSIVE - MOBILE (up to 767px)
   =============================== */
@media (max-width: 767px) {
  :root {
    --radius: 18px;
    --radius-lg: 24px;
  }

  body {
    padding-top: 70px;
    font-size: 15px;
  }

  body.has-banner {
    padding-top: 110px;
  }

  .header-top-clean {
    grid-template-columns: auto 1fr auto; /* logo | espace | hamburger */
    padding: 10px 0;
  }

  .menu-toggle {
    grid-column: 3;
    justify-self: end;
  }

  .brand-clean span:not(.logo) {
    font-size: 14px;
    max-width: 150px;
    line-height: 1.2;
  }

  .logo {
    width: 40px;
    height: 40px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-inline {
    display: none;
  }

  .hero-slider .content {
    padding: 16px;
  }

  .hero h1,
  .hero-title-clip {
    font-size: clamp(26px, 8vw, 36px);
  }

  .cta {
    flex-direction: column;
    gap: 10px;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .card.pad {
    padding: 24px 20px;
  }

  .grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .product {
    min-height: auto;
  }

  .thumb {
    height: 200px;
  }

  .thumb img {
    width: 70%;
  }

  .section-title {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .testimonial-card {
    padding: 20px;
  }

  .extra-testimonials {
    column-count: 1;
    margin: 30px auto;
    padding: 0 18px;
  }

  .video-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .video-hero {
    padding: 40px 0;
  }

  .video-overlay {
    padding: 20px;
  }

  .video-overlay h1 {
    font-size: 28px;
  }

  .newsletter-card {
    padding: 30px 20px;
  }

  .email-glow input,
  .newsletter-form input[type="email"] {
    min-width: 100%;
    width: 100%;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .contact-icon {
    margin: 0 auto;
  }

  .place-row {
    flex-direction: column;
    gap: 12px;
  }

  .place-btn {
    margin-left: 0;
    width: 100%;
  }

  .site-footer {
    padding: 50px 0 30px;
    margin-top: 60px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-column {
    align-items: center;
  }

  .footer-newsletter {
    justify-self: center;
    text-align: center;
  }

  .footer-form {
    max-width: 100%;
  }

  .footer-bottom {
    font-size: 13px;
  }

  .footer-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .sale-popup {
    left: 16px;
    right: 16px;
    bottom: 16px;
    min-width: auto;
    max-width: none;
  }

  .discount-trigger {
    width: 50px;
    height: 50px;
    font-size: 22px;
    bottom: 16px;
    right: 16px;
  }

  .discount-box {
    padding: 30px 20px;
    margin: 16px;
  }
  @media (max-width: 900px) {
    .menu-toggle {
      display: flex;
    }

    .nav-inline {
      display: none;
    }

    /* AJOUT : force le hamburger à droite */
    .header-top-clean {
      grid-template-columns: auto 1fr auto;
    }

    .menu-toggle {
      grid-column: 3;
      justify-self: end;
    }
  }
  /* Désactiver animations sur mobile pour performance */
  .hero .cta .btn.primary,
  .hero .cta .btn.ghost {
    animation: none;
  }

  .hero .cta .btn.primary::before,
  .hero .cta .btn.primary::after,
  .hero .cta .btn.ghost::before,
  .hero .cta .btn.ghost::after {
    display: none;
  }

  .sheet-panel {
    margin: 60px auto 0;
    padding: 16px;
  }
}

/* ===============================
   25. RESPONSIVE - SMALL MOBILE (up to 375px)
   =============================== */
@media (max-width: 375px) {
  .brand-clean span:not(.logo) {
    font-size: 12px;
    max-width: 120px;
  }

  .hero h1,
  .hero-title-clip {
    font-size: 24px;
  }

  .kicker {
    font-size: 13px;
    padding: 6px 10px;
  }

  .card.pad {
    padding: 20px 16px;
  }

  .expert-content {
    padding: 30px 20px;
  }

  .testimonial-card {
    padding: 16px;
  }
}

/* ===============================
   26. ACCESSIBILITY & MOTION
   =============================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .ticker__track {
    animation: none;
    padding-left: 0;
  }

  .hero .cta .btn,
  .hero .cta .btn::before,
  .hero .cta .btn::after {
    animation: none !important;
  }

  .flowing-title .ch::after {
    animation: none !important;
  }
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

@media (prefers-contrast: high) {
  :root {
    --card: #ffffff;
    --stroke: #000000;
  }

  .btn.ghost {
    border-width: 3px;
  }
}

/* ===============================
   MENU TOGGLE AVEC TEXTE
   =============================== */

.menu-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.menu-toggle:hover {
  background: rgba(0, 0, 0, 0.05);
}

/* L'icône hamburger */
.menu-toggle .hamburger-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}

.menu-toggle .hamburger-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Texte Menu */
.menu-toggle .menu-text {
  font-size: 15px;
  font-weight: 600;
  color: #333;
}

/* État actif (menu ouvert) - cache le bouton entier */
.menu-toggle.active {
  display: none !important;
}

/* ===============================
   RESPONSIVE - Mobile
   =============================== */
@media (max-width: 900px) {
  .menu-toggle {
    display: flex; /* Change de none à flex */
  }

  .nav-inline {
    display: none;
  }
}

@media (max-width: 767px) {
  .menu-toggle {
    gap: 6px;
    padding: 6px 10px;
  }

  .menu-toggle .menu-text {
    font-size: 14px;
  }
}

/* Mobile - petit */
.hero--full .kicker {
  font-size: 12px;
  padding: 6px 12px;
}

/* Laptop - grand */
@media (min-width: 768px) {
  .hero--full .kicker {
    font-size: 20px; /* était 8px — changer ici */
    padding: 12px 22px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .extra-testimonials {
    column-count: 2;
    column-gap: 16px;
    max-width: 100%;
    padding: 0 18px;
  }

  .extra-quote {
    break-inside: avoid;
  }
}

/* 🔥 FORCE POPUP AU CENTRE */
#vhf-popup-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;

  display: none;
  align-items: center;
  justify-content: center;

  background: rgba(0, 0, 0, 0.5);
  z-index: 999999 !important;
}

/* quand actif */
#vhf-popup-overlay.visible {
  display: flex !important;
}

/* 🔥 bouton flottant */
#vhf-float-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #da5ae6);
  border: none;
  font-size: 26px;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(123, 44, 191, 0.45);
  z-index: 9998;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* effet hover stylé */
#vhf-float-btn:hover {
  transform: scale(1.1);
}

/* ===== BOÎTE POP-UP ===== */
.vhf-popup-box {
  background: #fff;
  border-radius: 20px;
  padding: 44px 36px 36px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
  animation: slideUpBox 0.35s cubic-bezier(0.22, 0.68, 0, 1.2);
}
@keyframes slideUpBox {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.vhf-popup-close {
  position: absolute !important;
  top: 12px !important;
  right: 12px !important;

  width: 60px !important;
  height: 60px !important;

  border-radius: 50% !important;
  background: linear-gradient(135deg, #da5ae6) !important;

  border: none !important;

  font-size: 28px !important;
  font-weight: bold !important;
  color: white !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  cursor: pointer !important;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;

  z-index: 1000000 !important;
}
.vhf-popup-close:hover {
  color: #555;
}

.vhf-popup-icon {
  font-size: 2.6rem;
  margin-bottom: 14px;
}

.vhf-popup-box h3 {
  font-size: 1.2rem;
  color: #1a0030;
  margin: 0 0 10px;
  font-family: "Cinzel", serif;
}

.vhf-popup-box p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin: 0 0 24px;
}

.vhf-popup-btn {
  display: inline-block;
  background: linear-gradient(135deg, #da5ae6);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  padding: 13px 34px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 16px rgba(123, 44, 191, 0.35);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.vhf-popup-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(123, 44, 191, 0.45);
}

.vhf-popup-non {
  display: block;
  margin-top: 14px;
  background: none;
  border: none;
  font-size: 0.82rem;
  color: #bbb;
  cursor: pointer;
  text-decoration: underline;
  width: 100%;
}
.vhf-popup-non:hover {
  color: #888;
}
