/* ================================================
   CRÉUDI — style.css
   Design moderne, pastel violet & vert, familial
   ================================================ */

/* -------------------------
   1. VARIABLES & RESET
------------------------- */
:root {
  /* Couleurs principales — palette logo Mère-Creudi */
  --violet:        #E8558A;   /* rose logo */
  --violet-light:  #F7A8C4;
  --violet-pale:   #FDE8F1;
  --violet-dark:   #C4346A;

  --green:         #8BC34A;   /* vert logo */
  --green-light:   #C5E1A5;
  --green-pale:    #F1F8E9;
  --green-dark:    #5D8C27;

  /* Neutres */
  --white:         #FFFFFF;
  --off-white:     #FAF9FF;
  --gray-50:       #F9FAFB;
  --gray-100:      #F3F4F6;
  --gray-200:      #E5E7EB;
  --gray-400:      #9CA3AF;
  --gray-600:      #4B5563;
  --gray-800:      #1F2937;
  --black:         #111827;

  /* Accents */
  --yellow:        #FCD34D;
  --pink:          #F9A8D4;
  --orange:        #FCA974;

  /* Typographie */
  --font-head:     'Nunito', sans-serif;
  --font-body:     'Quicksand', sans-serif;

  /* Espacements */
  --space-xs:      0.5rem;
  --space-sm:      1rem;
  --space-md:      1.5rem;
  --space-lg:      2.5rem;
  --space-xl:      4rem;
  --space-2xl:     6rem;

  /* Rayons */
  --radius-sm:     0.5rem;
  --radius-md:     1rem;
  --radius-lg:     1.5rem;
  --radius-xl:     2rem;
  --radius-full:   9999px;

  /* Ombres */
  --shadow-sm:     0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:     0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:     0 8px 32px rgba(0,0,0,0.12);
  --shadow-violet: 0 8px 32px rgba(139,92,246,0.25);

  /* Transitions */
  --transition:    0.25s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* -------------------------
   2. UTILITAIRES
------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

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

.section--alt {
  background-color: var(--off-white);
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section__tag {
  display: inline-block;
  background: var(--violet-pale);
  color: var(--violet-dark);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
}

.section__title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: var(--black);
  margin-bottom: var(--space-sm);
  line-height: 1.2;
}

.section__subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

.highlight {
  color: var(--violet);
  position: relative;
}

.highlight--green {
  color: var(--green-dark);
}

/* -------------------------
   3. BOUTONS
------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-full);
  border: 2.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-align: center;
}

.btn--primary {
  background: var(--violet);
  color: var(--white);
  border-color: var(--violet);
  box-shadow: var(--shadow-violet);
}

.btn--primary:hover,
.btn--primary:focus {
  background: var(--violet-dark);
  border-color: var(--violet-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(139,92,246,0.35);
}

.btn--outline {
  background: transparent;
  color: var(--violet);
  border-color: var(--violet);
}

.btn--outline:hover,
.btn--outline:focus {
  background: var(--violet-pale);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--violet-dark);
  border-color: var(--white);
}

.btn--white:hover,
.btn--white:focus {
  background: var(--violet-pale);
  transform: translateY(-2px);
}

.btn--lg  { padding: 1rem 2.25rem; font-size: 1.1rem; }
.btn--sm  { padding: 0.6rem 1.25rem; font-size: 0.9rem; }
.btn--full { width: 100%; }

/* -------------------------
   4. HEADER
------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--violet-dark);
  flex-shrink: 0;
}

.logo__img {
  height: 90px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.15));
}

.logo__text {
  font-family: var(--font-head);
  font-weight: 900;
  color: var(--violet-dark);
}

.logo--white .logo__text { color: var(--white); }

/* Nav desktop */
.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav__link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gray-600);
  transition: color var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--violet);
  border-radius: var(--radius-full);
  transition: width var(--transition);
}

.nav__link:hover {
  color: var(--violet-dark);
}

.nav__link:hover::after {
  width: 100%;
}

.header__cta {
  margin-left: auto;
}

/* Burger button */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--violet-dark);
  border-radius: var(--radius-full);
  transition: all var(--transition);
}

.nav__burger.is-open span:nth-child(1) { transform: rotate(45deg) translate(5.5px, 5.5px); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5.5px, -5.5px); }

/* Mobile menu */
.nav__mobile {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: var(--space-md);
}

.nav__mobile.is-open {
  display: block;
}

.nav__mobile-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.nav__mobile-link {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gray-800);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-100);
}

/* -------------------------
   5b. PRÉSENTATION MÈRE-CREUDI
------------------------- */
.mere-intro {
  background: linear-gradient(135deg, var(--violet-pale) 0%, var(--green-pale) 100%);
}

.mere-intro__inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.mere-intro__logo {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  border-radius: 50%;
  box-shadow: 0 12px 48px rgba(232,85,138,0.25);
  border: 5px solid var(--white);
  display: block;
}

.mere-intro__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.mere-intro__content .section__tag {
  align-self: flex-start;
}

.mere-intro__content p {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.8;
}

.mere-intro__content p strong {
  color: var(--violet-dark);
}

@media (max-width: 768px) {
  .mere-intro__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .mere-intro__logo {
    max-width: 200px;
  }
  .mere-intro__content .section__tag,
  .mere-intro__content .btn {
    align-self: center;
  }
  .mere-intro__content .section__title {
    text-align: center !important;
  }
}

/* -------------------------
   5c. HERO SECTION
------------------------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--violet-pale) 0%, var(--green-pale) 100%);
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: var(--space-2xl) 0;
}

/* Background shapes */
.hero__bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.35;
}

.shape--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--violet-light), transparent 70%);
  top: -150px; right: -100px;
}

.shape--2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, var(--green-light), transparent 70%);
  bottom: -80px; left: -80px;
}

.shape--3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--yellow), transparent 70%);
  top: 30%; left: 30%;
  opacity: 0.2;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-sm);
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: var(--space-md);
}

.hero__subtitle {
  font-size: 1.15rem;
  color: var(--gray-600);
  max-width: 520px;
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
}

.hero__trust {
  font-size: 0.9rem;
  color: var(--gray-600);
  font-weight: 600;
}

/* Box mockup */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__box-mockup {
  position: relative;
  width: 280px;
  height: 280px;
  animation: floatBox 4s ease-in-out infinite;
}

@keyframes floatBox {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-18px); }
}

.box-lid {
  width: 200px;
  height: 80px;
  background: linear-gradient(135deg, var(--violet), var(--violet-dark));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.box-emoji {
  font-size: 2.5rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.box-body {
  width: 200px;
  height: 140px;
  background: linear-gradient(180deg, var(--violet-light), var(--violet-pale));
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 16px;
  box-shadow: var(--shadow-lg);
}

.box-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-sm);
}

/* -------------------------
   6. CONCEPT
------------------------- */
.concept__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

.concept__step {
  text-align: center;
  flex: 1;
  min-width: 160px;
  max-width: 220px;
}

.concept__icon {
  font-size: 3rem;
  margin-bottom: var(--space-sm);
  display: block;
}

.concept__step h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.concept__step p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.concept__arrow {
  font-size: 1.8rem;
  color: var(--violet-light);
  align-self: center;
  flex-shrink: 0;
  margin-top: -1rem;
}

/* Activities grid */
.concept__activities-title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: var(--space-lg);
  color: var(--black);
}

.activities__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: var(--space-sm);
}

.activity__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  text-align: center;
  transition: all var(--transition);
  cursor: default;
}

.activity__card:hover {
  border-color: var(--violet-light);
  background: var(--violet-pale);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.activity__emoji  { font-size: 2rem; }
.activity__label  { font-family: var(--font-head); font-weight: 700; font-size: 0.9rem; color: var(--gray-800); }

/* -------------------------
   7. BOX DU MOIS
------------------------- */

/* Box actuelle */
.current-box {
  position: relative;
  background: linear-gradient(135deg, var(--violet-pale), var(--green-pale));
  border: 2px solid var(--violet-light);
  border-radius: var(--radius-xl);
  padding: var(--space-lg) var(--space-xl);
  margin-bottom: var(--space-xl);
  overflow: hidden;
}

.current-box__badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: var(--violet);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-violet);
}

.current-box__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-xl);
  align-items: center;
}

.box-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  aspect-ratio: 1;
}

.box-preview__emoji  { font-size: 5rem; margin-bottom: 0.5rem; }
.box-preview__theme  {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--violet-dark);
  background: var(--violet-pale);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
}

.current-box__title {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--black);
  margin-bottom: var(--space-sm);
}

.current-box__desc {
  color: var(--gray-600);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.current-box__list {
  margin-bottom: var(--space-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.current-box__list li {
  font-weight: 600;
  color: var(--gray-800);
  font-size: 0.95rem;
}

.current-box__price {
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.price {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--violet-dark);
}

.price__info {
  font-size: 0.9rem;
  color: var(--green-dark);
  font-weight: 600;
}

/* Old boxes */
.old-boxes__title {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: var(--space-lg);
  color: var(--black);
}

.old-boxes__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
}

.product-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: var(--violet-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.product-card__badge {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
}

.product-card__badge--sold {
  background: var(--green-dark);
}

.product-card__visual {
  background: linear-gradient(135deg, var(--violet-pale), var(--green-pale));
  padding: var(--space-lg);
  text-align: center;
  font-size: 4rem;
  line-height: 1;
}

.product-card__body {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.product-card__body h4 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--black);
}

.product-card__body p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.5;
  flex: 1;
}

.product-card__price {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--violet-dark);
  margin: 0.3rem 0;
}

/* -------------------------
   8. ABONNEMENTS
------------------------- */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  align-items: stretch;
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  position: relative;
  transition: all var(--transition);
}

.pricing-card:hover {
  border-color: var(--violet-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

/* Carte mise en avant */
.pricing-card--featured {
  background: linear-gradient(160deg, var(--violet), var(--violet-dark));
  border-color: var(--violet);
  color: var(--white);
  transform: scale(1.04);
  box-shadow: var(--shadow-violet);
  z-index: 1;
}

.pricing-card--featured:hover {
  transform: scale(1.04) translateY(-6px);
}

.pricing-card--featured .pricing-card__duration,
.pricing-card--featured .pricing-card__amount {
  color: var(--white);
}

.pricing-card--featured .pricing-card__per {
  color: var(--violet-light);
}

.pricing-card--featured .pricing-card__features li {
  color: rgba(255,255,255,0.9);
}

/* Ruban "meilleure offre" */
.pricing-card__ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
  letter-spacing: 0.02em;
}

.pricing-card__header {
  text-align: center;
  padding-top: var(--space-xs);
}

.pricing-card__duration {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--violet-dark);
  display: block;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pricing-card__amount {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  color: var(--black);
  display: block;
  line-height: 1;
}

.pricing-card__per {
  font-size: 0.9rem;
  color: var(--gray-400);
  font-weight: 600;
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.pricing-card__features li {
  font-size: 0.95rem;
  color: var(--gray-600);
  font-weight: 600;
}

.pricing__note {
  text-align: center;
  margin-top: var(--space-lg);
  color: var(--gray-400);
  font-size: 0.9rem;
  font-weight: 600;
}

/* -------------------------
   9. THÈMES
------------------------- */
.themes__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-md);
}

.theme-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  text-align: center;
  transition: all var(--transition);
  cursor: default;
}

.theme-card:hover {
  border-color: var(--theme-color, var(--violet));
  box-shadow: 0 8px 32px color-mix(in srgb, var(--theme-color, var(--violet)) 20%, transparent);
  transform: translateY(-6px);
}

.theme-card__emoji {
  font-size: 3.5rem;
  display: block;
  margin-bottom: var(--space-sm);
}

.theme-card h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.theme-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* -------------------------
   10. RASSURANCE
------------------------- */
.reassurance__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.reassurance__item {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  text-align: center;
  transition: all var(--transition);
}

.reassurance__item:hover {
  border-color: var(--green-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.reassurance__icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
  display: block;
}

.reassurance__item h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.reassurance__item p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Témoignages */
.testimonials__title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: var(--space-lg);
  color: var(--black);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}

.testimonial {
  background: var(--white);
  border-left: 4px solid var(--violet);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: var(--space-md) var(--space-lg);
  box-shadow: var(--shadow-sm);
}

.testimonial p {
  font-style: italic;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.testimonial span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--violet-dark);
}

/* -------------------------
   11. CTA FINAL
------------------------- */
.cta-final .section {
  padding: var(--space-xl) 0;
}

.cta-final__inner {
  background: linear-gradient(135deg, var(--violet), var(--violet-dark));
  border-radius: var(--radius-xl);
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow-violet);
  position: relative;
  overflow: hidden;
}

.cta-final__inner::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 70%);
  border-radius: 50%;
}

.cta-final__emoji {
  font-size: 3.5rem;
  display: block;
  margin-bottom: var(--space-sm);
}

.cta-final__inner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  margin-bottom: var(--space-sm);
  line-height: 1.2;
}

.cta-final__inner p {
  font-size: 1.05rem;
  opacity: 0.9;
  max-width: 560px;
  margin: 0 auto var(--space-lg);
  line-height: 1.7;
}

.cta-final__actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* -------------------------
   12. FOOTER
------------------------- */
.footer {
  background: var(--black);
  color: var(--gray-400);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-xl);
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.footer__brand p {
  margin-top: var(--space-sm);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer__links h4,
.footer__social h4 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__links a {
  font-size: 0.9rem;
  color: var(--gray-400);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--violet-light);
}

.social__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
}

.social__link {
  font-size: 0.9rem;
  color: var(--gray-400);
  transition: color var(--transition);
}

.social__link:hover {
  color: var(--violet-light);
}

.footer__newsletter p {
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
}

.footer__newsletter .btn--outline {
  border-color: var(--gray-400);
  color: var(--gray-400);
}

.footer__newsletter .btn--outline:hover {
  border-color: var(--violet-light);
  color: var(--violet-light);
  background: transparent;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--space-md) 0;
  text-align: center;
  font-size: 0.85rem;
}

/* -------------------------
   13. ANIMATIONS
------------------------- */
@keyframes bounce-in {
  0%   { transform: scale(0.85); opacity: 0; }
  60%  { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(1); }
}

.bounce-in { animation: bounce-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) both; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(139,92,246,0.4); }
  50%       { box-shadow: 0 0 0 10px rgba(139,92,246,0); }
}

.pulse { animation: pulse 2.5s ease-in-out infinite; }

/* Fade-in (géré via IntersectionObserver dans script.js) */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* -------------------------
   14. RESPONSIVE MOBILE
------------------------- */
@media (max-width: 1024px) {
  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }

  .pricing-card--featured {
    transform: none;
    order: -1;
  }

  .pricing-card--featured:hover {
    transform: translateY(-6px);
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .mere-intro__inner {
    grid-template-columns: 260px 1fr;
    gap: var(--space-lg);
  }
}

@media (max-width: 768px) {
  /* Header */
  .nav,
  .header__cta { display: none; }
  .nav__burger  { display: flex; }

  /* Logo mobile : encore visible mais pas trop grand */
  .logo__img {
    height: 64px;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding: 3rem 0 2.5rem;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__visual { display: none; }

  .hero__badge {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__subtitle {
    font-size: 1rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .hero__actions .btn {
    width: 100%;
    max-width: 340px;
  }

  .hero__trust { text-align: center; }

  /* Présentation Mère-Creudi */
  .mere-intro__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mere-intro__logo {
    max-width: 180px;
    margin: 0 auto;
  }

  .mere-intro__content .section__title {
    text-align: center !important;
  }

  .mere-intro__content .section__tag,
  .mere-intro__content .btn {
    align-self: center;
    margin: 0 auto;
  }

  /* Concept */
  .concept__arrow { display: none; }
  .concept__steps {
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
  }
  .concept__step  { max-width: 100%; width: 100%; }

  /* Activités */
  .activities__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Box du mois */
  .current-box {
    padding: var(--space-md);
  }

  .current-box__badge {
    position: static;
    display: inline-block;
    margin-bottom: var(--space-sm);
  }

  .current-box__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .current-box__list {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .current-box__price {
    justify-content: center;
  }

  /* Old boxes */
  .old-boxes__grid {
    grid-template-columns: 1fr;
  }

  /* Thèmes */
  .themes__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Rassurance */
  .reassurance__grid {
    grid-template-columns: 1fr;
  }

  /* Témoignages */
  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  /* CTA final */
  .cta-final__inner {
    padding: 2.5rem var(--space-md);
  }

  .cta-final__actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-final__actions .btn {
    width: 100%;
    max-width: 320px;
  }

  /* Footer */
  .footer__inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    text-align: center;
  }

  .footer__links ul {
    align-items: center;
  }

  .social__links {
    align-items: center;
  }

  .footer__newsletter { text-align: center; }

  .section { padding: 3rem 0; }
}

@media (max-width: 480px) {
  html { font-size: 15px; }

  .container { padding: 0 1rem; }

  /* Logo encore plus compact sur petit écran */
  .logo__img {
    height: 54px;
  }

  /* Hero */
  .hero__title {
    font-size: 1.9rem;
    line-height: 1.2;
  }

  .hero__subtitle {
    font-size: 0.95rem;
  }

  /* Sections */
  .section { padding: 2.5rem 0; }

  .section__title {
    font-size: 1.5rem;
  }

  /* Activités : 2 colonnes sur très petit écran */
  .activities__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Box preview */
  .box-preview__emoji { font-size: 3.5rem; }

  /* Thèmes : 1 colonne */
  .themes__grid {
    grid-template-columns: 1fr;
  }

  /* Pricing */
  .pricing-card {
    padding: var(--space-md);
  }

  .pricing-card__amount {
    font-size: 2.4rem;
  }

  /* Boutons */
  .btn--lg {
    padding: 0.9rem 1.4rem;
    font-size: 0.98rem;
  }

  /* Testimonials */
  .testimonial {
    padding: var(--space-sm) var(--space-md);
  }

  /* CTA final */
  .cta-final__inner h2 {
    font-size: 1.4rem;
  }

  /* Footer bottom */
  .footer__bottom p {
    font-size: 0.78rem;
  }
}
