/* ==========================================================================
   COLAW — Landing. Identité « Claude » souveraine : crème/chocolat, serif
   éditorial pour les titres, sans-serif système pour le corps. Accent chocolat
   clair réservé à l'action ; il bascule en beige clair au mode sombre.
   Tokens = source de vérité legal-ai-saas/app/src/styles.css. Aucune ressource
   externe (SEO / Core Web Vitals). Thème clair + sombre, togglable.
   ========================================================================== */

/* ---------- Tokens (theme-aware au niveau token) ---------- */
:root {
  --bg: #f0eee6;
  --surface: #fbfaf7;
  --surface-2: #f4f1e9;
  --rail: #e9e5da;
  --ink: #1f1d1a;
  --ink-soft: #55514a;
  --ink-faint: #8a8479;
  --line: #e3ded1;
  --line-strong: #d3ccbb;
  --accent: #a9764e;
  --accent-hover: #915f3a;
  --accent-soft: rgba(169, 118, 78, 0.11);
  --accent-glow: rgba(169, 118, 78, 0.22);
  --on-accent: #fbfaf7;
  --good: #4f7a52;
  --radius: 12px;
  --radius-sm: 9px;
  --shadow: 0 1px 2px rgba(60, 50, 35, 0.06);
  --shadow-raised: 0 1px 3px rgba(60, 50, 35, 0.08), 0 18px 44px rgba(169, 118, 78, 0.12);
  --serif: "New York", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, Roboto, sans-serif;
  --maxw: 1080px;
  --header-h: 66px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #1c1a16;
    --surface: #262420;
    --surface-2: #211f1b;
    --rail: #151310;
    --ink: #efe9dc;
    --ink-soft: #b3ac9c;
    --ink-faint: #7d766a;
    --line: #322f28;
    --line-strong: #423e34;
    --accent: #e7dfce;
    --accent-hover: #f3ecdb;
    --accent-soft: rgba(231, 223, 206, 0.14);
    --accent-glow: rgba(231, 223, 206, 0.16);
    --on-accent: #1c1a16;
    --good: #7fa981;
    --shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    --shadow-raised: 0 1px 3px rgba(0, 0, 0, 0.45), 0 18px 44px rgba(0, 0, 0, 0.38);
  }
}
/* Le toggle manuel doit gagner dans les deux sens (override du media query). */
:root[data-theme="light"] {
  --bg: #f0eee6; --surface: #fbfaf7; --surface-2: #f4f1e9; --rail: #e9e5da;
  --ink: #1f1d1a; --ink-soft: #55514a; --ink-faint: #8a8479;
  --line: #e3ded1; --line-strong: #d3ccbb;
  --accent: #a9764e; --accent-hover: #915f3a; --accent-soft: rgba(169,118,78,0.11);
  --accent-glow: rgba(169,118,78,0.22); --on-accent: #fbfaf7; --good: #4f7a52;
  --shadow: 0 1px 2px rgba(60,50,35,0.06);
  --shadow-raised: 0 1px 3px rgba(60,50,35,0.08), 0 18px 44px rgba(169,118,78,0.12);
}
:root[data-theme="dark"] {
  --bg: #1c1a16; --surface: #262420; --surface-2: #211f1b; --rail: #151310;
  --ink: #efe9dc; --ink-soft: #b3ac9c; --ink-faint: #7d766a;
  --line: #322f28; --line-strong: #423e34;
  --accent: #e7dfce; --accent-hover: #f3ecdb; --accent-soft: rgba(231,223,206,0.14);
  --accent-glow: rgba(231,223,206,0.16); --on-accent: #1c1a16; --good: #7fa981;
  --shadow: 0 1px 2px rgba(0,0,0,0.4);
  --shadow-raised: 0 1px 3px rgba(0,0,0,0.45), 0 18px 44px rgba(0,0,0,0.38);
}

/* ---------- Reset léger ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* Accessibilité : focus visible + skip link */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--surface); color: var(--ink); padding: 0.6rem 1rem;
  border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Conteneurs ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 760px; }

/* ---------- Marque ---------- */
.brand { display: inline-flex; align-items: center; gap: 0.62rem; }
.brand-seal { width: 46px; height: 46px; }
.brand-word {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent-hover) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  height: var(--header-h);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { height: var(--header-h); display: flex; align-items: center; gap: 1.5rem; }
.site-nav { display: flex; gap: 1.4rem; margin-left: 0.5rem; }
.site-nav a { color: var(--ink-soft); font-size: 0.94rem; font-weight: 500; transition: color 0.15s; }
.site-nav a:hover { color: var(--ink); }
.header-actions { display: flex; align-items: center; gap: 0.7rem; margin-left: auto; }

/* ---------- Menu mobile (hamburger + drawer) ---------- */
.nav-toggle {
  display: none; /* affiché ≤ 720px */
  place-items: center; flex-direction: column; gap: 5px;
  width: 42px; height: 42px; padding: 0;
  background: var(--surface); border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
  cursor: pointer; transition: border-color 0.15s;
}
.nav-toggle:hover { border-color: var(--accent); }
.nav-toggle-bar {
  width: 18px; height: 2px; border-radius: 2px; background: var(--ink);
  transition: transform 0.22s ease, opacity 0.18s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-scrim {
  position: fixed; inset: 0; z-index: 40;
  background: rgba(20, 16, 10, 0.42); backdrop-filter: blur(2px);
  opacity: 0; transition: opacity 0.2s ease;
}
.nav-scrim.is-open { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .nav-toggle-bar, .nav-scrim { transition: none; }
}

.theme-toggle {
  display: inline-grid; place-items: center;
  width: 38px; height: 38px; padding: 0;
  background: var(--surface); color: var(--ink-soft);
  border: 1px solid var(--line-strong); border-radius: 50%;
  cursor: pointer; transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.theme-toggle:hover { color: var(--ink); border-color: var(--accent); }
.theme-toggle .icon-moon { display: none; }
:root[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
:root[data-theme="dark"] .theme-toggle .icon-moon { display: block; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .theme-toggle .icon-sun { display: none; }
  :root:not([data-theme="light"]) .theme-toggle .icon-moon { display: block; }
}

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--sans); font-weight: 600; font-size: 0.96rem; line-height: 1;
  padding: 0.72rem 1.15rem; border-radius: var(--radius-sm);
  border: 1px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform 0.12s ease, background 0.15s, border-color 0.15s, color 0.15s, box-shadow 0.15s;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--accent); color: var(--on-accent);
  box-shadow: 0 1px 2px rgba(60,50,35,0.14), 0 8px 22px var(--accent-glow);
}
.btn-primary:hover { background: var(--accent-hover); }
.btn-ghost { background: var(--surface); color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-hover); }
.btn-sm { padding: 0.52rem 0.9rem; font-size: 0.9rem; }
.btn-lg { padding: 0.9rem 1.5rem; font-size: 1.02rem; }
.btn-block { width: 100%; }

/* ---------- Typo utilitaires ---------- */
.eyebrow {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 0.9rem;
}
h1, h2, h3 { font-family: var(--serif); font-weight: 600; color: var(--ink); text-wrap: balance; }

/* ---------- Hero ---------- */
.hero { padding: clamp(3.5rem, 9vw, 6.5rem) 0 clamp(2.5rem, 5vw, 4rem); }
.hero-inner { max-width: 860px; }
.hero-title {
  font-size: clamp(2.4rem, 6.2vw, 4.2rem); line-height: 1.05; letter-spacing: -0.02em;
  margin: 0 0 1.3rem;
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent-hover) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero-sub {
  font-size: clamp(1.08rem, 2.2vw, 1.32rem); color: var(--ink-soft);
  max-width: 60ch; margin: 0 0 2rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.hero-os { margin: 1rem 0 0; color: var(--ink-faint); font-size: 0.92rem; }

.trust-strip {
  list-style: none; margin: 2.6rem 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.6rem;
  border-top: 1px solid var(--line); padding-top: 1.4rem;
}
.trust-strip li { display: flex; align-items: center; gap: 0.5rem; color: var(--ink-soft); font-size: 0.92rem; font-weight: 500; }
.trust-strip .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

/* ---------- Sections génériques ---------- */
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section-head { max-width: 640px; margin: 0 0 2.6rem; }
.section-head h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); line-height: 1.12; letter-spacing: -0.015em; margin: 0; }
.section-sub { color: var(--ink-soft); font-size: 1.05rem; margin: 1rem 0 0; }

/* ---------- Bande souveraineté ---------- */
.band-sov {
  background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}
.sov-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.sov-lead h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); line-height: 1.12; letter-spacing: -0.015em; margin: 0 0 1.1rem; }
.lead-text { color: var(--ink-soft); font-size: 1.08rem; margin: 0; }
.sov-points { display: flex; flex-direction: column; gap: 1.4rem; }
.sov-point { padding: 1.3rem 1.4rem; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.sov-point h3 { font-size: 1.14rem; margin: 0 0 0.4rem; }
.sov-point p { color: var(--ink-soft); font-size: 0.98rem; margin: 0; }

/* ---------- Fonctions ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.feature {
  padding: 1.6rem 1.5rem; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s;
}
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-raised); border-color: var(--line-strong); }
.feature-num {
  font-family: var(--serif); font-size: 0.92rem; font-weight: 600; letter-spacing: 0.08em;
  color: var(--accent); display: inline-block; margin-bottom: 0.9rem;
}
.feature h3 { font-size: 1.18rem; margin: 0 0 0.5rem; }
.feature p { color: var(--ink-soft); font-size: 0.98rem; margin: 0; }

/* ---------- Étapes ---------- */
.band-steps { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: clamp(3rem, 7vw, 5.5rem) 0; }
.steps { list-style: none; counter-reset: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.step { padding: 1.5rem 0 0; border-top: 2px solid var(--accent-soft); position: relative; }
.step-k {
  display: inline-grid; place-items: center; width: 42px; height: 42px; margin-bottom: 1rem;
  font-family: var(--serif); font-size: 1.2rem; font-weight: 600;
  color: var(--accent); background: var(--accent-soft); border-radius: 50%;
}
.step h3 { font-size: 1.24rem; margin: 0 0 0.5rem; }
.step p { color: var(--ink-soft); margin: 0; }

/* ---------- Téléchargement ---------- */
.dl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.dl-card {
  display: flex; align-items: center; gap: 1.1rem;
  padding: 1.5rem 1.6rem; background: var(--surface); border: 1px solid var(--line-strong);
  border-radius: var(--radius); box-shadow: var(--shadow); cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s;
}
.dl-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-raised); border-color: var(--accent); }
.dl-card[data-recommended="true"] { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent), var(--shadow-raised); }
.dl-logo { color: var(--ink); flex-shrink: 0; }
.dl-body { display: flex; flex-direction: column; gap: 0.15rem; }
.dl-for { font-size: 0.82rem; color: var(--ink-faint); }
.dl-os { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; color: var(--ink); }
.dl-meta { font-size: 0.85rem; color: var(--ink-soft); }
.dl-arrow { margin-left: auto; font-size: 1.4rem; color: var(--accent); font-weight: 700; }
.dl-note { text-align: center; color: var(--ink-faint); font-size: 0.92rem; margin: 1.4rem 0 0; }

/* ---------- Tarifs ---------- */
.band-price { background: var(--surface); border-top: 1px solid var(--line); }
.price-toggle {
  display: inline-flex; gap: 0.25rem; padding: 0.3rem; margin: 0 auto 2.4rem; width: fit-content;
  background: var(--bg); border: 1px solid var(--line-strong); border-radius: 999px;
}
.price-toggle { display: flex; }
.section-head + .price-toggle { margin-top: -1rem; }
.pt-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 1.1rem; border: none; background: transparent; cursor: pointer;
  font-family: var(--sans); font-size: 0.92rem; font-weight: 600; color: var(--ink-soft);
  border-radius: 999px; transition: background 0.15s, color 0.15s;
}
.pt-btn.is-active { background: var(--accent); color: var(--on-accent); }
.pt-save { font-size: 0.72rem; font-weight: 700; opacity: 0.85; }
.pt-btn.is-active .pt-save { color: var(--on-accent); }
.pt-btn:not(.is-active) .pt-save { color: var(--good); }

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; align-items: stretch; }
.price-card {
  position: relative; display: flex; flex-direction: column;
  padding: 1.8rem 1.6rem; background: var(--bg); border: 1px solid var(--line-strong);
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.price-card.is-featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent), var(--shadow-raised); }
.pc-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: var(--on-accent); font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; padding: 0.3rem 0.8rem; border-radius: 999px; white-space: nowrap;
}
.pc-head h3 { font-size: 1.5rem; margin: 0 0 0.25rem; }
.pc-tag { color: var(--ink-soft); font-size: 0.92rem; margin: 0 0 1.2rem; }
.pc-price { display: flex; align-items: baseline; gap: 0.35rem; margin-bottom: 0.3rem; }
.pc-amount { font-family: var(--serif); font-size: 2.9rem; font-weight: 600; line-height: 1; color: var(--ink); font-variant-numeric: tabular-nums; }
.pc-unit { color: var(--ink-soft); font-size: 0.95rem; }
.pc-billing { color: var(--ink-faint); font-size: 0.86rem; margin: 0 0 1.3rem; min-height: 1.2em; }
.pc-feats { list-style: none; margin: 0 0 1.6rem; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; flex-grow: 1; }
.pc-feats li { position: relative; padding-left: 1.5rem; color: var(--ink-soft); font-size: 0.95rem; }
.pc-feats li::before {
  content: ""; position: absolute; left: 0; top: 0.5em; width: 8px; height: 8px;
  border-right: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
  transform: rotate(45deg) translateY(-2px);
}
.pc-feats li strong { color: var(--ink); }
.price-card.is-trial { background: var(--surface-2); }
.price-foot { text-align: center; color: var(--ink-faint); font-size: 0.88rem; margin: 1.8rem auto 0; max-width: 60ch; }

/* ---------- FAQ ---------- */
.faq { display: flex; flex-direction: column; gap: 0.7rem; }
.faq-item {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 0 1.3rem; box-shadow: var(--shadow);
}
.faq-item summary {
  cursor: pointer; list-style: none; padding: 1.1rem 0; font-weight: 600; color: var(--ink);
  font-size: 1.05rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-family: var(--serif); font-size: 1.5rem; color: var(--accent);
  line-height: 1; transition: transform 0.2s ease; flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--ink-soft); margin: 0 0 1.2rem; font-size: 0.98rem; }

/* ---------- CTA final ---------- */
.cta-band {
  background: var(--surface); border-top: 1px solid var(--line);
  padding: clamp(3.5rem, 8vw, 6rem) 0; text-align: center;
}
.cta-inner { max-width: 640px; margin: 0 auto; }
.cta-seal { width: 52px; height: 52px; margin: 0 auto 1.4rem; }
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); line-height: 1.1; letter-spacing: -0.02em; margin: 0 0 0.9rem; }
.cta-band p { color: var(--ink-soft); font-size: 1.1rem; margin: 0 0 2rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 3rem 0 2rem; background: var(--bg); }
.footer-inner { display: flex; flex-wrap: wrap; gap: 2.5rem; justify-content: space-between; }
.footer-brand { max-width: 260px; }
.footer-tag { color: var(--ink-soft); font-size: 0.94rem; margin: 0.8rem 0 0; }
.footer-nav { display: flex; gap: 3rem; flex-wrap: wrap; }
.fn-col { display: flex; flex-direction: column; gap: 0.55rem; }
.fn-title { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 0.3rem; }
.fn-col a { color: var(--ink-soft); font-size: 0.94rem; transition: color 0.15s; }
.fn-col a:hover { color: var(--accent); }
.footer-legal {
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.5rem; justify-content: space-between;
  margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line);
  color: var(--ink-faint); font-size: 0.86rem;
}

/* ---------- Reveal au scroll ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsive ---------- */
/* Garde anti-débordement horizontal : rien ne doit pousser la page latéralement. */
html, body { overflow-x: hidden; }
h1, h2, h3, .hero-title, .pc-amount { overflow-wrap: break-word; }

@media (max-width: 900px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .sov-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 1rem; }
  .price-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .price-card.is-featured { order: -1; }
}

/* ===== Bascule mobile : drawer de navigation ===== */
@media (max-width: 720px) {
  .nav-toggle { display: inline-grid; }
  .header-inner { gap: 0.75rem; }

  /* La nav devient un panneau déroulant sous le header. */
  .site-nav {
    position: fixed; top: var(--header-h); left: 0; right: 0; z-index: 45;
    display: flex; flex-direction: column; gap: 0;
    margin: 0; padding: 0.5rem 0 0.75rem;
    background: var(--surface); border-bottom: 1px solid var(--line-strong);
    box-shadow: var(--shadow-raised);
    transform: translateY(-120%); transition: transform 0.26s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .site-nav.is-open { transform: translateY(0); }
  .site-nav a {
    display: flex; align-items: center; min-height: 52px;
    padding: 0 24px; font-size: 1.06rem;
    border-bottom: 1px solid var(--line);
  }
  .site-nav a:last-child { border-bottom: none; }
  @media (prefers-reduced-motion: reduce) { .site-nav { transition: none; } }
  /* Bloque le scroll de fond quand le menu est ouvert. */
  body.nav-open { overflow: hidden; }
}

/* ===== Téléphones ===== */
@media (max-width: 560px) {
  .wrap { padding: 0 18px; }
  .feature-grid { grid-template-columns: 1fr; }
  .dl-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { width: 100%; }
  .header-dl { display: none; } /* CTA repris par le menu + le hero */
  .site-nav a { padding: 0 18px; }

  /* Cartes plus compactes, cibles tactiles généreuses. */
  .feature, .sov-point { padding: 1.3rem 1.2rem; }
  .dl-card { padding: 1.25rem 1.2rem; gap: 0.9rem; }
  .price-card { padding: 1.6rem 1.3rem; }
  .faq-item { padding: 0 1.1rem; }
  .faq-item summary { font-size: 1rem; }

  /* Footer : colonnes empilées et lisibles. */
  .footer-inner { flex-direction: column; gap: 2rem; }
  .footer-nav { gap: 2rem; }
  .footer-legal { flex-direction: column; gap: 0.5rem; }
}

/* ===== Très petits écrans (≤ 380px) ===== */
@media (max-width: 380px) {
  .wrap { padding: 0 14px; }
  .brand-word { font-size: 1.4rem; }
  .brand-seal { width: 40px; height: 40px; }
  .hero-title { font-size: clamp(2rem, 8.5vw, 2.4rem); }
  .pc-amount { font-size: 2.4rem; }
  .trust-strip { gap: 0.5rem 1.1rem; }
  .price-toggle { width: 100%; }
  .pt-btn { flex: 1 1 auto; justify-content: center; }
}
