/* ============================================================
   Armada — demo-plombier — design system (charte go.armadagrowth.com)
   Tokens + composants repris du simulateur live, + wizard / single-page / paiement / hub.
   ============================================================ */
:root {
  --primary: #0200DF; --primary-hover: #0402B0; --brand-dark: #00055F;
  --brand-bright: #3A41FF; --peri: #A5B1FF; --brand-50: #F0F3FF;
  --lime: #A3E635; --lime-dark: #4D7C0F; --lime-tint: #ECFCCB;
  --text: #0F172A; --text-light: #64748B; --border: #E4E8F2;
  --bg: #fff; --bg-page: #F0F3FF; --success: #65A30D;
  --shadow: 0 1px 2px rgba(0,5,95,0.04), 0 20px 44px -22px rgba(0,5,95,0.22);
  --shadow-hover: 0 6px 18px rgba(0,5,95,0.10), 0 26px 52px -14px rgba(0,5,95,0.18);
  --shadow-brand: 0 14px 36px -12px rgba(2,0,223,0.45);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --font-head: 'Figtree', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-body: 'Open Sans', ui-sans-serif, system-ui, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { overflow-x: hidden; }
body { font-family: var(--font-body); background: var(--bg-page); color: var(--text); min-height: 100vh; }
a { color: var(--primary); }

.container { width: 100%; max-width: 660px; margin: 0 auto; padding: 0 24px; display: flex; flex-direction: column; align-items: center; }
.content-area { width: 100%; }

/* ---- chrome ---- */
.langsel { position: fixed; top: 16px; right: 16px; z-index: 50; display: flex; gap: 2px; background: #fff; border: 1px solid var(--border); border-radius: 999px; padding: 3px; box-shadow: var(--shadow); font-family: var(--font-head); font-size: 12px; font-weight: 700; }
.langsel a { padding: 5px 11px; border-radius: 999px; text-decoration: none; color: var(--text-light); line-height: 1; letter-spacing: 0.02em; }
.langsel a.active { background: var(--primary); color: #fff; }
.logo { margin: 64px 0 24px; text-align: center; }
.logo img { height: 44px; display: inline-block; }
.demo-tag { display: inline-flex; align-items: center; gap: 7px; background: #EEF0FF; color: var(--primary); border: 1px solid #D7DCFF; padding: 6px 14px; border-radius: 999px; font-family: var(--font-head); font-size: 12px; font-weight: 700; letter-spacing: 0.02em; margin: 0 auto 18px; }
.demo-tag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--primary); }
.scarcity { display: inline-flex; align-items: center; gap: 9px; background: #FFFBEC; color: #B45309; border: 1px solid #FDE68A; padding: 9px 18px; border-radius: 16px; font-size: 13px; font-weight: 600; margin-bottom: 24px; line-height: 1.4; text-align: center; max-width: 100%; }
.scarcity .dot { width: 8px; height: 8px; border-radius: 50%; background: #F59E0B; flex-shrink: 0; animation: pulseDot 1.8s infinite; }
@keyframes pulseDot { 0% { box-shadow: 0 0 0 0 rgba(245,158,11,0.5); } 70% { box-shadow: 0 0 0 8px rgba(245,158,11,0); } 100% { box-shadow: 0 0 0 0 rgba(245,158,11,0); } }

/* ---- typography ---- */
.h1 { font-family: var(--font-head); color: var(--brand-dark); font-weight: 700; text-align: center; letter-spacing: -0.03em; line-height: 1.05; font-size: clamp(2rem, 4vw, 2.6rem); margin-bottom: 16px; }
.tagline { font-size: 17px; color: var(--text-light); text-align: center; margin-bottom: 28px; line-height: 1.5; }
.h2 { font-family: var(--font-head); color: var(--brand-dark); font-weight: 700; font-size: 22px; letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 8px; }

/* ---- card / form ---- */
.card { background: var(--bg); border: 1px solid var(--border); border-radius: 24px; box-shadow: var(--shadow); padding: 40px; width: 100%; }
.section { margin-bottom: 26px; }
.section:last-child { margin-bottom: 0; }
.section-label { font-family: var(--font-head); font-size: 13px; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 12px; }
.field { margin-bottom: 22px; }
.field:last-child { margin-bottom: 0; }
label.field-label { display: block; font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--brand-dark); margin-bottom: 10px; }
select, input { width: 100%; padding: 14px 16px; font-size: 15px; font-family: inherit; color: var(--text); background: var(--bg); border: 1.5px solid var(--border); border-radius: 11px; outline: none; transition: border-color 0.2s, box-shadow 0.2s; }
input::placeholder { color: #9aa0a6; }
select:focus, input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(2,0,223,0.12); }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hint { font-size: 12px; color: var(--text-light); margin-top: 8px; line-height: 1.5; }
.err { border-color: #e74c3c !important; }

/* choice chips (oui/non, services multi) */
.choices { display: flex; flex-wrap: wrap; gap: 10px; }
.choice { flex: 1 1 auto; min-width: 120px; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 16px; border: 1.5px solid var(--border); border-radius: 12px; background: var(--bg); font-size: 15px; font-weight: 600; color: var(--text); cursor: pointer; transition: all 0.15s var(--ease); user-select: none; text-align: center; }
.choice:hover { border-color: #c7cdfb; }
.choice.sel { border-color: var(--primary); background: rgba(2,0,223,0.04); color: var(--primary); box-shadow: 0 0 0 3px rgba(2,0,223,0.10); }
.choice:focus-visible { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(2,0,223,0.30); }
.btn:focus-visible, a:focus-visible { outline: 3px solid rgba(2,0,223,0.35); outline-offset: 2px; }
.choice svg { width: 18px; height: 18px; flex-shrink: 0; }
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

/* ---- buttons ---- */
.btn { width: 100%; padding: 17px 24px; font-size: 16px; font-weight: 700; font-family: var(--font-head); color: #fff; background: var(--primary); border: none; border-radius: 12px; cursor: pointer; transition: background 0.2s, transform 0.15s, box-shadow 0.2s; box-shadow: var(--shadow-brand); letter-spacing: -0.01em; }
.btn:hover { background: var(--primary-hover); transform: translateY(-1px); box-shadow: 0 16px 38px -12px rgba(2,0,223,0.55); }
.btn:active { transform: scale(0.98); }
.btn--ghost { background: transparent; color: var(--text-light); box-shadow: none; border: 1.5px solid var(--border); }
.btn--ghost:hover { background: #f7f8ff; color: var(--brand-dark); box-shadow: none; }
.btn[disabled] { opacity: 0.5; cursor: not-allowed; }
.btn-row { display: flex; gap: 12px; align-items: center; margin-top: 28px; }
.btn-row .btn { margin-top: 0; }
.btn-row .btn--ghost { width: auto; flex: 0 0 auto; padding: 16px 22px; }

/* ---- simulator ---- */
.budget-display { text-align: center; font-family: var(--font-head); font-size: 38px; font-weight: 700; color: var(--primary); font-variant-numeric: tabular-nums; margin-bottom: 4px; }
.budget-sub { text-align: center; font-size: 13px; color: var(--text-light); margin-bottom: 18px; }
/* Slider custom : remplissage + pouce dessines par nous, positionnes par la MEME
   expression calc(var(--f)). Impossible de se desaligner. L'input natif passe
   transparent au-dessus pour l'interaction (souris, clavier, tactile). */
.rng { position: relative; height: 28px; --f: 0; }
.rng::before { content: ''; position: absolute; left: 0; right: 0; top: 50%; transform: translateY(-50%); height: 8px; border-radius: 6px; background: #e8eaed; }
.rng__fill { position: absolute; left: 0; top: 50%; transform: translateY(-50%); height: 8px; border-radius: 6px; background: var(--primary); width: calc(13px + var(--f) * (100% - 26px)); pointer-events: none; }
.rng__thumb { position: absolute; top: 50%; left: calc(13px + var(--f) * (100% - 26px)); transform: translate(-50%, -50%); width: 26px; height: 26px; border-radius: 50%; background: #fff; border: 2px solid var(--primary); box-shadow: 0 2px 8px rgba(2,0,223,0.35); pointer-events: none; }
.rng__input { position: absolute; left: 0; top: 0; width: 100%; height: 100%; margin: 0; padding: 0; opacity: 0; cursor: pointer; -webkit-appearance: none; appearance: none; background: transparent; }
.rng__input::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 28px; height: 28px; }
.rng__input::-moz-range-thumb { width: 28px; height: 28px; border: 0; background: transparent; }
.rng:focus-within .rng__thumb { box-shadow: 0 0 0 4px rgba(2,0,223,0.22); }
.slider-bounds { display: flex; justify-content: space-between; font-size: 12px; color: var(--text-light); margin-top: 8px; }
.result { margin-top: 18px; background: var(--bg-page); border-radius: 18px; padding: 28px; text-align: center; }
.result-label { font-family: var(--font-head); font-size: 13px; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.result-val { font-family: var(--font-head); font-size: 48px; font-weight: 700; color: var(--primary); font-variant-numeric: tabular-nums; line-height: 1.1; }
.result-unit { font-size: 16px; color: var(--text-light); margin-top: 6px; }
.result-cpa { font-size: 14px; color: var(--text-light); margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); }
.result-cpa b { color: var(--text); }
.disclaimer { font-size: 12px; color: var(--text-light); font-style: italic; margin-top: 14px; line-height: 1.5; text-align: center; }

/* ---- recap (payment) ---- */
.recap { background: var(--bg-page); border-radius: 18px; padding: 20px 22px; margin-bottom: 22px; }
.recap-row { display: flex; justify-content: space-between; align-items: baseline; padding: 7px 0; font-size: 14px; color: var(--text-light); }
.recap-row + .recap-row { border-top: 1px dashed var(--border); }
.recap-row b { font-family: var(--font-head); color: var(--brand-dark); font-size: 15px; }
.noeng { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: var(--success); margin-bottom: 18px; }
.noeng svg { width: 16px; height: 16px; }
.card-input-wrap { position: relative; }
.card-brands { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); display: flex; gap: 5px; opacity: 0.55; pointer-events: none; }
.card-brands span { font-family: var(--font-head); font-size: 9px; font-weight: 800; letter-spacing: 0.5px; background: #eef0f6; color: #5b6472; padding: 3px 5px; border-radius: 4px; }
.lock-note { display: flex; align-items: center; justify-content: center; gap: 7px; font-size: 12px; color: var(--text-light); margin-top: 14px; }
.lock-note svg { width: 13px; height: 13px; }

/* ---- generating-site mock ---- */
.gen { background: var(--bg-page); border-radius: 18px; padding: 30px 26px; }
.gen-line { display: flex; align-items: center; gap: 12px; padding: 11px 0; font-size: 14px; color: var(--text-light); opacity: 0.4; transition: opacity 0.4s var(--ease), color 0.4s var(--ease); }
.gen-line.on { opacity: 1; color: var(--brand-dark); font-weight: 600; }
.gen-line .tick { width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--border); flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: all 0.4s var(--ease); }
.gen-line.on .tick { border-color: var(--success); background: var(--success); }
.gen-line .tick svg { width: 12px; height: 12px; color: #fff; opacity: 0; transition: opacity 0.3s 0.15s; }
.gen-line.on .tick svg { opacity: 1; }
.gen-line .spin { width: 14px; height: 14px; border: 2px solid rgba(2,0,223,0.25); border-top-color: var(--primary); border-radius: 50%; animation: spin 0.7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.site-mock { margin-top: 18px; border: 1.5px solid var(--border); border-radius: 12px; overflow: hidden; opacity: 0; transform: translateY(8px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
.site-mock.show { opacity: 1; transform: none; }
.site-mock-bar { display: flex; align-items: center; gap: 6px; padding: 9px 12px; background: #f5f6fb; border-bottom: 1px solid var(--border); }
.site-mock-bar i { width: 9px; height: 9px; border-radius: 50%; background: #d2d6e6; }
.site-mock-bar span { margin-left: 8px; font-size: 11px; color: var(--text-light); }
.site-mock-body { padding: 22px; text-align: center; }
.site-mock-body .smh { font-family: var(--font-head); font-weight: 800; color: var(--brand-dark); font-size: 18px; }
.site-mock-body .sms { font-size: 12px; color: var(--text-light); margin-top: 4px; }
.site-mock-body .smcta { display: inline-block; margin-top: 12px; background: var(--primary); color: #fff; font-size: 12px; font-weight: 700; padding: 8px 16px; border-radius: 8px; }

/* ---- done / confirmation ---- */
.done { background: linear-gradient(135deg,#ECFCCB,#F7FEE7); border-radius: 16px; padding: 34px 28px; text-align: center; }
.done-badge { width: 56px; height: 56px; border-radius: 50%; background: var(--success); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.done-badge svg { width: 30px; height: 30px; color: #fff; }
.done-title { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--brand-dark); margin-bottom: 8px; }
.done-sub { font-size: 15px; color: var(--text-light); line-height: 1.55; max-width: 420px; margin: 0 auto 22px; }

/* ---- trust block ---- */
.trust { width: 100%; margin-top: 52px; }
.trust-intro { text-align: center; font-size: 15px; color: var(--text-light); line-height: 1.65; max-width: 560px; margin: 0 auto 36px; }
.trust-intro b { color: var(--brand-dark); font-weight: 700; }
.trust-h { font-family: var(--font-head); font-size: 22px; font-weight: 700; text-align: center; color: var(--brand-dark); margin-bottom: 24px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 14px; }
.step-card { background: var(--bg); border: 1.5px solid var(--border); border-radius: 18px; padding: 22px; }
.step-num { width: 30px; height: 30px; border-radius: 999px; background: #E4E9FE; color: var(--primary); font-family: var(--font-head); font-weight: 700; font-size: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.step-card h3 { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--brand-dark); margin-bottom: 6px; }
.step-card p { font-size: 13px; color: var(--text-light); line-height: 1.55; }
.reassure { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 14px; }
.reassure-item { display: flex; gap: 12px; align-items: flex-start; background: var(--bg); border: 1.5px solid var(--border); border-radius: 12px; padding: 16px 18px; }
.reassure-item svg { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.reassure-item b { font-family: var(--font-head); color: var(--brand-dark); display: block; font-size: 14px; margin-bottom: 3px; }
.reassure-item span { color: var(--text-light); font-size: 13px; line-height: 1.5; }

/* ---- faq ---- */
.faq { width: 100%; margin-top: 48px; }
.faq-title { font-family: var(--font-head); font-size: 22px; font-weight: 700; text-align: center; color: var(--brand-dark); margin-bottom: 24px; }
.faq-item { background: var(--bg); border: 1.5px solid var(--border); border-radius: 12px; margin-bottom: 10px; overflow: hidden; }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; font-size: 15px; font-weight: 600; cursor: pointer; list-style: none; user-select: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: ''; width: 20px; height: 20px; flex-shrink: 0; margin-left: 16px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%235f6368' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat center/contain; transition: transform 0.3s; }
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item[open] { border-color: var(--primary); background: rgba(2,0,223,0.02); }
.faq-answer { padding: 0 20px 18px; font-size: 14px; line-height: 1.7; color: var(--text-light); }

/* ---- footer ---- */
.footer { margin: 40px 0 24px; text-align: center; }
.footer img { height: 26px; opacity: 0.5; }
.footer-links { margin-top: 14px; font-size: 12px; color: var(--text-light); }
.footer-links a { color: var(--text-light); text-decoration: none; margin: 0 8px; }
.footer-links a:hover { text-decoration: underline; }

/* ---- étapes numérotées (page unique) ---- */
.step-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.step-no { width: 30px; height: 30px; flex: 0 0 auto; border-radius: 999px; background: var(--primary); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 15px; display: flex; align-items: center; justify-content: center; }
.step-head .h2 { margin-bottom: 0; }

/* ============================================================
   Variante A — wizard plein écran
   ============================================================ */
.wiz { min-height: 100vh; display: flex; flex-direction: column; }
.wiz-progress { position: fixed; top: 0; left: 0; right: 0; height: 4px; background: #E4E9FE; z-index: 40; }
.wiz-progress > i { display: block; height: 100%; width: 0; background: var(--primary); transition: width 0.45s var(--ease); }
.wiz-stage { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 80px 0 40px; }
.wiz-step { animation: stepIn 0.4s var(--ease); }
.wiz-stepmeta { text-align: center; font-family: var(--font-head); font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--primary); margin-bottom: 14px; }
@keyframes stepIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* ============================================================
   Variante B — single page longue
   ============================================================ */
.lp-hero { text-align: center; padding-top: 8px; }
.lp-block { width: 100%; margin-top: 22px; }
.lp-block .card { scroll-margin-top: 24px; }
.branch { overflow: hidden; max-height: 0; opacity: 0; transition: max-height 0.5s var(--ease), opacity 0.4s var(--ease), margin 0.4s var(--ease); }
.branch.open { max-height: 1600px; opacity: 1; }
.hidden { display: none !important; }

@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } .reassure { grid-template-columns: 1fr; } .trust { margin-top: 40px; } }
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .card { padding: 28px 20px; }
  .logo { margin: 44px 0 20px; }
  .result-val { font-size: 38px; }
  .row, .choice-grid { grid-template-columns: 1fr; }
  .langsel { top: 12px; right: 12px; }
  .btn-row { flex-direction: column-reverse; }
  .btn-row .btn--ghost { width: 100%; }
}

/* ============================================================
   Shell marketing (aligné sur la homepage armadagrowth.com)
   Header nav + hero + section méthode + bande sombre + footer Station F.
   ============================================================ */
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.eyebrow { font-family: var(--font-head); font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--primary); }
.hl-lime { background: linear-gradient(180deg, transparent 60%, var(--lime) 60%); padding: 0 3px; }
.cta { display: inline-flex; align-items: center; justify-content: center; gap: 9px; font-family: var(--font-head); font-weight: 700; font-size: 16px; border-radius: 12px; padding: 15px 26px; cursor: pointer; border: 1.5px solid transparent; transition: transform 0.15s, background 0.2s, box-shadow 0.2s; white-space: nowrap; text-decoration: none; }
.cta--primary { background: var(--primary); color: #fff; box-shadow: var(--shadow-brand); }
.cta--primary:hover { background: var(--primary-hover); transform: translateY(-2px); }
.cta--ghost { background: #fff; color: var(--brand-dark); border-color: var(--border); }
.cta--ghost:hover { border-color: var(--primary); color: var(--primary); }

.site-header { position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,0.85); backdrop-filter: saturate(160%) blur(12px); border-bottom: 1px solid var(--border); }
.site-header .nav { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 18px; }
.site-header .logo { margin: 0; text-align: left; }
.site-header .logo img { height: 27px; display: block; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-family: var(--font-head); font-size: 15px; font-weight: 600; color: var(--text); opacity: 0.82; text-decoration: none; }
.nav-links a:hover { opacity: 1; color: var(--primary); }
.nav-right { display: flex; align-items: center; gap: 14px; }
.demo-pill { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-head); font-size: 12px; font-weight: 700; color: var(--primary); background: var(--brand-50); border: 1px solid #D7DCFF; border-radius: 999px; padding: 6px 12px; }
.demo-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--primary); }

.hero { position: relative; text-align: center; padding: 60px 0 30px; }
.hero::before { content: ''; position: absolute; inset: 0 0 auto 0; height: 440px; background: radial-gradient(80% 120% at 50% -20%, #EEF0FF 0%, #fff 70%); z-index: 0; }
.hero > .wrap { position: relative; z-index: 1; }
.hero-inner { max-width: 860px; margin: 0 auto; }
.hero .h1 { margin: 18px auto; max-width: 18ch; }
.hero .tagline { max-width: 60ch; margin: 0 auto 0; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin: 28px 0 18px; }
.hero .scarcity { margin: 0; }

.formsec { background: var(--brand-50); padding: 56px 0; }
.formsec .form-col { max-width: 660px; margin: 0 auto; width: 100%; padding: 0 24px; }
.formsec .lp-block { margin-top: 22px; }
.formsec .lp-block:first-child { margin-top: 0; }

.methode-sec { padding: 64px 0; background: #fff; }
.sec-head { text-align: center; max-width: 64ch; margin: 0 auto 40px; }
.sec-head .h2 { margin: 12px auto; font-size: clamp(26px, 3.6vw, 42px); }
.sec-head .lead { font-size: clamp(17px, 2vw, 20px); color: var(--text-light); line-height: 1.6; }
.sec-head .lead b { color: var(--brand-dark); }
.howto { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.howto-card { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 30px 26px; text-align: left; }
.howto-num { width: 40px; height: 40px; border-radius: 11px; background: var(--primary); color: #fff; font-family: var(--font-head); font-weight: 800; display: grid; place-items: center; font-size: 17px; margin-bottom: 16px; }
.howto-card h3 { font-family: var(--font-head); font-size: 20px; color: var(--brand-dark); margin-bottom: 9px; }
.howto-card p { color: var(--text-light); font-size: 15px; line-height: 1.55; }

.band { background: linear-gradient(155deg, #00055F 0%, #0200DF 62%, #3A41FF 100%); color: #fff; padding: 64px 0; }
.band .sec-head .h2 { color: #fff; }
.band .sec-head .eyebrow { color: var(--lime); }
.band .reassure { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 860px; margin: 0 auto; }
.band .reassure-item { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16); border-radius: 14px; padding: 22px 24px; }
.band .reassure-item svg { color: var(--lime); width: 22px; height: 22px; }
.band .reassure-item b { color: #fff; font-size: 16px; }
.band .reassure-item span { color: #D7DCF7; font-size: 14px; line-height: 1.55; }

.faq-sec { padding: 64px 0; background: #fff; }
.faq-sec .faq { max-width: 760px; margin: 0 auto; }

.footer { margin: 0; background: var(--brand-dark); color: #9aa7d6; padding: 48px 0 40px; text-align: left; }
.footer .foot { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 26px; align-items: flex-start; }
.footer .foot-brand img { height: 26px; opacity: 0.95; filter: brightness(0) invert(1); margin-bottom: 14px; }
.footer .foot-brand p { max-width: 40ch; color: #8b98ca; font-size: 13.5px; line-height: 1.6; }
.footer .foot-links { display: flex; gap: 44px; flex-wrap: wrap; margin-top: 0; }
.footer .foot-col h4 { font-family: var(--font-head); color: #fff; font-size: 14px; margin-bottom: 12px; }
.footer .foot-col a { display: block; color: #9aa7d6; margin-bottom: 9px; font-size: 14px; text-decoration: none; }
.footer .foot-col a:hover { color: #fff; text-decoration: none; }
.footer .foot-note { margin-top: 34px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.1); color: #6f7cae; font-size: 12.5px; }

@media (max-width: 880px) { .howto { grid-template-columns: 1fr; } .band .reassure { grid-template-columns: 1fr; } }
@media (max-width: 560px) {
  .nav-links { display: none; }
  .hero { padding: 40px 0 20px; }
  .methode-sec, .band, .faq-sec { padding: 46px 0; }
  .demo-pill { display: none; }
}
