/* ============================================================
 * LUDIKJOUET — CSS principal (extrait de index.html statique)
 * Palette Karl Draisienne pastels + typo Nunito/Pacifico
 * ============================================================ */

/* ===================== PALETTE KARL — PASTELS DOUX ===================== */
:root {
  --pink:       #F08AA0;
  --pink-dark:  #D0688A;
  --pink-light: #F7B8C8;
  --pink-bg:    #FFF2F5;
  --pink-mid:   #F9CDD8;

  --blue:       #87B8D8;
  --blue-dark:  #5A96B8;
  --blue-light: #AACCE0;
  --blue-bg:    #EEF6FB;

  --mint:       #7DC4B4;
  --mint-dark:  #5AA898;
  --yellow-soft:#F5E4A0;

  --white:      #FFFFFF;
  --cream:      #FDFCFA;
  --gray-light: #F8F4F0;
  --gray:       #EDE8E2;

  --text:       #2C2830;
  --text-muted: #8A7880;

  --shadow-sm:  0 2px 12px rgba(135,184,216,0.12);
  --shadow-md:  0 8px 28px rgba(135,184,216,0.18);
  --shadow-lg:  0 20px 50px rgba(240,138,160,0.15);

  --radius:     20px;
  --radius-sm:  12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', 'Segoe UI', system-ui, sans-serif;
  color: var(--text); background: var(--white);
  overflow-x: hidden; font-size: 16px;
}

/* SKIP LINK */
.skip-link {
  position: absolute; top: -40px; left: 8px;
  background: var(--pink); color: white;
  padding: 8px 16px; border-radius: 6px;
  text-decoration: none; font-weight: 700; z-index: 10000;
  transition: top 0.2s;
}
.skip-link:focus { top: 8px; }

/* SCROLL PROGRESS */
#scroll-progress {
  position: fixed; top: 0; left: 0;
  width: 0%; height: 4px;
  background: linear-gradient(90deg, var(--pink), var(--blue-light));
  z-index: 9999; transition: width 0.1s;
  border-radius: 0 2px 2px 0;
}

/* AFFILIATE NOTICE */
.affiliate-notice {
  background: var(--pink-bg);
  border-bottom: 1px solid var(--pink-mid);
  text-align: center; padding: 8px 24px;
  font-size: 13px; color: var(--text-muted);
}
.affiliate-notice strong { color: var(--pink-dark); }

/* ===================== HEADER ===================== */
header { position: sticky; top: 0; background: var(--white); z-index: 100; transition: box-shadow 0.3s; border-bottom: 1px solid var(--gray); }
header.scrolled { box-shadow: var(--shadow-md); }
nav { max-width: 1200px; margin: 0 auto; padding: 0 24px; height: 72px; display: flex; align-items: center; justify-content: space-between; }

.logo { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; color: inherit; transition: opacity .15s ease; }
.logo:hover { opacity: .85; }
.logo-icon { width: 48px; height: 48px; flex-shrink: 0; shape-rendering: geometricPrecision; }
.logo-text { display: flex; flex-direction: column; align-items: flex-start; gap: 0; line-height: 1; }
.logo-ludik { font-family: 'Pacifico', cursive; font-size: 24px; color: var(--pink); line-height: 1.05; }
.logo-jouet { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 18px; color: var(--blue-dark); letter-spacing: 0.06em; text-transform: uppercase; line-height: 1.2; }
#header.scrolled .logo { gap: 6px; }
#header.scrolled .logo-icon { width: 36px; height: 36px; }
#header.scrolled .logo-ludik { font-size: 20px; }
#header.scrolled .logo-jouet { font-size: 14px; }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a { padding: 8px 16px; border-radius: 10px; text-decoration: none; color: var(--text); font-weight: 600; font-size: 15px; transition: all 0.2s; }
.nav-links a:hover { background: var(--gray-light); color: var(--pink); }
.nav-links a:focus-visible { outline: 2px solid var(--pink); outline-offset: 2px; }
.nav-cta { background: var(--pink) !important; color: white !important; border-radius: 10px !important; }
.nav-cta:hover { background: var(--pink-dark) !important; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(232,69,122,0.35); }

/* HAMBURGER */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; border-radius: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* MOBILE NAV */
.mobile-nav { display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0; background: var(--white); z-index: 99; padding: 24px; flex-direction: column; gap: 8px; overflow-y: auto; }
.mobile-nav.open { display: flex; }
.mobile-nav a { display: block; padding: 16px 20px; border-radius: 14px; text-decoration: none; color: var(--text); font-weight: 700; font-size: 17px; transition: background 0.2s; }
.mobile-nav a:hover { background: var(--pink-bg); color: var(--pink); }
.mobile-nav .mobile-cta { background: var(--pink); color: white !important; text-align: center; margin-top: 8px; }

/* ===================== HERO ===================== */
.hero { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 40%, var(--pink-light) 100%); padding: 96px 24px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 450px; height: 450px; background: rgba(125,196,180,0.18); border-radius: 50%; }
.hero::after { content: ''; position: absolute; bottom: -70px; left: -70px; width: 320px; height: 320px; background: rgba(245,228,160,0.15); border-radius: 50%; }
.hero-dot1 { position: absolute; top: 30px; left: 25%; width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.3); }
.hero-dot2 { position: absolute; bottom: 60px; right: 30%; width: 18px; height: 18px; border-radius: 50%; background: rgba(74,144,217,0.3); }
.hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.4); color: white; padding: 6px 18px; border-radius: 100px; font-size: 13px; font-weight: 700; margin-bottom: 22px; animation: slideDown 0.6s ease; }
h1 { font-family: 'Pacifico', cursive; font-size: clamp(28px, 3.5vw, 46px); font-weight: 400; color: white; line-height: 1.25; margin-bottom: 20px; animation: slideUp 0.7s ease; }
h1 span { color: var(--yellow-soft); text-shadow: 0 2px 10px rgba(0,0,0,0.12); }
.hero-desc { font-size: 18px; color: rgba(255,255,255,0.92); line-height: 1.75; margin-bottom: 36px; animation: slideUp 0.8s ease; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; animation: slideUp 0.9s ease; }
.btn-primary { background: white; color: var(--pink-dark); padding: 16px 32px; border-radius: 14px; font-weight: 800; font-size: 16px; text-decoration: none; transition: all 0.3s; box-shadow: 0 4px 20px rgba(0,0,0,0.12); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.18); }
.btn-secondary { background: rgba(255,255,255,0.18); color: white; padding: 16px 32px; border-radius: 14px; font-weight: 700; font-size: 16px; text-decoration: none; border: 2px solid rgba(255,255,255,0.45); transition: all 0.3s; }
.btn-secondary:hover { background: rgba(255,255,255,0.28); transform: translateY(-2px); }
.hero-visual { display: flex; justify-content: center; animation: float 4s ease-in-out infinite; }
.hero-card { background: rgba(255,255,255,0.22); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.4); border-radius: 28px; padding: 20px; text-align: center; color: white; width: 300px; }
.hero-card-illus { width: 100%; height: 200px; display: flex; align-items: center; justify-content: center; }
.hero-card h3 { font-size: 16px; font-weight: 800; margin: 14px 0 4px; }
.hero-card p { font-size: 13px; opacity: 0.88; line-height: 1.5; }
.hero-stars { color: #FFE566; font-size: 18px; margin-top: 10px; letter-spacing: 2px; }

/* ===================== SECTIONS COMMUNES ===================== */
section { padding: 72px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-tag { display: inline-block; background: var(--pink-bg); color: var(--pink-dark); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; padding: 6px 16px; border-radius: 100px; margin-bottom: 14px; }
h2 { font-family: 'Pacifico', cursive; font-size: clamp(24px, 2.8vw, 38px); font-weight: 400; color: var(--text); margin-bottom: 16px; line-height: 1.3; }
h2 span { color: var(--pink); }
.section-sub { font-size: 17px; color: var(--text-muted); max-width: 600px; line-height: 1.75; margin-bottom: 48px; font-weight: 500; }
.section-inner > .section-tag,
.section-inner > h2,
.section-inner > .section-sub { text-align: center; }
.section-inner > .section-tag { display: block; width: fit-content; margin-left: auto; margin-right: auto; }
.section-inner > .section-sub { margin-left: auto; margin-right: auto; }

/* ===================== POURQUOI ===================== */
.pourquoi { background: var(--gray-light); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-card { background: var(--white); border-radius: var(--radius); padding: 32px 22px; text-align: center; box-shadow: var(--shadow-sm); transition: transform 0.3s, box-shadow 0.3s; }
.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.stat-card .icon { margin-bottom: 16px; }
.stat-card .big { font-size: 38px; font-weight: 900; color: var(--pink); }
.stat-card p { color: var(--text-muted); font-size: 14px; margin-top: 8px; line-height: 1.55; font-weight: 500; }
.stat-card .source { font-size: 11px; color: #b0a0c0; margin-top: 8px; font-style: italic; }

/* ===================== COMPARATIF ===================== */
.comparatif-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.product-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.3s, box-shadow 0.3s; position: relative; display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.product-card.featured { border: 2px solid var(--pink); }
.badge-top { position: absolute; top: 12px; right: 12px; background: var(--pink); color: white; font-size: 11px; font-weight: 800; padding: 4px 12px; border-radius: 100px; }
.product-img { height: 200px; display: flex; align-items: center; justify-content: center; background: var(--cream); overflow: hidden; }
.product-img svg { transition: transform 0.4s ease; }
.product-card:hover .product-img svg { transform: scale(1.07); }
.product-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.product-body h3 { font-size: 17px; font-weight: 800; margin-bottom: 6px; }
.product-age { font-size: 12px; color: var(--pink); font-weight: 800; margin-bottom: 10px; }
.product-price { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.price-new { font-size: 22px; font-weight: 900; color: var(--pink-dark); }
.price-old { font-size: 14px; color: var(--text-muted); text-decoration: line-through; }
.product-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.tag { font-size: 11px; background: var(--blue-bg); color: var(--blue-dark); padding: 4px 10px; border-radius: 100px; font-weight: 700; }
.product-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.product-stars { color: #FFB800; font-size: 14px; }
.product-score { font-size: 13px; font-weight: 800; color: var(--text); }
.product-avis { font-size: 12px; color: var(--text-muted); }
.product-btns { display: flex; flex-direction: column; gap: 8px; margin-top: auto; }
.btn-product { display: block; text-align: center; background: var(--blue); color: white; padding: 12px; border-radius: 10px; text-decoration: none; font-weight: 700; font-size: 14px; transition: all 0.2s; }
.btn-product:hover { background: var(--blue-dark); }
.btn-amazon { display: block; text-align: center; background: #FF9900; color: white; padding: 12px; border-radius: 10px; text-decoration: none; font-weight: 700; font-size: 14px; transition: all 0.2s; }
.btn-amazon:hover { background: #e68a00; }

/* ===================== GUIDES ===================== */
.guides-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.guide-card { background: var(--gray-light); border-radius: var(--radius); padding: 32px 24px; box-shadow: var(--shadow-sm); transition: transform 0.3s, box-shadow 0.3s; }
.guide-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.guide-icon { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.guide-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.guide-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 20px; font-weight: 500; }
.guide-link { color: var(--pink); font-weight: 800; font-size: 14px; text-decoration: none; }
.guide-link:hover { text-decoration: underline; }

/* ===================== A PROPOS ===================== */
.apropos-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 64px; align-items: center; }
.apropos-visual { background: linear-gradient(135deg, var(--blue-bg), var(--pink-bg)); border-radius: var(--radius); aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: 80px; box-shadow: var(--shadow-md); }
.apropos-content h2 { margin-bottom: 20px; }
.apropos-content p { font-size: 16px; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; font-weight: 500; }
.apropos-content p strong { color: var(--text); font-weight: 700; }
.process-list { list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.process-list li { display: flex; align-items: flex-start; gap: 14px; font-size: 15px; color: var(--text); font-weight: 600; }
.process-icon { width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 18px; }

/* ===================== FAQ ===================== */
.faq { background: var(--white); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--gray-light); border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden; }
.faq-q { width: 100%; padding: 20px 24px; font-weight: 700; font-size: 16px; font-family: inherit; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: background 0.2s; background: none; border: none; text-align: left; color: var(--text); }
.faq-q:hover { background: var(--pink-bg); }
.faq-q:focus-visible { outline: 2px solid var(--pink); outline-offset: -2px; }
.faq-icon { color: var(--pink); font-size: 22px; font-weight: 300; transition: transform 0.3s; flex-shrink: 0; margin-left: 12px; }
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-a { padding: 0 24px; max-height: 0; overflow: hidden; font-size: 15px; color: var(--text-muted); line-height: 1.75; font-weight: 500; transition: max-height 0.35s ease, padding 0.35s ease; }
.faq-a.open { max-height: 200px; padding: 0 24px 22px; }

/* ===================== PARTENARIATS ===================== */
.partenariats { background: linear-gradient(135deg, var(--mint-dark) 0%, var(--mint) 55%, var(--blue-light) 100%); }
.partenariats h2 { color: white; }
.partenariats .section-sub { color: rgba(255,255,255,0.88); }
.partenariats .section-tag { background: rgba(255,255,255,0.2); color: white; }
.partners-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.partner-card { background: rgba(255,255,255,0.12); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.22); border-radius: var(--radius); padding: 36px 28px; color: white; transition: transform 0.3s, background 0.3s; }
.partner-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.2); }
.partner-icon { font-size: 42px; margin-bottom: 18px; display: block; }
.partner-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 12px; }
.partner-card p { font-size: 14px; opacity: 0.9; line-height: 1.75; margin-bottom: 24px; font-weight: 500; }
.btn-partner { display: block; text-align: center; background: var(--pink); color: white; padding: 14px; border-radius: 12px; text-decoration: none; font-weight: 800; font-size: 15px; transition: all 0.2s; }
.btn-partner:hover { background: var(--pink-dark); transform: translateY(-1px); }

/* ===================== NEWSLETTER ===================== */
.newsletter { background: var(--gray-light); text-align: center; }
.newsletter-box { background: linear-gradient(135deg, var(--pink-dark), var(--pink), var(--pink-light)); border-radius: 28px; padding: 64px 48px; color: white; max-width: 700px; margin: 0 auto; box-shadow: var(--shadow-lg); }
.newsletter-box h2 { color: white; font-size: 32px; margin-bottom: 8px; }
.newsletter-sub { opacity: 0.92; font-size: 16px; margin-bottom: 32px; font-weight: 500; }
.newsletter-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; }
.newsletter-form input { flex: 1; padding: 16px 20px; border: none; border-radius: 12px; font-size: 15px; outline: none; font-family: inherit; font-weight: 600; }
.newsletter-form input:focus { box-shadow: 0 0 0 3px rgba(255,255,255,0.4); }
.newsletter-form button { background: var(--blue); color: white; border: none; padding: 16px 28px; border-radius: 12px; font-weight: 800; font-size: 15px; cursor: pointer; transition: all 0.2s; white-space: nowrap; font-family: inherit; }
.newsletter-form button:hover { background: var(--blue-dark); transform: translateY(-1px); }
.newsletter-success { display: none; background: rgba(255,255,255,0.25); border-radius: 12px; padding: 16px 24px; font-weight: 700; font-size: 15px; margin-top: 16px; }

/* ===================== GALERIE BENTO ===================== */
.galerie { background: var(--gray-light); }
.bento-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: 240px 240px; gap: 16px; }
.bento-item { border-radius: var(--radius); overflow: hidden; position: relative; background: var(--white); box-shadow: var(--shadow-sm); transition: transform 0.3s, box-shadow 0.3s; }
.bento-item:hover { transform: translateY(-4px) scale(1.01); box-shadow: var(--shadow-md); }
.bento-item.large { grid-column: span 2; grid-row: span 2; }
.bento-item.tall  { grid-row: span 2; }
.bento-item-inner { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; transition: transform 0.4s ease; }
.bento-item:hover .bento-item-inner { transform: scale(1.04); }
.bento-label { background: rgba(255,255,255,0.92); backdrop-filter: blur(8px); border-radius: 100px; padding: 5px 16px; font-size: 12px; font-weight: 800; color: var(--text); white-space: nowrap; }

/* ===================== ANIMATIONS ===================== */
@keyframes slideUp   { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideDown { from { opacity: 0; transform: translateY(-16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float     { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.fade-in { opacity: 0; transform: translateY(32px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===================== FOOTER PRINCIPAL ===================== */
.site-footer { background: #2C2830; color: rgba(255,255,255,.8); margin-top: 64px; font-family: 'Nunito','Segoe UI',system-ui,sans-serif; }
.site-footer .footer-newsletter { background: linear-gradient(135deg,#F08AA0,#87B8D8); padding: 36px 24px; }
.site-footer .footer-newsletter-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.site-footer .newsletter-text h3 { font-family: 'Pacifico',cursive; font-size: 24px; font-weight: 400; color: #fff; margin: 0 0 6px; line-height: 1.3; }
.site-footer .newsletter-text p { font-size: 14px; color: rgba(255,255,255,.92); margin: 0; font-weight: 500; line-height: 1.6; max-width: 420px; }
.site-footer .newsletter-form { display: flex; gap: 8px; flex: 1; min-width: 280px; max-width: 480px; }
.site-footer .newsletter-form input { flex: 1; padding: 13px 18px; border: none; border-radius: 12px; font-family: inherit; font-size: 14px; font-weight: 600; outline: none; color: #2C2830; }
.site-footer .newsletter-form button { background: #2C2830; color: #fff; border: none; padding: 13px 22px; border-radius: 12px; font-weight: 800; font-size: 14px; cursor: pointer; transition: transform .2s; font-family: inherit; white-space: nowrap; }
.site-footer .newsletter-form button:hover { transform: translateY(-2px); }
.site-footer .footer-inner { max-width: 1200px; margin: 0 auto; padding: 48px 24px 0; }
.site-footer .footer-top { display: grid !important; grid-template-columns: repeat(4,1fr) !important; gap: 40px; margin-bottom: 36px; align-items: start; justify-items: center; text-align: center; }
.site-footer .footer-col h4 { color: #fff; font-size: 14px; font-weight: 800; margin-bottom: 14px; text-transform: none; letter-spacing: 0; }
.site-footer .footer-col ul { list-style: none; padding: 0; margin: 0; }
.site-footer .footer-col li { margin-bottom: 8px; }
.site-footer .footer-col a { color: rgba(255,255,255,.55); text-decoration: none; font-size: 13px; font-weight: 500; transition: color .2s; }
.site-footer .footer-col a:hover { color: #F7B8C8; }
.footer-cta-btn { display: inline-block; background: var(--pink); color: white !important; padding: 12px 24px; border-radius: 999px; font-weight: 800; font-size: 14px; text-decoration: none; transition: background .2s, transform .2s; }
.footer-cta-btn:hover { background: var(--pink-dark); transform: translateY(-2px); }
.site-footer .footer-affiliate { background: rgba(240,138,160,.1); border-top: 1px solid rgba(240,138,160,.2); padding: 14px 0; text-align: center; font-size: 13px; color: rgba(255,255,255,.7); line-height: 1.6; font-weight: 500; margin: 0 -24px; }
.site-footer .footer-affiliate strong { color: #F7B8C8; }
.site-footer .footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 18px 0; display: flex; justify-content: space-between; align-items: center; font-size: 13px; opacity: .55; font-weight: 600; flex-wrap: wrap; gap: 8px; }

/* ===================== POPUP NEWSLETTER (lead) ===================== */
.lead-overlay { position: fixed; inset: 0; background: rgba(44,40,48,.65); backdrop-filter: blur(4px); z-index: 9999; display: none; align-items: center; justify-content: center; padding: 24px; animation: fadeOverlay .25s ease; }
.lead-overlay.open { display: flex; }
@keyframes fadeOverlay { from { opacity: 0; } to { opacity: 1; } }
.lead-modal { background: #fff; border-radius: 22px; max-width: 480px; width: 100%; padding: 0; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,.3); position: relative; animation: popIn .35s cubic-bezier(.4,0,.2,1); }
@keyframes popIn { from { opacity: 0; transform: translateY(20px) scale(.96); } to { opacity: 1; transform: translateY(0) scale(1); } }
.lead-modal-close { position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; border-radius: 50%; background: rgba(44,40,48,.08); color: var(--text); border: none; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; font-weight: 700; transition: background .2s; z-index: 2; }
.lead-modal-close:hover { background: rgba(44,40,48,.15); }
.lead-modal-header { background: linear-gradient(135deg,var(--pink),var(--blue)); padding: 32px 28px 24px; text-align: center; color: #fff; }
.lead-modal-emoji { font-size: 42px; display: block; margin-bottom: 8px; }
.lead-modal-header h3 { font-family: 'Pacifico',cursive; font-weight: 400; font-size: 26px; margin: 0 0 8px; line-height: 1.2; }
.lead-modal-header p { font-size: 14px; opacity: .95; margin: 0; font-weight: 500; line-height: 1.55; }
.lead-modal-body { padding: 28px; }
.lead-modal-perks { list-style: none; padding: 0; margin: 0 0 20px; display: flex; flex-direction: column; gap: 10px; }
.lead-modal-perks li { font-size: 14px; color: var(--text); font-weight: 600; display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.lead-modal-perks li::before { content: '✓'; color: var(--mint-dark); font-weight: 900; flex-shrink: 0; font-size: 16px; }
.lead-modal-form { display: flex; flex-direction: column; gap: 10px; }
.lead-modal-form input { padding: 14px 18px; border: 2px solid var(--gray); border-radius: 12px; font-family: inherit; font-size: 15px; font-weight: 600; outline: none; transition: border-color .2s; }
.lead-modal-form input:focus { border-color: var(--pink); }
.lead-modal-form button { background: var(--pink); color: #fff; border: none; padding: 14px; border-radius: 12px; font-weight: 900; font-size: 15px; cursor: pointer; transition: background .2s, transform .2s; font-family: inherit; }
.lead-modal-form button:hover { background: var(--pink-dark); transform: translateY(-2px); }
.lead-modal-foot { margin-top: 14px; text-align: center; font-size: 11px; color: var(--text-muted); font-weight: 600; }
.lead-modal-foot button { background: none; border: none; color: var(--text-muted); font-family: inherit; cursor: pointer; text-decoration: underline; font-size: 11px; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .comparatif-grid { grid-template-columns: repeat(2, 1fr); }
  .guides-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .site-footer .footer-newsletter-inner { flex-direction: column; text-align: center; }
  .site-footer .newsletter-form { width: 100%; }
  .site-footer .footer-top { grid-template-columns: 1fr 1fr !important; gap: 28px; }
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-btns { justify-content: center; }
  .comparatif-grid, .partners-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .newsletter-form { flex-direction: column; }
  .apropos-inner { grid-template-columns: 1fr; }
  .apropos-visual { max-width: 180px; }
  .bento-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .bento-item.large { grid-column: span 2; grid-row: span 1; }
  .bento-item.tall  { grid-row: span 1; }
}
@media (max-width: 480px) {
  section { padding: 56px 16px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .guides-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .newsletter-box { padding: 40px 20px; }
  .site-footer .footer-top { grid-template-columns: 1fr !important; }
  .site-footer .footer-newsletter { padding: 28px 16px; }
  .site-footer .newsletter-form { flex-direction: column; }
  .site-footer .newsletter-form button { width: 100%; }
  .site-footer .footer-bottom { justify-content: center; text-align: center; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-item.large, .bento-item.tall { grid-column: span 1; }
  .lead-modal-header { padding: 24px 20px 20px; }
  .lead-modal-body { padding: 22px 20px; }
  .lead-modal-emoji { font-size: 36px; }
  .lead-modal-header h3 { font-size: 22px; }
}
