/* OptiqueNote — feuille de style commune */

:root {
  --bg: #faf7f2;
  --bg-soft: #f1ece1;
  --bg-card: #ffffff;
  --ink: #0e1b2c;
  --ink-2: #2a3949;
  --muted: #6b6358;
  --line: #e6dfd1;
  --accent: #c8541e;
  --accent-ink: #8c3a14;
  --accent-soft: #fbe7da;
  --success: #1f6f44;
  --success-soft: #e3f1ea;
  --warn: #a86b00;
  --warn-soft: #fbefd1;
  --danger: #a52723;
  --danger-soft: #fadcda;
  --shadow-sm: 0 1px 2px rgba(14, 27, 44, 0.04), 0 1px 3px rgba(14, 27, 44, 0.06);
  --shadow-md: 0 10px 30px -10px rgba(14, 27, 44, 0.18);
  --radius: 14px;
  --maxw: 1180px;
}

* { box-sizing: border-box; }
html { box-sizing: border-box; }
*, *::before, *::after { box-sizing: inherit; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: var(--ink); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); line-height: 1.05; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); line-height: 1.15; }
h3 { font-size: 1.25rem; line-height: 1.25; }
p { margin: 0 0 1em; color: var(--ink-2); }

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

/* — Navigation — */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 247, 242, 0.86);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; max-width: var(--maxw); margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 1.05rem; }
.brand .logo {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--ink); color: var(--bg);
  display: grid; place-items: center; font-family: 'Fraunces', serif; font-style: italic;
}
.nav-links { display: flex; gap: 28px; }
.nav-links a { color: var(--ink-2); font-size: 0.95rem; }
.nav-cta {
  background: var(--ink); color: var(--bg);
  padding: 10px 16px; border-radius: 999px;
  font-size: 0.9rem; font-weight: 500;
}
.nav-cta:hover { background: var(--accent); color: white; text-decoration: none; }

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

/* — Boutons — */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 22px; border-radius: 999px;
  font-weight: 500; font-size: 0.98rem;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .12s ease, background .12s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: white; }
.btn-primary:hover { background: var(--accent-ink); color: white; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--bg); }
.btn-ink { background: var(--ink); color: var(--bg); }
.btn-ink:hover { background: var(--accent); color: white; }

/* — Sections génériques — */
section { padding: 96px 0; }
section.tight { padding: 64px 0; }
.kicker {
  display: inline-block;
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--accent); font-weight: 600;
  margin-bottom: 12px;
}
.section-title { max-width: 720px; }
.section-title p { color: var(--muted); font-size: 1.08rem; }

/* — Cartes — */
.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* — Tags / pills — */
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 999px;
  font-size: 0.78rem; font-weight: 500;
  background: var(--bg-soft); color: var(--ink-2);
  border: 1px solid var(--line);
}
.tag-success { background: var(--success-soft); color: var(--success); border-color: transparent; }
.tag-warn { background: var(--warn-soft); color: var(--warn); border-color: transparent; }
.tag-danger { background: var(--danger-soft); color: var(--danger); border-color: transparent; }
.tag-accent { background: var(--accent-soft); color: var(--accent-ink); border-color: transparent; }

/* — Footer — */
footer {
  background: var(--ink); color: #b9c4d2;
  padding: 64px 0 32px; margin-top: 64px;
}
footer h4 { color: white; font-family: 'Inter', sans-serif; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; margin-bottom: 16px; }
footer a { color: #b9c4d2; font-size: 0.95rem; }
footer a:hover { color: white; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid #1f3148; font-size: 0.85rem; color: #8898ad; display: flex; justify-content: space-between; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* — Spécifique landing — */
.hero { padding: 84px 0 64px; }
.hero-inner { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 960px) { .hero-inner { grid-template-columns: 1fr; gap: 40px; } }
.hero h1 .accent { color: var(--accent); font-style: italic; }
.hero p.lead { font-size: 1.18rem; color: var(--ink-2); max-width: 540px; }
.hero-actions { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 28px; margin-top: 36px; color: var(--muted); font-size: 0.9rem; align-items: center; flex-wrap: wrap; }
.hero-trust strong { color: var(--ink); font-weight: 600; }

/* Mock audit preview dans hero */
.audit-mock {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.audit-mock-header {
  padding: 18px 22px; border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
}
.audit-mock-url { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 0.78rem; color: var(--muted); }
.audit-mock-body { padding: 22px; }
.audit-mock-score { display: flex; gap: 16px; align-items: flex-end; margin-bottom: 18px; }
.audit-mock-score .big { font-family: 'Fraunces', serif; font-size: 2.6rem; line-height: 1; color: var(--ink); }
.audit-mock-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px dashed var(--line); font-size: 0.92rem; }
.audit-mock-row:last-child { border-bottom: none; }
.audit-mock-row span:first-child { color: var(--muted); }
.audit-mock-row span:last-child { font-weight: 500; color: var(--ink); }
.audit-mock-blurred {
  margin-top: 14px; padding: 16px;
  background: linear-gradient(180deg, var(--bg-soft) 0%, transparent 100%);
  border-radius: 10px;
  position: relative;
}
.audit-mock-blurred .blurline {
  height: 10px; background: var(--line); border-radius: 4px;
  margin: 8px 0; filter: blur(2px);
}
.audit-mock-blurred .blurline.short { width: 70%; }
.audit-mock-blurred .lock {
  position: absolute; right: 14px; top: 14px;
  background: var(--ink); color: var(--bg);
  padding: 6px 10px; border-radius: 999px; font-size: 0.74rem; font-weight: 500;
}

/* Problème section */
.problem-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
@media (max-width: 760px) { .problem-stats { grid-template-columns: 1fr; } }
.problem-stat { padding: 32px 24px; background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); }
.problem-stat .num { font-family: 'Fraunces', serif; font-size: 2.4rem; color: var(--accent); line-height: 1; margin-bottom: 8px; }
.problem-stat .label { color: var(--muted); font-size: 0.95rem; }

/* Steps section */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .steps { grid-template-columns: 1fr; } }
.step { padding: 26px; background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); }
.step .step-num {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--ink); color: var(--bg);
  display: grid; place-items: center; font-family: 'Fraunces', serif; font-size: 0.95rem;
  margin-bottom: 14px;
}
.step h3 { font-family: 'Inter', sans-serif; font-size: 1.05rem; font-weight: 600; }
.step p { font-size: 0.95rem; color: var(--muted); margin: 0; }

/* Demo highlight section */
.demo-banner {
  background: var(--ink); color: white;
  border-radius: 18px; padding: 56px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.demo-banner h2 { color: white; }
.demo-banner p { color: #c8d3e1; }
.demo-banner .kicker { color: #ffb37a; }
.demo-stats { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); border-radius: 14px; padding: 24px; }
.demo-stats .row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px dashed rgba(255,255,255,0.14); }
.demo-stats .row:last-child { border-bottom: none; }
.demo-stats .row .k { color: #c8d3e1; font-size: 0.92rem; }
.demo-stats .row .v { font-weight: 500; color: white; }
.demo-stats .row .v.red { color: #ff8a7a; }
.demo-stats .row .v.green { color: #8ee0b2; }
@media (max-width: 900px) { .demo-banner { grid-template-columns: 1fr; padding: 36px; } }

/* Founder section */
.founder { display: grid; grid-template-columns: 0.85fr 1fr; gap: 56px; align-items: center; }
.founder-photo {
  aspect-ratio: 4/5; background: var(--bg-soft);
  border-radius: 16px; overflow: hidden; position: relative;
  border: 1px solid var(--line);
}
.founder-photo img { width: 100%; height: 100%; object-fit: cover; }
.founder-photo .placeholder {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  color: var(--muted); font-size: 0.9rem;
  background: linear-gradient(135deg, var(--bg-soft), #d8cfbe);
}
.founder blockquote {
  font-family: 'Fraunces', serif; font-size: 1.5rem; line-height: 1.35;
  color: var(--ink); margin: 0 0 24px; font-style: italic;
}
.founder .sig { color: var(--muted); font-size: 0.95rem; }
.founder .sig strong { color: var(--ink); }
@media (max-width: 900px) { .founder { grid-template-columns: 1fr; gap: 32px; } }

/* Pricing */
.pricing { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px; }
@media (max-width: 760px) { .pricing { grid-template-columns: 1fr; } }
.plan { padding: 36px 32px; background: var(--bg-card); border: 1px solid var(--line); border-radius: 18px; position: relative; }
.plan.featured { background: var(--ink); color: white; border-color: var(--ink); }
.plan.featured h3, .plan.featured .price { color: white; }
.plan.featured p, .plan.featured ul li { color: #c8d3e1; }
.plan.featured ul li::before { color: #ffb37a; }
.plan .badge {
  position: absolute; top: -12px; right: 24px;
  background: var(--accent); color: white;
  padding: 6px 12px; border-radius: 999px; font-size: 0.78rem; font-weight: 500;
}
.plan h3 { font-family: 'Inter', sans-serif; font-size: 1.05rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.plan .price { font-family: 'Fraunces', serif; font-size: 3rem; line-height: 1; margin: 16px 0; }
.plan .price small { font-size: 1rem; color: var(--muted); font-family: 'Inter', sans-serif; font-weight: 400; }
.plan ul { list-style: none; padding: 0; margin: 24px 0; }
.plan ul li { padding: 8px 0 8px 24px; position: relative; color: var(--ink-2); font-size: 0.95rem; }
.plan ul li::before { content: '✓'; position: absolute; left: 0; color: var(--success); font-weight: 700; }
.plan .btn { width: 100%; justify-content: center; }

/* FAQ */
.faq-item { padding: 24px 0; border-bottom: 1px solid var(--line); }
.faq-item summary {
  cursor: pointer; font-weight: 500; font-size: 1.05rem; color: var(--ink);
  list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.4rem; color: var(--muted); transition: transform .2s; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { margin: 16px 0 0; color: var(--ink-2); }

/* CTA final */
.cta-final {
  background: var(--accent); color: white;
  border-radius: 18px; padding: 64px;
  text-align: center;
}
.cta-final h2 { color: white; }
.cta-final p { color: rgba(255,255,255,0.88); max-width: 580px; margin: 0 auto 28px; }
.cta-final .btn { background: white; color: var(--accent-ink); }
.cta-final .btn:hover { background: var(--ink); color: white; }

/* ─── Page audit ─── */
.audit-header {
  background: var(--bg-card);
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
}
.audit-crumb { font-size: 0.85rem; color: var(--muted); margin-bottom: 12px; }
.audit-crumb a { color: var(--muted); }
.audit-title-row {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.audit-title-row h1 { margin: 0; }
.audit-title-row .meta { font-size: 0.92rem; color: var(--muted); margin-top: 8px; }
.audit-title-row .meta strong { color: var(--ink); }
.audit-score-pill {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 10px 16px; background: var(--bg-soft); border-radius: 12px;
}
.audit-score-pill .stars { color: var(--accent); font-weight: 600; font-size: 1.1rem; }

.audit-layout { display: grid; grid-template-columns: 300px minmax(0, 1fr); gap: 48px; margin-top: 48px; align-items: start; }
.audit-layout > main { min-width: 0; }
@media (max-width: 960px) {
  .audit-layout { grid-template-columns: minmax(0, 1fr); gap: 0; }
  .audit-sidebar { position: static; max-height: none; overflow: visible; padding-right: 0; order: 2; margin-top: 32px; }
  .audit-sidebar .toc { display: none; }
}

.audit-sidebar {
  position: sticky; top: 88px; align-self: start;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
}
.audit-sidebar::-webkit-scrollbar { width: 6px; }
.audit-sidebar::-webkit-scrollbar-thumb { background: var(--line); border-radius: 3px; }
.audit-sidebar::-webkit-scrollbar-track { background: transparent; }
.audit-sidebar .toc { background: var(--bg-card); border: 1px solid var(--line); border-radius: 14px; padding: 24px; }
.audit-sidebar .toc h4 { font-family: 'Inter', sans-serif; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin-bottom: 16px; font-weight: 600; }
.audit-sidebar .toc a { display: flex; justify-content: space-between; padding: 8px 0; color: var(--ink-2); font-size: 0.93rem; border-bottom: 1px dashed var(--line); }
.audit-sidebar .toc a:last-child { border-bottom: none; }
.audit-sidebar .toc a.locked { color: var(--muted); }
.audit-sidebar .toc a.locked::after { content: '🔒'; font-size: 0.75rem; }

.audit-section { margin-bottom: 56px; }
.audit-section h2 {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 12px; border-bottom: 2px solid var(--ink);
  margin-bottom: 24px;
}
.audit-section h2 .sec-num { font-family: 'Fraunces', serif; color: var(--accent); }

/* Profile entreprise */
.profile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .profile-grid { grid-template-columns: 1fr; } }
.profile-cell { background: var(--bg-card); border: 1px solid var(--line); border-radius: 10px; padding: 16px; }
.profile-cell .k { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.profile-cell .v { font-weight: 500; color: var(--ink); font-size: 1rem; }

/* Diagnostic */
.diag-card {
  background: var(--bg-card); border: 1px solid var(--line); border-radius: 14px;
  padding: 28px; margin-bottom: 16px;
}
.diag-card h3 { display: flex; align-items: center; gap: 8px; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 1.05rem; }
.diag-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center; padding: 16px 0; border-bottom: 1px dashed var(--line); }
.diag-row:last-child { border-bottom: none; }
.diag-row .label { color: var(--muted); font-size: 0.9rem; }
.diag-row .value { font-family: 'Fraunces', serif; font-size: 1.8rem; line-height: 1; }
.diag-row .value.bad { color: var(--danger); }
.diag-row .value.good { color: var(--success); }
.diag-row .delta { font-size: 0.85rem; color: var(--muted); margin-top: 4px; }

/* Concurrents table */
.competitors {
  width: 100%; border-collapse: collapse;
  background: var(--bg-card); border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
}
.competitors th, .competitors td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--line); font-size: 0.93rem; }
.competitors th { background: var(--bg-soft); font-weight: 600; color: var(--ink); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; }
.competitors tr:last-child td { border-bottom: none; }
.competitors tr.self { background: var(--accent-soft); font-weight: 500; }
.competitors td.center, .competitors th.center { text-align: center; }

/* Signals */
.signals { display: grid; gap: 12px; }
.signal {
  background: var(--bg-card); border: 1px solid var(--line);
  border-left: 3px solid var(--warn);
  border-radius: 10px; padding: 16px 20px;
  display: grid; grid-template-columns: auto 1fr auto; gap: 16px; align-items: center;
}
.signal .icon { font-size: 1.2rem; }
.signal .desc strong { color: var(--ink); display: block; margin-bottom: 2px; }
.signal .desc span { color: var(--muted); font-size: 0.88rem; }
.signal .date { color: var(--muted); font-size: 0.85rem; }

/* Estimation impact */
.impact-card {
  background: linear-gradient(135deg, #fde9d9 0%, #fbe7da 100%);
  border: 1px solid var(--accent-soft); border-radius: 16px;
  padding: 36px;
}
.impact-card .impact-num {
  font-family: 'Fraunces', serif; font-size: 4rem; line-height: 1;
  color: var(--accent-ink); font-weight: 500;
}
.impact-card .impact-label { color: var(--accent-ink); font-weight: 500; margin-top: 8px; }
.impact-card .impact-detail { color: var(--ink-2); margin-top: 20px; font-size: 0.95rem; }

/* Paywall + locked content */
.paywall {
  position: relative; margin-top: 12px;
  border: 1px solid var(--line); border-radius: 14px;
  overflow: hidden; background: var(--bg-card);
}
.paywall-content {
  filter: blur(7px); pointer-events: none; user-select: none;
  padding: 28px;
}
.paywall-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(250,247,242,0.2) 0%, rgba(250,247,242,0.95) 60%);
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  padding: 32px 32px 36px; text-align: center;
}
.paywall-overlay .lock-badge {
  background: var(--ink); color: var(--bg);
  padding: 8px 14px; border-radius: 999px; font-size: 0.82rem;
  display: inline-flex; align-items: center; gap: 6px; margin-bottom: 16px;
}
.paywall-overlay h3 { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 1.05rem; margin-bottom: 6px; }
.paywall-overlay p { color: var(--muted); font-size: 0.92rem; margin-bottom: 20px; max-width: 400px; }

/* Action plan (12 actions visible aperçu / floutées) */
.actions-list { display: grid; gap: 12px; }
.action-item {
  background: var(--bg-card); border: 1px solid var(--line); border-radius: 12px;
  padding: 18px 22px;
  display: grid; grid-template-columns: 36px 1fr auto; gap: 16px; align-items: center;
}
.action-item .num {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--ink); color: var(--bg);
  display: grid; place-items: center; font-family: 'Fraunces', serif; font-size: 0.9rem;
}
.action-item .title { font-weight: 500; color: var(--ink); }
.action-item .meta { font-size: 0.85rem; color: var(--muted); margin-top: 2px; }
.action-item .gain { font-weight: 500; color: var(--success); font-size: 0.92rem; white-space: nowrap; }
.action-item.preview .num { background: var(--accent); }

/* GBP audit */
.gbp-score-circle {
  width: 120px; height: 120px; border-radius: 50%;
  background: conic-gradient(var(--danger) 0% 35%, var(--bg-soft) 35% 100%);
  display: grid; place-items: center;
  position: relative;
}
.gbp-score-circle::before {
  content: ''; position: absolute; inset: 12px; border-radius: 50%; background: var(--bg-card);
}
.gbp-score-circle .num {
  position: relative; font-family: 'Fraunces', serif; font-size: 2rem; color: var(--ink);
}
.gbp-row {
  display: grid; grid-template-columns: 1fr auto auto; gap: 16px; align-items: center;
  padding: 12px 0; border-bottom: 1px dashed var(--line);
}
.gbp-row:last-child { border-bottom: none; }
.gbp-row .label { color: var(--ink-2); font-size: 0.93rem; }
.gbp-row .badge { font-size: 0.78rem; padding: 4px 10px; border-radius: 999px; font-weight: 500; }
.gbp-row .badge.ok { background: var(--success-soft); color: var(--success); }
.gbp-row .badge.ko { background: var(--danger-soft); color: var(--danger); }
.gbp-row .badge.partial { background: var(--warn-soft); color: var(--warn); }

/* CTA panel sidebar (sticky-like) */
.cta-panel {
  margin-top: 16px; background: var(--ink); color: white;
  border-radius: 14px; padding: 24px;
}
.cta-panel h4 { color: white; font-family: 'Inter', sans-serif; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 12px; }
.cta-panel .price { font-family: 'Fraunces', serif; font-size: 2.4rem; line-height: 1; color: white; margin: 8px 0; }
.cta-panel .price small { font-size: 0.95rem; color: #c8d3e1; font-family: 'Inter', sans-serif; }
.cta-panel ul { list-style: none; padding: 0; margin: 16px 0 24px; }
.cta-panel ul li { color: #c8d3e1; font-size: 0.92rem; padding: 6px 0 6px 22px; position: relative; }
.cta-panel ul li::before { content: '✓'; color: #ffb37a; position: absolute; left: 0; font-weight: 700; }
.cta-panel .btn { width: 100%; justify-content: center; background: var(--accent); color: white; }
.cta-panel .btn:hover { background: white; color: var(--accent-ink); }
.cta-panel .guarantee { color: #8898ad; font-size: 0.82rem; text-align: center; margin-top: 14px; }

/* CTA principal audit (unlock) */
.cta-unlock {
  background: var(--bg-card); border: 2px solid var(--accent);
  border-radius: 18px; padding: 40px;
  display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center;
  margin-top: 24px;
}
.cta-unlock .lead { font-family: 'Fraunces', serif; font-size: 1.5rem; line-height: 1.3; color: var(--ink); margin-bottom: 12px; }
.cta-unlock .sub { color: var(--ink-2); font-size: 0.98rem; margin: 0; }
.cta-unlock .ctabox { text-align: center; }
.cta-unlock .ctabox .price { font-family: 'Fraunces', serif; font-size: 2.6rem; line-height: 1; color: var(--accent); margin-bottom: 12px; }
.cta-unlock .ctabox .btn { padding: 16px 28px; }
.cta-unlock .ctabox .guarantee { display: block; color: var(--muted); font-size: 0.82rem; margin-top: 10px; }
@media (max-width: 760px) { .cta-unlock { grid-template-columns: 1fr; padding: 28px; } }

/* Misc */
.muted { color: var(--muted); }
.small { font-size: 0.88rem; }
hr.soft { border: none; border-top: 1px solid var(--line); margin: 48px 0; }

/* Teaser block (échantillon visible, suite dans le rapport personnalisé) */
.teaser {
  background: linear-gradient(135deg, var(--bg-soft) 0%, var(--accent-soft) 100%);
  border: 1px dashed var(--accent);
  border-radius: 12px;
  padding: 22px 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  margin-top: 16px;
}
.teaser .lock-icon {
  width: 44px; height: 44px;
  background: white;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(140, 58, 20, 0.08);
}
.teaser h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  margin: 0 0 4px;
  color: var(--accent-ink);
}
.teaser p { margin: 0; color: var(--ink-2); font-size: 0.9rem; line-height: 1.45; }
.teaser .arrow-link {
  background: var(--accent); color: white;
  padding: 8px 14px; border-radius: 999px;
  font-size: 0.85rem; font-weight: 500; white-space: nowrap;
}
.teaser .arrow-link:hover { background: var(--accent-ink); text-decoration: none; color: white; }
@media (max-width: 700px) {
  .teaser { grid-template-columns: auto 1fr; }
  .teaser .arrow-link { grid-column: 2; justify-self: start; }
}

/* Sources badge */
.sources {
  display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px;
}
.sources .src {
  background: var(--bg-soft); padding: 6px 12px; border-radius: 999px;
  font-size: 0.82rem; color: var(--ink-2); border: 1px solid var(--line);
}

/* Témoignages */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 8px; }
.tcard { background: var(--bg-card); border: 1px solid var(--line); border-radius: 14px; padding: 24px; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.tcard blockquote { margin: 0; font-size: 0.98rem; line-height: 1.55; color: var(--ink-2); font-style: italic; }
.tcard figcaption { font-size: 0.84rem; color: var(--muted); font-weight: 600; }
.tcard figcaption .star { color: var(--accent); font-style: normal; }
@media (max-width: 760px) { .testimonials { grid-template-columns: 1fr; } }

/* === Correctif mobile : tableaux scrollables & anti-débordement horizontal === */
@media (max-width: 600px) {
  html, body { overflow-x: hidden; max-width: 100%; }
  .container { padding: 0 16px; }
  /* Tableaux larges : scroll horizontal DANS leur cadre, pas la page entière */
  .competitors {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .competitors thead, .competitors tbody { white-space: nowrap; }
  /* Diagnostic : empiler libellé / valeur */
  .diag-row { grid-template-columns: 1fr; gap: 4px; padding: 12px 0; }
  .diag-row .value { font-size: 1.4rem; }
  .diag-card { padding: 20px; }
  /* En-tête fiche : éviter le débordement du bandeau */
  .audit-title-row { flex-direction: column; align-items: flex-start; gap: 12px; }
  /* Titres de section : autoriser le retour à la ligne (badges, titres longs) */
  .audit-section h2 { flex-wrap: wrap; }
  .card, .diag-card, .impact-card { max-width: 100%; overflow-wrap: break-word; }
  /* Cartes à 2 colonnes (impact financier, score GBP) : empiler en 1 colonne */
  div[style*="grid-template-columns:auto 1fr"],
  div[style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; gap: 16px !important; text-align: left; }
  .impact-num { font-size: 2.4rem !important; line-height: 1.05; }
  .impact-card { padding: 22px; }
}
