/* ═══════════════════════════════════════════════════════
   Agence Fyenka — Design System
   Thème : Rose & Blanc — Agence Numérique Premium
   Couleur : #be1673
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  /* ── Palette Fyenka ─────────────────────────── */
  --accent:       #be1673;
  --accent-2:     #d4198a;
  --accent-3:     #9a1260;
  --accent-light: #fce7f3;
  --accent-glow:  #fdf2f8;
  --accent-mid:   #f9a8d4;

  /* ── Neutres ────────────────────────────────── */
  --dark:    #000000;
  --text:    #000000;
  --text-2:  #1a1a1a;
  --muted:   #666666;
  --bg:      #fdfcfd;
  --surface: #ffffff;
  --surface2:#fdf2f8;
  --border:  #f3d4e8;
  --border-2:#e5e7eb;

  /* ── Feedbacks ──────────────────────────────── */
  --success: #10b981;
  --warning: #f59e0b;
  --danger:  #ef4444;
  --blue:    #3b82f6;

  /* ── Spacing & Shape ────────────────────────── */
  --radius:    16px;
  --radius-sm: 10px;
  --radius-xs: 6px;

  /* ── Shadows ────────────────────────────────── */
  --shadow:    0 2px 20px rgba(190, 22, 115, 0.08);
  --shadow-md: 0 6px 32px rgba(190, 22, 115, 0.13);
  --shadow-lg: 0 16px 60px rgba(190, 22, 115, 0.18);
  --shadow-n:  0 2px 16px rgba(0,0,0,0.06);
}

/* ── Reset ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Header ─────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: rgba(253, 252, 253, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 2px 24px rgba(190,22,115,0.10); }
.header-inner {
  max-width: 1160px; margin: 0 auto;
  padding: 0 28px; height: 68px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; }
.logo img { height: 42px; width: auto; }

.nav-links { list-style: none; display: flex; gap: 2px; align-items: center; }
.nav-links a {
  padding: 7px 16px; border-radius: var(--radius-xs);
  font-size: 0.9rem; font-weight: 500; color: var(--text-2);
  text-decoration: none; transition: all 0.18s;
}
.nav-links a:hover { background: var(--accent-glow); color: var(--accent); text-decoration: none; }
.nav-links a.active { color: var(--accent); font-weight: 600; }

.nav-cta {
  padding: 9px 22px !important;
  background: var(--accent) !important;
  color: #fff !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  transition: all 0.2s !important;
  box-shadow: 0 3px 12px rgba(190,22,115,0.30) !important;
}
.nav-cta:hover {
  background: var(--accent-2) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(190,22,115,0.40) !important;
  text-decoration: none !important;
}

/* ── Hamburger mobile ───────────────────────────── */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.nav-toggle span {
  width: 24px; height: 2px; background: var(--text);
  border-radius: 2px; transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; position: absolute; top: 68px; left: 0; right: 0;
    background: #fff; flex-direction: column; padding: 16px 24px 24px;
    border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md);
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 16px; }
}

/* ── Hero ───────────────────────────────────────── */
.hero {
  padding: 140px 28px 80px;
  background: linear-gradient(155deg, #fff 0%, var(--accent-glow) 45%, var(--accent-light) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -120px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(190,22,115,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(190,22,115,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--border);
  color: var(--accent); font-size: 0.8rem; font-weight: 600;
  padding: 6px 16px; border-radius: 50px; margin-bottom: 28px;
  box-shadow: var(--shadow);
}
.hero-badge::before { content: '●'; font-size: 0.5rem; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{ opacity:1; } 50%{ opacity:0.3; } }

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 900; line-height: 1.08;
  color: var(--text); margin-bottom: 20px;
  letter-spacing: -0.04em;
}
.hero h1 em { color: var(--accent); font-style: normal; }
.hero p {
  font-size: 1.15rem; color: var(--text-2);
  max-width: 600px; margin: 0 auto 40px; line-height: 1.75;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Buttons ────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 50px;
  font-size: 0.95rem; font-weight: 600;
  text-decoration: none; transition: all 0.22s;
  cursor: pointer; border: none; font-family: inherit;
}
.btn-primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 4px 16px rgba(190,22,115,0.35);
}
.btn-primary:hover {
  background: var(--accent-2); transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(190,22,115,0.45);
  text-decoration: none; color: #fff;
}
.btn-outline {
  background: #fff; color: var(--accent);
  border: 2px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--accent); background: var(--accent-glow);
  transform: translateY(-2px);
  text-decoration: none;
}

/* ── Section générique ──────────────────────────── */
.section { padding: 88px 28px; }
.section-alt { background: var(--surface2); }
.section-dark { background: var(--dark); color: #fff; }
.container { max-width: 1160px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent);
  background: var(--accent-light); padding: 4px 14px;
  border-radius: 50px; margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900; line-height: 1.15;
  letter-spacing: -0.03em; margin-bottom: 14px;
}
.section-sub {
  font-size: 1.05rem; color: var(--text-2);
  max-width: 600px; margin: 0 auto; line-height: 1.75;
}

/* ── Proof bar / logos ──────────────────────────── */
.proof-bar {
  padding: 28px 28px;
  border-top: 1px solid var(--border-2);
  border-bottom: 1px solid var(--border-2);
  background: #fff;
}
.proof-bar-inner {
  max-width: 1000px; margin: 0 auto;
  display: flex; align-items: center; gap: 32px;
  flex-wrap: wrap; justify-content: center;
}
.proof-label {
  font-size: 0.78rem; font-weight: 600; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.1em;
  white-space: nowrap;
}
.proof-sites { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
.proof-site {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 18px; border-radius: var(--radius-xs);
  background: var(--surface2); border: 1px solid var(--border);
  font-size: 0.88rem; font-weight: 600; color: var(--text-2);
  text-decoration: none; transition: all 0.18s;
}
.proof-site:hover {
  border-color: var(--accent); color: var(--accent);
  text-decoration: none; background: var(--accent-glow);
}
.proof-site .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--success); }

/* ── Services grid ──────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 960px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .services-grid { grid-template-columns: 1fr; } }

/* 7th card — centre sur sa ligne */
.service-card-wide {
  grid-column: 2 / 3;
}
@media (max-width: 960px) { .service-card-wide { grid-column: 1 / -1; max-width: 420px; margin: 0 auto; width: 100%; } }
@media (max-width: 580px) { .service-card-wide { grid-column: 1; max-width: 100%; } }

.service-card {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.25s;
  text-decoration: none; color: inherit;
  display: block;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0; transition: opacity 0.25s;
}
.service-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  text-decoration: none;
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 20px;
  transition: background 0.25s;
}
.service-card:hover .service-icon { background: var(--accent); }
.service-card h3 {
  font-size: 1.05rem; font-weight: 700;
  margin-bottom: 10px; color: var(--text);
}
.service-card p {
  font-size: 0.88rem; color: var(--text-2); line-height: 1.7;
}
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 18px; font-size: 0.85rem; font-weight: 600;
  color: var(--accent);
}
.service-link::after { content: '→'; transition: transform 0.2s; }
.service-card:hover .service-link::after { transform: translateX(4px); }

/* ── Réalisations / Portfolio ───────────────────── */
.real-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 720px) { .real-grid { grid-template-columns: 1fr; } }

.real-card {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.25s;
  text-decoration: none; color: inherit;
  display: block;
}
.real-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); text-decoration: none; }
.real-card-img {
  height: 200px; background: var(--surface2);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.real-card-body { padding: 24px; }
.real-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--accent); background: var(--accent-light);
  padding: 3px 10px; border-radius: 50px; margin-bottom: 10px;
}
.real-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.real-card p { font-size: 0.87rem; color: var(--text-2); line-height: 1.7; }
.real-metrics {
  display: flex; gap: 16px; margin-top: 16px; padding-top: 16px;
  border-top: 1px solid var(--border-2); flex-wrap: wrap;
}
.real-metric { font-size: 0.8rem; color: var(--muted); }
.real-metric strong { display: block; font-size: 1.1rem; font-weight: 800; color: var(--accent); }
.real-soon {
  opacity: 0.6;
}
.real-soon-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--dark); color: #fff;
  font-size: 0.7rem; font-weight: 700; padding: 3px 10px;
  border-radius: 50px; letter-spacing: 0.08em; text-transform: uppercase;
}

/* ── Processus timeline ─────────────────────────── */
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative;
}
@media (max-width: 800px) { .process-steps { grid-template-columns: repeat(2, 1fr); gap: 28px; } }
@media (max-width: 480px) { .process-steps { grid-template-columns: 1fr; } }

.process-step { text-align: center; padding: 0 24px; position: relative; }
.process-step:not(:last-child)::after {
  content: '';
  position: absolute; top: 28px; right: -1px;
  width: 2px; height: 56px;
  background: linear-gradient(180deg, var(--accent-mid), transparent);
}
@media (max-width: 800px) { .process-step::after { display: none; } }

.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--accent-light); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; font-weight: 900; color: var(--accent);
  margin: 0 auto 16px;
}
.process-step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.process-step p { font-size: 0.85rem; color: var(--text-2); line-height: 1.7; }

/* ── Stats ──────────────────────────────────────── */
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; background: var(--border-2);
  border-radius: var(--radius); overflow: hidden;
}
@media (max-width: 700px) { .stats-row { grid-template-columns: repeat(2, 1fr); } }

.stat-item {
  background: var(--surface); padding: 32px 24px; text-align: center;
}
.stat-value {
  font-size: 2.4rem; font-weight: 900; color: var(--accent);
  letter-spacing: -0.04em; line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 0.78rem; color: var(--text-2); font-weight: 500; line-height: 1.4; }
.stat-note { font-size: 0.7rem; color: var(--muted); text-align: center; margin-top: 8px; }

/* ── FAQ ────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  margin-bottom: 12px; overflow: hidden;
  box-shadow: var(--shadow-n);
}
.faq-q {
  width: 100%; text-align: left;
  background: var(--surface2); border: none; cursor: pointer;
  padding: 18px 22px; font-size: 0.95rem; font-weight: 600;
  color: var(--text); display: flex; justify-content: space-between;
  align-items: center; transition: all 0.2s; font-family: inherit;
}
.faq-q:hover { background: var(--accent-light); color: var(--accent); }
.faq-q.active { background: var(--accent); color: #fff; }
.faq-arrow { font-size: 1rem; transition: transform 0.25s; }
.faq-q.active .faq-arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
  font-size: 1rem; color: var(--text-2); line-height: 1.8;
  padding: 0 22px; background: #fff;
}
.faq-a.open { max-height: 800px; padding: 20px 22px; border-top: 1px solid var(--border-2); }

/* ── CTA Section ────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 60%, #8b1258 100%);
  padding: 88px 28px; text-align: center; color: #fff;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23fff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900; margin-bottom: 14px; letter-spacing: -0.03em;
}
.cta-section p { font-size: 1.1rem; opacity: 0.88; max-width: 520px; margin: 0 auto 36px; }
.btn-white {
  background: #fff; color: var(--accent);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white:hover {
  background: var(--accent-glow); transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  text-decoration: none; color: var(--accent);
}

/* ── Footer ─────────────────────────────────────── */
.site-footer {
  background: var(--dark); color: rgba(255,255,255,0.55);
  padding: 56px 28px 28px;
}
.footer-grid {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand img { height: auto; max-width: 150px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.87rem; line-height: 1.7; max-width: 260px; }
.footer-col h4 {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 0.87rem; color: rgba(255,255,255,0.5);
  text-decoration: none; transition: color 0.18s;
}
.footer-col a:hover { color: var(--accent-mid); text-decoration: none; }
.footer-bottom {
  max-width: 1160px; margin: 24px auto 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; font-size: 0.82rem;
}
.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 0.85rem;
  text-decoration: none; transition: all 0.2s;
}
.social-link:hover {
  background: var(--accent); color: #fff; text-decoration: none;
  transform: translateY(-2px);
}

/* ── Animations ─────────────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }
.fade-up-delay-5 { transition-delay: 0.5s; }

/* ── Utilities ──────────────────────────────────── */
.text-accent { color: var(--accent); }
.text-center { text-align: center; }
.mb-6 { margin-bottom: 6px; }
.mb-12 { margin-bottom: 12px; }
.mt-8 { margin-top: 8px; }

/* ── Blog (overrides) ───────────────────────────── */
.blog-hero {
  background: linear-gradient(155deg, #fff 0%, var(--accent-glow) 60%, var(--accent-light) 100%);
  padding: 120px 28px 56px; text-align: center;
  border-bottom: 1px solid var(--border);
}
.blog-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; letter-spacing: -0.03em; }
.blog-hero p { color: var(--text-2); margin-top: 12px; font-size: 1.05rem; max-width: 560px; margin-inline: auto; }
.article-cat {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  background: var(--accent-light); color: var(--accent);
  padding: 3px 10px; border-radius: 50px; margin-bottom: 12px;
}

/* ── Page intérieure légale ─────────────────────── */
.page-content {
  max-width: 800px; margin: 0 auto; padding: 120px 28px 80px;
}
.page-content h1 { font-size: 2rem; font-weight: 900; margin-bottom: 8px; }
.page-content .page-date { color: var(--muted); font-size: 0.85rem; margin-bottom: 40px; }
.page-content h2 { font-size: 1.25rem; font-weight: 700; margin: 36px 0 12px; }
.page-content p { color: var(--text-2); margin-bottom: 14px; line-height: 1.8; }
.page-content ul { padding-left: 20px; color: var(--text-2); margin-bottom: 14px; }
.page-content li { margin-bottom: 6px; line-height: 1.8; }

/* ── Packages grid (offres Hormozi) ─────────────── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
@media (max-width: 960px) { .packages-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; } }

.package-card {
  background: var(--surface);
  border: 2px solid var(--border-2);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all 0.25s;
  position: relative;
  display: flex; flex-direction: column;
}
.package-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

/* Featured card */
.package-featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}
.package-badge-featured {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; padding: 4px 16px; border-radius: 50px;
  white-space: nowrap;
}

.package-badge {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--accent);
  margin-bottom: 10px;
}
.package-name {
  font-size: 1.4rem; font-weight: 800;
  color: var(--text); margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.package-price {
  display: flex; align-items: baseline; gap: 6px;
  margin-bottom: 8px; flex-wrap: wrap;
}
.price-from { font-size: 0.75rem; color: var(--muted); }
.price-amount {
  font-size: 1.35rem; font-weight: 800; color: var(--text);
  letter-spacing: -0.02em; line-height: 1;
}
.price-type { font-size: 0.75rem; color: var(--muted); align-self: flex-end; }
.package-for {
  font-size: 0.85rem; color: var(--text-2); line-height: 1.6;
  margin-bottom: 24px; padding-bottom: 24px;
  border-bottom: 1px solid var(--border-2);
}
.package-features {
  list-style: none; margin-bottom: 24px; flex: 1;
}
.package-features li {
  font-size: 0.88rem; color: var(--text-2);
  padding: 7px 0; border-bottom: 1px solid var(--border-2);
  line-height: 1.5;
}
.package-features li:last-child { border-bottom: none; }

.package-promise {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--accent-glow); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 14px 16px;
  margin-bottom: 24px; font-size: 0.84rem; color: var(--text-2); line-height: 1.6;
}
.promise-icon { font-size: 1.1rem; flex-shrink: 0; }
.package-cta { width: 100%; justify-content: center; }

.packages-note {
  text-align: center; margin-top: 32px;
  font-size: 0.9rem; color: var(--muted);
}
.packages-note a { color: var(--accent); font-weight: 600; }

/* ── Ancrage prix ───────────────────────────────── */
.anchor-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-bottom: 20px;
}
@media (max-width: 720px) { .anchor-stats { grid-template-columns: 1fr; } }

.anchor-stat {
  background: var(--dark); color: #fff;
  border-radius: var(--radius-sm); padding: 28px 20px; text-align: center;
}
.anchor-num {
  font-size: 2.6rem; font-weight: 900; color: #f9a8d4;
  letter-spacing: -0.04em; line-height: 1; margin-bottom: 10px;
  text-shadow: 0 0 40px rgba(249,168,212,0.4);
}
.anchor-label { font-size: 0.82rem; color: #ffffff; line-height: 1.5; font-weight: 500; }
.anchor-conclusion {
  text-align: center; font-size: 1rem; color: var(--text-2);
  margin-bottom: 48px; padding: 14px 24px;
  background: var(--accent-light); border-radius: var(--radius-sm);
  border-left: 4px solid var(--accent);
}
.price-anchor-context {
  font-size: 0.8rem; color: var(--muted);
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: var(--radius-xs); padding: 8px 12px;
  margin-bottom: 12px; line-height: 1.5;
}
.price-anchor-context strong { color: var(--text); }

/* ── Guarantees grid ────────────────────────────── */
.guarantees-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 960px) { .guarantees-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .guarantees-grid { grid-template-columns: 1fr; } }

.guarantee-card {
  background: var(--surface); border: 2px solid var(--border-2);
  border-radius: var(--radius); padding: 28px 24px;
  transition: all 0.25s; position: relative; overflow: hidden;
}
.guarantee-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0; transition: opacity 0.25s;
}
.guarantee-card:hover { border-color: var(--accent); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.guarantee-card:hover::after { opacity: 1; }
.guarantee-icon { font-size: 1.8rem; margin-bottom: 14px; }
.guarantee-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.guarantee-card p { font-size: 0.85rem; color: var(--text-2); line-height: 1.7; }

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 640px) {
  .hero { padding: 110px 20px 60px; }
  .section { padding: 60px 20px; }
  .stats-row { font-size: 0.9rem; }
  .stat-value { font-size: 1.9rem; }
  .cta-section { padding: 60px 20px; }
  .footer-grid { padding-bottom: 32px; }
  .price-amount { font-size: 1.7rem; }
}

/* ── Article Content (Blog) ───────────────────── */
.article-content {
  padding: 120px 28px 80px;
  background: var(--bg);
}
.container-narrow {
  max-width: 840px;
  margin: 0 auto;
}
.article-header {
  margin-bottom: 48px;
  text-align: left;
}
.article-header h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 950;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.05em;
  color: var(--text);
}
.article-meta {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border-2);
  padding-bottom: 24px;
}
.article-body {
  font-size: 1.2rem;
  line-height: 1.9;
  color: var(--text-2);
}
.article-body h2 {
  margin: 56px 0 24px;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text);
}
.article-body h3 {
  margin: 36px 0 16px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
}
.article-body p {
  margin-bottom: 28px;
}
.article-body ul, .article-body ol {
  margin-bottom: 32px;
  padding-left: 28px;
}
.article-body li {
  margin-bottom: 14px;
}
.article-body blockquote {
  border-left: 5px solid var(--accent);
  padding: 24px 36px;
  margin: 48px 0;
  background: var(--accent-glow);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--accent-3);
  border-radius: 0 var(--radius) var(--radius) 0;
  line-height: 1.6;
}

.article-footer {
  margin-top: 80px;
  padding-top: 56px;
  border-top: 1px solid var(--border-2);
}
.article-cta {
  background: var(--surface2);
  padding: 48px;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.article-cta h3 {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.article-cta p {
  margin-bottom: 32px;
  color: var(--text-2);
  font-size: 1.1rem;
}

@media (max-width: 640px) {
  .article-content { padding: 100px 20px 60px; }
  .article-header h1 { font-size: 2.3rem; }
  .article-body { font-size: 1.1rem; }
  .article-cta { padding: 36px 24px; }
  .article-body h2 { font-size: 1.7rem; }
}
