/* ══════════════════════════════════════════════
   GuessMyBaby — Global Styles
   ══════════════════════════════════════════════ */

/* ── Reset & Variables ── */

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

:root {
  --violet: #8B5CF6;
  --violet-dark: #7C3AED;
  --violet-deep: #4C1D95;
  --violet-light: #F3EEFF;
  --violet-border: #DDD6FE;
  --violet-mid: #C4B5FD;
  --violet-bg: #EDE9FE;

  --teal: #14B8A6;
  --teal-light: #ECFDF5;
  --teal-border: #A7F3D0;

  --pink: #F472B6;
  --pink-light: #FFF0F6;
  --pink-border: #FBCFE8;

  --yellow: #FBBF24;
  --yellow-light: #FFFBEB;
  --yellow-border: #FDE68A;

  --orange: #F59E0B;
  --orange-light: #FFF7ED;
  --orange-border: #FED7AA;

  --blue: #0EA5E9;
  --blue-light: #F0F9FF;
  --blue-border: #BAE6FD;

  --cream: #FFFDF7;
  --warm-bg: #FBF8F4;
  --warm-bg-alt: #F8F5F0;

  --dark: #18181B;
  --dark-card: #27272A;
  --gray-800: #3F3F46;
  --gray: #71717A;
  --gray-light: #8E8E96;
  --gray-text: #52525B;
  --gray-border: #E4E4E7;
  --gray-stroke: #D4D4D8;
  --white: #FFFFFF;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--dark);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Header ── */

.header {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 48px;
  background: rgba(255,253,247,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.logo-group { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-group img { width: 32px; height: 32px; border-radius: 50%; }
.logo-group svg { color: var(--violet); }
.logo-group span { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 21px; font-weight: 700; color: var(--dark); }
.nav-group { display: flex; align-items: center; gap: 28px; }
.nav-link { font-size: 15px; font-weight: 500; color: var(--gray); text-decoration: none; transition: color 0.2s; }
.nav-link:hover { color: var(--dark); }

/* ── Buttons ── */

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif; font-weight: 600;
  border: none; border-radius: 50px; cursor: pointer; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--violet); color: var(--white);
  box-shadow: 0 4px 14px rgba(139,92,246,0.3);
}
.btn-primary:hover { background: var(--violet-dark); box-shadow: 0 6px 20px rgba(139,92,246,0.4); }
.btn.sm { font-size: 14px; padding: 10px 24px; }
.btn.md { font-size: 16px; padding: 14px 32px; }
.btn.lg { font-size: 17px; padding: 16px 36px; }
.btn-primary svg { color: var(--white); }
.btn-outline {
  background: var(--white); color: var(--gray-text);
  border: 1.5px solid var(--gray-stroke);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.btn-outline:hover { border-color: var(--violet-mid); color: var(--violet); }
.btn-white {
  background: var(--white); color: var(--violet);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white:hover { background: #f8f4ff; box-shadow: 0 6px 24px rgba(0,0,0,0.2); }

/* ── Footer ── */

.footer {
  background: var(--dark); padding: 48px 48px 32px;
  display: flex; flex-direction: column; gap: 40px;
}
.footer-top { display: flex; justify-content: center; gap: 140px; max-width: 1200px; margin: 0 auto; width: 100%; }
.footer-brand { display: flex; flex-direction: column; gap: 12px; max-width: 280px; }
.footer-brand .logo { display: flex; align-items: center; gap: 10px; }
.footer-brand .logo img { width: 28px; height: 28px; border-radius: 50%; }
.footer-brand .logo svg { color: var(--violet); }
.footer-brand .logo span { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 20px; font-weight: 700; color: var(--white); }
.footer-brand .tagline { font-size: 14px; color: var(--gray-light); line-height: 1.55; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gray-light); font-size: 14px; text-decoration: none;
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--white); }
.footer-nav { display: flex; gap: 56px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col .col-title { font-size: 13px; font-weight: 600; color: var(--gray-light); text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col a { font-size: 14px; color: var(--gray-light); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-col a.active { color: var(--white); }
.footer-divider { height: 1px; background: var(--dark-card); max-width: 1200px; margin: 0 auto; width: 100%; }
.footer-bottom { display: flex; align-items: center; justify-content: center; max-width: 1200px; margin: 0 auto; width: 100%; }
.footer-bottom .copyright { font-size: 13px; color: var(--gray-light); }

/* ── Final CTA (shared by index + blog) ── */

.final-cta {
  padding: 100px 48px;
  background: linear-gradient(135deg, var(--violet-deep) 0%, var(--violet-dark) 40%, var(--violet) 100%);
  display: flex; flex-direction: column; align-items: center; gap: 28px;
  text-align: center; position: relative; overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 30% 40%, rgba(255,255,255,0.06) 0%, transparent 50%);
}
.final-cta * { position: relative; }
.final-cta .cta-icon { margin-bottom: 8px; }
.final-cta .cta-icon svg { color: var(--white); opacity: 0.9; }
.final-cta h2 {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 42px; font-weight: 700;
  color: var(--white); max-width: 700px; line-height: 1.2;
}
.final-cta .sub { font-size: 18px; color: rgba(255,255,255,0.85); max-width: 500px; line-height: 1.6; }
.final-cta .trust { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.7); }

/* ══════════════════════════════════════════════
   Homepage (index.html)
   ══════════════════════════════════════════════ */

/* ── Hero ── */

.hero {
  display: flex; flex-direction: column; align-items: center;
  gap: 32px; padding: 80px 48px 60px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--violet-light) 100%);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--violet-border);
  border-radius: 50px; padding: 8px 20px;
  box-shadow: 0 2px 8px rgba(139,92,246,0.08);
}
.hero-badge svg { color: var(--violet); }
.hero-badge span { font-size: 13px; font-weight: 600; color: var(--violet); }
.hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 60px; font-weight: 800; line-height: 1.1;
  text-align: center; max-width: 800px; color: var(--dark);
}
.hero .subline {
  font-size: 19px; font-weight: 400; color: var(--gray-text);
  line-height: 1.65; text-align: center; max-width: 640px;
}
.cta-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: center; }
.trust-line { font-size: 13px; font-weight: 500; color: var(--gray-light); text-align: center; }
.trust-icons { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; justify-content: center; }
.trust-item { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 500; color: var(--gray-light); }
.trust-item svg { color: var(--teal); }

/* ── Bet Cards (Hero) ── */

.bet-cards { display: flex; gap: 20px; margin-top: 8px; flex-wrap: wrap; justify-content: center; }
.bet-card {
  width: 220px; border-radius: 20px; padding: 24px;
  display: flex; flex-direction: column; gap: 16px;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
  border: 1px solid transparent;
}
.bet-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
.bet-card-icon {
  width: 44px; height: 44px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.bet-card h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 16px; font-weight: 700; color: var(--dark); }
.bet-card p { font-size: 13px; color: var(--gray); line-height: 1.5; }
.bet-options { display: flex; flex-wrap: wrap; gap: 6px; }
.bet-tag {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 10px; border-radius: 8px;
  font-size: 12px; font-weight: 600;
}
.bet-tag .odds { font-weight: 500; opacity: 0.7; }

/* ── Section shared (index sections) ── */

.section { width: 100%; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.section-badge {
  display: inline-flex; padding: 6px 16px; border-radius: 50px;
  font-size: 13px; font-weight: 600;
}
.section-title {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 40px; font-weight: 700;
  text-align: center; color: var(--dark); line-height: 1.2;
}
.section-subtitle { font-size: 18px; color: var(--gray); text-align: center; max-width: 600px; line-height: 1.6; }

/* ── How It Works ── */

.how-section {
  padding: 80px 48px; background: var(--cream);
}
.steps-container { display: flex; gap: 40px; width: 100%; margin-top: 48px; }
.steps-col {
  flex: 1; background: var(--white); border-radius: 24px; padding: 32px;
  display: flex; flex-direction: column; gap: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: transform 0.25s;
}
.steps-col:hover { transform: translateY(-2px); }
.steps-col.couple { border: 1.5px solid var(--violet-border); }
.steps-col.guest { border: 1.5px solid var(--pink-border); }
.col-label {
  display: inline-flex; padding: 6px 14px; border-radius: 50px;
  align-self: flex-start; font-size: 12px; font-weight: 600;
}
.col-label.couple { background: var(--violet-light); color: var(--violet); }
.col-label.guest { background: var(--pink-light); color: var(--pink); }
.step { display: flex; gap: 16px; align-items: flex-start; }
.step-num {
  width: 40px; height: 40px; min-width: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 17px; font-weight: 700; color: var(--white);
}
.step-num.violet { background: var(--violet); }
.step-num.pink { background: var(--pink); }
.step-text { display: flex; flex-direction: column; gap: 4px; }
.step-text h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 17px; font-weight: 700; color: var(--dark); }
.step-text p { font-size: 14px; color: var(--gray); line-height: 1.55; }

/* ── Features ── */

.features-section {
  padding: 80px 48px; background: var(--warm-bg);
}
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; width: 100%; margin-top: 48px; }
.feature-card {
  border-radius: 20px; padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.feature-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.feature-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.feature-card h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 17px; font-weight: 700; color: var(--dark); }
.feature-card p { font-size: 14px; color: var(--gray-text); line-height: 1.55; }

/* ── Birth Fund ── */

.fund-section {
  padding: 80px 48px; background: var(--dark);
}
.fund-section .section-inner { display: flex; align-items: center; gap: 64px; }
.fund-left { flex: 1; display: flex; flex-direction: column; gap: 24px; }
.fund-badge {
  display: inline-flex; padding: 6px 16px; border-radius: 50px;
  background: rgba(139,92,246,0.2); align-self: flex-start;
}
.fund-badge span { font-size: 13px; font-weight: 600; color: var(--violet-mid); }
.fund-left h2 {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 34px; font-weight: 700;
  line-height: 1.25; color: var(--white);
}
.fund-left .desc { font-size: 16px; color: var(--gray-stroke); line-height: 1.65; }
.fund-stats { display: flex; gap: 32px; margin-top: 8px; }
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat .val { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 32px; font-weight: 800; }
.stat .label { font-size: 14px; color: var(--gray-light); }
.fund-right { flex: 1; display: flex; flex-direction: column; gap: 16px; }
.reassure-card {
  background: var(--dark-card); border-radius: 20px; padding: 24px;
  display: flex; gap: 16px;
  transition: transform 0.2s;
}
.reassure-card:hover { transform: translateY(-2px); }
.reassure-card svg { flex-shrink: 0; }
.reassure-content { display: flex; flex-direction: column; gap: 4px; }
.reassure-content h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 16px; font-weight: 700; color: var(--white); }
.reassure-content p { font-size: 14px; color: var(--gray-light); line-height: 1.55; }

/* ── Social Proof ── */

.social-section {
  padding: 80px 48px; background: var(--cream);
}
.social-stats { display: flex; gap: 48px; justify-content: center; margin-bottom: 40px; }
.social-stat { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.social-stat .num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 36px; font-weight: 800; }
.social-stat .desc { font-size: 14px; color: var(--gray); }
.testimonials { display: flex; gap: 24px; width: 100%; margin-top: 32px; }
.testimonial-card {
  flex: 1; background: var(--white); border-radius: 20px; padding: 28px;
  display: flex; flex-direction: column; gap: 20px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  transition: transform 0.25s;
}
.testimonial-card:hover { transform: translateY(-3px); }
.stars { display: flex; gap: 2px; }
.stars svg { color: var(--yellow); fill: var(--yellow); }
.testimonial-card blockquote {
  font-size: 15px; font-style: italic; color: var(--gray-text); line-height: 1.65;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 700;
}
.author-info { display: flex; flex-direction: column; gap: 2px; }
.author-info .name { font-size: 14px; font-weight: 600; color: var(--dark); }
.author-info .role { font-size: 13px; color: var(--gray); }

/* ── Pricing ── */

.pricing-section {
  padding: 80px 48px; background: var(--warm-bg);
}
.pricing-cards { display: flex; gap: 24px; max-width: 800px; margin: 48px auto 0; }
.pricing-card {
  flex: 1; border-radius: 24px; padding: 32px;
  display: flex; flex-direction: column; gap: 20px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.pricing-card:hover { transform: translateY(-3px); }
.pricing-card.free {
  background: var(--white); border: 1.5px solid var(--gray-border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.pricing-card.token {
  background: var(--violet); border: 2px solid var(--violet-dark);
  box-shadow: 0 4px 20px rgba(139,92,246,0.3);
}
.pricing-card .card-label { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 600; }
.pricing-card.free .card-label { color: var(--gray); }
.pricing-card.token .card-label { color: var(--violet-light); }
.pricing-card .price { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; }
.pricing-card.free .price { font-size: 44px; color: var(--dark); }
.pricing-card.token .price { font-size: 34px; color: var(--white); }
.pricing-card .price-desc { font-size: 15px; }
.pricing-card.free .price-desc { color: var(--gray); }
.pricing-card.token .price-desc { color: var(--violet-light); }
.pricing-divider { height: 1px; width: 100%; }
.pricing-card.free .pricing-divider { background: var(--gray-border); }
.pricing-card.token .pricing-divider { background: rgba(255,255,255,0.2); }
.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-item { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.check-item svg { flex-shrink: 0; }
.pricing-card.free .check-item { color: var(--gray-text); }
.pricing-card.free .check-item svg { color: var(--teal); }
.pricing-card.token .check-item { color: var(--violet-light); }
.pricing-card.token .check-item svg { color: var(--white); }

/* ── FAQ ── */

.faq-section {
  padding: 80px 48px; background: var(--cream);
}
.faq-list { max-width: 760px; margin: 48px auto 0; display: flex; flex-direction: column; }
.faq-item { padding: 20px 0; cursor: pointer; }
.faq-item:not(:last-child) { border-bottom: 1px solid var(--gray-border); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 16px; font-weight: 600; color: var(--dark);
  list-style: none; padding: 4px 0;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::marker { display: none; content: ''; }
.faq-q::after {
  content: '';
  width: 20px; height: 20px; min-width: 20px;
  margin-left: 16px;
  background: var(--gray-light);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform 0.3s;
}
.faq-item[open] .faq-q::after { transform: rotate(180deg); }
.faq-a {
  font-size: 15px; color: var(--gray); line-height: 1.65;
  padding-top: 12px;
}

/* ══════════════════════════════════════════════
   Responsive
   ══════════════════════════════════════════════ */

/* ── Tablet ── */
@media (max-width: 1024px) {
  .hero h1 { font-size: 46px; }
  .section-title { font-size: 34px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .fund-section .section-inner { flex-direction: column; }
  .final-cta h2 { font-size: 36px; }
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .header { padding: 14px 20px; }
  .nav-link { display: none; }
  .header .btn.sm { font-size: 13px; padding: 8px 18px; white-space: nowrap; }
  .hero { padding: 48px 20px 40px; }
  .hero h1 { font-size: 34px; max-width: 100%; }
  .hero .subline { font-size: 16px; }
  .bet-cards { flex-direction: column; align-items: center; }
  .bet-card { width: 100%; max-width: 300px; }
  .how-section, .features-section, .social-section, .pricing-section, .faq-section { padding: 56px 20px; }
  .fund-section { padding: 56px 20px; }
  .steps-container { flex-direction: column; }
  .feature-grid { grid-template-columns: 1fr; }
  .testimonials { flex-direction: column; }
  .pricing-cards { flex-direction: column; }
  .social-stats { gap: 24px; flex-wrap: wrap; }
  .section-title { font-size: 28px; }
  .fund-left h2 { font-size: 26px; }
  .final-cta { padding: 64px 20px; }
  .final-cta h2 { font-size: 28px; }
  .cta-row { flex-direction: column; width: 100%; align-items: center; }
  .cta-row .btn { width: 100%; justify-content: center; text-align: center; }
  .footer { padding: 32px 20px 24px; }
  .footer-top { flex-direction: column; gap: 32px; }
  .footer-nav { flex-wrap: wrap; gap: 28px; }
}

/* ══════════════════════════════════════════════
   Legal Pages (mentions-legales, conditions, confidentialite)
   ══════════════════════════════════════════════ */

/* ── Legal Hero ── */

.legal-hero {
  background: linear-gradient(180deg, var(--cream) 0%, var(--violet-light) 100%);
  padding: 64px 48px 56px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.legal-badge {
  display: inline-block;
  background: var(--violet-bg); color: var(--violet);
  border-radius: 50px; padding: 6px 16px;
  font-size: 13px; font-weight: 600;
}
.legal-hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 42px; font-weight: 800; color: var(--dark);
  line-height: 1.15;
}
.legal-hero .sub {
  font-size: 16px; color: var(--gray); max-width: 560px; line-height: 1.6;
}
.legal-date { font-size: 14px; color: var(--gray-light); }

/* ── Legal Content ── */

.legal-content { background: var(--cream); padding: 64px 48px 96px; }
.legal-inner { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 48px; }

/* ── Legal Sections ── */

.legal-section { display: flex; flex-direction: column; gap: 16px; }
.legal-section h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px; font-weight: 700; color: var(--dark);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--violet-border);
}
.legal-section h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px; font-weight: 600; color: var(--dark);
  margin-top: 8px;
}
.legal-section p { font-size: 15px; color: var(--gray-text); line-height: 1.75; }
.legal-section p + p { margin-top: 8px; }
.legal-section ul {
  list-style: disc; padding-left: 20px;
  display: flex; flex-direction: column; gap: 8px;
}
.legal-section li { font-size: 15px; color: var(--gray-text); line-height: 1.75; }
.legal-section a { color: var(--violet); text-decoration: none; }
.legal-section a:hover { text-decoration: underline; }

/* ── Highlights & Warnings ── */

.legal-highlight {
  background: var(--violet-light); border-left: 3px solid var(--violet);
  padding: 16px 20px; border-radius: 0 8px 8px 0;
  font-size: 14px; color: var(--gray-text); line-height: 1.65;
}
.legal-highlight strong { color: var(--dark); }
.legal-warning {
  background: #FFF7ED; border-left: 3px solid #F59E0B;
  padding: 16px 20px; border-radius: 0 8px 8px 0;
  font-size: 14px; color: #92400E; line-height: 1.65;
}
.placeholder {
  background: #FFFBEB; border-left: 3px solid #FBBF24;
  padding: 12px 16px; border-radius: 0 6px 6px 0;
  font-size: 13px; color: #92400E; font-style: italic;
}

/* ── Price Table (conditions-utilisation) ── */

.price-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.price-table th {
  background: var(--violet-bg); color: var(--violet);
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600;
  padding: 10px 14px; text-align: left;
  border-bottom: 2px solid var(--violet-border);
}
.price-table td {
  padding: 10px 14px; color: var(--gray-text); line-height: 1.55;
  border-bottom: 1px solid var(--gray-border);
}
.price-table tr:last-child td { border-bottom: none; }

/* ── Table of Contents (conditions-utilisation) ── */

.toc {
  background: var(--white); border: 1px solid var(--gray-border);
  border-radius: 12px; padding: 24px 28px;
  display: flex; flex-direction: column; gap: 10px;
}
.toc-title {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 600;
  color: var(--gray-light); text-transform: uppercase; letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.toc a {
  font-size: 14px; color: var(--gray-text); text-decoration: none;
  transition: color 0.2s;
}
.toc a:hover { color: var(--violet); }

/* ── Data Table (politique-confidentialite) ── */

.data-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.data-table th {
  background: var(--violet-bg); color: var(--violet);
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600;
  padding: 10px 14px; text-align: left;
  border-bottom: 2px solid var(--violet-border);
}
.data-table td {
  padding: 10px 14px; color: var(--gray-text); line-height: 1.55;
  border-bottom: 1px solid var(--gray-border);
  vertical-align: top;
}
.data-table tr:last-child td { border-bottom: none; }

/* ── Legal Responsive ── */

@media (max-width: 768px) {
  .legal-hero { padding: 48px 20px 40px; }
  .legal-hero h1 { font-size: 30px; }
  .legal-content { padding: 48px 20px 64px; }
  .data-table { font-size: 13px; }
  .data-table th, .data-table td { padding: 8px 10px; }
}

/* ══════════════════════════════════════════════
   Blog (articles + index)
   ══════════════════════════════════════════════ */

/* ── Breadcrumb ── */

.breadcrumb {
  padding: 16px 48px;
  font-size: 13px;
  color: var(--gray);
  max-width: 1200px;
  margin: 0 auto;
}
.breadcrumb a {
  color: var(--violet);
  text-decoration: none;
  font-weight: 500;
}
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { margin: 0 8px; color: var(--gray-light); }

/* ── Article Hero ── */

.article-hero {
  background: linear-gradient(180deg, var(--cream) 0%, var(--violet-light) 100%);
  padding: 48px 48px 56px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.article-badge {
  display: inline-block;
  background: var(--violet-bg); color: var(--violet);
  border-radius: 50px; padding: 6px 16px;
  font-size: 13px; font-weight: 600;
}
.article-hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 42px; font-weight: 800; color: var(--dark);
  line-height: 1.15; max-width: 800px;
}
.article-meta {
  display: flex; align-items: center; gap: 16px;
  font-size: 14px; color: var(--gray);
}
.article-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gray-light); }

/* ── Article Body ── */

.article-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 48px 64px;
}
.article-content h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px; font-weight: 700; color: var(--dark);
  margin: 48px 0 16px; line-height: 1.25;
}
.article-content h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px; font-weight: 600; color: var(--dark);
  margin: 32px 0 12px; line-height: 1.3;
}
.article-content p {
  font-size: 17px; line-height: 1.75; color: var(--gray-text);
  margin-bottom: 20px;
}
.article-content ul, .article-content ol {
  margin: 0 0 20px 24px;
  font-size: 17px; line-height: 1.75; color: var(--gray-text);
}
.article-content li { margin-bottom: 8px; }
.article-content strong { color: var(--dark); font-weight: 600; }
.article-content a { color: var(--violet); text-decoration: underline; text-underline-offset: 3px; }
.article-content a:hover { color: var(--violet-dark); }

/* ── Comparison Table ── */

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 32px;
  font-size: 15px;
}
.comparison-table th {
  background: var(--violet-light);
  color: var(--dark);
  font-weight: 600;
  padding: 14px 16px;
  text-align: left;
  border-bottom: 2px solid var(--violet-border);
}
.comparison-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-border);
  color: var(--gray-text);
  line-height: 1.5;
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) td { background: var(--warm-bg); }
.comparison-table .highlight { color: var(--violet); font-weight: 600; }
.comparison-table .check { color: var(--teal); }
.comparison-table .cross { color: var(--pink); }

/* ── Callout Box ── */

.callout {
  background: var(--violet-light);
  border-left: 4px solid var(--violet);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin: 24px 0 32px;
}
.callout p { margin-bottom: 0; font-size: 16px; }
.callout strong { color: var(--violet-dark); }
.callout-teal {
  background: var(--teal-light);
  border-left-color: var(--teal);
}
.callout-teal strong { color: var(--teal); }

/* ── Mid-article CTA ── */

.article-cta {
  background: linear-gradient(135deg, var(--violet-light) 0%, var(--pink-light) 100%);
  border: 1px solid var(--violet-border);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  margin: 40px 0;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.article-content .article-cta h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 24px; font-weight: 700; color: var(--dark);
  margin: 0; line-height: 1.3;
}
.article-content .article-cta p {
  color: var(--gray-text); margin-bottom: 0; font-size: 16px;
  max-width: 500px; line-height: 1.6;
}
.article-content .article-cta a { color: var(--white); text-decoration: none; }
.article-content .article-cta a:hover { color: var(--white); text-decoration: none; }
.article-cta .btn { margin-top: 8px; }

/* ── Related Articles ── */

.related-section {
  background: var(--warm-bg);
  padding: 64px 48px;
}
.related-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.related-inner h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px; font-weight: 700; color: var(--dark);
  margin-bottom: 32px; text-align: center;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.related-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 16px;
  padding: 24px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex; flex-direction: column; gap: 12px;
}
.related-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.related-card .card-badge {
  display: inline-block; align-self: flex-start;
  font-size: 12px; font-weight: 600;
  padding: 4px 12px; border-radius: 50px;
}
.related-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px; font-weight: 600; color: var(--dark);
  line-height: 1.35; margin: 0;
}
.related-card p { font-size: 14px; color: var(--gray); line-height: 1.55; margin: 0; }
.related-card .read-more { font-size: 14px; font-weight: 600; color: var(--violet); }

/* ── Blog Index ── */

.blog-hero {
  background: linear-gradient(180deg, var(--cream) 0%, var(--violet-light) 100%);
  padding: 64px 48px 56px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.blog-hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 48px; font-weight: 800; color: var(--dark);
  line-height: 1.15;
}
.blog-hero p { font-size: 18px; color: var(--gray-text); max-width: 600px; line-height: 1.6; }
.blog-grid-section { padding: 64px 48px; }
.blog-grid-inner { max-width: 1200px; margin: 0 auto; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 16px;
  padding: 32px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex; flex-direction: column; gap: 16px;
}
.blog-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.blog-card .card-meta {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; color: var(--gray);
}
.blog-card .card-meta .badge {
  font-weight: 600; padding: 4px 12px;
  border-radius: 50px; font-size: 12px;
}
.blog-card h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px; font-weight: 700; color: var(--dark);
  line-height: 1.3; margin: 0;
}
.blog-card p { font-size: 15px; color: var(--gray-text); line-height: 1.6; margin: 0; }
.blog-card .read-more {
  font-size: 15px; font-weight: 600; color: var(--violet);
  display: inline-flex; align-items: center; gap: 6px;
}

/* ── Blog Responsive ── */

@media (max-width: 1024px) {
  .article-hero h1 { font-size: 36px; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .breadcrumb { padding: 12px 20px; }
  .article-hero { padding: 32px 20px 40px; }
  .article-hero h1 { font-size: 28px; }
  .article-content { padding: 32px 20px 48px; }
  .article-content h2 { font-size: 24px; }
  .article-content h3 { font-size: 20px; }
  .comparison-table { font-size: 13px; }
  .comparison-table th, .comparison-table td { padding: 10px 12px; }
  .related-section { padding: 48px 20px; }
  .related-grid { grid-template-columns: 1fr; }
  .blog-hero { padding: 48px 20px 40px; }
  .blog-hero h1 { font-size: 34px; }
  .blog-grid-section { padding: 48px 20px; }
  .blog-grid { grid-template-columns: 1fr; }
}
