/* ============================================================
   HyperFokus · V6 Clinique · global styles
   ============================================================ */

:root {
  --paper: #f7f8f9;
  --paper-2: #ebedef;
  --paper-3: #fcfcfd;
  --ink: #0e1a1f;
  --ink-2: #1f2e35;
  --ink-3: #5e6d75;
  --rule: #d9dde0;
  --rule-2: #c6cccf;
  --teal: #1a5450;
  --teal-2: #0d3a37;
  --teal-3: #2b6e69;
  --teal-soft: #cce0dc;
  --teal-tint: #e6f0ed;
  --warn: #b25430;
  --sans: "Inter Tight", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  --serif: "Source Serif 4", "Iowan Old Style", "Times New Roman", serif;
  --maxw: 1280px;
  --gutter: clamp(20px, 4vw, 28px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11", "tnum";
}
body {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: -0.005em;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; background: 0; border: 0; cursor: pointer; color: inherit; }
::selection { background: var(--teal); color: #fff; }

/* Layout */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: 80px 0; border-bottom: 1px solid var(--rule); }
.section--tight { padding: 56px 0; }
.section--lg { padding: 96px 0; }

/* Typography */
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--teal);
}
.h-display {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.98;
  color: var(--ink);
}
.h-display i { color: var(--teal); font-style: italic; }
.h1 { font-size: clamp(54px, 6.5vw, 108px); }
.h2 { font-size: clamp(36px, 4vw, 56px); }
.h3 { font-size: clamp(28px, 3vw, 40px); }
.h4 { font-size: clamp(22px, 2.2vw, 30px); }

.lede {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.35;
  color: var(--ink-2);
  font-weight: 400;
  letter-spacing: -0.005em;
  text-wrap: balance;
}
.body {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-3);
}
.body b, .body strong { color: var(--ink); font-weight: 600; }
.body sup {
  font-size: 10px;
  color: var(--teal);
  font-weight: 600;
  margin-left: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
  white-space: nowrap;
}
.btn .arrow::after { content: " →"; }
.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--teal-2); }
.btn-ghost {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--rule);
}
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }
.btn-light {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-light:hover { background: #fff; color: var(--teal); }
.btn-text {
  background: transparent;
  padding: 6px 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  color: var(--ink);
}
.btn-text:hover { color: var(--teal); border-color: var(--teal); }

/* Nav */
/* safe-area iOS */
.nav-wrap { padding-top: env(safe-area-inset-top, 0); }
.nav-wrap {
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
  position: sticky;
  top: 0; z-index: 30;
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  background: color-mix(in oklab, var(--paper) 92%, transparent);
}
.nav {
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  display: flex; align-items: center; gap: 8px;
  color: var(--ink);
}
.brand-mark {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--teal);
  position: relative;
  display: inline-block;
  flex-shrink: 0;
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 4px;
  background: var(--paper);
  border-radius: 50%;
}
.brand-mark::before {
  content: "";
  position: absolute;
  inset: 8px;
  background: var(--teal);
  border-radius: 50%;
  z-index: 2;
}
.nav-links {
  display: flex; gap: 28px;
  font-size: 14px;
  color: var(--ink-2);
  font-weight: 500;
}
.nav-links a { padding: 6px 0; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.nav-cta {
  white-space: nowrap;
  background: var(--teal);
  color: #fff !important;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
}
.nav-cta:hover { background: var(--teal-2); }

/* Mobile dropdown menu · full-screen overlay */
.nav-burger {
  display: none; width: 44px; height: 44px;
  border: 1px solid var(--rule); border-radius: 12px; background: #fff;
  place-items: center; color: var(--ink); flex-shrink: 0;
  box-shadow: 0 1px 2px rgba(14,26,31,0.06);
}
.nav-drop { display: none; }
@media (max-width: 800px) {
  .nav-burger { display: grid; order: 3; margin-left: 12px; }
  .nav .brand { margin-right: auto; }
  .nav-cta { display: none; }
  .nav-drop.open {
    display: flex; flex-direction: column;
    position: fixed; inset: 0;
    background: var(--paper, #f6f8f7); z-index: 100;
    padding: 0 22px calc(22px + env(safe-area-inset-bottom));
    overflow-y: auto;
  }
  .nav-drop .drop-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 0 16px; border-bottom: 1px solid var(--rule); margin-bottom: 2px;
  }
  .nav-drop .drop-close {
    width: 44px; height: 44px; border: 1px solid var(--rule); border-radius: 12px;
    background: #fff; display: grid; place-items: center; color: var(--ink);
    box-shadow: 0 1px 2px rgba(14,26,31,0.06);
  }
  .nav-drop a.drop-link {
    padding: 16px 2px; font-size: 17px; font-weight: 500; color: var(--ink);
    border-bottom: 1px solid var(--rule); border-radius: 0;
  }
  .nav-drop a.drop-link.active { color: var(--teal); }
  .nav-drop .drop-cta {
    margin-top: 22px; background: var(--teal-2); color: #fff;
    padding: 14px; border-radius: 12px; text-align: center;
    font-size: 15px; font-weight: 600;
  }
  .nav-drop .drop-cta:active { background: var(--teal); }
}

@media (max-width: 800px) {
  .nav-links { display: none; }
}

/* Trust strip */
.trust {
  background: var(--paper-2);
  border-bottom: 1px solid var(--rule);
  padding: 11px 0;
}
.trust .row {
  display: flex; justify-content: space-between;
  font-size: 12px; color: var(--ink-3);
  font-weight: 500;
  gap: 24px;
  flex-wrap: wrap;
}
.trust b { color: var(--ink); font-weight: 600; }
.trust span { display: inline-flex; align-items: center; gap: 6px; }
.trust .dot {
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
  display: inline-block;
}

/* Crumbs */
.crumbs {
  padding: 18px 0;
  font-size: 12px;
  color: var(--ink-3);
  border-bottom: 1px solid var(--rule);
}
.crumbs .sep { margin: 0 8px; opacity: 0.5; }
.crumbs a:hover { color: var(--teal); }
.crumbs .current { color: var(--ink); font-weight: 500; }

/* Hero */
.hero {
  padding: 72px 0 88px;
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 56px;
  align-items: end;
  border-bottom: 1px solid var(--rule);
}
.hero .meta {
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap;
}
.hero .pill {
  display: inline-flex;
  padding: 4px 9px;
  background: var(--teal-soft);
  color: var(--teal-2);
  border-radius: 999px;
  font-weight: 600;
  font-size: 11px;
}
.hero-side .actions {
  margin-top: 18px;
  display: flex; flex-direction: column; gap: 8px;
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 28px; }
}

/* Page hero (sub pages) · slimmer */
.page-hero {
  padding: 56px 0 64px;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 56px;
  align-items: end;
}
.page-hero .meta {
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .page-hero { grid-template-columns: 1fr; gap: 28px; }
}

/* Sources strip */
.sources {
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  display: flex;
  gap: 12px;
  font-size: 11px;
  color: var(--ink-3);
  align-items: center;
  flex-wrap: wrap;
}
.sources b { color: var(--ink); font-weight: 600; margin-right: 8px; }
.sources .src {
  padding: 4px 9px;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 4px;
  font-family: var(--serif);
  font-size: 11px;
}

/* Section head */
.section-head {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
  align-items: end;
}
.section-head .label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--teal);
}
.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  max-width: 24ch;
  text-wrap: balance;
}
.section-head h2 i { color: var(--teal); }
.section-head .side {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 38ch;
}
.section-head .side strong { color: var(--ink); font-weight: 600; }
@media (max-width: 900px) {
  .section-head { grid-template-columns: 1fr; gap: 20px; }
}

/* Stats / constat */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.stat {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 24px;
  display: flex; flex-direction: column;
  gap: 6px;
}
.stat .label {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-3);
  text-transform: uppercase;
}
.stat .big {
  font-family: var(--serif);
  font-size: 56px;
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-top: 6px;
  font-feature-settings: "tnum";
}
.stat .big sup {
  font-size: 0.4em;
  vertical-align: top;
  color: var(--teal);
  font-weight: 600;
}
.stat p {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink-2);
}
.stat .source {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--rule);
  font-family: var(--serif);
  font-size: 11px;
  color: var(--ink-3);
  font-style: italic;
}
@media (max-width: 900px) {
  .stats { grid-template-columns: 1fr; }
}

/* Piliers */
.piliers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.pilier {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 560px;
  position: relative;
  transition: border-color .2s, box-shadow .2s;
}
.pilier:hover {
  border-color: var(--teal);
  box-shadow: 0 4px 24px -12px rgba(26,84,80,0.18);
}
.pilier .tier {
  font-size: 11px;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
}
.pilier .name {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}
.pilier .price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule);
}
.pilier .price .num {
  font-family: var(--serif);
  font-size: 36px;
  letter-spacing: -0.02em;
}
.pilier .price .per {
  font-size: 12px;
  color: var(--ink-3);
}
.pilier .pitch {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.3;
  color: var(--ink-2);
  letter-spacing: -0.005em;
}
.pilier ul {
  list-style: none;
  font-size: 13px;
  color: var(--ink-2);
  display: flex; flex-direction: column;
  gap: 0;
  flex: 1;
}
.pilier ul li {
  padding: 9px 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 8px;
  line-height: 1.4;
}
.pilier ul li:last-child { border-bottom: 0; }
.pilier ul li svg { margin-top: 4px; }
.pilier .cta {
  background: var(--paper-2);
  color: var(--ink);
  padding: 14px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  display: flex; justify-content: space-between;
  margin-top: auto;
  border: 1px solid var(--rule);
  transition: background .2s, color .2s;
}
.pilier .cta:hover { background: var(--teal); color: #fff; border-color: var(--teal); }
.pilier--feat {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}
.pilier--feat .tier { color: var(--teal-soft); }
.pilier--feat .name { color: #fff; }
.pilier--feat .price { border-color: rgba(255,255,255,0.18); }
.pilier--feat .pitch { color: rgba(255,255,255,0.9); }
.pilier--feat ul { color: rgba(255,255,255,0.85); }
.pilier--feat ul li { border-color: rgba(255,255,255,0.15); }
.pilier--feat .price .per { color: rgba(255,255,255,0.6); }
.pilier--feat .cta {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  color: #fff;
}
.pilier--feat .cta:hover { background: #fff; color: var(--teal); }
.pilier--feat .ribbon {
  position: absolute;
  top: 16px; right: 16px;
  background: #fff;
  color: var(--teal);
  font-size: 10px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
}
@media (max-width: 900px) {
  .piliers { grid-template-columns: 1fr; }
  .pilier { min-height: auto; }
}

/* Scope: ce qu'on fait / ce qu'on ne fait pas */
.scope-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.scope-col {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 24px 28px;
}
.scope-col h4 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 8px;
}
.scope-col h4 .icon {
  width: 18px; height: 18px;
  border-radius: 50%;
  display: inline-grid; place-items: center;
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 600;
}
.scope-col.yes h4 { color: var(--teal); }
.scope-col.yes h4 .icon { background: var(--teal); color: #fff; }
.scope-col.no h4 { color: var(--ink-3); }
.scope-col.no h4 .icon { background: var(--paper-2); color: var(--ink-3); border: 1px solid var(--rule); }
.scope-col ul {
  list-style: none;
  display: flex; flex-direction: column;
  font-size: 14px;
  color: var(--ink-2);
}
.scope-col ul li {
  padding: 11px 0;
  border-bottom: 1px solid var(--rule);
  line-height: 1.45;
}
.scope-col ul li:last-child { border-bottom: 0; }
.scope-col.yes ul li::before {
  content: "✓ ";
  color: var(--teal);
  font-weight: 600;
  margin-right: 4px;
}
.scope-col.no ul li::before {
  content: "·  ";
  color: var(--ink-3);
}
@media (max-width: 900px) {
  .scope-grid { grid-template-columns: 1fr; }
}

/* Équipe */
.team {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.team-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 20px;
  display: flex; flex-direction: column;
  gap: 12px;
  min-height: 320px;
}
.team-card.lead { background: var(--paper-2); border-color: var(--rule-2); }
.team-photo {
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, var(--teal-tint), var(--teal-soft));
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.team-photo .ph {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 36px;
  color: var(--teal-2);
  letter-spacing: -0.02em;
}
.team-card .role {
  font-size: 11px;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
}
.team-card .name {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.team-card .bio {
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink-2);
  margin-top: auto;
}
@media (max-width: 900px) {
  .team { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .team { grid-template-columns: 1fr; }
}

/* Témoignages */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.testi {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 24px;
  display: flex; flex-direction: column;
  gap: 16px;
}
.testi .stars {
  font-size: 12px;
  color: var(--teal);
  letter-spacing: 1px;
}
.testi .quote {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.35;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.testi .quote i { color: var(--teal); }
.testi .who {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--rule);
  display: flex; align-items: center; gap: 10px;
}
.testi .avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--teal-tint);
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 14px;
  color: var(--teal-2);
  font-weight: 500;
  flex-shrink: 0;
}
.testi .meta {
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.35;
}
.testi .meta b { color: var(--ink); font-weight: 600; }
@media (max-width: 900px) {
  .testimonials { grid-template-columns: 1fr; }
}

/* Comparatif piliers */
.compare {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 10px;
  overflow: hidden;
}
.compare-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--rule);
}
.compare-row:last-child { border-bottom: 0; }
.compare-row > div {
  padding: 14px 18px;
  font-size: 13px;
  color: var(--ink-2);
  display: flex; align-items: center;
  border-right: 1px solid var(--rule);
}
.compare-row > div:last-child { border-right: 0; }
.compare-row > div.feat-col { background: var(--teal); color: #fff; border-right-color: var(--teal-2); }
.compare-row.head > div {
  background: var(--paper-2);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 12px 18px;
}
.compare-row.head > div.feat-col { background: var(--teal); color: #fff; }
.compare-row .label-col {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--ink);
}
.compare-row.title > div {
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: -0.015em;
  color: var(--ink);
  padding: 18px;
}
.compare-row.title > div.feat-col { color: #fff; }
.compare-row.title .meta {
  font-size: 11px;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
  font-family: var(--sans);
}
.compare-row.title .feat-col .meta { color: var(--teal-soft); }
.compare-row.price > div {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.compare-row.price > div.feat-col { color: #fff; }
.compare-row.price .per {
  font-size: 12px;
  color: var(--ink-3);
  margin-left: 4px;
  font-family: var(--sans);
  letter-spacing: 0;
}
.compare-row.price .feat-col .per { color: rgba(255,255,255,0.7); }
.compare-check {
  color: var(--teal);
  font-weight: 600;
}
.compare-row > div.feat-col .compare-check { color: #fff; }
.compare-dash { color: var(--rule-2); }
.compare-row.cta-row > div {
  padding: 18px;
}
.compare-row.cta-row > div.feat-col {
  background: var(--teal-2);
}
.compare-row.cta-row a {
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.compare-row.cta-row .feat-col a { color: #fff; }
.compare-row.cta-row a:hover { text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 900px) {
  .compare-row { grid-template-columns: 1fr; }
  .compare-row > div { border-right: 0; border-bottom: 1px solid var(--rule); }
  .compare-row.head { display: none; }
}

/* FAQ */
.faq-list {
  border-top: 1px solid var(--rule);
}
.faq-item {
  border-bottom: 1px solid var(--rule);
  padding: 0;
}
.faq-q-btn {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  display: grid;
  grid-template-columns: 40px 1fr 32px;
  align-items: start;
  gap: 16px;
  cursor: pointer;
  list-style: none;
}
.faq-q-btn::-webkit-details-marker { display: none; }
.faq-q-btn::marker { display: none; content: ""; }
.faq-num {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-3);
  padding-top: 4px;
}
.faq-q {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.3;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.faq-toggle {
  width: 28px; height: 28px;
  border: 1px solid var(--rule);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 14px;
  color: var(--ink-2);
  transition: background .2s, color .2s, transform .2s, border-color .2s;
  flex-shrink: 0;
}
.faq-q-btn:hover .faq-toggle { border-color: var(--teal); color: var(--teal); }
.faq-item[open] .faq-toggle {
  background: var(--teal); color: #fff;
  border-color: var(--teal);
  transform: rotate(45deg);
}
.faq-a {
  padding: 0 56px 22px 56px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 70ch;
}
.faq-a p + p { margin-top: 10px; }

/* CTA banner */
.cta-banner {
  background: var(--teal);
  color: #fff;
  border-radius: 14px;
  padding: clamp(36px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}
.cta-banner h3 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  text-wrap: balance;
}
.cta-banner h3 i { font-style: italic; color: var(--teal-soft); }
.cta-banner p {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
  max-width: 48ch;
}
.cta-banner .actions {
  display: flex; flex-direction: column; gap: 10px;
}
.cta-banner .btn-primary { background: #fff; color: var(--teal); }
.cta-banner .btn-primary:hover { background: var(--teal-soft); color: var(--teal-2); }
@media (max-width: 900px) {
  .cta-banner { grid-template-columns: 1fr; }
}

/* Footer */
.foot {
  padding: 56px 0 28px;
  background: var(--paper-2);
}
.foot .row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--rule);
}
.foot h4 {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 14px;
}
.foot ul { list-style: none; display: flex; flex-direction: column; gap: 8px; font-size: 13px; color: var(--ink-2); }
.foot ul a:hover { color: var(--teal); }
.foot-bottom {
  display: flex; justify-content: space-between;
  padding-top: 24px;
  font-size: 12px;
  color: var(--ink-3);
  flex-wrap: wrap;
  gap: 12px;
}
.foot .disclaimer {
  margin-top: 16px;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 14px 16px;
  font-family: var(--serif);
  font-size: 12px;
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 70ch;
  font-style: italic;
}
.foot .disclaimer b { font-style: normal; color: var(--ink); font-weight: 600; }
@media (max-width: 900px) {
  .foot .row { grid-template-columns: 1fr 1fr; }
}

/* Feature blocks (sub pages) */
.feature {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  padding: 48px 0;
  border-bottom: 1px solid var(--rule);
}
.feature:last-of-type { border-bottom: 0; }
.feature .n {
  font-family: var(--serif);
  font-size: clamp(52px, 6vw, 84px);
  line-height: 0.9;
  color: var(--teal);
  letter-spacing: -0.03em;
}
.feature h3 {
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 14px;
}
.feature h3 i { color: var(--teal); }
.feature p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 60ch;
}
.feature p + p { margin-top: 10px; }
@media (max-width: 900px) {
  .feature { grid-template-columns: 1fr; gap: 16px; padding: 32px 0; }
}

/* Cross-sell mini piliers */
.pillars-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.pillar-mini {
  border: 1px solid var(--rule);
  background: #fff;
  border-radius: 10px;
  padding: 22px;
  display: flex; flex-direction: column;
  gap: 10px;
  transition: border-color .2s, transform .2s;
}
.pillar-mini:hover { border-color: var(--teal); }
.pillar-mini .tier {
  font-size: 11px;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
}
.pillar-mini .name {
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: -0.02em;
}
.pillar-mini .price { color: var(--ink-3); font-size: 13px; }
.pillar-mini .pitch { font-size: 13px; color: var(--ink-2); line-height: 1.5; flex: 1; }
.pillar-mini .more {
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--rule);
  font-size: 13px;
  color: var(--ink);
  display: inline-flex;
  justify-content: space-between;
}
.pillar-mini:hover .more { color: var(--teal); }
@media (max-width: 900px) {
  .pillars-mini { grid-template-columns: 1fr; }
}

/* Quiz (interactif léger) */
.quiz-shell {
  min-height: 100vh;
  background: var(--paper);
  display: flex;
  flex-direction: column;
}
.quiz-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px var(--gutter);
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}
.quiz-progress-bar {
  height: 2px;
  background: var(--rule);
  position: relative;
}
.quiz-progress-bar > div {
  height: 100%;
  background: var(--teal);
  transition: width .5s cubic-bezier(.22,1,.36,1);
}
.quiz-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px var(--gutter);
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
}
.quiz-step {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 22px;
}
.quiz-q {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 36px;
  color: var(--ink);
  max-width: 22ch;
  text-wrap: balance;
}
.quiz-q i { color: var(--teal); }
.quiz-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.quiz-option {
  text-align: left;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 10px;
  font-size: 15px;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--serif);
  letter-spacing: -0.005em;
  line-height: 1.3;
  transition: border-color .2s, background .2s, transform .15s;
}
.quiz-option:hover {
  border-color: var(--teal);
  background: var(--paper-3);
}
.quiz-option.sel {
  border-color: var(--teal);
  background: var(--teal-tint);
}
.quiz-option .k {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--ink-3);
  padding: 3px 7px;
  border-radius: 4px;
  border: 1px solid var(--rule);
  align-self: flex-start;
  flex-shrink: 0;
  font-weight: 500;
}
.quiz-option.sel .k { color: var(--teal); border-color: var(--teal); background: #fff; }
.quiz-nav {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.quiz-nav-btn {
  font-size: 13px;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.quiz-nav-btn[disabled] { opacity: 0.3; cursor: not-allowed; }
.quiz-nav-btn:not([disabled]):hover { color: var(--teal); }
.quiz-result-card {
  background: var(--teal);
  color: #fff;
  border-radius: 14px;
  padding: 48px;
}
.quiz-result-card .badge {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--teal-soft);
}
.quiz-result-card h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 18px 0 8px;
  color: #fff;
}
.quiz-result-card .price {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 22px;
}
.quiz-result-card p {
  color: rgba(255,255,255,0.88);
  line-height: 1.55;
  font-size: 15px;
}
@media (max-width: 700px) {
  .quiz-options { grid-template-columns: 1fr; }
}

/* Misc helpers */
.spacer-sm { height: 24px; }
.spacer-md { height: 48px; }
.spacer-lg { height: 80px; }
.text-sage { color: var(--teal); }
.text-muted { color: var(--ink-3); }
.divider {
  height: 1px; background: var(--rule); border: 0; margin: 0;
}

/* Pastille des page-hero (mêmes règles que .hero .pill) */
.page-hero .pill {
  display: inline-flex;
  padding: 4px 9px;
  background: var(--teal-soft);
  color: var(--teal-2);
  border-radius: 999px;
  font-weight: 600;
  font-size: 11px;
}
