/* Carousel enfants - Défilement automatique horizontal */
.enfants-carousel {
  position: relative;
  overflow: hidden;
  margin: 2rem 0;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}

.enfants-track {
  display: flex;
  gap: 1.5rem;
  animation: scroll-enfants 30s linear infinite;
  width: max-content;
}

.enfants-track:hover {
  animation-play-state: paused;
}

.enfant-item {
  flex-shrink: 0;
  width: 350px;
  height: 300px;
  border-radius: 10%;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.enfant-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.enfant-item:hover::before {
  opacity: 0.1;
}

.enfant-item:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.enfant-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10%;
  transition: filter 0.3s ease;
  filter: grayscale(10%);
}

.enfant-item:hover img {
  filter: grayscale(0%);
}

@keyframes scroll-enfants {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive pour enfants carousel */
@media (max-width: 768px) {
  .enfants-carousel {
    mask-image: linear-gradient(
      to right,
      transparent 0%,
      black 5%,
      black 95%,
      transparent 100%
    );
    -webkit-mask-image: linear-gradient(
      to right,
      transparent 0%,
      black 5%,
      black 95%,
      transparent 100%
    );
  }
  
  .enfants-track {
    gap: 1rem;
    animation-duration: 20s;
  }
  
  .enfant-item {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 480px) {
  .enfants-track {
    gap: 0.75rem;
    animation-duration: 18s;
  }
  
  .enfant-item {
    width: 80px;
    height: 80px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .enfants-track {
    animation: none;
  }
  
  .enfant-item {
    transition: none;
  }
}

/* Anciens styles carousel - supprimés */
#enfants-carousel .carousel {
  display: none;
}

/* Layout */
.container {
  width: 100%;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-medium {
  width: 100%;
  max-width: var(--container-lg);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
  position: relative;
  background: transparent;
  border-radius: var(--radius-xl);
  margin: 1rem 0;
}

.section-intro {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
}

.section-intro h2 {
  margin-bottom: 1rem;
  font-size: 3rem;
}
.section-intro p {
  font-size: 1.6rem;
}
/* Typography */
body {
    font-family: 'Quicksand', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-primary);
    background: linear-gradient(180deg, #41cdff 0%, var(--bg-primary) 20%);
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

/* Bonus grid originale */
.bonus-grid-new {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.bonus-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.bonus-card-new {
  background: rgba(218, 165, 32, 0.49);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  border-radius: var(--radius-lg);
  flex: 1;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}

.bonus-card-new span {
    color: white;
    font-size: 1rem;
}

.bonus-card-new h4 {
  color: goldenrod;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.bonus-card-new p {
  color: white;
  margin: 0;
  font-weight: 500;
}

/* Bonus */
.bonus-grid {
  display: none;
}

/* Responsive pour nouveaux bonus */
@media (max-width: 768px) {
  .bonus-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .bonus-item {
    flex-direction: column;
    text-align: center;
  }
  
  .bonus-number {
    margin: 0 auto 1rem;
  }
}

/* Bonus */
.bonus-card {
  background: linear-gradient(135deg, var(--success-color), #059669);
  color: white;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}

.bonus-card:hover {
  transform: translateY(-4px);
}

.bonus-cta-section {
  text-align: center;
  margin-top: 3rem;
}

.bonus-cta-section .btn {
  margin-top: 1rem;
}

/* ==========================================================================
   RECONSTRUCTION CSS - Style moderne inspiré de Mindeo
   ========================================================================== */

/* Variables CSS pour thème sombre */
:root {
    --primary-color: #4F46E5;
    --primary-dark: #3730A3;
    --primary-light: #EEF2FF;
    --secondary-color: #06B6D4;
    --accent-color: #06B6D4;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-accent: #f1f5f9;
    
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    
    --container-sm: 640px;
    --container-md: 768px;
    --container-lg: 1024px;
    --container-xl: 1280px;
  }
  
  /* Thème sombre */
  [data-theme="dark"] {
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    
    --bg-primary: #4F46E5;
    --bg-secondary: #06B6D4;
    --bg-accent: #334155;
    
    --border-color: #334155;
    --border-light: #475569;
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.3);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.4), 0 2px 4px -2px rgb(0 0 0 / 0.4);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.5), 0 4px 6px -4px rgb(0 0 0 / 0.5);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.6), 0 8px 10px -6px rgb(0 0 0 / 0.6);
  }
  
/* Transition fluide pour le changement de thème */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Quicksand', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-primary);
    background: linear-gradient(180deg, #41cdff 0%, var(--bg-primary) 20%);
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

h1 { font-size: clamp(2rem, 4vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.5rem); }

p {
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

.text-large {
  font-size: 1.125rem;
  line-height: 1.7;
}

.text-muted {
  color: var(--text-muted);
}

/* Header avec glassmorphism */
.site-header {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Header sombre en mode sombre - toujours */
[data-theme="dark"] .site-header {
    background: rgba(15, 23, 42, 0.95) !important;
    border-bottom-color: var(--border-color);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-primary);
}

.logo-img {
  height: 80px;
  width: auto;
  margin-right: 0.75rem;
  transition: opacity 0.3s ease;
}

/* Logo pour mode sombre */
[data-theme="dark"] .logo-img {
  content: url('photos/logo_ta_white.webp');
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav a:hover {
  color: var(--primary-color);
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: var(--bg-primary);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* Hero Section */
.hero-reconstruction {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 150px;
  background: transparent;
}

.hero-reconstruction::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, 
    var(--bg-secondary) 0%, 
    var(--bg-accent) 25%, 
    var(--bg-secondary) 50%, 
    var(--bg-accent) 75%, 
    var(--bg-secondary) 100%);
  background-size: 400% 400%;
  animation: gradientMove 8s ease infinite;
  opacity: 0.8;
  z-index: 0;
}

.hero-reconstruction::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(65, 205, 255, 0.3) 0%, transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(4, 8, 119, 0.4) 0%, transparent 50%),
              radial-gradient(circle at 20% 20%, rgba(65, 205, 255, 0.2) 0%, transparent 40%);
  animation: floatingBubbles 12s ease-in-out infinite;
  z-index: 1;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes floatingBubbles {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg);
    opacity: 0.7;
  }
  33% { 
    transform: translateY(-20px) rotate(120deg);
    opacity: 0.9;
  }
  66% { 
    transform: translateY(-10px) rotate(240deg);
    opacity: 0.8;
  }
}

/* Contenu hero au-dessus de l'animation */
.hero-content, .hero-image {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content .tagline {
  font-size: clamp(2rem, 5vw, 4rem);
  font-family: 'Quicksand', sans-serif;
  color: white;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-align: center;
}
.souligne {
  text-decoration: underline;
}

.hero-content .tagline span {
  background-color: gold;
}
.golden-text {
  background: rgb(231, 197, 6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-content .sub-headline {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #cbd5e1;
  line-height: 1.6;
  text-align: center;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.float-badges {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.float-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  color: var(--text-primary);
  padding: 0.75rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  box-shadow: var(--shadow-lg);
  animation: float 3s ease-in-out infinite;
}

.guarantee-logo {
    width: 60%;
    margin: auto;
    height: auto;
    border-radius: var(--radius-xl);
    display: block;
    justify-content: center;
    align-items: center;
}

.fb-1 {
  top: 20%;
  left: -10%;
  animation-delay: 0s;
}

.fb-3 {
  bottom: 20%;
  right: -10%;
  animation-delay: 1.5s;
}

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

/* Floating badges sombres en mode sombre */
[data-theme="dark"] .float-badge,
[data-theme="dark"] .float-badge.black {
  background: rgba(15, 23, 42, 0.9);
  color: #f8fafc;
  border: 1px solid var(--border-color);
}

/* Cards modernes */
.three-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.three-cards h3 {
  font-size: 1.5rem;
}
.three-cards p {
  font-size: 1rem;
}

.card {
  background: var(--bg-primary);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
  position: relative;
  border: 1px solid var(--border-light);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 2rem;
}

.card-content h3 {
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.card-content p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

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

.highlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
}

/* Section Devenir Enhanced */
.devenir-enhanced {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-accent) 100%);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  margin: 1rem 0;
}

.devenir-enhanced::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 40%;
  height: 200%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
  z-index: 0;
}

.devenir-enhanced .container {
  position: relative;
  z-index: 1;
  background: var(--bg-primary);
  padding: 3rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border-radius: var(--radius-xl);
}

/* CTA Enhanced */
.enhanced-cta {
  background: var(--bg-primary);
  padding: 3rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  margin-top: 4rem;
  border: 1px solid var(--border-light);
  text-align: center;
}

.cta-buttons-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.cta-subtitle {
  color: var(--text-muted);
  font-style: italic;
  margin: 0;
}

/* Sections alternatives */
.alt-bg {
  background: transparent;
}

/* Section constat avec image de fond */
#constat {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  margin: 1rem 0;
}

#constat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  width: 60%;
  height: 100%;
  z-index: 0;
}

#constat .container-medium {
  position: relative;
  z-index: 1;
  background: var(--bg-primary);
  padding: 3rem 2rem;
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-xl);
}

.constat-content {
  position: relative;
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-top: 2rem;
  min-height: 400px;
}

.constat-text-block {
  flex: 0 0 500px;
  position: relative;
  z-index: 2;
  background: var(--bg-primary);
  padding: 5.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--error-color);
}

.constat-text-block .points-list p {
  font-size: 1.2rem;
  line-height: 1;
  margin-bottom: 0.5rem;
  text-align: justify;
}

.constat-text-block > p {
  font-size: 1.3rem;
  line-height: 1;
  text-align: justify;
}

.constat-image {
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-38%) translateX(-110%);
  z-index: 1;
  width: 500px;
  height: 500px;
}

.constat-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  opacity: 0.4;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

@media (max-width: 992px) {
  .constat-content {
    flex-direction: column;
    gap: 2rem;
    min-height: auto;
  }
  
  .constat-image {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: 300px;
    height: 250px;
    margin: 0 auto;
    order: -1;
  }
  
  .constat-img {
    opacity: 0.6;
  }
  
  .constat-text-block {
    width: 100%;
    max-width: 100%;
    z-index: auto;
  }
}

.constat-cta {
  margin-top: 2rem;
  text-align: center;
}

/* Styles pour la section constat */
.constat-content {
  display: flex;
  justify-content: flex-end;
  margin-top: 2rem;
}

.constat-text-block {
  max-width: 600px;
  background: var(--bg-primary);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--error-color);
}

/* Section crise familiale avec image de fond */
#crise-familiale {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  margin: 1rem 0;
}

#crise-familiale::before {
  content: '';
  position: absolute;
  top: 0;
  right: -15%;
  width: 50%;
  height: 100%;
  background-image: url('photos/img_sad2.webp');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
  opacity: 0.3;
  z-index: 0;
}

#crise-familiale .container-medium {
  position: relative;
  z-index: 1;
  background: var(--bg-primary);
  padding: 3rem 2rem;
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-xl);
}

.crisis-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.crisis-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--bg-primary);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--error-color);
  transition: transform 0.3s ease;
}

.crisis-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.crisis-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.crisis-item p {
  margin: 0;
  color: var(--text-secondary);
  font-weight: 500;
}

.crisis-conclusion {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 2rem 0;
  padding: 1.5rem;
  background: linear-gradient(135deg, #fef2f2, #fee2e2);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--error-color);
}

/* Garanties */
.guarantee-section {
  background: var(--primary-light);
  border-radius: var(--radius-xl);
  margin: 1rem 0;
}

.guarantee-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  background: var(--bg-primary);
  padding: 2rem;
  border-radius: var(--radius-xl);
  border-left: 4px solid var(--primary-color);
  box-shadow: var(--shadow-md);
}

.guarantee-item h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Two columns */
.two-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

/* Avant/Après */
.two-cols-compare {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.avant, .apres {
  padding: 2rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.avant {
  background: linear-gradient(135deg, #fef2f2, #fee2e2);
  border-left: 4px solid var(--error-color);
}

.apres {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border-left: 4px solid var(--success-color);
}

/* Témoignages */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  overflow: visible;
}

.testimonial-card {
  position: relative;
  overflow: visible; /* allow image to exceed card */
  padding-top: 4.5rem; /* space for floating avatar */
  background: var(--bg-primary);
  padding: 2rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 2px solid goldenrod;
  transition: all 0.3s ease;
}

.testimonial-card img {
  position: absolute;
  left: 50%;
  top: -2.25rem; /* pull outside the card */
  transform: translateX(-150%) translateY(-50%);
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid goldenrod;
  box-shadow: 0 12px 25px rgba(0,0,0,0.25);
  z-index: 2;
  background: #fff; /* fallback if image has transparency */
}

/* Adjust text spacing under the floating image */
.testimonial-card p {
  margin-top: 0.25rem;
}

.testimonial-card footer {
  margin-top: 1rem;
}


/* Responsive tweaks */
@media (max-width: 768px) {
  .testimonial-card { padding-top: 4rem; }
  .testimonial-card img { width: 120px; height: 120px; top: -2rem; }
}

/* FAQ */
.faq-item {
  background: var(--bg-primary);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  border-left: 4px solid var(--primary-color);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

/* CTA Final */
.final-cta {
  background: linear-gradient(135deg, var(--text-primary), #334155);
  text-align: center;
  border-radius: var(--radius-xl);
  margin: 1rem 0;
} 

.final-cta h2 {
  margin-bottom: 1rem;
}

.final-cta h2 span {
  background: linear-gradient(135deg, goldenrod 20%, gold 40%, goldenrod 60%, gold 80%, goldenrod 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 8px rgba(255, 255, 255, 0.2);
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1000;
  backdrop-filter: blur(4px);
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal .backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.modal .modal-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  width: 90%;
  background: var(--bg-primary);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-xl);
  max-height: 80vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: var(--text-primary);
}

.docs-list {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.doc-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1rem;
  transition: background-color 0.3s ease;
}

.doc-item:hover {
  background: var(--bg-accent);
}

.doc-meta h4 {
  margin: 0 0 0.25rem;
  color: var(--text-primary);
}

.doc-meta p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* Footer */
.site-footer {
  background: var(--text-primary);
  color: white;
  padding: 2rem 0 2rem;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .hero-image {
    order: -1;
  }
  
  .section {
    padding: 4rem 0;
  }
}

@media (max-width: 768px) {
  .container, .container-medium {
    padding: 0 1rem;
  }
  
  /* Header mobile optimisé */
  .site-header .container {
    padding: 0.75rem 1rem;
  }
  
  .logo-img {
    height: 120px;
    width: 100%;
  }
  
  .site-header .nav {
    display: none;
  }
  
  /* Hero mobile avec espacement header */
  .hero-reconstruction {
    padding-top: 100px;
    min-height: calc(100vh - 20px);
  }
  
  .hero-content .tagline {
    font-size: 2.5rem;
  }
  
  .section-intro {
    margin-bottom: 3rem;
  }
  
  .three-cards {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons-group {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .cta-buttons-group .btn {
    width: 100%;
  }
  
  .enhanced-cta {
    padding: 2rem 1.5rem;
  }
  
  .guarantee-box {
    grid-template-columns: 1fr;
  }
  
  .two-cols, .two-cols-compare, .testimonials {
    grid-template-columns: 1fr;
  }
  
  .doc-item {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .doc-item .btn-sm {
    width: 100%;
    text-align: center;
  }
  
  /* Bonus grid mobile */
  .bonus-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
    .site-header .container {
      flex-direction: column;
      gap: 0.5rem;
      text-align: center;
      padding: 1rem;
    }
    
    .brand {
      justify-content: center;
    }
    
    .logo-img {
      height: 100px;
      width: 200px;
    }
    
    /* Hero mobile très petit écran */
    .hero-reconstruction {
      padding-top: 120px;
    }
    
    .hero-content .tagline {
      font-size: 2rem;
    }
    
    .section {
      padding: 3rem 0;
    }
    
    .card-content, .enhanced-cta {
      padding: 1.5rem;
    }
    
    .float-badge {
      font-size: 0.75rem;
      padding: 0.5rem 0.75rem;
    }
    
    .modal .modal-content {
      width: 95%;
      padding: 1.5rem;
    }
    
    /* Bonus mobile très petit */
    .bonus-card {
      padding: 1rem;
      font-size: 0.9rem;
    }
    
    /* Transformation container mobile */
    .transformation-container {
      gap: 2rem;
    }
    
    .avant-section, .apres-section {
      padding: 1.5rem;
    }
    
    .point-item {
      padding: 0.75rem;
      gap: 0.75rem;
    }
}

/* Animations d'entrée */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

.animate-on-scroll {
  opacity: 0;
  transition: all 0.6s ease;
}

.animate-on-scroll.animate {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-left {
  animation: fadeInLeft 0.6s ease forwards;
}

.animate-right {
  animation: fadeInRight 0.6s ease forwards;
}

/* Section programme détaillé */
.program-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.pillar-card {
  background: #4e46e541 ;
  border-radius: var(--radius-xl);
  border: 2px solid var(--primary-color);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: all 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pillar-number {
  position: absolute;
  top: -15px;
  left: 2rem;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  box-shadow: var(--shadow-md);
}

.pillar-content h3 {
  margin-top: 1rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.pillar-features {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.pillar-features li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  font-weight: 500;
}

.program-cta {
  text-align: center;
  margin-top: 4rem;
  padding: 3rem;
  background: #4e46e54e;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.program-tagline {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2rem;
  font-style: italic;
}

/* Section garanties améliorée */
.guarantees-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.guarantee-card {
  background: var(--bg-primary);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  position: relative;
  transition: all 0.3s ease;
}

.guarantee-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.guarantee-badge {
  position: absolute;
  top: -12px;
  left: 2rem;
  background: linear-gradient(135deg, var(--success-color), #059669);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.875rem;
  box-shadow: var(--shadow-md);
}

.guarantee-card h3 {
  margin-top: 1rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.guarantee-highlight {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  color: var(--success-color);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  text-align: center;
  margin-top: 1rem;
}

.bonus-section {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: linear-gradient(135deg, #fffbeb, #fef3c7);
  border: 2px solid var(--warning-color);
  border-radius: var(--radius-xl);
  padding: 2rem;
  margin-top: 3rem;
  box-shadow: var(--shadow-lg);
}

.bonus-icon {
  font-size: 3rem;
  flex-shrink: 0;
}

.bonus-content h3 {
  color: var(--warning-color);
  margin-bottom: 0.5rem;
}

.bonus-content p {
  margin: 0;
  color: var(--text-primary);
}

/* Section outils */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.tool-category {
  background: #04087700;
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  text-align: center;
  transition: all 0.3s ease;
}

.tool-category:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.tool-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.tool-category h3 {
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.tool-features {
  list-style: none;
  padding: 0;
  text-align: left;
}

.tool-features li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  position: relative;
  padding-left: 1.5rem;
}

.tool-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: 600;
}

/* Avant/Après avec transition */
.transformation-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: start;
  margin: 4rem 0;
}

.avant-section, .apres-section {
  background: var(--bg-primary);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: all 0.3s ease;
}

.avant-section:hover, .apres-section:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.status-badge {
  position: absolute;
  top: -12px;
  left: 2rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: var(--shadow-md);
}

.avant-badge {
  background: linear-gradient(135deg, var(--error-color), #dc2626);
  color: white;
}

.apres-badge {
  background: linear-gradient(135deg, var(--success-color), #059669);
  color: white;
}

.avant-section h3, .apres-section h3 {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.points-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.point-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.avant-points .point-item {
  background: linear-gradient(135deg, #1e1b1b, #2d1b1b);
  border-left: 3px solid var(--error-color);
}

.apres-points .point-item {
  background: linear-gradient(135deg, #1b1e1b, #1b2d1b);
  border-left: 3px solid var(--success-color);
}

.point-item:hover {
  transform: translateX(4px);
}

.point-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.point-icon.negative {
  filter: drop-shadow(0 2px 4px rgba(239, 68, 68, 0.3));
}

.point-icon.positive {
  filter: drop-shadow(0 2px 4px rgba(16, 185, 129, 0.3));
}

.point-item p {
  margin: 0;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.5;
}

.transition-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}

.arrow-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.arrow-line {
  width: 2px;
  height: 60px;
  background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
  border-radius: 1px;
}

.arrow-head {
  font-size: 2rem;
  color: var(--primary-color);
  transform: rotate(90deg);
  animation: pulse 2s ease-in-out infinite;
}

.transformation-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  letter-spacing: 1px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

@keyframes pulse {
  0%, 100% { 
    transform: rotate(90deg) scale(1);
    opacity: 1;
  }
  50% { 
    transform: rotate(90deg) scale(1.1);
    opacity: 0.8;
  }
}

/* Responsive pour avant/après */
@media (max-width: 1024px) {
  .transformation-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .transition-arrow {
    order: 2;
    padding: 1rem 0;
  }
  
  .arrow-container {
    flex-direction: row;
    gap: 1rem;
  }
  
  .arrow-line {
    width: 60px;
    height: 2px;
  }
  
  .arrow-head {
    transform: rotate(0deg);
  }
  
  .transformation-label {
    writing-mode: horizontal-tb;
    text-orientation: initial;
  }
  
  .avant-section {
    order: 1;
  }
  
  .apres-section {
    order: 3;
  }
}

/* Responsive pour constat */
@media (max-width: 768px) {
  .constat-content {
    justify-content: center;
  }
  
  .constat-text-block {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .constat-text-block p {
    font-size: 0.85rem;
    line-height: 1.4;

  }
  
  .points-list p {
    font-size: 0.5rem;
    line-height: 1;
  }
  
  .constat-cta .btn {
    font-size: 0.85rem;
    padding: 0.7rem 1rem;
  }
}

/* Header sombre en mode sombre */
[data-theme="dark"] .site-header {
  background: rgba(15, 23, 42, 0.95);
  border-bottom-color: var(--border-color);
}

/* Footer sombre en mode sombre */
[data-theme="dark"] .site-footer {
  background: #000000;
}

/* Section crise familiale - texte noir pour conclusion en mode sombre */
[data-theme="dark"] .crisis-conclusion {
  color: #000000 !important;
}

/* Avant/Après - teintes plus sombres en mode sombre */
[data-theme="dark"] .avant-points .point-item {
  background: linear-gradient(135deg, #1e1b1b, #2d1b1b);
  border-left: 3px solid var(--error-color);
}

[data-theme="dark"] .apres-points .point-item {
  background: linear-gradient(135deg, #1b1e1b, #1b2d1b);
  border-left: 3px solid var(--success-color);
}

/* Mode sombre avec transition douce */
[data-theme="dark"] body {
  background: linear-gradient(180deg, #040877 0%, var(--bg-primary) 30%, #040877 60%, var(--bg-primary) 80%, #040877 100%);
}

/* Mode sombre - Background #040877 pour toutes les sections sauf hero */
[data-theme="dark"] .section:not(.hero-reconstruction) {
  background: #04087700;
}

[data-theme="dark"] .section:not(.hero-reconstruction) .container,
[data-theme="dark"] .section:not(.hero-reconstruction) .container-medium {
  background: #04087700;
}

[data-theme="dark"] #constat .container-medium,
[data-theme="dark"] #crise-familiale .container-medium,
[data-theme="dark"] .guarantee-section,
[data-theme="dark"] .final-cta,
[data-theme="dark"] .devenir-enhanced .container {
  background: #04087700;
}

[data-theme="dark"] .site-footer {
  background: var(--bg-primary);
}

/* Variables CSS étendues pour Mindeo style */
:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #a5b4fc;
    --secondary-color: #8b5cf6;
    --accent-color: #06b6d4;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-accent: #f1f5f9;
    
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-3xl: 2rem;
    
    --container-sm: 640px;
    --container-md: 768px;
    --container-lg: 1024px;
    --container-xl: 1280px;
}

/* Thème sombre Mindeo style */
[data-theme="dark"] {
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    
    --bg-primary: #0f0f23;
    --bg-secondary: #1a1a2e;
    --bg-accent: #16213e;
    
    --border-color: #334155;
    --border-light: #475569;
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.3);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.4), 0 2px 4px -2px rgb(0 0 0 / 0.4);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.5), 0 4px 6px -4px rgb(0 0 0 / 0.5);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.6), 0 8px 10px -6px rgb(0 0 0 / 0.6);
}

/* Animations globales Mindeo */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-primary);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow-x: hidden;
    position: relative;
}

/* Arrière-plan animé Mindeo style */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg, #667eea, #764ba2, #f093fb, #f5576c);
    background-size: 400% 400%;
    animation: mindeoGradient 15s ease infinite;
    z-index: -2;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(120, 219, 255, 0.3) 0%, transparent 50%);
    animation: mindeoFloating 20s ease-in-out infinite;
    z-index: -1;
}

@keyframes mindeoGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes mindeoFloating {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    33% { 
        transform: translateY(-30px) rotate(120deg);
        opacity: 0.9;
    }
    66% { 
        transform: translateY(-15px) rotate(240deg);
        opacity: 0.8;
    }
}

/* Hero Section Mindeo style */
.hero-reconstruction {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 150px;
    background: transparent;
}

.hero-content {
    position: relative;
    z-index: 10;
    animation: mindeoFadeInUp 1s ease-out;
}

.hero-content .tagline {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hero-content .tagline span {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-content .sub-headline {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.6;
}

/* Boutons Mindeo style */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-xl);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, .25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, .6);
}

.btn-secondary {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: white;
    box-shadow: 0 4px 15px rgba(245, 158, 11, .25);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, .6);
}

/* Cards Mindeo style */
.card, .bonus-card-new, .guarantee-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.card::before, .bonus-card-new::before, .guarantee-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover::before, .bonus-card-new:hover::before, .guarantee-card:hover::before {
    opacity: 1;
}

.card:hover, .bonus-card-new:hover, .guarantee-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Sections avec glassmorphism */
.section {
    padding: 6rem 0;
    position: relative;
    background: transparent;
    border-radius: var(--radius-xl);
    margin: 1rem 0;
}

.section .container,
.section .container-medium {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-3xl);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

/* Animations d'entrée */
@keyframes mindeoFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes mindeoFadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Classes d'animation */
.animate-fade-up {
    animation: mindeoFadeInUp 0.8s ease-out;
}

.animate-fade-left {
    animation: mindeoFadeInLeft 0.8s ease-out;
}

.animate-fade-right {
    animation: mindeoFadeInRight 0.8s ease-out;
}

/* Bonus avec style Mindeo */
.bonus-card-new {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.bonus-number {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bonus-number:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.6);
}

/* Header avec glassmorphism */
.site-header {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Footer avec style Mindeo */
.site-footer {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mode sombre avec style Mindeo */
[data-theme="dark"] body {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
}

[data-theme="dark"] body::before {
    background: linear-gradient(-45deg, #0f0f23, #1a1a2e, #16213e, #0f3460);
}

/* Responsive Mindeo */
@media (max-width: 768px) {
  .section .container,
  .section .container-medium {
    padding: 3rem 1.5rem;
    margin: 1rem;
    border-radius: var(--radius-2xl);
  }
  
  .hero-content .tagline {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  
  .bonus-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Tooltips pour bonus avec glassmorphism */
.bonus-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  position: relative;
}

.bonus-tooltip {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  max-width: 90vw;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  margin-top: 1rem;
}

.bonus-item:hover .bonus-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-20px);
}

.tooltip-content h5 {
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.tooltip-value {
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}

.tooltip-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

.tooltip-description p {
  margin-bottom: 0.75rem;
}

.tooltip-description ul {
  margin: 0.75rem 0;
  padding-left: 1.5rem;
}

.tooltip-description li {
  margin-bottom: 0.25rem;
  color: var(--text-secondary);
}

.tooltip-description strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Animation de la flèche du tooltip */
.bonus-tooltip::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(30px);
}

/* Mode sombre pour tooltips */
[data-theme="dark"] .bonus-tooltip {
  background: rgba(15, 15, 35, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .bonus-tooltip::before {
  border-top-color: rgba(15, 15, 35, 0.95);
}

[data-theme="dark"] .tooltip-content h5 {
  color: var(--text-primary);
}

[data-theme="dark"] .tooltip-description {
  color: var(--text-secondary);
}

[data-theme="dark"] .tooltip-description li {
  color: var(--text-secondary);
}

/* Responsive pour tooltips */
@media (max-width: 768px) {
  .bonus-tooltip {
    width: 320px;
    padding: 1.5rem;
    font-size: 0.9rem;
    top: -30px;
  }
  
  .tooltip-content h5 {
    font-size: 1rem;
  }
  
  .bonus-item:hover .bonus-tooltip {
    transform: translateX(-50%) translateY(-30px);
  }
}

@media (max-width: 480px) {
  .bonus-tooltip {
    width: 280px;
    left: 0;
    transform: translateX(0);
    top: -40px;
  }
  
  .bonus-item:hover .bonus-tooltip {
    transform: translateX(0) translateY(-40px);
  }
  
  .bonus-tooltip::before {
    left: 2rem;
  }
}

/* Hero badges inline */
.hero-badges {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0rem 0 1.5rem 0;
    text-align: center;
}

.hero-badges span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* Hero reste large */
.hero-reconstruction {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 150px;
    background: transparent;
}

.hero-reconstruction .container {
    max-width: var(--container-xl);
    background: transparent;
    padding: 0 1.5rem;
}

.hero-content .tagline {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hero-content .sub-headline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 500px;
    line-height: 1.6;
}

/* Le bouton suit l’alignement à gauche du bloc */
.hero-content .btn {
  align-self: flex-start;
}

/* Mobile: tout centré pour une meilleure UX */
@media (max-width: 768px) {
  .hero-content {
    align-items: center;
    text-align: center;
  }
  .hero-content .btn {
    align-self: center;
  }
}

/* ===== Hero Card styles ===== */
.hero-card{
  width: 100%;
  max-width: 820px;
  background: rgba(255,255,255,0.92);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 24px 28px;
  backdrop-filter: blur(6px);
}

.hero-card .tagline{ color: var(--text-primary); text-shadow: none; margin-bottom: 10px; }
.hero-card .hero-badges{ color: var(--text-secondary); margin-bottom: 10px; }
.hero-card .sub-headline{ color: var(--text-secondary); }
.hero-card .btn{ margin-top: 6px; }

/* Dark theme variant for hero card */
[data-theme="dark"] .hero-card{
  background: rgba(13, 18, 32, 0.0);
  color: #fff;
  border-color: rgba(255,255,255,0.0);
}
[data-theme="dark"] .hero-card .hero-badges,
[data-theme="dark"] .hero-card .sub-headline{ color: rgba(255,255,255,0.88); }

/* Titre avec icône d'avertissement */
.section-title-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.section-title-with-icon .title-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .section-title-with-icon .title-icon {
    width: 24px;
    height: 24px;
  }
}

/* Carousel enfants */
#enfants-carousel .carousel {
  display: none;
}

/* Garantie unified block - Style matching user's image */
.guarantee-unified-block {
  max-width: 700px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  background: #04087770;
  border: 3px solid goldenrod;
}

.guarantee-header {
  background: goldenrod;
  padding: 1.5rem 2rem;
  text-align: center;
}

.guarantee-header h2 {
  color: white;
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.guarantee-content {
  padding: 2.5rem;
  color: white;
}

.guarantee-intro {
  margin-bottom: 2rem;
  text-align: center;
}

.guarantee-intro p {
  color: #e2e8f0;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.guarantee-item {
  margin-bottom: 2rem;
}

.guarantee-item:last-child {
  margin-bottom: 0;
}

.guarantee-item h3 {
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.guarantee-number {
  color: goldenrod;
  font-weight: 800;
}

.guarantee-item p {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .guarantee-unified-block {
    max-width: 100%;
    margin: 0 1rem;
    border-radius: 15px;
  }
  
  .guarantee-header {
    padding: 1.25rem 1.5rem;
  }
  
  .guarantee-header h2 {
    font-size: 1.3rem;
  }
  
  .guarantee-content {
    padding: 2rem 1.5rem;
  }
}

.guarantee-content ul {
  list-style: none;
  margin: 0.75rem 0 1.25rem;
  padding: 0;
}

.guarantee-content ul li {
  position: relative;
  padding-left: 1.75rem;
  margin: 0.45rem 0;
  color: #e2e8f0;
  line-height: 1.6;
}

.guarantee-content ul li::before {
  content: "\2713"; /* checkmark */
  position: absolute;
  left: 0;
  top: 0.05rem;
  color: goldenrod; /* match header/border */
  font-weight: 900;
}

@media (max-width: 768px) {
  .guarantee-content ul li { padding-left: 1.5rem; }
}

/* Pricing Section Styles */
.pricing-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.pricing-section .section-intro {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.pricing-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-subtitle {
  font-size: 1.2rem;
  color: #ffd700;
  font-weight: 600;
  margin: 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.pricing-card {
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  color: #333;
}

.pricing-card.silver {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
}

.pricing-card.diamond {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 50%, #90caf9 100%);
}

.pricing-card.gold {
  background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 50%, #ffe082 100%);
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #c0c0c0, #e5e5e5);
}

.pricing-card.silver::before {
  background: linear-gradient(90deg, #c0c0c0, #e5e5e5, #c0c0c0);
}

.pricing-card.diamond::before {
  background: linear-gradient(90deg, #b9f2ff, #00d4ff, #b9f2ff);
}

.pricing-card.gold::before {
  background: linear-gradient(90deg, #ffd700, #ffed4e, #ffd700);
}

.pricing-card.featured {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
  border: 2px solid #00d4ff;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.pricing-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.plan-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.plan-image {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.pricing-header h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0.3rem 0;
  color: #333;
}

.plan-currency {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 0.3rem;
}

.plan-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: #333;
  margin: 0;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-item {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  padding-left: 1.8rem;
  font-size: 0.9rem;
  line-height: 1.4;
}

.feature-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.6rem;
  color: #28a745;
  font-weight: bold;
  font-size: 1rem;
}

.feature-item:last-child {
  border-bottom: none;
}

.pricing-cta {
  text-align: center;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

.pricing-note {
  font-size: 1.1rem;
  color: #ffd700;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.pricing-cta .btn {
  font-size: 1.2rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #333;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.pricing-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 215, 0, 0.4);
  background: linear-gradient(135deg, #ffed4e, #ffd700);
}
/* Logos */
.logos{ display:block; overflow:hidden; border-radius: 16px; }
.logos-track{ display:flex; align-items:center; gap:12px; padding: 6px 2px; will-change: transform; animation: logos-scroll 22s linear infinite; }
.logos:hover .logos-track{ animation-play-state: paused; }
@keyframes logos-scroll{
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}
@media (prefers-reduced-motion: reduce){
  .logos-track{ animation: none; }
}
.logos-track .img-ph{ min-width: 200px; min-height: 70px; }
.logos-track img{ max-height: 60px; width: auto; object-fit: contain; }

/* Responsive Design */
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
  
  .pricing-section h2 {
    font-size: 2rem;
  }
  
  .plan-price {
    font-size: 1.5rem;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
  
  .pricing-section h2 {
    font-size: 1.8rem;
  }
  
  .pricing-subtitle {
    font-size: 1rem;
  }
  
  .pricing-header h3 {
    font-size: 1.3rem;
  }
  
  .plan-price {
    font-size: 1.4rem;
  }
  
  .feature-item {
    font-size: 0.85rem;
  }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
  .pricing-section h2 {
    font-size: 1.5rem;
  }
  
  .pricing-subtitle {
    font-size: 0.9rem;
  }
  
  .pricing-header h3 {
    font-size: 1.1rem;
  }
  
  .plan-price {
    font-size: 1.2rem;
  }
  
  .feature-item {
    font-size: 0.8rem;
  }
  
  .pricing-note {
    font-size: 1rem;
  }
  
  .pricing-cta .btn {
    font-size: 1rem;
    padding: 0.8rem 2rem;
  }
}

/* ========== MOBILE RESPONSIVENESS FOR ENTIRE PAGE ========== */

/* Tablet and Mobile (768px) */
@media (max-width: 768px) {
  /* Header & Navigation */
  .site-header {
    padding: 0.75rem 0;
  }
  

  
  /* Hero Section */
  .hero {
    padding: 2rem 0;
    min-height: auto;
  }
  
  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  
  .hero-content .subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-content p {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }
  
  /* Sections */
  .section {
    padding: 3rem 0;
  }
  
  .section-intro h2 {
    font-size: 1.75rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }
  
  .section-intro p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  /* Program Pillars */
  .program-pillars {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .pillar-card {
    padding: 1.5rem;
  }
  
  .pillar-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }
  
  .pillar-card p {
    font-size: 0.9rem;
  }
  
  /* Tools Grid */
  .tools-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .tool-category {
    padding: 1.5rem;
  }
  
  .tool-category h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  
  .tool-features {
    font-size: 0.9rem;
  }
  
  /* Bonus Section */
  .bonus-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .bonus-number {
    font-size: 1.25rem;
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
  
  .bonus-card-new {
    padding: 1rem;
  }
  
  .bonus-card-new h4 {
    font-size: 0.95rem;
  }
  
  /* Testimonials */
  .testimonials {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .testimonial-card {
    padding: 1.5rem;
    padding-top: 4rem;
  }
  
  .testimonial-card img {
    width: 100px;
    height: 100px;
    top: 1rem;
  }
  
  .testimonial-card p {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  
  /* FAQ */
  .faq-item {
    padding: 1.25rem;
  }
  
  .faq-item h4 {
    font-size: 1rem;
    line-height: 1.4;
  }
  
  .faq-item p {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  
  /* CTA Final */
  .final-cta {
    padding: 2rem 1.5rem;
    margin: 1rem;
  }
  
  .final-cta h2 {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }
  
  .final-cta p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  
  /* Buttons */
  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
  }
  
  .btn-lg {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
  
  /* Containers */
  .container,
  .container-medium,
  .container-large {
    padding-left: 1rem;
    padding-right: 1rem;
    max-width: 100%;
  }
  
  /* Typography */
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.25rem; }
  h4 { font-size: 1.1rem; }
}

/* Small Mobile Devices (480px) */
@media (max-width: 480px) {
  /* Hero Section */
  .hero-content h1 {
    font-size: 1.75rem;
  }
  
  /* Sections */
  .section {
    padding: 2rem 0;
  }
  
  .section-intro h2 {
    font-size: 1.5rem;
  }
  
  .section-intro p {
    font-size: 0.9rem;
  }
  
  /* Pillar Cards */
  .pillar-card h3 {
    font-size: 1rem;
  }
  
  .pillar-card p {
    font-size: 0.85rem;
  }
  
  /* Tool Categories */
  .tool-category h3 {
    font-size: 1rem;
  }
  
  .tool-features {
    font-size: 0.85rem;
  }
  
  /* Bonus Section */
  .bonus-card-new h4 {
    font-size: 0.9rem;
  }
  
  /* Testimonials */
  .testimonial-card img {
    width: 80px;
    height: 80px;
    top: 1rem;
  }
  
  .testimonial-card {
    padding-top: 3.5rem;
  }
  
  .testimonial-card p {
    font-size: 0.85rem;
  }
  
  /* FAQ */
  .faq-item h4 {
    font-size: 0.95rem;
  }
  
  .faq-item p {
    font-size: 0.85rem;
  }
  
  /* CTA Final */
  .final-cta h2 {
    font-size: 1.3rem;
  }
  
  .final-cta p {
    font-size: 0.9rem;
  }
  
  /* Containers */
  .container,
  .container-medium,
  .container-large {
    padding: 0.75rem;
    max-width: 100%;
  }
  
  /* Typography */
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.1rem; }
  h4 { font-size: 1rem; }
  
  /* Buttons */
  .btn {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }
  
  .btn-lg {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
    /* Containers centrés avec padding uniforme */
    .container,
    .container-medium,
    .container-large {
      padding: 0.75rem;
      max-width: 100%;
      margin: 0 auto;
      text-align: center;
    }
    
    /* Header mobile centré */
    .site-header .container {
      flex-direction: column;
      gap: 0.5rem;
      text-align: center;
      padding: 1rem 0.75rem;
      align-items: center;
      justify-content: center;
    }
    
    .brand {
      justify-content: center;
      width: 100%;
    }
    
    .logo-img {
      height: 100px;
      width: 200px;
      margin: 0 auto;
    }
    
    /* Sections centrées */
    .section {
      padding: 3rem 0;
      margin: 0.5rem 0;
    }
    
    .section-intro {
      text-align: center;
      padding: 0 0.75rem;
      margin-bottom: 2rem;
    }
    
    /* Hero mobile centré */
    .hero-reconstruction {
      padding-top: 120px;
      text-align: center;
    }
    
    .hero-content {
      text-align: center;
      padding: 0 0.75rem;
    }
    
    .hero-content .tagline {
      font-size: 2rem;
      text-align: center;
      line-height: 1.2;
    }
    
    .hero-badges {
      text-align: center;
      margin: 1rem 0;
    }
    
    .sub-headline {
      text-align: center;
      padding: 0 0.5rem;
    }
    
    /* Cards et grilles centrées */
    .three-cards,
    .two-cols,
    .two-cols-compare,
    .testimonials {
      grid-template-columns: 1fr;
      gap: 1rem;
      padding: 0 0.75rem;
    }
    
    .card,
    .testimonial-card {
      margin: 0 auto;
      max-width: 100%;
    }
    
    .card-content, 
    .enhanced-cta {
      padding: 1.5rem 1rem;
      text-align: center;
    }
    
    /* CTA buttons centrés */
    .cta-buttons-group {
      flex-direction: column;
      gap: 0.75rem;
      align-items: center;
      width: 100%;
    }
    
    .cta-buttons-group .btn {
      width: 100%;
      max-width: 300px;
      text-align: center;
      margin: 0 auto;
    }
    
    /* Garanties centrées */
    .guarantee-box {
      grid-template-columns: 1fr;
      text-align: center;
      padding: 1.5rem 1rem;
    }
    
    /* Modal mobile centrée */
    .modal .modal-content {
      width: 95%;
      padding: 1.5rem 1rem;
      margin: 0 auto;
      text-align: left;
    }
    
    /* Bonus mobile centrés */
    .bonus-card {
      padding: 1rem;
      font-size: 0.9rem;
      text-align: center;
      margin: 0 auto;
    }
    
    .bonus-grid-new,
    .bonus-row {
      grid-template-columns: 1fr;
      gap: 1rem;
      padding: 0 0.75rem;
    }
    
    /* Transformation container mobile */
    .transformation-container {
      gap: 2rem;
      grid-template-columns: 1fr;
      padding: 0 0.75rem;
    }
    
    .avant-section, 
    .apres-section {
      padding: 1.5rem 1rem;
      text-align: center;
    }
    
    .point-item {
      padding: 0.75rem;
      gap: 0.75rem;
      text-align: left;
    }
    
    /* Float badges ajustés */
    .float-badge {
      font-size: 0.75rem;
      padding: 0.5rem 0.75rem;
      position: relative;
      margin: 0.25rem;
    }
    
    /* Documents list mobile */
    .doc-item {
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 1rem;
    }
    
    .doc-item .btn-sm {
      width: 100%;
      max-width: 200px;
      text-align: center;
      margin-top: 0.5rem;
    }
    
    /* Navigation mobile cachée */
    .site-header .nav {
      display: none;
    }
    
    /* Textes centrés */
    .section-intro h2,
    .section h2,
    .section h3 {
      text-align: center;
    }
    
    /* Espacement uniforme */
    .section .container,
    .section .container-medium {
      padding: 2rem 0.75rem;
      margin: 0.5rem auto;
    }
    #preuves .logos{ display:block; overflow:hidden; border-radius: 16px; }
    #preuves .logos-track{ display:flex; align-items:center; gap:12px; padding: 6px 2px; will-change: transform; animation: logos-scroll 30s linear infinite; }
    #preuves .logos:hover .logos-track{ animation-play-state: paused; }
    @keyframes logos-scroll{
      from { transform: translateX(0); }
      to { transform: translateX(-1000%); }
    }
    @media (prefers-reduced-motion: reduce){
      #preuves .logos-track{ animation: none; }
    }
    #preuves .logos-track .img-ph{ min-width: 200px; min-height: 70px; }
    #preuves .logos-track img{ max-height: 60px; width: auto; object-fit: contain; }
  }

