/* =====================================================
   NC Admin & Conformité — Feuille de style
   Charte : bleu nuit #1D2535 · or chaud #C6A75E
            jaune doré #FFDE59 · beige clair #F5F0EB
   Typos : IBM Plex Serif (titres) · IBM Plex Sans (sous-titres)
           Open Sans (corps) · Caveat (accents manuscrits*)
   * Caveat remplace VeryBerry (police payante) — voir README.
   ===================================================== */

:root {
  --bleu-nuit: #1D2535;
  --or-chaud: #C6A75E;
  --jaune-dore: #FFDE59;
  --beige-clair: #F5F0EB;
  --blanc: #FFFFFF;
  --gris-texte: #3a3f4a;
  --gris-clair: #6b7280;

  --serif: 'IBM Plex Serif', Georgia, serif;
  --sans-titre: 'IBM Plex Sans', sans-serif;
  --corps: 'Open Sans', sans-serif;
  --manuscrit: 'Caveat', cursive;

  --max-width: 1140px;
  --radius: 16px;
  --shadow: 0 12px 40px rgba(29, 37, 53, 0.10);
  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--corps);
  color: var(--gris-texte);
  line-height: 1.72;
  background: var(--blanc);
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 { font-family: var(--serif); color: var(--bleu-nuit); line-height: 1.2; }

a { color: var(--or-chaud); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--bleu-nuit); }

/* ---------- Boutons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans-titre);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 14px 28px;
  border-radius: 50px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-align: center;
}
.btn-primary { background: var(--bleu-nuit); color: var(--blanc); }
.btn-primary:hover { background: #2b3850; color: var(--jaune-dore); }
.btn-gold { background: var(--jaune-dore); color: var(--bleu-nuit); }
.btn-gold:hover { background: var(--or-chaud); color: var(--bleu-nuit); }
.btn-ghost { background: transparent; color: var(--bleu-nuit); border-color: var(--or-chaud); }
.btn-ghost:hover { background: var(--or-chaud); color: var(--bleu-nuit); }
.btn-block { display: block; width: 100%; }

/* ---------- En-tête ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(29, 37, 53, 0.08);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mono { height: 46px; width: 46px; display: block; }
.footer-logo-mono { height: 58px; width: 58px; display: block; margin-bottom: 12px; }
.logo-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: var(--bleu-nuit); color: var(--or-chaud);
  font-family: var(--serif); font-weight: 700; font-size: 1.05rem;
  border-radius: 8px;
}
.logo-text { font-family: var(--serif); font-weight: 600; color: var(--bleu-nuit); font-size: 1.1rem; }
.logo-text .amp { color: var(--or-chaud); }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a { font-family: var(--sans-titre); font-weight: 500; color: var(--bleu-nuit); font-size: 0.95rem; }
.nav a:hover { color: var(--or-chaud); }
.nav .nav-cta {
  background: var(--jaune-dore); color: var(--bleu-nuit);
  padding: 10px 20px; border-radius: 50px; font-weight: 600;
}
.nav .nav-cta:hover { background: var(--or-chaud); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--bleu-nuit); transition: var(--transition); }

/* ---------- Hero ---------- */
.hero { background: linear-gradient(160deg, var(--beige-clair) 0%, #fbf8f3 100%); padding: 80px 0 90px; }
.hero-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.hero-eyebrow {
  font-family: var(--sans-titre); font-weight: 600; text-transform: uppercase;
  letter-spacing: 1.5px; font-size: 0.78rem; color: var(--or-chaud); margin-bottom: 18px;
}
.hero-title { font-size: 3.4rem; font-weight: 700; margin-bottom: 22px; }
.hero-title .accent {
  color: var(--bleu-nuit);
  background-image: linear-gradient(120deg, var(--jaune-dore) 0%, var(--jaune-dore) 100%);
  background-repeat: no-repeat;
  background-size: 100% 36%;
  background-position: 0 86%;
  padding: 0 4px;
}
.hero-sub { font-size: 1.15rem; color: var(--gris-texte); max-width: 520px; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.hero-signature { font-family: var(--manuscrit); font-size: 1.5rem; color: var(--bleu-nuit); }

.hero-visual { position: relative; }
.hero-photo-name { margin-top: 16px; text-align: center; }
.hpn-name {
  display: block;
  font-family: var(--serif); font-weight: 700; font-size: 1.3rem;
  color: var(--bleu-nuit);
}
.hpn-name::after {
  content: "";
  display: block;
  width: 46px; height: 3px;
  background: var(--jaune-dore);
  border-radius: 2px;
  margin: 6px auto 0;
}
.hpn-role {
  display: block;
  font-family: var(--sans-titre); font-size: 0.85rem; color: var(--gris-clair);
  margin-top: 8px;
}
.hero-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 22%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 3px solid var(--jaune-dore);
  display: block;
}

/* ---------- Sections génériques ---------- */
.section { padding: 112px 0; }
.section-light { background: var(--blanc); }
.section-beige { background: var(--beige-clair); }
.section-dark { background: var(--bleu-nuit); }

.section-eyebrow {
  font-family: var(--sans-titre); font-weight: 600; text-transform: uppercase;
  letter-spacing: 1.5px; font-size: 0.78rem; color: var(--or-chaud); margin-bottom: 14px;
}
.section-eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px; height: 3px;
  background: var(--jaune-dore);
  border-radius: 2px;
  vertical-align: middle;
  margin-right: 10px;
}
.section-eyebrow.gold { color: var(--jaune-dore); }
.section-title { font-size: 2.3rem; font-weight: 700; margin-bottom: 18px; max-width: 760px; }
.section-title.light { color: var(--blanc); }
.section-intro { font-size: 1.1rem; max-width: 640px; margin-bottom: 48px; }
.section-intro.light { color: rgba(255,255,255,0.82); }

/* ---------- Qui je suis ---------- */
.qui-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; margin-top: 40px; align-items: start; }
.qui-side { display: flex; flex-direction: column; }
.qui-photo {
  width: 100%; border-radius: var(--radius); display: block;
  margin-bottom: 22px; max-height: 300px; object-fit: cover; object-position: center 35%;
  box-shadow: var(--shadow);
}
.qui-text p { margin-bottom: 18px; font-size: 1.05rem; }
.qui-text strong { color: var(--bleu-nuit); }
.qui-values { background: var(--beige-clair); border-radius: var(--radius); padding: 32px; }
.qui-values h3 { font-size: 1.25rem; margin-bottom: 18px; }
.values-list { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.values-list li {
  font-family: var(--sans-titre); font-weight: 600; font-size: 0.9rem;
  background: var(--blanc); color: var(--bleu-nuit);
  padding: 8px 16px; border-radius: 50px; border: 1px solid var(--or-chaud);
}
.qui-proof {
  background: var(--bleu-nuit);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-top: 24px;
}
.proof-num { display: block; font-family: var(--serif); font-weight: 700; font-size: 2.5rem; color: var(--jaune-dore); line-height: 1.1; }
.proof-label { font-size: 0.92rem; color: rgba(255, 255, 255, 0.82); }

/* ---------- Offres ---------- */
.offres-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 44px; }
.offre-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(198, 167, 94, 0.35);
  border-radius: var(--radius);
  padding: 32px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.offre-card:hover { transform: translateY(-4px); border-color: var(--or-chaud); background: rgba(255,255,255,0.07); }
.offre-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  border: 2px solid var(--or-chaud);
  font-family: var(--serif); font-weight: 700; font-size: 1.05rem; color: var(--or-chaud);
  margin-bottom: 16px;
}
.offre-card h3 {
  color: var(--jaune-dore);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 6px;
}
.offre-tag {
  font-family: var(--sans-titre); font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase; letter-spacing: 1.2px;
  font-size: 0.8rem; margin-bottom: 18px;
}
.offre-card p { color: rgba(255,255,255,0.8); font-size: 0.98rem; margin-bottom: 14px; }
.offre-includes {
  font-family: var(--sans-titre); font-weight: 600;
  font-size: 0.8rem !important; text-transform: uppercase; letter-spacing: 1px;
  color: var(--jaune-dore) !important; margin: 6px 0 12px !important;
}
.offre-list { list-style: none; padding: 0; margin: 0 0 6px; }
.offre-list li {
  position: relative; padding-left: 24px; margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.82); font-size: 0.95rem; line-height: 1.5;
}
.offre-list li::before { content: "✓"; position: absolute; left: 0; color: var(--or-chaud); font-weight: 700; }
.offre-list li strong { color: #fff; }
.offre-pour { font-size: 0.9rem !important; color: rgba(255,255,255,0.6) !important; }
.offre-pour strong { color: var(--or-chaud); }
.offre-format {
  font-family: var(--sans-titre); font-weight: 600;
  font-size: 0.9rem !important; color: var(--jaune-dore) !important;
  margin-top: auto !important; padding-top: 16px;
  border-top: 1px solid rgba(198, 167, 94, 0.25);
}
.offres-subtitle {
  font-family: var(--serif); color: #fff; font-size: 1.5rem; font-weight: 600;
  margin: 56px 0 22px;
}
.offres-subtitle::before {
  content: ""; display: inline-block; width: 26px; height: 3px;
  background: var(--jaune-dore); border-radius: 2px; vertical-align: middle; margin-right: 12px;
}
.formules-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.formule-card h3 { font-size: 1.6rem; }
.formule-accroche {
  color: rgba(255, 255, 255, 0.85) !important; font-style: italic;
  margin-bottom: 18px !important;
}
.offres-note { color: rgba(255, 255, 255, 0.6); font-size: 0.9rem; font-style: italic; margin: 18px 0 0; }
.offre-ponctuel { margin-top: 6px; }
.offre-list-2col { columns: 240px; column-gap: 40px; }
.offre-list-2col li { break-inside: avoid; }
.offres-cta { text-align: center; margin-top: 44px; }

/* ---------- Lead magnet ---------- */
.lead-card {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px;
  background: var(--blanc); border-radius: var(--radius);
  padding: 48px; box-shadow: var(--shadow); align-items: center;
}
.lead-visual { display: flex; justify-content: center; align-items: center; }
.lead-main .lead-text { margin-bottom: 28px; }

/* Mockup 3D de l'ebook */
.ebook-mockup {
  position: relative;
  width: 88%; max-width: 330px;
  background: linear-gradient(160deg, #ffffff, #d9dade);
  border: 1px solid #cdced4;
  border-radius: 30px;
  padding: 26px 16px;
  box-shadow: 0 28px 50px rgba(29, 37, 53, 0.22), inset 0 0 0 2px rgba(255, 255, 255, 0.8);
}
.ebook-mockup img { display: block; width: 100%; border-radius: 10px; }
.ebook-mockup::before {
  content: ""; position: absolute; top: 11px; left: 50%; transform: translateX(-50%);
  width: 7px; height: 7px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #7b8190, #2b2f38);
}
.lead-text p { margin-bottom: 18px; font-size: 1.05rem; }
.lead-bullets { list-style: none; }
.lead-bullets li { padding-left: 28px; position: relative; margin-bottom: 12px; font-size: 0.98rem; }
.lead-bullets li::before { content: "✓"; position: absolute; left: 0; color: var(--or-chaud); font-weight: 700; }
.lead-form { background: var(--beige-clair); border-radius: var(--radius); padding: 32px; }
.lead-form h3 { font-size: 1.35rem; margin-bottom: 20px; }
.lead-form label { display: block; font-family: var(--sans-titre); font-weight: 600; font-size: 0.88rem; color: var(--bleu-nuit); margin-bottom: 6px; }
.lead-form input[type="text"], .lead-form input[type="email"] {
  width: 100%; padding: 13px 16px; margin-bottom: 18px;
  border: 1px solid #d8d2c8; border-radius: 8px; font-family: var(--corps); font-size: 1rem;
  background: var(--blanc);
}
.lead-form input:focus { outline: none; border-color: var(--or-chaud); box-shadow: 0 0 0 3px rgba(198,167,94,0.2); }
.consent { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 22px; font-weight: 400 !important; font-size: 0.82rem !important; color: var(--gris-clair); }
.consent input { margin-top: 4px; flex-shrink: 0; }
.hidden-field { display: none; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; margin-top: 40px; align-items: start; }
.contact-photo { display: flex; justify-content: center; }
.contact-photo img { width: 100%; max-width: 560px; display: block; }
.contact-content { display: flex; flex-direction: column; gap: 32px; }
.contact-intro { font-size: 1.1rem; margin-bottom: 22px; }
.promesses-list { list-style: none; margin-bottom: 24px; }
.promesses-list li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; font-size: 1.05rem; }
.promesses-list .check {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  background: var(--jaune-dore); color: var(--bleu-nuit);
  display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem;
}
.contact-rassurance { font-family: var(--manuscrit); font-size: 1.4rem; color: var(--or-chaud); }
.contact-canaux { background: var(--beige-clair); border-radius: var(--radius); padding: 32px; }
.contact-canaux h3 { font-size: 1.3rem; margin-bottom: 20px; }
.canaux-grid { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.canaux-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.canaux-cal-note { text-align: center; font-size: 0.82rem; color: var(--gris-clair); margin-top: 10px; }
.canal {
  display: flex; align-items: center; gap: 14px;
  background: var(--blanc);
  border: 1px solid rgba(29, 37, 53, 0.08);
  border-radius: 12px;
  padding: 12px 16px;
  transition: all var(--transition);
}
.canal:hover { border-color: var(--or-chaud); transform: translateX(4px); box-shadow: var(--shadow); }
.canal-icon {
  flex-shrink: 0;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--bleu-nuit);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.canal-icon svg { width: 22px; height: 22px; fill: var(--jaune-dore); transition: fill var(--transition); }
.canal:hover .canal-icon { background: var(--or-chaud); }
.canal:hover .canal-icon svg { fill: var(--bleu-nuit); }
.canal-info { display: flex; flex-direction: column; line-height: 1.3; min-width: 0; }
.canal-label { font-family: var(--sans-titre); font-weight: 600; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 1px; color: var(--gris-clair); }
.canal-value { font-size: 0.96rem; color: var(--bleu-nuit); font-weight: 600; overflow-wrap: anywhere; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bleu-nuit); color: rgba(255,255,255,0.75); padding: 60px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-promesse { font-family: var(--serif); font-size: 1.3rem; color: var(--blanc); margin: 16px 0 6px; }
.footer-baseline { font-size: 0.92rem; }
.footer-col h4 { color: var(--or-chaud); font-size: 1rem; margin-bottom: 14px; }
.footer-col p, .footer-col a { display: block; font-size: 0.92rem; color: rgba(255,255,255,0.75); margin-bottom: 8px; }
.footer-col a:hover { color: var(--jaune-dore); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding: 20px 0; text-align: center; font-size: 0.85rem; color: rgba(255,255,255,0.5); }

/* ---------- Bandeau photo ---------- */
.photo-band {
  position: relative;
  min-height: 400px;
  background: url('assets/lifestyle-2.jpg') center 62% / cover no-repeat;
  display: flex; align-items: center; justify-content: center;
}
.photo-band::before {
  content: ""; position: absolute; inset: 0;
  background: rgba(29, 37, 53, 0.5);
}
.photo-band-content { position: relative; z-index: 1; max-width: 740px; padding: 40px 24px; text-align: center; }
.photo-band-quote {
  font-family: var(--serif); font-style: italic; color: #fff;
  font-size: clamp(1.5rem, 4.5vw, 2.1rem); line-height: 1.35;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}
.photo-band-quote .accent { color: var(--jaune-dore); font-style: normal; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 44px auto 0; }
.faq-item { border-bottom: 1px solid rgba(29, 37, 53, 0.12); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
  padding: 22px 4px;
  font-family: var(--serif); font-weight: 600; font-size: 1.12rem; color: var(--bleu-nuit);
  transition: color var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--sans-titre); font-weight: 400; font-size: 1.7rem; line-height: 1;
  color: var(--or-chaud); flex-shrink: 0;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item summary:hover { color: var(--or-chaud); }
.faq-answer { padding: 0 4px 24px; color: var(--gris-texte); max-width: 720px; }

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  .nav {
    position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--blanc); border-bottom: 1px solid rgba(29,37,53,0.08);
    max-height: 0; overflow: hidden; transition: max-height var(--transition);
  }
  .nav.open { max-height: 360px; }
  .nav a { width: 100%; padding: 16px 24px; border-top: 1px solid rgba(29,37,53,0.06); }
  .nav .nav-cta { border-radius: 0; }

  .hero-inner, .qui-grid, .offres-grid, .formules-grid, .lead-card, .contact-grid, .footer-inner {
    grid-template-columns: 1fr;
  }
  .hero { padding: 50px 0 60px; }
  .hero-title { font-size: 2.5rem; }
  .hero-visual { order: -1; max-width: 320px; margin: 0 auto; }
  .section { padding: 60px 0; }
  .section-title { font-size: 1.85rem; }
  .lead-card { padding: 28px; }
  .footer-inner { gap: 28px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}
