/* ===================================================
   NOW CLUB — Feuille de style principale
   Mobile-first, variables CSS, pas de framework
   =================================================== */

/* --- Variables globales --- */
:root {
  --night: #041289;
  --night-deep: #02093f;
  --orange: #ef5127;
  --orange-soft: #ff7a4d;
  --cream: #fff6ec;
  --cream-warm: #ffeed8;
  --ink: #041289;

  --font-title: 'Fraunces', serif;
  --font-body: 'Inter Tight', sans-serif;

  --radius-btn: 100px;
  --radius-card: 18px;
  --radius-sm: 8px;

  --shadow-soft: 0 4px 24px rgba(4, 18, 137, 0.08);
  --shadow-card: 0 2px 16px rgba(4, 18, 137, 0.10);

  --max-width: 1160px;
  --gap: 1.5rem;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
  list-style: none;
}

/* --- Conteneur principal --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* --- Typographie --- */
h1, h2, h3, h4 {
  font-family: var(--font-title);
  line-height: 1.15;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); font-weight: 800; }
h4 { font-size: 1.1rem; font-weight: 700; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

em {
  font-style: italic;
  color: var(--orange);
}

strong { font-weight: 700; }

/* --- Boutons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(239, 81, 39, 0.25);
}

.btn-primary {
  background: var(--orange);
  color: #fff;
}

.btn-primary:hover {
  background: var(--orange-soft);
}

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

.btn-outline:hover {
  background: rgba(255, 246, 236, 0.12);
  box-shadow: none;
}

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

.btn-outline-dark:hover {
  background: var(--night);
  color: var(--cream);
  box-shadow: none;
}

/* --- Pill label --- */
.pill-label {
  display: inline-block;
  padding: 0.3rem 1rem;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-btn);
}

.pill-label-outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}

/* ===================================================
   NAVIGATION
   =================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--night);
  padding: 0 1.25rem;
  height: 64px;
  display: flex;
  align-items: center;
}

.nav-inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 32px;
  width: auto;
}

/* Menu desktop caché par défaut (mobile-first) */
.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: rgba(255, 246, 236, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

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

.nav-cta {
  display: none;
}

/* Hamburger */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Menu mobile déroulant */
.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--night-deep);
  z-index: 99;
  padding: 1.5rem 1.25rem;
  flex-direction: column;
  gap: 1.25rem;
}

.nav-mobile-menu.open {
  display: flex;
}

.nav-mobile-menu a {
  color: var(--cream);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 246, 236, 0.1);
}

.nav-mobile-menu .btn {
  margin-top: 0.5rem;
  text-align: center;
  justify-content: center;
}

/* Desktop nav */
@media (min-width: 720px) {
  .nav-links {
    display: flex;
  }
  .nav-cta {
    display: inline-flex;
  }
  .nav-hamburger {
    display: none;
  }
}

/* ===================================================
   HERO
   =================================================== */
.hero {
  min-height: 100vh;
  background: var(--night);
  display: flex;
  align-items: center;
  padding-top: 64px;
  position: relative;
  overflow: hidden;
}

/* Grille subtile en fond */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,246,236,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,246,236,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 4rem 0 5rem;
  text-align: center;
}

.hero-label {
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: var(--cream);
  margin-bottom: 1.25rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255, 246, 236, 0.75);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.hero-scroll {
  margin-top: 3rem;
  color: rgba(255, 246, 236, 0.4);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (min-width: 720px) {
  .hero-actions {
    flex-direction: row;
    justify-content: center;
  }
  .hero-inner {
    padding: 6rem 0 7rem;
  }
}

/* Espacement hero avec formulaire inline */
.hero-newsletter-inline {
  margin-top: 2rem;
}

/* ===================================================
   HERO — FORMULAIRE INLINE
   =================================================== */
.hero-newsletter-inline {
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
}

.hero-form {
  flex-direction: column;
  gap: 0.75rem;
}

.hero-form input[type="email"] {
  width: 100%;
}

.hero-form .btn {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 1rem 2rem;
}

.hero-microcopy {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: rgba(255, 246, 236, 0.4);
  text-align: center;
}

@media (min-width: 720px) {
  .hero-form {
    flex-direction: row;
  }
  .hero-form input[type="email"] {
    flex: 1;
  }
  .hero-form .btn {
    width: auto;
    flex-shrink: 0;
  }
}

/* ===================================================
   SECTION POURQUOI (WHY)
   =================================================== */
.section-why {
  padding: 5rem 0;
  background: var(--cream);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 0.5rem;
}

.why-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s;
}

.why-card:hover {
  transform: translateY(-3px);
}

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

.why-card p {
  font-size: 0.95rem;
  color: rgba(4, 18, 137, 0.75);
  margin: 0;
  line-height: 1.6;
}

@media (min-width: 720px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===================================================
   SECTION MISSION / BRAND
   =================================================== */
.section-mission {
  padding: 5rem 0;
  background: var(--night);
}

.mission-inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.mission-text h2 {
  color: var(--cream);
  margin-bottom: 1rem;
}

.mission-text p {
  color: rgba(255, 246, 236, 0.7);
  font-size: 1.05rem;
  max-width: 520px;
}

.mission-pillars {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.mission-pillar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--cream);
  font-size: 0.95rem;
}

.mission-pillar-icon {
  color: var(--orange);
  font-size: 0.7rem;
}

.mission-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mission-card-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: 280px;
}

.mission-stat-card {
  background: rgba(255, 246, 236, 0.06);
  border: 1px solid rgba(255, 246, 236, 0.1);
  border-radius: var(--radius-card);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: background 0.2s;
}

.mission-stat-card:hover {
  background: rgba(255, 246, 236, 0.1);
}

.mission-stat-card--offset {
  margin-left: 1.5rem;
}

.mission-stat-card--offset2 {
  margin-left: 3rem;
}

.mission-stat {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  flex-shrink: 0;
}

.mission-stat-label {
  font-size: 0.82rem;
  color: rgba(255, 246, 236, 0.6);
  font-weight: 500;
  line-height: 1.4;
}

@media (min-width: 720px) {
  .mission-inner {
    flex-direction: row;
    align-items: center;
    gap: 5rem;
  }
  .mission-text {
    flex: 1;
  }
}

/* ===================================================
   SECTION NOW+
   =================================================== */
.section-nowplus {
  padding: 5rem 0;
  background: var(--cream-warm);
}

.nowplus-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.nowplus-badge {
  display: inline-block;
  background: var(--night);
  color: var(--cream);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: var(--radius-btn);
  margin-bottom: 1.25rem;
}

.nowplus-inner h2 {
  margin-bottom: 1rem;
}

.nowplus-inner > p {
  color: rgba(4, 18, 137, 0.65);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.nowplus-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  text-align: left;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}

.nowplus-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
}

.nowplus-price {
  font-size: 0.85rem;
  color: rgba(4, 18, 137, 0.45);
  font-weight: 600;
}

/* ===================================================
   SECTION FAQ
   =================================================== */
.section-faq {
  padding: 5rem 0;
  background: var(--cream);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-card);
}

.faq-question {
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.faq-answer {
  font-size: 0.9rem;
  color: rgba(4, 18, 137, 0.65);
  line-height: 1.6;
}

@media (min-width: 720px) {
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===================================================
   SECTION MANIFESTO
   =================================================== */
.section-manifesto {
  padding: 5rem 0;
  background: var(--cream);
}

.manifesto-inner {
  max-width: 860px;
  margin: 0 auto;
}

.manifesto-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.manifesto-header h2 {
  max-width: 640px;
  margin: 0 auto;
}

.manifesto-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.manifesto-pillar {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.75rem;
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.manifesto-pillar-number {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  flex-shrink: 0;
}

.manifesto-pillar p {
  font-size: 1rem;
  color: rgba(4, 18, 137, 0.75);
  line-height: 1.65;
  margin: 0;
}

.manifesto-cta {
  text-align: center;
  padding: 2rem;
  border-top: 1px solid rgba(4, 18, 137, 0.08);
}

.manifesto-tagline {
  font-family: var(--font-title);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 800;
  color: var(--ink);
  margin: 0;
  line-height: 1.4;
}

@media (min-width: 720px) {
  .manifesto-pillars {
    grid-template-columns: repeat(3, 1fr);
  }
  .manifesto-pillar {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ===================================================
   SECTION CONCEPT
   =================================================== */
.section-concept {
  padding: 5rem 0;
  background: var(--cream);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header .pill-label {
  margin-bottom: 1rem;
}

.section-header h2 {
  max-width: 600px;
  margin: 0 auto 1rem;
}

.section-header p {
  color: rgba(4, 18, 137, 0.65);
  max-width: 520px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.concept-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.concept-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.concept-card-number {
  font-family: var(--font-title);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(4, 18, 137, 0.06);
  position: absolute;
  top: -0.5rem;
  right: 1rem;
  line-height: 1;
}

.concept-card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.concept-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.concept-card p {
  font-size: 0.9rem;
  color: rgba(4, 18, 137, 0.65);
}

.concept-card .pill-label {
  margin-bottom: 1rem;
  font-size: 0.7rem;
}

@media (min-width: 720px) {
  .concept-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===================================================
   SECTION ARTICLES
   =================================================== */
.section-articles {
  padding: 5rem 0;
  background: var(--cream-warm);
}

.articles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.article-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(4, 18, 137, 0.12);
}

.article-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: rgba(4, 18, 137, 0.5);
  font-weight: 500;
}

.article-card h3 {
  font-size: 1.15rem;
  margin: 0;
}

.article-card p {
  font-size: 0.9rem;
  color: rgba(4, 18, 137, 0.65);
  flex: 1;
}

.article-card-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.2s;
}

.article-card:hover .article-card-link {
  gap: 0.6rem;
}

@media (min-width: 720px) {
  .articles-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===================================================
   SECTION LEAD MAGNET
   =================================================== */
.section-leadmagnet {
  padding: 5rem 0;
  background: var(--night);
  position: relative;
  overflow: hidden;
}

.section-leadmagnet::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,246,236,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,246,236,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.leadmagnet-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
  text-align: center;
}

.leadmagnet-content h2 {
  color: var(--cream);
  margin-bottom: 1rem;
}

.leadmagnet-content p {
  color: rgba(255, 246, 236, 0.75);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto 1.5rem;
}

.leadmagnet-bullets {
  text-align: left;
  margin-bottom: 2rem;
  display: inline-block;
}

.leadmagnet-bullets li {
  color: rgba(255, 246, 236, 0.85);
  font-size: 0.95rem;
  padding: 0.3rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.leadmagnet-bullets li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.leadmagnet-visual {
  flex-shrink: 0;
}

.leadmagnet-pdf-mock {
  width: 180px;
  height: 240px;
  background: linear-gradient(135deg, var(--orange), var(--orange-soft));
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 1.2rem;
  text-align: center;
  padding: 1.5rem;
  box-shadow: 0 20px 60px rgba(239, 81, 39, 0.4);
  line-height: 1.2;
}

.leadmagnet-pdf-mock .pdf-subtitle {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  opacity: 0.85;
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (min-width: 720px) {
  .leadmagnet-inner {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: left;
    gap: 4rem;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
  }
  .leadmagnet-content {
    flex: 1;
  }
  .leadmagnet-content p,
  .leadmagnet-content h2 {
    margin-left: 0;
    margin-right: 0;
  }
}

/* ===================================================
   SECTION NEWSLETTER
   =================================================== */
.section-newsletter {
  padding: 5rem 0;
  background: var(--cream);
}

.newsletter-box {
  background: var(--cream-warm);
  border-radius: var(--radius-card);
  padding: 3rem 2rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-box .pill-label {
  margin-bottom: 1rem;
}

.newsletter-box h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
}

.newsletter-box p {
  color: rgba(4, 18, 137, 0.65);
  margin-bottom: 1.75rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 420px;
  margin: 0 auto;
}

.newsletter-form input[type="email"] {
  width: 100%;
  padding: 0.8rem 1.25rem;
  border-radius: var(--radius-btn);
  border: 2px solid rgba(4, 18, 137, 0.15);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
}

.newsletter-form input[type="email"]:focus {
  border-color: var(--night);
}

.newsletter-form input[type="email"]::placeholder {
  color: rgba(4, 18, 137, 0.4);
}

.newsletter-form .btn {
  width: 100%;
  justify-content: center;
}

.newsletter-reassurance {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: rgba(4, 18, 137, 0.45);
}

/* CTA newsletter (pages autres que newsletter.html) */
.newsletter-cta-card {
  display: block;
  background: rgba(255, 246, 236, 0.07);
  border: 1px solid rgba(255, 246, 236, 0.15);
  border-radius: var(--radius-card);
  padding: 2rem 1.75rem;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.newsletter-cta-card:hover {
  background: rgba(255, 246, 236, 0.12);
  border-color: rgba(255, 246, 236, 0.25);
  transform: translateY(-3px);
}

.newsletter-cta-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.newsletter-cta-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  color: var(--cream);
}

.newsletter-cta-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.newsletter-cta-text strong {
  color: var(--cream);
  font-size: 1rem;
  font-family: var(--font-title);
  font-weight: 800;
}

.newsletter-cta-text span {
  color: rgba(255, 246, 236, 0.5);
  font-size: 0.8rem;
}

.newsletter-cta-arrow {
  color: var(--orange);
  font-size: 1.5rem;
  font-weight: 700;
  transition: transform 0.2s;
}

.newsletter-cta-card:hover .newsletter-cta-arrow {
  transform: translateX(4px);
}

.newsletter-cta-sub {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-btn);
  margin: 0;
  transition: background 0.2s;
}

.newsletter-cta-card:hover .newsletter-cta-sub {
  background: var(--orange-soft);
}

/* Message de succès après soumission */
.form-success-message {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--night);
  background: rgba(4, 18, 137, 0.06);
  border-radius: var(--radius-card);
  padding: 1rem 1.25rem;
  text-align: center;
  justify-content: center;
}

.form-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  background: #22c55e;
  color: #fff;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Sur fond sombre (newsletter section) */
.newsletter-form-card .form-success-message {
  color: var(--cream);
  background: rgba(255, 246, 236, 0.08);
}

/* Validation erreur */
.input-error {
  border-color: #ef4444 !important;
  animation: shake 0.3s ease;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}

@media (min-width: 720px) {
  .newsletter-form {
    flex-direction: row;
  }
  .newsletter-form input[type="email"] {
    flex: 1;
  }
  .newsletter-form .btn {
    width: auto;
    flex-shrink: 0;
  }
}

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  background: var(--night-deep);
  padding: 3rem 0 2rem;
  color: rgba(255, 246, 236, 0.7);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-logo img {
  height: 28px;
  width: auto;
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255, 246, 236, 0.5);
}

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

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 246, 236, 0.65);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--cream);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 246, 236, 0.1);
  padding-top: 1.5rem;
  font-size: 0.8rem;
  color: rgba(255, 246, 236, 0.35);
}

@media (min-width: 720px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-links {
    flex-direction: row;
    gap: 2rem;
  }
}

/* ===================================================
   PAGES ARTICLES
   =================================================== */

/* Offset pour la nav fixe */
.page-content {
  padding-top: 64px;
}

/* Fil d'Ariane */
.breadcrumb {
  padding: 1.25rem 0;
  font-size: 0.82rem;
  color: rgba(4, 18, 137, 0.5);
}

.breadcrumb a {
  color: rgba(4, 18, 137, 0.5);
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--orange);
}

.breadcrumb span {
  margin: 0 0.4rem;
}

/* En-tête article */
.article-header {
  padding: 2rem 0 3rem;
  background: var(--cream);
  border-bottom: 1px solid rgba(4, 18, 137, 0.08);
}

.article-header .pill-label {
  margin-bottom: 1.25rem;
}

.article-header h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  max-width: 820px;
}

.article-deck {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: rgba(4, 18, 137, 0.65);
  max-width: 680px;
  margin-bottom: 1.25rem;
  font-weight: 400;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.82rem;
  color: rgba(4, 18, 137, 0.5);
  font-weight: 500;
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* Onglets 3 niveaux */
.level-tabs-wrapper {
  background: #fff;
  border-bottom: 2px solid rgba(4, 18, 137, 0.06);
  position: sticky;
  top: 64px;
  z-index: 50;
}

.level-tabs {
  display: flex;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.level-tabs::-webkit-scrollbar {
  display: none;
}

.level-tab {
  display: flex;
  flex-direction: column;
  padding: 1rem 1.5rem;
  cursor: pointer;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(4, 18, 137, 0.45);
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s, border-color 0.2s;
}

.level-tab:hover {
  color: var(--night);
}

.level-tab.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

.level-tab .tab-duration {
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(4, 18, 137, 0.35);
  margin-top: 0.15rem;
}

.level-tab.active .tab-duration {
  color: rgba(239, 81, 39, 0.6);
}

/* Contenu article */
.article-body {
  padding: 3rem 0;
  max-width: 720px;
  margin: 0 auto;
}

.level-content {
  display: none;
}

.level-content.active {
  display: block;
}

.article-body h2 {
  font-size: 1.6rem;
  margin: 2rem 0 0.75rem;
}

.article-body h3 {
  font-size: 1.2rem;
  margin: 1.5rem 0 0.5rem;
}

.article-body p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: rgba(4, 18, 137, 0.85);
}

.article-body ul, .article-body ol {
  margin: 1rem 0 1rem 1.5rem;
}

.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }

.article-body li {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(4, 18, 137, 0.85);
  margin-bottom: 0.4rem;
}

/* Encart contextuel */
.article-callout {
  background: var(--cream-warm);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}

.article-callout-title {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.article-callout p {
  font-size: 0.95rem !important;
  color: rgba(4, 18, 137, 0.8) !important;
}

/* Encart "Impact sur ton argent" pour les articles actu */
.impact-callout {
  background: var(--night);
  border-radius: var(--radius-card);
  padding: 2rem;
  margin: 2.5rem 0;
  color: var(--cream);
}

.impact-callout-title {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 1rem;
}

.impact-callout ul {
  margin: 0;
  list-style: none !important;
}

.impact-callout li {
  color: rgba(255, 246, 236, 0.85) !important;
  padding-left: 1.5rem !important;
  position: relative;
}

.impact-callout li::before {
  content: '💶';
  position: absolute;
  left: 0;
}

/* Bloc newsletter en bas d'article */
.article-newsletter {
  background: var(--cream-warm);
  border-radius: var(--radius-card);
  padding: 2.5rem 2rem;
  text-align: center;
  margin: 3rem 0;
}

.article-newsletter h3 {
  margin-bottom: 0.5rem;
}

.article-newsletter p {
  color: rgba(4, 18, 137, 0.65);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

/* ===================================================
   PAGE GUIDE GRATUIT
   =================================================== */
.guide-page {
  min-height: 100vh;
  background: var(--cream);
  padding-top: 80px;
}

.guide-logo {
  text-align: center;
  padding: 1.5rem 0 0;
}

.guide-logo img {
  height: 32px;
  margin: 0 auto;
}

.guide-content {
  max-width: 560px;
  margin: 0 auto;
  padding: 3rem 1.25rem;
  text-align: center;
}

.guide-content h1 {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  margin-bottom: 1rem;
}

.guide-content > p {
  color: rgba(4, 18, 137, 0.65);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.guide-pdf-visual {
  width: 160px;
  height: 210px;
  background: linear-gradient(135deg, var(--orange), var(--orange-soft));
  border-radius: 10px;
  margin: 0 auto 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 1.1rem;
  text-align: center;
  padding: 1.25rem;
  box-shadow: 0 20px 50px rgba(239, 81, 39, 0.3);
  line-height: 1.2;
}

.guide-bullets {
  text-align: left;
  margin: 0 auto 2.5rem;
  max-width: 420px;
}

.guide-bullets li {
  padding: 0.4rem 0 0.4rem 1.75rem;
  position: relative;
  font-size: 0.95rem;
  color: rgba(4, 18, 137, 0.8);
}

.guide-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.guide-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.guide-form input[type="email"] {
  width: 100%;
  padding: 0.9rem 1.25rem;
  border-radius: var(--radius-btn);
  border: 2px solid rgba(4, 18, 137, 0.15);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
}

.guide-form input[type="email"]:focus {
  border-color: var(--night);
}

.guide-form .btn {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 1rem 2rem;
}

.guide-reassurance {
  font-size: 0.8rem;
  color: rgba(4, 18, 137, 0.4);
}

/* ===================================================
   POPUP GUIDE GRATUIT
   =================================================== */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 9, 63, 0.6);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.popup-overlay.visible {
  opacity: 1;
  pointer-events: all;
}

.popup-card {
  background: var(--cream);
  border-radius: var(--radius-card);
  padding: 2rem 1.75rem;
  max-width: 480px;
  width: 100%;
  position: relative;
  transform: translateY(30px);
  transition: transform 0.35s ease;
  box-shadow: 0 24px 60px rgba(4, 18, 137, 0.25);
}

.popup-overlay.visible .popup-card {
  transform: translateY(0);
}

.popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.25rem;
  color: rgba(4, 18, 137, 0.35);
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem;
  transition: color 0.2s;
}

.popup-close:hover {
  color: var(--ink);
}

.popup-card .popup-pdf {
  width: 56px;
  height: 72px;
  background: linear-gradient(160deg, var(--night) 0%, var(--night-deep) 100%);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 0.55rem;
  text-align: center;
  line-height: 1.3;
  padding: 0.4rem;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.popup-pdf em {
  color: var(--orange);
  font-style: italic;
}

.popup-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}

.popup-card p {
  font-size: 0.88rem;
  color: rgba(4, 18, 137, 0.65);
  margin-bottom: 1.25rem;
}

.popup-card .btn {
  width: 100%;
  justify-content: center;
}

.popup-card .popup-skip {
  display: block;
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.78rem;
  color: rgba(4, 18, 137, 0.35);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
  transition: color 0.2s;
}

.popup-card .popup-skip:hover {
  color: rgba(4, 18, 137, 0.6);
}

@media (min-width: 720px) {
  .popup-overlay {
    align-items: center;
  }
}

/* ===================================================
   PAGES DE LISTING (les-bases, actu)
   =================================================== */
.listing-header {
  background: var(--night);
  padding: 4rem 0 3rem;
  text-align: center;
}

.listing-header h1 {
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.listing-header p {
  color: rgba(255, 246, 236, 0.7);
  max-width: 500px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.listing-grid {
  padding: 3rem 0 5rem;
}

.listing-grid .articles-grid {
  gap: 1.5rem;
}

/* ===================================================
   ANIMATIONS
   =================================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  animation: fadeInUp 0.5s ease forwards;
}

.fade-in-delay-1 { animation-delay: 0.1s; }
.fade-in-delay-2 { animation-delay: 0.2s; }
.fade-in-delay-3 { animation-delay: 0.3s; }

/* ===================================================
   MONÉTISATION NIVEAU 3 — Now+ (non activé pour l'instant)
   Pour activer : ajouter la classe .premium-locked sur
   le div.level-content[data-level="3"] concerné,
   et passer data-premium="true" sur ce même div.
   =================================================== */
.premium-locked {
  position: relative;
  /* Le contenu reste dans le DOM mais est masqué sous l'overlay */
}

.premium-locked::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 220px;
  background: linear-gradient(to bottom, transparent, var(--cream) 70%);
  pointer-events: none;
}

.premium-locked .premium-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem 2.5rem;
}

.premium-overlay-card {
  background: var(--night);
  border-radius: var(--radius-card);
  padding: 2rem 2rem;
  max-width: 440px;
  width: 100%;
  box-shadow: 0 8px 40px rgba(4, 18, 137, 0.2);
}

.premium-overlay-card .lock-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.premium-overlay-card h3 {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 0.6rem;
}

.premium-overlay-card p {
  font-size: 0.88rem;
  color: rgba(255, 246, 236, 0.7);
  margin-bottom: 1.25rem;
  line-height: 1.55;
}

.premium-overlay-card .btn {
  width: 100%;
  justify-content: center;
}

/* ===================================================
   SECTION NEWSLETTER PRODUIT (homepage)
   =================================================== */
.section-newsletter-product {
  padding: 5rem 0;
  background: var(--night);
  position: relative;
  overflow: hidden;
}

.section-newsletter-product::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,246,236,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,246,236,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.newsletter-product-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.newsletter-product-text .pill-label {
  background: rgba(255, 246, 236, 0.12);
  color: var(--cream);
}

.newsletter-product-text h2 {
  color: var(--cream);
  margin-bottom: 1rem;
}

.newsletter-product-text > p {
  color: rgba(255, 246, 236, 0.7);
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 2rem;
}

.newsletter-pillars {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.newsletter-pillar {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.newsletter-pillar-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.newsletter-pillar strong {
  display: block;
  color: var(--cream);
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.newsletter-pillar p {
  color: rgba(255, 246, 236, 0.6);
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.5;
}

/* Carte formulaire newsletter */
.newsletter-form-card {
  background: rgba(255, 246, 236, 0.07);
  border: 1px solid rgba(255, 246, 236, 0.12);
  border-radius: var(--radius-card);
  padding: 2rem 1.75rem;
}

.newsletter-form-title {
  font-size: 1rem;
  color: rgba(255, 246, 236, 0.8);
  margin-bottom: 1.25rem;
  text-align: center;
}

.newsletter-form-title strong {
  color: var(--cream);
}

.newsletter-form-card .newsletter-form {
  max-width: 100%;
  flex-direction: column;
  margin: 0;
}

.newsletter-form-card .newsletter-form .btn {
  width: 100%;
  justify-content: center;
}

.newsletter-form-card .newsletter-reassurance {
  text-align: center;
  color: rgba(255, 246, 236, 0.35);
}

.newsletter-form-proof {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 0.75rem;
  font-size: 0.78rem;
  color: rgba(255, 246, 236, 0.4);
  font-weight: 500;
}

/* Override du formulaire sur fond sombre */
.newsletter-form-card .newsletter-form input[type="email"] {
  background: rgba(255, 246, 236, 0.08);
  border-color: rgba(255, 246, 236, 0.15);
  color: var(--cream);
}

.newsletter-form-card .newsletter-form input[type="email"]::placeholder {
  color: rgba(255, 246, 236, 0.3);
}

.newsletter-form-card .newsletter-form input[type="email"]:focus {
  border-color: rgba(255, 246, 236, 0.4);
}

@media (min-width: 900px) {
  .newsletter-product-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 5rem;
  }
  .newsletter-product-text {
    flex: 1;
  }
  .newsletter-product-form {
    width: 380px;
    flex-shrink: 0;
  }
}

