/* =========================================================
   L'Assurance Décennale — responsive (mobile-first)
   Desktop overrides at min-width: 1024px
   ========================================================= */

:root {
  /* surfaces */
  --ink:        #0F1115;
  --ink-soft:   #242424;
  --ink-deep:   #1A1919;
  --ink-mute:   rgba(15,17,21,0.62);
  --line:       rgba(15,17,21,0.10);
  --paper:      #FFFFFF;
  --paper-2:    #F3EEE7;
  --cream:      #FAF7F2;  /* warm page background (Orus-inspired) */

  /* accents */
  --c-blue:     #A2DDFF;
  --c-green:    #8CFF93;
  --c-purple:   #F6D2FF;
  --c-cream:    #FFE5C7;
  --c-accent:   #8CFF93;  /* brand accent — used for stars, brand dot, stat highlights */

  /* radii — softened, Orus-inspired */
  --r-card:     18px;
  --r-input:    10px;
  --r-btn:      10px;
  --r-pill:     999px;

  /* rhythm (mobile) */
  --pad-x:      20px;
  --gap-section:56px;
  --gap-stack:  24px;
  --max-w:      1240px;

  /* type (mobile) */
  --t-display:  34px;
  --t-h2:       26px;
  --t-h3:       19px;
  --t-body:     15px;
  --t-small:    13px;
  --t-caption:  11px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  font-family: 'Archivo', system-ui, sans-serif;
  color: var(--ink);
  font-size: var(--t-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* =========================================================
   Shared components
   ========================================================= */

.eyebrow {
  font: 500 12px/1 'Archivo'; letter-spacing: 0.08em; text-transform: uppercase;
  color: #fff; opacity: .9;
  display: inline-flex; align-items: center; gap: 8px;
}
.eyebrow::before { content: ''; width: 18px; height: 1px; background: currentColor; }

.eyebrow-2 {
  font: 600 11px/1 'Archivo'; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-mute); margin-bottom: 14px;
  display: inline-flex; align-items: center; gap: 8px;
}
.eyebrow-2::before { content: ''; width: 14px; height: 1px; background: currentColor; }

.pill-tag {
  background: #fff; color: var(--ink); font: 500 11px/1 'Archivo';
  padding: 7px 12px; border-radius: var(--r-pill);
  display: inline-flex; align-items: center; gap: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,.18);
  white-space: nowrap;
}
.pill-tag .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--c-green); }

.chip {
  display: inline-block;
  background: var(--c-green);
  padding: 8px 14px;
  font: 700 13px/1 'Archivo';
  margin-bottom: 16px;
  border-radius: 4px;
}
.chip.blue { background: var(--c-blue); }

.callout {
  background: var(--c-purple);
  border-radius: var(--r-card);
  padding: 18px 20px;
  font: 500 13.5px/1.5 'Archivo';
}
.callout.blue { background: var(--c-blue); }

.btn {
  appearance: none; border: 0; cursor: pointer;
  height: 48px; padding: 0 22px;
  border-radius: var(--r-btn);
  font: 700 14px/1 'Archivo'; letter-spacing: 0.01em;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  transition: opacity .2s, transform .2s;
  text-decoration: none;
}
.btn:hover { opacity: .9; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--ink-soft); color: #fff; }
.btn-light { background: #fff; color: var(--ink); }
.btn-wide { width: 100%; }
.btn svg { width: 14px; height: 14px; }

.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.field-label {
  font: 500 12px/1.3 'Archivo'; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--ink-mute); display: flex; align-items: center; gap: 4px;
}
.req { color: #E5484D; font-style: normal; font-weight: 700; }

/* inline error message */
.field-error {
  display: none; margin: 2px 0 0; padding-left: 2px;
  font: 400 12px/1.4 'Archivo'; color: #E5484D;
}
.field-error.show { display: block; }

/* text inputs */
.input {
  height: 48px; width: 100%; border-radius: var(--r-input);
  background: #fff; border: 1px solid var(--line); padding: 0 14px;
  font: 400 14px/1 'Poppins'; color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.input::placeholder { color: #9a9a9a; }
.input:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(0,0,0,.06); }
.input.err { border-color: #E5484D; box-shadow: 0 0 0 3px rgba(229,72,77,.12); }

/* ===== Question title (one-question-per-step) ===== */
.q-label {
  display: block; margin-bottom: 7px;
  font: 700 15px/1.3 'Archivo'; color: var(--ink);
}
.q-title { font: 600 18px/1.3 'Poppins'; letter-spacing: -0.01em; margin: 0 0 5px; }
.q-help { margin: 0 0 14px; font: 400 12.5px/1.45 'Archivo'; color: var(--ink-mute); }

/* ===== Big selectable option cards (single select) ===== */
.opt-list { display: flex; flex-direction: column; gap: 8px; }
.opt-card {
  display: flex; align-items: center; gap: 12px; width: 100%; text-align: left;
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 11px;
  background: #fff; cursor: pointer;
  font: 500 13.5px/1.3 'Poppins'; color: var(--ink);
  transition: border-color .18s, box-shadow .18s, background .18s, transform .12s;
}
.opt-card:hover { border-color: rgba(15,17,21,.35); box-shadow: 0 6px 18px -10px rgba(0,0,0,.25); }
.opt-card:active { transform: scale(.99); }
.opt-card .opt-label { flex: 1; }
.opt-radio {
  width: 20px; height: 20px; flex: 0 0 20px; border: 1.5px solid var(--line);
  border-radius: 999px; display: flex; align-items: center; justify-content: center;
  transition: background .15s, border-color .15s;
}
.opt-radio svg { width: 12px; height: 12px; color: var(--ink); opacity: 0; transition: opacity .12s; }
.opt-card.selected { border-color: var(--ink); background: rgba(140,255,147,.14); box-shadow: 0 0 0 3px rgba(140,255,147,.30); }
.opt-card.selected .opt-radio { background: var(--c-green); border-color: var(--ink); }
.opt-card.selected .opt-radio svg { opacity: 1; }

/* ===== Activity multi-select (searchable list) ===== */
.q-search { position: relative; margin-bottom: 12px; }
.q-search svg { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); width: 17px; height: 17px; opacity: .4; }
.q-search input {
  width: 100%; height: 44px; border: 1.5px solid var(--line); border-radius: 10px;
  padding: 0 14px 0 40px; font: 400 13.5px 'Poppins'; color: var(--ink); background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.q-search input::placeholder { color: #9a9a9a; }
.q-search input:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(0,0,0,.05); }

.opt-scroll { max-height: 224px; overflow-y: auto; display: flex; flex-direction: column; gap: 7px; padding: 2px; margin: 0 -2px; }
.opt-row {
  display: flex; align-items: center; gap: 11px; width: 100%; text-align: left;
  padding: 11px 13px; border: 1.5px solid var(--line); border-radius: 10px;
  background: #fff; cursor: pointer;
  font: 500 13.5px/1.3 'Poppins'; color: var(--ink);
  transition: border-color .16s, background .16s;
}
.opt-row:hover { border-color: rgba(15,17,21,.30); }
.opt-row .opt-label { flex: 1; }
.opt-check {
  width: 20px; height: 20px; flex: 0 0 20px; border: 1.5px solid var(--line); border-radius: 6px;
  display: flex; align-items: center; justify-content: center; transition: background .15s, border-color .15s;
}
.opt-check svg { width: 12px; height: 12px; color: var(--ink); opacity: 0; transition: opacity .12s; }
.opt-row.selected { border-color: var(--ink); background: rgba(140,255,147,.14); }
.opt-row.selected .opt-check { background: var(--c-green); border-color: var(--ink); }
.opt-row.selected .opt-check svg { opacity: 1; }

.q-empty { padding: 18px; text-align: center; font: 400 13px 'Archivo'; color: var(--ink-mute); }
.q-other { margin-top: 4px; }
.q-other input {
  width: 100%; height: 48px; border: 1.5px solid var(--line); border-radius: 12px;
  padding: 0 14px; font: 400 14px 'Poppins'; color: var(--ink); background: #fff;
}
.q-other input:focus { outline: none; border-color: var(--ink); }
.q-count { margin: 12px 0 0; font: 500 12.5px/1 'Archivo'; color: var(--ink-mute); }
.q-error { display: none; margin: 12px 0 0; font: 400 12.5px/1.4 'Archivo'; color: #E5484D; }
.q-error.show { display: block; }

/* ===== Multi-step shell ===== */
.form-flow { position: relative; }
.form-step { animation: stepIn .34s ease both; }
.form-step[hidden] { display: none; }
@keyframes stepIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.form-help { margin: -10px 0 18px; font: 400 13px/1.5 'Archivo'; color: var(--ink-mute); }

.form-secure { display: inline-flex; align-items: center; gap: 6px; font: 500 11px/1 'Archivo'; color: var(--ink-mute); }
.form-secure svg { width: 13px; height: 13px; }

.form-back {
  background: none; border: 0; cursor: pointer; padding: 0; margin: 0 0 14px;
  display: inline-flex; align-items: center; gap: 5px;
  font: 500 12.5px/1 'Archivo'; color: var(--ink-mute); transition: color .15s;
}
.form-back:hover { color: var(--ink); }
.form-back svg { width: 14px; height: 14px; }

.consent { display: flex; align-items: flex-start; gap: 10px; margin: 6px 0 2px; cursor: pointer;
  font: 400 12px/1.5 'Archivo'; color: var(--ink-mute); }
.consent input { margin-top: 1px; width: 16px; height: 16px; flex: 0 0 16px; accent-color: var(--ink); cursor: pointer; }
.consent a { text-decoration: underline; }
.consent.err { color: #E5484D; }
.consent.err input { outline: 2px solid #E5484D; outline-offset: 1px; }

/* ===== Success ===== */
.form-done { text-align: center; padding: 18px 6px 8px; animation: stepIn .4s ease both; }
.form-done .tick {
  width: 64px; height: 64px; border-radius: 999px; background: var(--c-green);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 18px;
  animation: tickPop .5s ease both;
}
.form-done .tick svg { width: 30px; height: 30px; color: var(--ink); }
.form-done h3 { font: 600 20px/1.2 'Poppins'; margin: 0 0 8px; }
.form-done p { font: 400 14px/1.6 'Archivo'; color: var(--ink-mute); margin: 0; }
@keyframes tickPop { 0% { transform: scale(.6); opacity: 0; } 60% { transform: scale(1.08); } 100% { transform: scale(1); opacity: 1; } }

/* form-card */
.form-card {
  background: #fff; border-radius: var(--r-card); padding: 20px;
  box-shadow: 0 1px 2px rgba(0,0,0,.04), 0 22px 50px -22px rgba(20,18,30,.28);
}
.form-lead { margin-bottom: 14px; }
.form-lead-title { font: 600 17px/1.25 'Poppins'; letter-spacing: -0.01em; margin: 0 0 4px; }
.form-lead-sub { font: 400 12.5px/1.45 'Archivo'; color: var(--ink-mute); margin: 0; }

.steps { display: flex; gap: 5px; margin-bottom: 18px; }
.steps .bar { flex: 1; height: 4px; border-radius: 999px; background: rgba(0,0,0,.09); transition: background .3s; }
.steps .bar.on { background: var(--c-green); }
.form-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.form-step-label { font: 500 11px/1 'Archivo'; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); }
.form-step-label.active { color: var(--ink); }
.form-title { font: 600 18px/1.2 'Poppins'; margin: 0 0 20px; letter-spacing: -0.01em; }
.form-foot {
  margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 8px;
  font: 400 12px/1.4 'Archivo'; color: var(--ink-mute);
}
.form-foot svg { width: 14px; height: 14px; flex: 0 0 14px; }

/* trust strip */
.trust {
  margin-top: 28px;
  display: flex; align-items: center; flex-wrap: wrap; gap: 14px;
  font: 500 12px/1 'Archivo'; color: rgba(255,255,255,.78);
}
.trust .stars { display: inline-flex; gap: 2px; color: var(--c-accent); }
.trust .div { width: 1px; height: 14px; background: rgba(255,255,255,.25); }

/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  padding: 56px 0 56px;
}
.hero .bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.35) 30%, rgba(0,0,0,.7) 75%, rgba(0,0,0,.92) 100%),
    url('assets/hero-carpenter.png');
  background-size: cover; background-position: center;
}
.hero .container {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  gap: 40px;
}
.hero-content { display: flex; flex-direction: column; gap: 14px; }
.hero h1 {
  font: 700 var(--t-display)/1.05 'Archivo';
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
}
.hero .sub {
  font: 400 var(--t-body)/1.5 'Archivo';
  color: #fff;
  margin: 4px 0 0;
  max-width: 520px;
}

/* =========================================================
   SECTION typography & rhythm
   ========================================================= */

section { padding: var(--gap-section) 0; }
section.tight { padding: 32px 0; }

h2 {
  font: 700 var(--t-h2)/1.15 'Archivo';
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  text-wrap: balance;
}
.lede {
  font: 400 var(--t-body)/1.5 'Archivo';
  color: var(--ink-mute);
  margin: 0 0 28px;
  max-width: 640px;
}
p { font: 400 var(--t-body)/1.55 'Archivo'; color: var(--ink); margin: 0; }
p + p { margin-top: 14px; }

/* =========================================================
   TESTIMONIAL
   ========================================================= */

.testimonial-wrap { padding: 32px 0 0; }
.testimonial {
  border-radius: var(--r-card);
  overflow: hidden;
  background: #1F1E1E;
  color: #fff;
}
.testimonial .img {
  height: 220px;
  background-image:
    linear-gradient(rgba(0,0,0,.15), rgba(0,0,0,.35)),
    url('assets/testimonial-roofer.png');
  background-size: cover; background-position: center 30%;
}
.testimonial .body { padding: 22px 24px 26px; }
.testimonial .quote-mark { font: 700 36px/1 'Archivo'; opacity: .9; display: block; margin-bottom: 6px; }
.testimonial blockquote { margin: 0 0 18px; font: 400 14px/1.55 'Archivo'; color: rgba(255,255,255,.86); }
.testimonial .who { display: flex; align-items: center; gap: 12px; }
.testimonial .avatar {
  width: 40px; height: 40px; border-radius: 999px;
  display: grid; place-items: center; font: 700 14px 'Archivo';
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
}
.testimonial .name { font: 700 14px/1.2 'Archivo'; }
.testimonial .role { font: 400 12px/1.2 'Archivo'; opacity: .65; margin-top: 2px; }

/* =========================================================
   HOW IT WORKS
   ========================================================= */

.how .stack { display: flex; flex-direction: column; gap: 14px; }
.how-card {
  border-radius: var(--r-card);
  padding: 22px;
  display: flex; gap: 16px;
  align-items: flex-start;
}
.how-card .num {
  width: 36px; height: 36px; flex: 0 0 36px;
  background: #fff; border-radius: 10px;
  display: grid; place-items: center;
  font: 700 14px 'Archivo';
}
.how-card .text { flex: 1; }
.how-card h3 { font: 700 16px/1.2 'Poppins'; margin: 0 0 6px; }
.how-card p { font: 400 13.5px/1.5 'Archivo'; color: rgba(15,17,21,.74); margin: 0; }
.how-card.blue   { background: var(--c-blue); }
.how-card.green  { background: var(--c-green); }
.how-card.purple { background: var(--c-purple); }

/* =========================================================
   ABOUT
   ========================================================= */

.about { background: var(--paper-2); }
.about .container { display: flex; flex-direction: column; gap: 28px; }
.about-img {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: var(--r-card);
  background-image: url('assets/about-expert.png');
  background-size: cover; background-position: center;
}
.about .text-block .callout { margin-top: 22px; }

/* =========================================================
   CTA BANNER
   ========================================================= */

.cta-banner-wrap { padding: 32px 0; }
.cta-banner {
  background: var(--c-blue);
  border-radius: var(--r-card);
  padding: 28px 24px;
  text-align: center;
}
.cta-banner h3 {
  font: 700 22px/1.2 'Archivo'; margin: 0 0 18px;
  letter-spacing: -0.01em;
}

/* =========================================================
   WHY
   ========================================================= */

.why .container { display: flex; flex-direction: column; gap: 22px; }
.why .text-block .callout { margin-top: 22px; }

/* =========================================================
   FOOTER
   ========================================================= */

footer {
  background: var(--ink-deep); color: #fff;
  padding: 56px 0 28px;
}
footer .brand-row {
  font: 700 22px/1 'Poppins';
  display: flex; align-items: baseline; gap: 4px;
  margin-bottom: 22px;
}
footer .brand-row .accent { color: var(--c-accent); }
footer .word-mark .accent { color: var(--c-accent); }
footer .meta {
  display: flex; flex-direction: column; gap: 10px;
  font: 400 13px/1.4 'Archivo'; color: rgba(255,255,255,.72);
  margin-bottom: 36px;
}
footer .meta .row { display: flex; gap: 10px; align-items: center; }
footer .meta svg { width: 14px; height: 14px; flex: 0 0 14px; color: rgba(255,255,255,.55); }
footer .col-title {
  font: 600 12px/1 'Archivo'; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,.55); margin: 0 0 18px;
}
footer .col-links {
  display: flex; flex-direction: column; gap: 12px;
  font: 400 14px/1.4 'Archivo'; color: rgba(255,255,255,.78);
}
footer .col-links a { text-decoration: none; transition: color .2s; }
footer .col-links a:hover { color: #fff; }
footer .top-grid { display: flex; flex-direction: column; gap: 32px; margin-bottom: 32px; }
footer .divider { height: 1px; background: rgba(255,255,255,.14); }
footer .tagline {
  text-align: center;
  font: 400 16px/1.4 'Poppins';
  color: #fff;
  padding: 28px 16px;
}
footer .badges { display: flex; gap: 12px; align-items: center; justify-content: center; margin: 8px 0 24px; }
footer .badge-logo { height: 46px; width: auto; display: block; border-radius: 6px; }
footer .word-mark { text-align: center; font: 700 11px/1 'Archivo'; letter-spacing: 0.06em; margin-top: 16px; opacity: .9; }
footer .legal {
  font: 400 10px/1.6 'Poppins'; color: rgba(255,255,255,.55);
  text-align: center; margin: 16px 0 22px;
}
footer .footer-bottom { position: relative; }
footer .legal-links {
  display: flex; gap: 18px; justify-content: center; align-items: center; flex-wrap: wrap;
  font: 500 11px/1 'Archivo'; color: rgba(255,255,255,.72);
  padding-top: 18px; border-top: 1px solid rgba(255,255,255,.14);
}
footer .legal-links a { text-decoration: none; transition: color .2s; }
footer .legal-links a:hover { color: #fff; }
footer .top-btn {
  position: absolute; right: 0; top: 14px;
  width: 32px; height: 32px; border-radius: 8px;
  background: #fff; color: var(--ink);
  display: grid; place-items: center; cursor: pointer;
  border: 0; transition: transform .2s;
}
footer .top-btn:hover { transform: translateY(-2px); }
footer .top-btn svg { width: 12px; height: 12px; }

/* =========================================================
   STATS BAR
   ========================================================= */

.stats-bar {
  padding: 32px 0;
  background: var(--ink);
  color: #fff;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 16px;
  text-align: center;
}
.stat-num {
  font: 700 32px/1 'Archivo';
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  color: #fff;
}
.stat-num span { color: var(--c-accent); font-size: 0.7em; margin-left: 2px; }
.stat-label {
  font: 500 11px/1.3 'Archivo';
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
}

/* =========================================================
   FAQ
   ========================================================= */

.faq { background: var(--paper-2); }
.faq-head { margin-bottom: 32px; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq details {
  background: #fff;
  border-radius: var(--r-card);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq details[open] {
  border-color: var(--ink);
  box-shadow: 0 4px 16px -8px rgba(0,0,0,.12);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font: 600 15px/1.3 'Archivo';
  color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq .faq-icon {
  position: relative;
  width: 18px; height: 18px;
  flex: 0 0 18px;
}
.faq .faq-icon::before,
.faq .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--ink);
  border-radius: 1px;
  transition: transform .25s;
}
.faq .faq-icon::before { top: 50%; left: 0; width: 100%; height: 2px; margin-top: -1px; }
.faq .faq-icon::after  { left: 50%; top: 0; width: 2px; height: 100%; margin-left: -1px; }
.faq details[open] .faq-icon::after { transform: rotate(90deg); }
.faq .faq-body {
  padding: 0 22px 20px;
}
.faq .faq-body p {
  font: 400 14px/1.6 'Archivo';
  color: var(--ink-mute);
  margin: 0;
}

/* =========================================================
   FINAL CTA (with form repeat)
   ========================================================= */

.final-cta {
  background: var(--ink);
  color: #fff;
  padding: 56px 0;
}
.final-cta .container {
  display: flex; flex-direction: column; gap: 32px;
}
.final-cta .eyebrow-2 { color: rgba(255,255,255,.6); }
.final-cta .eyebrow-2::before { background: rgba(255,255,255,.6); }
.final-cta h2 {
  font: 700 var(--t-h2)/1.1 'Archivo';
  color: #fff;
  margin: 0 0 14px;
  letter-spacing: -0.015em;
}
.final-cta-content > p {
  font: 400 var(--t-body)/1.55 'Archivo';
  color: rgba(255,255,255,.78);
  margin: 0;
}
.final-cta-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.final-cta-list li {
  display: flex; align-items: center; gap: 10px;
  font: 500 14px/1.4 'Archivo';
  color: rgba(255,255,255,.92);
}
.final-cta-list svg {
  width: 16px; height: 16px;
  color: var(--c-green);
  flex: 0 0 16px;
}

/* =========================================================
   STICKY MOBILE CTA
   ========================================================= */

.sticky-cta {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 40;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  padding: 14px 20px;
  border-radius: 999px;
  font: 700 14px/1 'Archivo';
  display: flex; align-items: center; justify-content: center; gap: 10px;
  box-shadow: 0 10px 30px -6px rgba(0,0,0,.4), 0 2px 6px rgba(0,0,0,.2);
  transition: transform .2s, opacity .2s;
}
.sticky-cta:hover { transform: translateY(-2px); }
.sticky-cta svg { width: 16px; height: 16px; }
.sticky-cta.hidden {
  opacity: 0; pointer-events: none; transform: translateY(20px);
}

/* =========================================================
   DESKTOP (≥1024px)
   ========================================================= */

@media (min-width: 1024px) {
  :root {
    --pad-x: 64px;
    --gap-section: 112px;
    --t-display: 60px;
    --t-h2: 42px;
    --t-body: 16px;
  }

  /* hero: two-column with form on the right */
  .hero { padding: 80px 0 100px; }
  .hero .container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
  }
  .hero-content { gap: 18px; }
  .hero h1 { font-size: var(--t-display); line-height: 1.02; letter-spacing: -0.02em; }
  .hero .sub { font-size: 18px; line-height: 1.55; margin-top: 12px; }
  .hero .form-card { padding: 26px; border-radius: 18px; }

  /* sections */
  section { padding: var(--gap-section) 0; }
  section.tight { padding: 64px 0; }
  h2 { font-size: var(--t-h2); line-height: 1.1; }
  .lede { font-size: 18px; margin: 0 0 48px; }
  p { font-size: 16px; line-height: 1.65; }
  p + p { margin-top: 16px; }

  /* testimonial: 2-col */
  .testimonial-wrap { padding: 64px 0 0; }
  .testimonial { display: grid; grid-template-columns: 1fr 1fr; }
  .testimonial .img { height: auto; min-height: 340px; }
  .testimonial .body { padding: 48px; display: flex; flex-direction: column; justify-content: center; }
  .testimonial .quote-mark { font-size: 48px; }
  .testimonial blockquote { font-size: 18px; line-height: 1.6; }

  /* how: 3-col grid */
  .how .stack { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .how-card { padding: 32px; flex-direction: column; gap: 20px; }
  .how-card .num { width: 44px; height: 44px; flex-basis: 44px; font-size: 16px; }
  .how-card h3 { font-size: 20px; }
  .how-card p { font-size: 15px; }

  /* about: 2-col */
  .about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }
  .about-img { aspect-ratio: 4/5; }
  .about .text-block .callout { margin-top: 28px; font-size: 15px; padding: 22px 24px; }

  /* cta: horizontal */
  .cta-banner-wrap { padding: 64px 0; }
  .cta-banner {
    padding: 48px 56px;
    display: flex; align-items: center; justify-content: space-between; gap: 32px;
    text-align: left;
  }
  .cta-banner h3 { font-size: 30px; margin: 0; max-width: 600px; }
  .cta-banner .btn { height: 56px; padding: 0 32px; font-size: 15px; flex-shrink: 0; }

  /* why: 2-col */
  .why .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
  }
  .why .text-block .callout { margin-top: 28px; font-size: 15px; padding: 22px 24px; }

  /* stats bar — 4 col */
  .stats-bar { padding: 48px 0; }
  .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 32px; }
  .stat-num { font-size: 48px; }
  .stat-label { font-size: 12px; }

  /* faq — wider gap, larger summary */
  .faq-head { margin-bottom: 48px; }
  .faq summary { padding: 22px 28px; font-size: 17px; }
  .faq .faq-body { padding: 0 28px 24px; }
  .faq .faq-body p { font-size: 15px; }

  /* final CTA — 2 col side-by-side */
  .final-cta { padding: 100px 0; }
  .final-cta .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }
  .final-cta h2 { font-size: var(--t-h2); }
  .final-cta-content > p { font-size: 18px; line-height: 1.6; }
  .final-cta-list { margin-top: 32px; gap: 14px; }
  .final-cta-list li { font-size: 15px; }
  .final-cta .form-card { padding: 26px; border-radius: 18px; }

  /* sticky CTA hidden on desktop */
  .sticky-cta { display: none; }
  body { padding-bottom: 0; }

  /* footer: 3-col top */
  footer { padding: 80px 0 32px; }
  footer .top-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
  }
  footer .brand-row { font-size: 26px; margin-bottom: 18px; }
  footer .meta { margin: 0; }
  footer .tagline { padding: 32px 0; font-size: 18px; }
  footer .legal { max-width: 720px; margin: 20px auto; }
  footer .legal-links { gap: 28px; padding-top: 24px; }
  footer .top-btn { top: 16px; }
}


/* =========================================================
   CHATBOT
   ========================================================= */
.cbot-bubble {
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
  width: 64px; height: 64px; border: 0; border-radius: 999px; cursor: pointer;
  background: radial-gradient(125% 125% at 30% 22%, #A6FFAC 0%, #74EE80 55%, #43D258 100%);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 32px -8px rgba(50,190,90,.55), 0 2px 6px rgba(0,0,0,.16);
  transition: transform .22s cubic-bezier(.34,1.56,.64,1), opacity .2s, box-shadow .2s;
}
.cbot-bubble:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 22px 44px -10px rgba(50,190,90,.6); }
.cbot-bubble:active { transform: scale(.97); }
.cbot-bubble svg { width: 28px; height: 28px; position: relative; z-index: 2; }
.cbot-bubble.hidden { opacity: 0; pointer-events: none; transform: scale(.55); }

.cbot-ring {
  position: absolute; inset: 0; border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(140,255,147,.55);
  animation: cbotPulse 2.4s ease-out infinite;
}
@keyframes cbotPulse {
  0%   { box-shadow: 0 0 0 0 rgba(140,255,147,.50); }
  70%  { box-shadow: 0 0 0 16px rgba(140,255,147,0); }
  100% { box-shadow: 0 0 0 0 rgba(140,255,147,0); }
}
.cbot-dot { display: none; }   /* redondant sur une bulle verte */
.cbot-badge {
  position: absolute; top: -2px; left: -2px; z-index: 3;
  min-width: 20px; height: 20px; padding: 0 5px; border-radius: 999px;
  background: var(--ink); color: #fff;
  font: 700 11px/20px 'Archivo'; text-align: center; border: 2px solid #fff;
}

/* teaser preview message */
.cbot-teaser {
  position: fixed; right: 20px; bottom: 98px; z-index: 60;
  width: min(290px, calc(100vw - 40px));
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 13px 30px 13px 13px;
  display: flex; align-items: flex-start; gap: 11px; cursor: pointer;
  box-shadow: 0 18px 40px -14px rgba(20,18,30,.4), 0 2px 6px rgba(0,0,0,.12);
  opacity: 0; transform: translateY(10px) scale(.96); pointer-events: none; transform-origin: bottom right;
  transition: opacity .3s ease, transform .3s cubic-bezier(.34,1.56,.64,1);
}
.cbot-teaser.show { opacity: 1; transform: none; pointer-events: auto; }
.cbot-teaser-ava {
  flex: 0 0 32px; width: 32px; height: 32px; border-radius: 999px;
  background: var(--c-green); color: var(--ink);
  display: flex; align-items: center; justify-content: center; font: 700 15px/1 'Poppins';
}
.cbot-teaser-text { font: 400 13px/1.5 'Archivo'; color: var(--ink); }
.cbot-teaser-x {
  position: absolute; top: 7px; right: 7px; width: 20px; height: 20px;
  border: 0; background: var(--paper-2); border-radius: 999px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; color: var(--ink-mute);
}
.cbot-teaser-x:hover { background: #e7e1d8; color: var(--ink); }
.cbot-teaser-x svg { width: 11px; height: 11px; }

.cbot-panel {
  position: fixed; right: 18px; bottom: 18px; z-index: 61;
  width: min(380px, calc(100vw - 36px)); height: min(620px, calc(100vh - 36px));
  background: #fff; border-radius: 20px; overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 30px 70px -20px rgba(20,18,30,.45), 0 4px 12px rgba(0,0,0,.15);
  opacity: 0; transform: translateY(20px) scale(.98); pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.cbot-panel.open { opacity: 1; transform: none; pointer-events: auto; }

.cbot-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; background: var(--ink); color: #fff; flex: 0 0 auto;
}
.cbot-id { display: flex; align-items: center; gap: 11px; }
.cbot-ava {
  width: 38px; height: 38px; border-radius: 999px; background: var(--c-green); color: var(--ink);
  display: flex; align-items: center; justify-content: center; font: 700 17px/1 'Poppins';
}
.cbot-name { font: 600 14px/1.2 'Poppins'; }
.cbot-status { font: 400 11.5px/1.3 'Archivo'; opacity: .7; display: flex; align-items: center; gap: 6px; }
.cbot-status::before { content: ''; width: 7px; height: 7px; border-radius: 999px; background: var(--c-green); }
.cbot-x { background: rgba(255,255,255,.12); border: 0; color: #fff; cursor: pointer;
  width: 30px; height: 30px; border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.cbot-x:hover { background: rgba(255,255,255,.22); }
.cbot-x svg { width: 16px; height: 16px; }

.cbot-log {
  flex: 1; overflow-y: auto; padding: 18px 16px;
  display: flex; flex-direction: column; gap: 10px; background: var(--cream);
}
.cbot-msg {
  max-width: 82%; padding: 11px 14px; font: 400 13.5px/1.5 'Archivo';
  border-radius: 16px; animation: cbotIn .25s ease both; word-wrap: break-word;
}
.cbot-msg b { font-weight: 700; }
.cbot-msg.bot { align-self: flex-start; background: #fff; color: var(--ink);
  border: 1px solid var(--line); border-bottom-left-radius: 5px; }
.cbot-msg.user { align-self: flex-end; background: var(--ink); color: #fff; border-bottom-right-radius: 5px; }
@keyframes cbotIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.cbot-typing {
  align-self: flex-start; background: #fff; border: 1px solid var(--line);
  border-radius: 16px; border-bottom-left-radius: 5px; padding: 13px 15px;
  display: flex; gap: 4px;
}
.cbot-typing span { width: 7px; height: 7px; border-radius: 999px; background: rgba(15,17,21,.32); animation: cbotBlink 1.2s infinite; }
.cbot-typing span:nth-child(2) { animation-delay: .2s; }
.cbot-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes cbotBlink { 0%, 60%, 100% { opacity: .3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }

.cbot-bar { flex: 0 0 auto; border-top: 1px solid var(--line); background: #fff; padding: 10px 12px 12px; }
.cbot-quick { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 10px; }
.cbot-quick:empty { display: none; }
.cbot-chip {
  border: 1.5px solid var(--line); background: #fff; color: var(--ink); cursor: pointer;
  padding: 8px 13px; border-radius: 999px; font: 500 12.5px/1 'Archivo';
  transition: border-color .15s, background .15s;
}
.cbot-chip:hover { border-color: var(--ink); background: var(--paper-2); }

.cbot-inputrow { display: flex; align-items: center; gap: 8px; }
.cbot-input {
  flex: 1; height: 44px; border: 1.5px solid var(--line); border-radius: 999px;
  padding: 0 16px; font: 400 13.5px 'Archivo'; color: var(--ink); background: #fff;
}
.cbot-input:focus { outline: none; border-color: var(--ink); }
.cbot-send {
  width: 44px; height: 44px; flex: 0 0 44px; border: 0; border-radius: 999px; cursor: pointer;
  background: #43D258; color: var(--ink); display: flex; align-items: center; justify-content: center;
  transition: background .15s, transform .12s;
}
.cbot-send:hover { background: #34c249; }
.cbot-send:active { transform: scale(.94); }
.cbot-send svg { width: 18px; height: 18px; }

@media (max-width: 460px) {
  .cbot-panel { right: 0; bottom: 0; width: 100vw; height: 100dvh; border-radius: 0; }
}

/* =========================================================
   PAGES LÉGALES
   ========================================================= */
.lp-head { border-bottom: 1px solid var(--line); background: #fff; position: sticky; top: 0; z-index: 10; }
.lp-head .container { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.lp-logo { font: 800 16px/1 'Archivo'; letter-spacing: -0.02em; color: var(--ink); text-decoration: none; }
.lp-back { font: 600 13px/1 'Archivo'; color: var(--ink-mute); text-decoration: none; }
.lp-back:hover { color: var(--ink); }
.lp-doc { max-width: 800px; margin: 0 auto; padding: 44px 20px 64px; }
.lp-doc h1 { font: 800 32px/1.15 'Poppins'; letter-spacing: -0.02em; margin: 0 0 8px; }
.lp-updated { font: 400 13px/1 'Archivo'; color: var(--ink-mute); margin: 0 0 36px; }
.lp-doc h2 { font: 700 19px/1.3 'Poppins'; margin: 34px 0 10px; }
.lp-doc h3 { font: 700 15px/1.3 'Archivo'; margin: 20px 0 6px; }
.lp-doc p, .lp-doc li { font: 400 14.5px/1.7 'Archivo'; color: #2c2c2c; }
.lp-doc p { margin: 0 0 12px; }
.lp-doc ul { margin: 0 0 14px; padding-left: 20px; }
.lp-doc li { margin-bottom: 6px; }
.lp-doc a { color: #2563EB; text-decoration: underline; }
.lp-doc strong { font-weight: 700; }
.lp-note { background: var(--paper-2); border-left: 3px solid var(--ink); border-radius: 0 8px 8px 0; padding: 14px 16px; font-size: 13.5px; margin: 0 0 28px; }
.lp-todo { background: #FFF4D6; padding: 1px 5px; border-radius: 3px; font-weight: 600; }
.lp-foot { border-top: 1px solid var(--line); padding: 28px 0; text-align: center; }
.lp-foot .links { display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: center; margin-bottom: 12px; }
.lp-foot a { font: 500 13px/1 'Archivo'; color: var(--ink-mute); text-decoration: none; }
.lp-foot a:hover { color: var(--ink); }
.lp-foot .copy { font: 400 12px/1.5 'Archivo'; color: var(--ink-mute); }

/* =========================================================
   BANDEAU CONSENTEMENT COOKIES
   ========================================================= */
.cc-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: flex; justify-content: center; padding: 14px;
  pointer-events: none; opacity: 0; transform: translateY(14px);
  transition: opacity .3s ease, transform .3s ease;
}
.cc-banner.show { opacity: 1; transform: none; pointer-events: auto; }
.cc-card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  box-shadow: 0 18px 44px -18px rgba(0,0,0,.4);
  max-width: 740px; width: 100%; padding: 16px 18px;
  display: flex; flex-direction: column; gap: 13px;
}
.cc-text { font: 400 13px/1.55 'Archivo'; color: var(--ink); }
.cc-text strong { font-weight: 700; }
.cc-text a { color: var(--ink); text-decoration: underline; }
.cc-btns { display: flex; gap: 10px; }
.cc-btns button {
  flex: 1; height: 44px; border-radius: 10px; cursor: pointer;
  font: 700 13px 'Archivo'; border: 1.5px solid var(--ink);
  transition: opacity .15s, background .15s;
}
.cc-refuse { background: #fff; color: var(--ink); }
.cc-refuse:hover { background: var(--paper-2); }
.cc-accept { background: var(--ink); color: #fff; }
.cc-accept:hover { opacity: .9; }
@media (min-width: 640px) {
  .cc-card { flex-direction: row; align-items: center; gap: 18px; }
  .cc-btns { flex: 0 0 auto; }
  .cc-btns button { min-width: 130px; flex: 0 0 auto; }
}
