:root { color-scheme: light only; }
html { -webkit-text-size-adjust: 100%; forced-color-adjust: none; }

/* ============================================================
   Glidd — charte v3 « Teal / Blanc chaud » (juin 2026)
   Tokens alignés sur theme.ts de l'app. Source unique du site.
   ============================================================ */

:root {
  --accent:          #2A7F6F;
  --accent-press:    #20655A;
  --bg:              #FAF7F2;
  --card:            #DBE5DE;
  --card-soft:       #E8F0EC;
  --title-task:      #276E62;
  --on-accent:       #FFFFFF;
  --accentSoft:      #6BA89B;

  --text-primary:    #1A2E2A;
  --text-secondary:  #356258;
  --muted:           #577D74;
  --time-muted:      #91B3AA;
  --honey:           #C17B3A;

  --timeline:        #83B2A7;
  --dot-ring:        rgba(42,127,111,.18);
  --tabbar-border:   rgba(42,127,111,.10);
  --fab-shadow:      rgba(42,127,111,.35);

  --maxw: 1080px;
  --radius-lg: 22px;
  --radius: 16px;
  --radius-sm: 12px;
  --shadow: 0 1px 2px rgba(26,46,42,.03), 0 10px 36px rgba(42,127,111,.08);

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0; background: var(--bg); color: var(--text-primary);
  font-family: var(--font-body); font-weight: 400; font-size: 18px;
  line-height: 1.65; -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
section { padding: 104px 0; }
@media (max-width: 720px) { section { padding: 64px 0; } }

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.08; color: var(--text-primary); letter-spacing: -.005em; }
h1 { font-size: clamp(2.6rem, 6.4vw, 4.4rem); margin: 0 0 .35em; }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin: 0 0 .5em; }
h3 { font-size: 1.35rem; margin: 0 0 .3em; }
p { margin: 0 0 1em; }
.lead { font-size: clamp(1.1rem, 2.1vw, 1.32rem); color: var(--text-secondary); font-weight: 400; }
.eyebrow { font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin: 0 0 16px; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-press); text-decoration: underline; }

.site-header { position: sticky; top: 0; z-index: 50; background: color-mix(in srgb, var(--bg) 86%, transparent); backdrop-filter: saturate(140%) blur(12px); border-bottom: 1px solid var(--tabbar-border); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: var(--text-primary); }
.brand:hover { text-decoration: none; }
.brand .logo { width: 34px; height: 34px; display: block; border-radius: 9px; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { color: var(--text-secondary); font-size: .98rem; font-weight: 400; }
.nav a:hover { color: var(--text-primary); text-decoration: none; }
@media (max-width: 600px) { .nav a.nav-hide { display: none; } }

.btn { display: inline-flex; align-items: center; gap: 9px; background: var(--accent); color: var(--on-accent); padding: 14px 24px; border-radius: 999px; font-weight: 600; font-size: 1rem; border: none; cursor: pointer; transition: background .15s ease, transform .15s ease, box-shadow .15s ease; }
.btn:hover { background: var(--accent-press); color: var(--on-accent); text-decoration: none; transform: translateY(-1px); box-shadow: 0 8px 22px var(--fab-shadow); }
.btn-ghost { background: transparent; color: var(--accent); border: 1.5px solid color-mix(in srgb, var(--accent) 32%, transparent); }
.btn-ghost:hover { background: color-mix(in srgb, var(--accent) 7%, transparent); color: var(--accent-press); box-shadow: none; }

.hero {
  padding: 104px 0 80px; text-align: center; position: relative;
  background: linear-gradient(155deg, #E4EFEA 0%, #EDF4F0 32%, var(--bg) 68%);
}
.hero .logo-hero { width: 104px; height: 104px; margin: 0 auto 32px; display: block; border-radius: 24px; }
.hero .tagline-pill { display: inline-block; background: var(--card); color: var(--accent); font-weight: 600; font-size: .92rem; padding: 8px 18px; border-radius: 999px; margin-bottom: 28px; }
.hero p.lead { max-width: 600px; margin: 0 auto 34px; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.store-note { margin-top: 20px; font-size: .9rem; color: var(--muted); }

.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.feature + .feature { margin-top: 96px; }
.feature.reverse .feature-text { order: 2; }
.feature-visual { background: var(--card-soft); border-radius: var(--radius-lg); min-height: 420px; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow); overflow: hidden; padding: 36px; }
@media (max-width: 760px) { .feature, .feature.reverse { grid-template-columns: 1fr; gap: 28px; } .feature.reverse .feature-text { order: 0; } .feature-visual { min-height: 340px; } }

.phone { width: 264px; background: var(--bg); border-radius: 34px; box-shadow: var(--shadow); padding: 22px 18px 16px; border: 1px solid var(--card); }
.phone .ph-date { font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin: 0 0 4px; }
.phone .ph-hello { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; color: var(--text-primary); margin: 0 0 18px; }
.ph-current { background: var(--card); border-radius: var(--radius-lg); padding: 20px 18px; position: relative; margin-bottom: 26px; }
.ph-current .ph-dots { color: var(--accent); letter-spacing: 2px; font-size: 18px; line-height: 1; }
.ph-current .ph-check { position: absolute; top: 18px; right: 18px; width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--accent); }
.ph-current .ph-title { font-family: var(--font-display); font-weight: 700; font-size: 1.45rem; color: var(--title-task); line-height: 1.12; margin: 14px 0 10px; }
.ph-current .ph-time { font-size: .82rem; color: var(--time-muted); margin: 0 0 16px; }
.ph-bar { height: 8px; border-radius: 999px; background: #C7DBD3; overflow: hidden; flex: 1; }
.ph-bar > i { display: block; height: 100%; width: 72%; background: var(--accent); border-radius: 999px; }
.ph-bar-row { display: flex; align-items: center; gap: 10px; }
.ph-bar-row .mins { font-size: .8rem; font-weight: 600; color: var(--title-task); white-space: nowrap; }
.ph-ensuite { font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin: 0 0 12px; }
.ph-next { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; font-size: .9rem; }
.ph-next .lbl { color: var(--text-secondary); }
.ph-next .hr { color: var(--time-muted); font-size: .82rem; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { background: var(--card-soft); border-radius: var(--radius-lg); padding: 32px 26px; }
.step .num { font-family: var(--font-display); font-size: 1.15rem; color: var(--accent); font-weight: 700; }
@media (max-width: 720px) { .steps { grid-template-columns: 1fr; } }

.faq-item { border-bottom: 1px solid var(--card); }
.faq-item summary { list-style: none; cursor: pointer; padding: 24px 0; font-weight: 600; font-size: 1.12rem; color: var(--text-primary); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--accent); font-size: 1.6rem; font-weight: 300; transition: transform .2s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 0 24px; color: var(--text-secondary); max-width: 780px; }

.doc { max-width: 760px; margin: 0 auto; padding: 64px 0 96px; }
.doc h1 { margin-bottom: .2em; }
.doc .updated { color: var(--muted); font-size: .92rem; margin-bottom: 44px; }
.doc h2 { font-size: 1.55rem; margin: 44px 0 .4em; }
.doc h3 { font-size: 1.18rem; margin: 30px 0 .3em; color: var(--title-task); }
.doc p, .doc li { color: var(--text-primary); }
.doc ul { padding-left: 20px; }
.doc li { margin-bottom: 8px; }
.callout { background: var(--card-soft); border-radius: var(--radius); padding: 20px 22px; margin: 26px 0; }

.cta-band { background: var(--card); border-radius: var(--radius-lg); padding: 64px 40px; text-align: center; }
.cta-band h2 { margin-bottom: .3em; }
.cta-band p { color: var(--text-secondary); max-width: 480px; margin: 0 auto 30px; }

.site-footer { border-top: 1px solid var(--card); padding: 56px 0 64px; color: var(--text-secondary); font-size: .95rem; }
.site-footer .cols { display: flex; flex-wrap: wrap; gap: 48px; justify-content: space-between; margin-bottom: 40px; }
.site-footer .brand { color: var(--text-primary); margin-bottom: 12px; }
.site-footer .fcol h4 { font-family: var(--font-body); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin: 0 0 14px; font-weight: 600; }
.site-footer .fcol a { display: block; color: var(--text-secondary); margin-bottom: 9px; }
.site-footer .fcol a:hover { color: var(--text-primary); text-decoration: none; }
.site-footer .legal-line { font-size: .85rem; color: var(--muted); border-top: 1px solid var(--card); padding-top: 24px; }

.logo-draw .volute { stroke-dasharray: 1; stroke-dashoffset: 1; animation: draw 1.7s cubic-bezier(.25,0,.45,1) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }

/* ---------- Illustrations charte (sans données de démo) ---------- */
.illus { width: 300px; max-width: 84%; background: var(--bg); border-radius: 28px; padding: 26px 22px; box-shadow: var(--shadow); border: 1px solid var(--card); }
.illus-current { background: var(--card); border-radius: var(--radius-lg); padding: 20px 18px; position: relative; margin-bottom: 24px; }
.illus-current .il-dots { color: var(--accent); letter-spacing: 2px; font-size: 17px; }
.illus-current .il-check { position: absolute; top: 18px; right: 18px; width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--accent); }
.illus-current .il-title { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--title-task); line-height: 1.1; margin: 14px 0 8px; }
.illus-current .il-time { font-size: .85rem; color: var(--time-muted); margin: 0 0 16px; }
.il-bar { height: 8px; border-radius: 999px; background: #C7DBD3; overflow: hidden; }
.il-bar > i { display: block; height: 100%; width: 64%; background: var(--accent); border-radius: 999px; }
.il-label { font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin: 0 0 14px; }
.il-next { display: flex; justify-content: space-between; font-size: .95rem; color: var(--text-secondary); margin-bottom: 14px; }
.il-next .t { color: var(--time-muted); font-size: .85rem; }
.il-tone { display: flex; align-items: flex-start; gap: 14px; padding: 14px; border-radius: var(--radius); margin-bottom: 8px; }
.il-tone.active { background: var(--card); }
.il-tone .r { width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--muted); flex: none; margin-top: 2px; }
.il-tone .r.on { border-color: var(--accent); background: radial-gradient(circle, var(--accent) 0 42%, transparent 46%); }
.il-tone strong { display: block; font-weight: 600; font-size: 1.02rem; color: var(--text-primary); }
.il-tone em { font-style: normal; font-size: .88rem; color: var(--text-secondary); }

/* ---------- Mockup iPhone réaliste (façon Tiimo) ---------- */
.feature-visual.showcase {
  background: var(--card-soft); border-radius: 28px; padding: 0;
  min-height: 480px; overflow: hidden; position: relative; align-items: flex-end;
  box-shadow: var(--shadow);
}
.feature-visual.showcase.tint { background: linear-gradient(165deg, #E8F0EC 0%, #DBE5DE 100%); }

.iphone {
  position: relative; width: 300px; margin: 56px auto -60px; transform: rotate(-4deg);
  border-radius: 46px; padding: 11px;
  background: linear-gradient(145deg, #2b2b2e, #131315 60%, #0a0a0b);
  box-shadow: 0 2px 4px rgba(0,0,0,.3), 0 30px 70px rgba(26,46,42,.32);
}
.iphone::before { /* bouton latéral */
  content: ""; position: absolute; right: -2px; top: 150px; width: 3px; height: 56px; background: #2b2b2e; border-radius: 2px;
}
.iphone .screen { position: relative; border-radius: 36px; overflow: hidden; background: var(--bg); }
.iphone .screen img { width: 100%; display: block; }
.iphone .notch {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 92px; height: 26px; background: #0a0a0b; border-radius: 999px; z-index: 3;
}
.feature.reverse .iphone { transform: rotate(4deg); }
@media (max-width: 760px) {
  .iphone { width: 230px; margin: 44px auto -44px; }
  .feature-visual.showcase { min-height: 380px; }
}

/* sélecteur de ton (feature 2, gardé) */
.illus { width: 300px; max-width: 84%; background: var(--bg); border-radius: 28px; padding: 26px 22px; box-shadow: var(--shadow); border: 1px solid var(--card); }
.il-label { font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin: 0 0 14px; }
.il-tone { display: flex; align-items: flex-start; gap: 14px; padding: 14px; border-radius: var(--radius); margin-bottom: 8px; }
.il-tone.active { background: var(--card); }
.il-tone .r { width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--muted); flex: none; margin-top: 2px; }
.il-tone .r.on { border-color: var(--accent); background: radial-gradient(circle, var(--accent) 0 42%, transparent 46%); }
.il-tone strong { display: block; font-weight: 600; font-size: 1.02rem; color: var(--text-primary); }
.il-tone em { font-style: normal; font-size: .88rem; color: var(--text-secondary); }

/* ---------- Hero showcase ---------- */
.hero-showcase { margin-top: 48px; display: flex; justify-content: center; }
.hero-showcase .iphone { transform: rotate(0deg); width: 300px; margin: 0; }
@media (max-width:760px){ .hero-showcase .iphone { width: 240px; } }

/* ============================================================
   v2 — clarity / pacing / CTA (juin 2026)
   ============================================================ */

/* App Store / Google Play buttons */
.stores { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero .stores { justify-content: flex-start; }
.store-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px; border-radius: 16px; font-weight: 600; font-size: 1rem;
  background: var(--accent); color: var(--on-accent); border: none; transition: background .15s, transform .15s;
}
.store-btn:hover { background: var(--accent-press); color: var(--on-accent); text-decoration: none; transform: translateY(-1px); }
.store-btn.ghost { background: transparent; color: var(--accent); border: 1.5px solid color-mix(in srgb, var(--accent) 30%, transparent); }
.store-btn.ghost:hover { background: color-mix(in srgb, var(--accent) 7%, transparent); transform: none; }
.store-btn .sub { font-size: .72rem; font-weight: 400; opacity: .85; display: block; line-height: 1; margin-bottom: 2px; }
.store-btn .big { font-size: 1.05rem; line-height: 1; }
.store-btn .ico { font-size: 1.4rem; }

.store-btn .sub, .store-btn .big { color: inherit; }
.store-btn:not(.ghost) .sub, .store-btn:not(.ghost) .big { color: var(--on-accent); }
.store-btn.ghost .sub, .store-btn.ghost .big { color: var(--accent); }
.cta-final .store-btn:not(.ghost) .sub, .cta-final .store-btn:not(.ghost) .big { color: var(--text-primary); }
.cta-final .store-btn.ghost .sub, .cta-final .store-btn.ghost .big { color: var(--on-accent); }

.soon-tag { font-size: .68rem; font-weight: 600; background: color-mix(in srgb, var(--accent) 14%, transparent); color: var(--accent); padding: 2px 7px; border-radius: 6px; margin-left: 6px; }

/* Hero gauche (split layout) */
.hero.split { text-align: left; padding: 80px 0 88px; }
.hero.split .wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero.split h1 { font-size: clamp(2.8rem, 5vw, 4.2rem); }
.hero.split .logo-hero { margin: 0 0 28px; }
.hero.split p.lead { margin: 0 0 32px; max-width: 520px; }
.hero-phone { display: flex; justify-content: center; }
@media (max-width: 860px) {
  .hero.split { text-align: center; }
  .hero.split .wrap { grid-template-columns: 1fr; gap: 36px; }
  .hero.split .hero-text { order: 1; }
  .hero.split .hero-phone { order: 2; }
  .hero.split .logo-hero { margin: 0 auto 24px; }
  .hero.split p.lead { margin: 0 auto 28px; }
  .hero .stores { justify-content: center; }
}

/* Section sombre (différenciation) */
.dark { background: var(--text-primary); color: var(--on-accent); text-align: center; }
.dark h2 { color: var(--on-accent); font-size: clamp(1.8rem, 3.6vw, 2.7rem); max-width: 900px; margin: 0 auto .5em; }
.dark .accent-word { color: var(--accentSoft, #6BA89B); font-style: italic; }
.dark p { color: color-mix(in srgb, var(--on-accent) 72%, transparent); max-width: 620px; margin: 0 auto; }

/* Feature cards (3 colonnes blanches) */
.fcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; }
.fcard { background: #FFFEFB; border: 1px solid var(--card); border-radius: var(--radius-lg); padding: 30px 26px; box-shadow: 0 1px 2px rgba(26,46,42,.03); }
.fcard .ico-box { width: 46px; height: 46px; border-radius: 13px; background: var(--card-soft); display: flex; align-items: center; justify-content: center; color: var(--accent); margin-bottom: 18px; }
.fcard .ico-box svg { width: 22px; height: 22px; }
.fcard h3 { font-family: var(--font-body); font-weight: 600; font-size: 1.2rem; margin: 0 0 8px; }
.fcard p { color: var(--text-secondary); margin: 0; font-size: .98rem; }
@media (max-width: 760px) { .fcards { grid-template-columns: 1fr; } }

/* Pricing */
.pricing { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 760px; margin: 48px auto 0; }
.price-card { border-radius: var(--radius-lg); padding: 32px 30px; }
.price-card.free { background: #FFFEFB; border: 1px solid var(--card); }
.price-card.plus { background: var(--text-primary); color: var(--on-accent); position: relative; }
.price-card .pname { font-weight: 600; font-size: 1rem; margin: 0 0 16px; display: flex; align-items: center; justify-content: space-between; }
.price-card.plus .pname { color: var(--on-accent); }
.price-card .amount { font-family: var(--font-display); font-weight: 700; font-size: 2.6rem; line-height: 1; margin: 0 0 6px; }
.price-card .per { font-size: .9rem; color: var(--text-secondary); font-family: var(--font-body); font-weight: 400; }
.price-card.plus .per { color: color-mix(in srgb, var(--on-accent) 65%, transparent); }
.price-card .eq { font-size: .82rem; color: var(--muted); margin: 0 0 22px; }
.price-card.plus .eq { color: color-mix(in srgb, var(--on-accent) 55%, transparent); }
.badge-pop { font-size: .72rem; font-weight: 600; background: var(--accentSoft, #6BA89B); color: var(--text-primary); padding: 4px 12px; border-radius: 999px; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 26px; }
.price-card li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: .96rem; }
.price-card li svg { width: 18px; height: 18px; color: var(--accent); flex: none; margin-top: 3px; }
.price-card.plus li svg { color: var(--accentSoft, #6BA89B); }
.price-card .pbtn { display: block; text-align: center; padding: 13px; border-radius: 14px; font-weight: 600; }
.price-card.free .pbtn { border: 1.5px solid color-mix(in srgb, var(--accent) 30%, transparent); color: var(--accent); }
.price-card.free .pbtn:hover { background: var(--card-soft); text-decoration: none; }
.price-card.plus .pbtn { background: var(--accentSoft, #6BA89B); color: var(--text-primary); }
.price-card.plus .pbtn:hover { background: #7DB7AA; text-decoration: none; }
@media (max-width: 680px) { .pricing { grid-template-columns: 1fr; } }

/* CTA final teal avec formes */
.cta-final { background: var(--accent); border-radius: 28px; padding: 80px 40px; text-align: center; position: relative; overflow: hidden; }
.cta-final h2 { color: var(--on-accent); font-size: clamp(2rem, 4vw, 3rem); margin: 0 0 .3em; position: relative; z-index: 2; }
.cta-final p { color: color-mix(in srgb, var(--on-accent) 80%, transparent); margin: 0 0 30px; position: relative; z-index: 2; }
.cta-final .stores { position: relative; z-index: 2; }
.cta-final .blob { position: absolute; border-radius: 50%; background: rgba(255,255,255,.06); }
.cta-final .blob.b1 { width: 320px; height: 320px; top: -120px; right: -80px; }
.cta-final .blob.b2 { width: 240px; height: 240px; bottom: -120px; left: -60px; }
.cta-final .store-btn { background: #FFFEFB; color: var(--text-primary); }
.cta-final .store-btn:hover { background: #fff; }
.cta-final .store-btn.ghost { background: rgba(255,255,255,.14); color: var(--on-accent); border: none; }

/* Bouton header nav — lisible (texte blanc explicite sur teal) */
.btn-nav {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent); color: #FFFFFF !important;
  padding: 10px 22px; border-radius: 12px; font-weight: 600; font-size: .95rem;
  border: none; transition: background .15s, transform .15s;
}
.btn-nav:hover { background: var(--accent-press); color: #FFFFFF !important; text-decoration: none; transform: translateY(-1px); }

/* ============================================================
   RESPONSIVE MOBILE — optimisation petits écrans (trafic TikTok)
   ============================================================ */
@media (max-width: 600px) {
  body { font-size: 16px; }
  .wrap { padding: 0 20px; }
  section { padding: 48px 0; }

  /* Header */
  .site-header .wrap { height: 60px; }
  .brand { font-size: 1.15rem; gap: 9px; }
  .brand .logo { width: 30px; height: 30px; }
  .btn-nav { padding: 9px 16px; font-size: .9rem; }

  /* Hero */
  .hero.split { padding: 40px 0 56px; }
  .hero.split h1 { font-size: 2.3rem; line-height: 1.08; }
  .hero.split .logo-hero { width: 64px; height: 64px; }
  .hero .tagline-pill { font-size: .82rem; padding: 6px 14px; }
  .hero p.lead { font-size: 1.05rem; }
  .hero-phone .iphone { width: 230px; }

  /* CTA pleine largeur, empilés */
  .hero .stores { flex-direction: column; align-items: stretch; }
  .hero .stores .store-btn { justify-content: center; }
  .cta-final .stores { flex-direction: column; align-items: stretch; }

  /* Titres de section */
  h1 { font-size: 2.3rem; }
  h2 { font-size: 1.7rem; }
  .dark h2 { font-size: 1.5rem; }
  .cta-final h2 { font-size: 1.8rem; }

  /* Sections */
  .dark, .cta-final { padding-left: 24px; padding-right: 24px; }
  .cta-final { padding-top: 56px; padding-bottom: 56px; }
  .feature + .feature { margin-top: 56px; }
  .feature-visual { min-height: 300px; padding: 24px; }
  .feature-visual.showcase { min-height: 320px; }
  .iphone { width: 200px !important; margin: 32px auto -32px !important; }

  /* Steps & cards : déjà en 1 colonne, on resserre */
  .steps, .fcards { gap: 14px; }
  .step, .fcard { padding: 24px 22px; }

  /* Pricing */
  .price-card { padding: 26px 22px; }
  .price-card .amount { font-size: 2.2rem; }

  /* Illustration sélecteur de ton */
  .illus { padding: 22px 18px; }

  /* FAQ */
  .faq-item summary { font-size: 1.02rem; padding: 20px 0; }

  /* Footer en colonne */
  .site-footer { padding: 40px 0 48px; }
  .site-footer .cols { flex-direction: column; gap: 28px; }
}

/* Très petits écrans */
@media (max-width: 360px) {
  .hero.split h1, h1 { font-size: 2rem; }
  .iphone { width: 180px !important; }
}

/* Empêcher tout débordement horizontal */
html, body { overflow-x: hidden; }
img, svg { max-width: 100%; }
