/* ======================================================
   style.css — VELISSE
   Design System & Styles principaux
   ======================================================

   TABLE DES MATIÈRES
   1. Variables CSS (:root) — MODIFIABLE FACILEMENT
   2. Reset & Base
   3. Typographie
   4. Layout & Utilitaires
   5. Navigation
   6. Section Héro
   7. Section Stats
   8. Section Avantages
   9. Section Témoignages
   10. Section Achat (CTA)
   11. Footer
   12. Bandeau RGPD
   13. Animations & Transitions
   14. Responsive (Mobile First)
   ====================================================== */

/* ──────────────────────────────────────────────────────
   1. VARIABLES CSS — MODIFIEZ ICI POUR CHANGER LES COULEURS
   ────────────────────────────────────────────────────── */
:root {
  /* ── Couleurs principales ── */
  --bg-color: #fdf8f5;               /* Arrière-plan général (crème rosé) */
  --bg-alt-color: #fff7f4;           /* Arrière-plan alternatif sections */
  --bg-dark-color: #1a1219;          /* Arrière-plan sombre (témoignages) */

  --text-color: #2c1a24;             /* Texte principal sombre */
  --text-muted-color: #7a5f6e;       /* Texte secondaire/muet */
  --text-light-color: #f5ede9;       /* Texte sur fond sombre */

  --btn-color: #c4527a;              /* Couleur du bouton principal */
  --btn-hover-color: #a83e64;        /* Couleur au survol du bouton */
  --btn-text-color: #ffffff;         /* Texte du bouton */

  --accent-color: #e8a0b4;           /* Accent rose pâle */
  --accent-gold: #c9a96e;            /* Accent doré premium */
  --border-color: #f0ddd5;           /* Couleur des bordures */

  /* ── Typographie ── */
  --font-heading: "Playfair Display", "Georgia", serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;

  /* ── Espacements ── */
  --section-padding: clamp(60px, 8vw, 120px);
  --container-max: 1140px;
  --gap: 32px;

  /* ── Effets ── */
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 8px 40px rgba(44, 26, 36, 0.10);
  --shadow-hover: 0 16px 60px rgba(44, 26, 36, 0.18);
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ──────────────────────────────────────────────────────
   2. RESET & BASE
   ────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-color);
  background-color: var(--bg-color);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

/* ──────────────────────────────────────────────────────
   3. TYPOGRAPHIE
   ────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-color);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--btn-color);
  background: rgba(196, 82, 122, 0.1);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-muted-color);
  max-width: 560px;
  margin: 0 auto 48px;
}

/* ──────────────────────────────────────────────────────
   4. LAYOUT & UTILITAIRES
   ────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.text-center { text-align: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 40px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--transition);
  border-radius: inherit;
}

.btn:hover::after {
  background: rgba(255,255,255,0.08);
}

.btn-primary {
  background: var(--btn-color);
  color: var(--btn-text-color);
  box-shadow: 0 6px 30px rgba(196, 82, 122, 0.40);
}

.btn-primary:hover {
  background: var(--btn-hover-color);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(196, 82, 122, 0.50);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-outline {
  background: transparent;
  color: var(--text-color);
  border: 2px solid var(--border-color);
}

.btn-outline:hover {
  border-color: var(--btn-color);
  color: var(--btn-color);
  transform: translateY(-2px);
}

/* Diviseur décoratif */
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--btn-color), var(--accent-gold));
  border-radius: 2px;
  margin: 0 auto 32px;
}

/* ──────────────────────────────────────────────────────
   5. NAVIGATION
   ────────────────────────────────────────────────────── */
#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

#main-nav.scrolled {
  background: rgba(253, 248, 245, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(44, 26, 36, 0.08);
  padding: 14px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-color);
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--text-color), var(--btn-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-cta {
  padding: 10px 24px;
  font-size: 0.9rem;
}

/* ──────────────────────────────────────────────────────
   6. SECTION HÉRO
   ────────────────────────────────────────────────────── */
#hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("hero-bg.png");
  background-size: cover;
  background-position: center top;
  opacity: 0.18;
  z-index: 0;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%,
    rgba(232, 160, 180, 0.25) 0%,
    transparent 70%),
    linear-gradient(180deg, transparent 60%, var(--bg-color) 100%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

.hero-content {
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.hero-badge span {
  width: 28px;
  height: 1px;
  background: var(--accent-gold);
}

.hero-title {
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  color: var(--btn-color);
  position: relative;
}

.hero-promise {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--text-muted-color);
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  font-size: 0.85rem;
  color: var(--text-muted-color);
}

.hero-stars {
  color: #f4c430;
  letter-spacing: 2px;
}

.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-card {
  background: linear-gradient(145deg, #fff, var(--bg-alt-color));
  border-radius: 32px;
  padding: 32px;
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--border-color);
  max-width: 420px;
  width: 100%;
  animation: float 6s ease-in-out infinite;
}

.hero-image-card img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  aspect-ratio: 1/1;
}

.hero-badge-card {
  position: absolute;
  background: white;
  border-radius: var(--radius);
  padding: 12px 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.hero-badge-card.top-left {
  top: -12px;
  left: -24px;
}

.hero-badge-card.bottom-right {
  bottom: -12px;
  right: -24px;
}

.hero-badge-card .badge-icon {
  font-size: 1.2rem;
}

/* ──────────────────────────────────────────────────────
   7. SECTION STATS
   ────────────────────────────────────────────────────── */
#stats {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--text-color), #3d1f30);
  color: var(--text-light-color);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
  text-align: center;
}

.stat-item {
  padding: 24px 16px;
  border-right: 1px solid rgba(255,255,255,0.1);
}

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

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--accent-color);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-suffix {
  color: var(--accent-gold);
}

.stat-label {
  font-size: 0.85rem;
  opacity: 0.75;
  letter-spacing: 0.05em;
}

/* ──────────────────────────────────────────────────────
   8. SECTION AVANTAGES
   ────────────────────────────────────────────────────── */
#avantages {
  padding: var(--section-padding) 0;
  background-color: var(--bg-color);
}

.avantages-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.avantages-image-wrap {
  position: relative;
}

.avantages-image-main {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.avantages-image-main img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.avantages-float-badge {
  position: absolute;
  bottom: 32px;
  right: -24px;
  background: white;
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  text-align: center;
}

.avantages-float-badge strong {
  display: block;
  font-size: 1.4rem;
  color: var(--btn-color);
  font-family: var(--font-heading);
}

.avantages-float-badge span {
  font-size: 0.8rem;
  color: var(--text-muted-color);
}

.avantages-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 48px;
}

.avantage-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 16px rgba(44, 26, 36, 0.05);
  transition: var(--transition);
}

.avantage-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent-color);
}

.avantage-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: linear-gradient(135deg, rgba(196, 82, 122, 0.12), rgba(201, 169, 110, 0.12));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.avantage-text h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.avantage-text p {
  font-size: 0.9rem;
  color: var(--text-muted-color);
  line-height: 1.6;
}

/* Ingrédients */
.ingredients-section {
  margin-top: 48px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(196, 82, 122, 0.06), rgba(201, 169, 110, 0.06));
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
}

.ingredients-section h3 {
  margin-bottom: 20px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted-color);
}

.ingredients-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ingredient-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-color);
  box-shadow: 0 2px 8px rgba(44, 26, 36, 0.06);
}

.ingredient-tag::before {
  content: "✦";
  color: var(--accent-gold);
  font-size: 0.6rem;
}

/* ──────────────────────────────────────────────────────
   9. SECTION TÉMOIGNAGES
   ────────────────────────────────────────────────────── */
#temoignages {
  padding: var(--section-padding) 0;
  background: var(--bg-dark-color);
  color: var(--text-light-color);
  position: relative;
  overflow: hidden;
}

#temoignages::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(196, 82, 122, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

#temoignages .section-title {
  color: var(--text-light-color);
}

.temoignages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  margin-top: 48px;
}

.temoignage-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 32px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition);
  position: relative;
}

.temoignage-card::before {
  content: "\201C";
  position: absolute;
  top: 16px;
  left: 24px;
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 1;
  color: var(--btn-color);
  opacity: 0.3;
}

.temoignage-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(196, 82, 122, 0.3);
  transform: translateY(-4px);
}

.temoignage-stars {
  color: #f4c430;
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.temoignage-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(245, 237, 233, 0.85);
  margin-bottom: 24px;
  font-style: italic;
}

.temoignage-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.temoignage-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--btn-color), var(--accent-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: white;
  flex-shrink: 0;
}

.temoignage-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-light-color);
}

.temoignage-location {
  font-size: 0.78rem;
  color: rgba(245, 237, 233, 0.5);
}

.temoignage-verified {
  margin-left: auto;
  font-size: 0.72rem;
  color: #4caf50;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ──────────────────────────────────────────────────────
   10. SECTION ACHAT (CTA)
   ────────────────────────────────────────────────────── */
#buy {
  padding: var(--section-padding) 0;
  background: var(--bg-color);
}

.buy-card {
  background: white;
  border-radius: 32px;
  padding: clamp(40px, 6vw, 80px);
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--border-color);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.buy-card::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(196, 82, 122, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.buy-product-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.buy-product-img {
  width: 260px;
  height: 260px;
  object-fit: contain;
  border-radius: 24px;
  background: linear-gradient(145deg, var(--bg-color), var(--bg-alt-color));
  padding: 20px;
  box-shadow: var(--shadow);
}

.buy-product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted-color);
}

.buy-product-rating .stars {
  color: #f4c430;
}

.buy-product-rating strong {
  color: var(--text-color);
}

.buy-info {
  position: relative;
  z-index: 1;
}

.buy-title {
  margin-bottom: 8px;
}

.buy-subtitle {
  color: var(--text-muted-color);
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.buy-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}

.buy-price {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-color);
  line-height: 1;
}

.buy-price-old {
  font-size: 1.2rem;
  color: var(--text-muted-color);
  text-decoration: line-through;
}

.buy-price-note {
  font-size: 0.82rem;
  color: var(--text-muted-color);
  margin-bottom: 32px;
}

.buy-guarantees {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted-color);
}

.guarantee-icon {
  width: 22px;
  height: 22px;
  background: rgba(76, 175, 80, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.buy-cta-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.buy-cta-btn {
  width: 100%;
  font-size: 1.05rem;
  padding: 20px 32px;
}

.buy-secure-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.buy-security-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-muted-color);
  padding: 6px 14px;
  background: var(--bg-color);
  border-radius: 100px;
  border: 1px solid var(--border-color);
}

/* ──────────────────────────────────────────────────────
   11. FOOTER
   ────────────────────────────────────────────────────── */
#site-footer {
  background: var(--text-color);
  color: rgba(245, 237, 233, 0.75);
  padding: 64px 0 0;
}

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  display: block;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 237, 233, 0.7);
  transition: var(--transition);
}

.footer-social-link:hover {
  background: var(--btn-color);
  border-color: var(--btn-color);
  color: white;
  transform: translateY(-2px);
}

.footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 20px;
}

.footer-legal-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 0.88rem;
  color: rgba(245, 237, 233, 0.65);
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-link:hover {
  color: var(--accent-color);
}

.footer-link::before {
  content: "→";
  opacity: 0;
  font-size: 0.75rem;
  transform: translateX(-4px);
  transition: var(--transition);
}

.footer-link:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-contact-link {
  font-size: 0.88rem;
  color: rgba(245, 237, 233, 0.65);
  transition: color var(--transition);
}

.footer-contact-link:hover {
  color: var(--accent-color);
}

.footer-contact-block p {
  margin-bottom: 8px;
}

.footer-hours {
  font-size: 0.8rem;
  opacity: 0.5;
  margin-top: 8px;
}

.footer-address, .footer-siret {
  font-size: 0.78rem;
  opacity: 0.45;
  margin-top: 8px;
  line-height: 1.6;
}

.footer-bottom {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 20px 24px;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.4;
}

/* ──────────────────────────────────────────────────────
   12. BANDEAU RGPD
   ────────────────────────────────────────────────────── */
#rgpd-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: var(--text-color);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 24px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 -8px 30px rgba(0,0,0,0.25);
}

#rgpd-banner.visible {
  transform: translateY(0);
}

.rgpd-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.rgpd-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.rgpd-text {
  flex: 1;
  min-width: 260px;
}

.rgpd-text strong {
  display: block;
  font-size: 0.9rem;
  color: white;
  margin-bottom: 4px;
}

.rgpd-text p {
  font-size: 0.8rem;
  color: rgba(245, 237, 233, 0.6);
  line-height: 1.5;
}

.rgpd-text a {
  color: var(--accent-color);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.rgpd-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.rgpd-btn {
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  font-family: var(--font-body);
}

#rgpd-accept {
  background: var(--btn-color);
  color: white;
}

#rgpd-accept:hover {
  background: var(--btn-hover-color);
}

#rgpd-refuse {
  background: rgba(255,255,255,0.08);
  color: rgba(245, 237, 233, 0.75);
  border: 1px solid rgba(255,255,255,0.12);
}

#rgpd-refuse:hover {
  background: rgba(255,255,255,0.14);
  color: white;
}

/* ──────────────────────────────────────────────────────
   13. ANIMATIONS & TRANSITIONS
   ────────────────────────────────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* Elements animés au scroll */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}

[data-animate][data-delay="1"] { transition-delay: 0.1s; }
[data-animate][data-delay="2"] { transition-delay: 0.2s; }
[data-animate][data-delay="3"] { transition-delay: 0.3s; }
[data-animate][data-delay="4"] { transition-delay: 0.4s; }
[data-animate][data-delay="5"] { transition-delay: 0.5s; }
[data-animate][data-delay="6"] { transition-delay: 0.6s; }

/* Animation héro au chargement */
.hero-content > * {
  animation: fadeInUp 0.8s ease both;
}
.hero-badge { animation-delay: 0.1s; }
.hero-title { animation-delay: 0.2s; }
.hero-promise { animation-delay: 0.3s; }
.hero-actions { animation-delay: 0.4s; }
.hero-trust { animation-delay: 0.5s; }

.hero-image-wrap {
  animation: fadeInUp 0.9s ease 0.3s both;
}

/* ──────────────────────────────────────────────────────
   14. RESPONSIVE — MOBILE FIRST
   ────────────────────────────────────────────────────── */

/* Tablette (< 1024px) */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-image-card {
    max-width: 340px;
  }

  .hero-badge-card.top-left {
    left: 0;
  }

  .hero-badge-card.bottom-right {
    right: 0;
  }

  .avantages-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .avantages-float-badge {
    right: 0;
  }

  .temoignages-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  .buy-card {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .buy-product-preview {
    align-items: center;
  }

  .buy-guarantees {
    align-items: flex-start;
    text-align: left;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stat-item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .stat-item:nth-child(3),
  .stat-item:nth-child(4) {
    border-bottom: none;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* Mobile (< 640px) */
@media (max-width: 640px) {
  :root {
    --section-padding: 60px;
  }

  .nav-cta {
    display: none;
  }

  .hero-badge-card {
    display: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 20px;
  }

  .stat-item:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,0.1);
  }

  .stat-item:last-child,
  .stat-item:nth-last-child(2):nth-child(odd) {
    border-bottom: none;
  }

  .buy-card {
    padding: 32px 24px;
  }

  .buy-price {
    font-size: 2.4rem;
  }

  .rgpd-inner {
    gap: 16px;
  }

  .rgpd-actions {
    width: 100%;
    justify-content: stretch;
  }

  .rgpd-btn {
    flex: 1;
    text-align: center;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .avantage-item {
    flex-direction: column;
    gap: 12px;
  }
}

/* ──────────────────────────────────────────────────────
   Accessibilité — Respect des préférences systèmes
   ────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }
}
