:root {
  --blue: #304cff;
  --blue-dark: #1936d8;
  --ink: #071126;
  --muted: #647088;
  --ice: #f4f7ff;
  --cyan: #c6f8ff;
  --lime: #dfff91;
  --white: #fff;
  --line: #dfe5f0;
  --success: #137a4d;
  --shadow: 0 24px 70px rgba(19, 37, 94, .13);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
/* Décale les ancres pour qu'elles ne passent pas sous le header collant. */
[id] { scroll-margin-top: 96px; }
@media (max-width: 620px) { [id] { scroll-margin-top: 82px; } }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
img { max-width: 100%; }
.wrap { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.narrow { width: min(850px, calc(100% - 40px)); margin-inline: auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: .73rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 18px; height: 3px; border-radius: 5px; background: currentColor; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(3rem, 6vw, 5.7rem); line-height: .98; letter-spacing: -.064em; margin-bottom: 25px; }
h2 { font-size: clamp(2.1rem, 4vw, 3.8rem); line-height: 1.04; letter-spacing: -.05em; margin-bottom: 18px; }
h3 { line-height: 1.18; }
.lead { color: #53617b; font-size: 1.11rem; max-width: 660px; }
.fine { color: var(--muted); font-size: .77rem; }
.center { text-align: center; max-width: 800px; margin: 0 auto 50px; }
.center .lead { margin-inline: auto; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 999px;
  padding: 14px 21px;
  font-weight: 850;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--blue); color: white; box-shadow: 0 12px 28px rgba(48, 76, 255, .27); }
.btn-primary:hover { background: var(--blue-dark); }
.btn-dark { background: var(--ink); color: white; }
.btn-light { background: white; color: var(--ink); }
.btn-outline { border: 1px solid var(--line); background: white; }
.btn-block { width: 100%; }
.topbar { background: var(--ink); color: #dce4f5; padding: 8px 0; font-size: .74rem; }
.topbar .wrap { display: flex; justify-content: space-between; gap: 20px; }
.header {
  height: 82px;
  background: rgba(255, 255, 255, .95);
  border-bottom: 1px solid #e9edf5;
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(16px);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.brand { display: block; width: 208px; }
.brand img { display: block; width: 100%; }
.nav { display: flex; align-items: center; gap: 26px; font-size: .87rem; font-weight: 730; }
.nav a:not(.btn) { position: relative; }
.nav a:not(.btn)::after { content: ""; position: absolute; height: 2px; left: 0; right: 100%; bottom: -7px; background: var(--blue); transition: right .2s; }
.nav a:not(.btn):hover::after, .nav a.active::after { right: 0; }
.mobile-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: #fff; border-radius: 12px; cursor: pointer; }
.mobile-toggle span, .mobile-toggle span::before, .mobile-toggle span::after { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s, opacity .2s; }
.mobile-toggle span { position: relative; margin: 0 auto; }
.mobile-toggle span::before { content: ""; position: absolute; top: -6px; }
.mobile-toggle span::after { content: ""; position: absolute; top: 6px; }
.mobile-toggle.open span { background: transparent; }
.mobile-toggle.open span::before { top: 0; transform: rotate(45deg); }
.mobile-toggle.open span::after { top: 0; transform: rotate(-45deg); }
.mobile-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-top: 1px solid #eef1f7; box-shadow: 0 24px 40px rgba(7,17,38,.14); transform: translateY(-8px); opacity: 0; pointer-events: none; transition: transform .22s ease, opacity .22s ease; }
.mobile-menu.open { transform: none; opacity: 1; pointer-events: auto; }
.mobile-menu a { display: block; padding: 15px 24px; border-bottom: 1px solid #eef1f7; font-size: .95rem; font-weight: 730; color: var(--ink); text-decoration: none; }
.mobile-menu a.active { color: var(--blue); }
.mobile-menu a.btn { margin: 14px 24px 18px; border-bottom: 0; text-align: center; }
.hero {
  padding: 92px 0 105px;
  overflow: hidden;
  background: radial-gradient(circle at 8% 0%, #edf0ff 0, transparent 28%), radial-gradient(circle at 90% 20%, #e7fcff 0, transparent 25%), #fff;
}
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 65px; align-items: center; }
.accent { color: var(--blue); position: relative; z-index: 0; }
.accent::after { content: ""; position: absolute; left: 0; bottom: -4px; width: 100%; height: 10px; border-radius: 50%; background: var(--lime); z-index: -1; transform: rotate(-1deg); }
.actions { display: flex; flex-wrap: wrap; gap: 11px; margin: 30px 0 25px; }
.ticks { display: flex; flex-wrap: wrap; gap: 17px; color: #53617b; font-size: .8rem; font-weight: 700; }
.ticks span::before { content: "✓"; display: inline-grid; place-items: center; width: 20px; height: 20px; margin-right: 7px; border-radius: 50%; background: #e8edff; color: var(--blue); }
.scan-card { color: white; background: var(--ink); padding: 10px; border-radius: 29px; box-shadow: 0 35px 90px rgba(7, 17, 38, .24); }
.scan-inner { padding: 29px; border: 1px solid rgba(255, 255, 255, .14); border-radius: 21px; background: radial-gradient(circle at 100% 0%, rgba(48, 76, 255, .6), transparent 42%); }
.scan-head { display: flex; justify-content: space-between; gap: 12px; align-items: center; margin-bottom: 23px; }
.scan-label { color: var(--cyan); font-size: .68rem; font-weight: 900; letter-spacing: .12em; }
.pulse { width: 12px; height: 12px; background: var(--lime); border-radius: 50%; box-shadow: 0 0 0 8px rgba(223, 255, 145, .11); }
.scan-card h3 { font-size: 1.65rem; margin-bottom: 8px; }
.scan-card p { color: #aebbd2; font-size: .87rem; }
.field { margin: 15px 0; }
.field label { display: block; margin-bottom: 7px; font-size: .7rem; font-weight: 900; letter-spacing: .08em; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 14px;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  border-radius: 11px;
  outline: none;
}
.field textarea { min-height: 125px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(48, 76, 255, .1); }
.scan-card .field select { color: white; border-color: #35445e; background: #111f37; }
.scan-result { display: none; margin-top: 15px; padding: 17px; border-radius: 13px; background: white; color: var(--ink); }
.scan-result.show { display: block; animation: rise .3s ease; }
.scan-result strong { display: block; color: var(--blue); }
.chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 9px; }
.chips span { padding: 5px 8px; border-radius: 999px; background: #edf0ff; color: #2440d5; font-size: .67rem; font-weight: 800; }
@keyframes rise { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
/* --- Analyseur de contrat IA (hero) --- */
.dropzone { display: flex; flex-direction: column; align-items: center; gap: 9px; padding: 22px 16px; margin: 4px 0 13px; border: 1.5px dashed #3a4a63; border-radius: 13px; background: #111f37; color: #aebbd2; cursor: pointer; text-align: center; transition: border-color .2s, background .2s, color .2s; }
.dropzone:hover, .dropzone.drag { border-color: var(--blue); background: #14213c; color: #dbe4f7; }
.dropzone.has-file { border-color: var(--lime); background: #13251f; color: #eaf3ee; }
.dz-icon { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; background: #1c2b46; color: var(--cyan); font-size: 1.1rem; }
.dropzone.has-file .dz-icon { background: #16351f; color: var(--lime); }
.dz-text { font-size: .82rem; font-weight: 750; max-width: 26ch; }
.scan-status { min-height: 15px; margin-top: 4px; font-family: ui-monospace, "Cascadia Mono", Menlo, Consolas, monospace; font-size: .69rem; letter-spacing: .01em; color: var(--cyan); }
.scan-report { display: none; }
.scan-report.show { display: block; animation: rise .3s ease; }
.report-save { display: flex; align-items: baseline; gap: 10px; padding: 13px 15px; border-radius: 11px; background: #eafaf0; border: 1px solid #b7ead1; margin-bottom: 11px; }
.report-save .amt { font-size: 1.7rem; font-weight: 900; color: var(--success); font-variant-numeric: tabular-nums; line-height: 1; letter-spacing: -.02em; }
.report-save .lbl { font-size: .72rem; color: #3d5c4c; font-weight: 700; }
.report-meta { font-size: .72rem; color: var(--muted); margin: 0 0 10px; }
.report-meta b { color: var(--ink); }
.report-points { display: grid; gap: 7px; }
.report-point { display: flex; gap: 9px; align-items: flex-start; padding: 9px 11px; border-radius: 9px; border: 1px solid var(--line); background: #fafbfe; font-size: .78rem; }
.report-point .rp-tag { flex: 0 0 auto; width: 18px; height: 18px; border-radius: 6px; display: grid; place-items: center; font-size: .7rem; font-weight: 900; }
.report-point.trou .rp-tag { background: #fbe3da; color: #c23c1a; }
.report-point.vigilance .rp-tag { background: #fff2cf; color: #8a6100; }
.report-point.ok .rp-tag { background: #dff5e8; color: var(--success); }
.report-point b { display: block; color: var(--ink); font-weight: 800; }
.report-point span { color: var(--muted); }
.report-note { margin: 10px 0 0; font-size: .67rem; color: var(--muted); }
.report-demo { display: inline-block; margin-bottom: 10px; padding: 3px 8px; border-radius: 999px; background: #fff2cf; color: #8a6100; font-size: .6rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.trust { margin-top: -43px; position: relative; z-index: 5; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); padding: 23px; border: 1px solid #e9edf5; border-radius: 18px; background: white; box-shadow: var(--shadow); }
.trust-item { padding: 4px 20px; border-right: 1px solid var(--line); }
.trust-item:last-child { border: 0; }
.trust-item strong { display: block; font-size: .91rem; }
.trust-item small { color: var(--muted); }
section { padding: 104px 0; }
.bg-ice { background: var(--ice); }
.bg-dark { background: var(--ink); color: white; }
.bg-dark .lead { color: #aebbd2; }
.bg-dark .eyebrow { color: var(--cyan); }
.method-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.method-card { min-height: 320px; padding: 30px; display: flex; flex-direction: column; position: relative; border: 1px solid #e3e9f4; border-radius: var(--radius); background: white; }
.method-card.featured { color: white; background: var(--blue); }
.method-card.featured p { color: #dbe1ff; }
.method-number { margin-bottom: 45px; color: var(--blue); font-size: .7rem; font-weight: 900; letter-spacing: .13em; }
.featured .method-number { color: var(--lime); }
.method-card h3 { font-size: 1.55rem; }
.method-card p { color: var(--muted); font-size: .9rem; margin-bottom: 0; }
.line-ui { position: static; margin-top: 22px; padding: 11px; border: 1px solid #e2e7f0; border-radius: 12px; background: #fafbfe; }
.featured .line-ui { background: rgba(255, 255, 255, .12); border-color: rgba(255, 255, 255, .23); }
.line-ui i { display: block; height: 7px; margin: 7px 0; border-radius: 8px; background: #dce3ee; }
.line-ui i:nth-child(2) { width: 70%; background: var(--lime); }
.sector-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.sector-card { min-height: 180px; padding: 22px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid #2b3850; border-radius: 17px; background: linear-gradient(145deg, #0c1a31, #081226); transition: .2s; }
.sector-card:hover { border-color: #6680ff; transform: translateY(-4px); }
.sector-icon { font-size: 1.6rem; }
.sector-card strong, .sector-card small { display: block; }
.sector-card small { margin-top: 4px; color: #9dadc7; }
.cta { padding: 0 0 104px; }
.cta-box { display: flex; justify-content: space-between; align-items: center; gap: 45px; padding: 60px; color: white; background: var(--blue); border-radius: 29px; overflow: hidden; position: relative; }
.cta-box::after { content: "Y"; position: absolute; right: -35px; bottom: -150px; color: rgba(255, 255, 255, .06); font-size: 28rem; line-height: 1; font-weight: 900; }
.cta-box p { color: #dfe4ff; max-width: 650px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 10px; position: relative; z-index: 1; }
.page-hero { padding: 85px 0; background: radial-gradient(circle at 90% 20%, #e7fcff, transparent 27%), radial-gradient(circle at 8% 0%, #edf0ff, transparent 30%), white; }
.page-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; }
.page-hero h1 { font-size: clamp(2.9rem, 5.4vw, 5.2rem); }
.stat-panel { padding: 28px; border-radius: 24px; color: white; background: var(--ink); box-shadow: var(--shadow); }
.stat-panel h3 { font-size: 1.55rem; }
.stat-list { display: grid; gap: 10px; margin-top: 24px; }
.stat-row { display: grid; grid-template-columns: 34px 1fr; gap: 12px; align-items: start; padding: 13px; border: 1px solid #2c3a52; border-radius: 12px; background: #0d1a30; }
.stat-row b { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 9px; background: #223ed5; }
.stat-row strong, .stat-row small { display: block; }
.stat-row small { color: #9eacc4; }
.wizard-layout { display: grid; grid-template-columns: .68fr 1.32fr; gap: 35px; align-items: start; }
.wizard-aside { padding: 26px; position: sticky; top: 105px; border-radius: 20px; color: white; background: var(--ink); }
.wizard-aside h3 { margin-bottom: 7px; }
.wizard-aside p { color: #aebbd2; font-size: .86rem; }
.progress-track { height: 8px; margin: 25px 0; overflow: hidden; border-radius: 99px; background: #253249; }
.progress-bar { width: 25%; height: 100%; border-radius: inherit; background: var(--lime); transition: width .3s; }
.step-list { display: grid; gap: 10px; }
.step-label { display: flex; gap: 10px; align-items: center; color: #8998b0; font-size: .78rem; font-weight: 750; }
.step-label span { width: 27px; height: 27px; display: grid; place-items: center; border: 1px solid #3c4b64; border-radius: 50%; }
.step-label.current { color: white; }
.step-label.current span { color: var(--ink); background: var(--lime); border-color: var(--lime); }
.wizard { padding: 31px; border: 1px solid #e1e7f1; border-radius: 23px; background: white; box-shadow: var(--shadow); }
.wizard-step { display: none; }
.wizard-step.active { display: block; animation: rise .28s ease; }
.wizard h3 { font-size: 1.65rem; margin-bottom: 6px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 14px; }
.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin: 22px 0; }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice label { min-height: 64px; padding: 14px; display: flex; align-items: center; gap: 10px; border: 1px solid var(--line); border-radius: 12px; cursor: pointer; font-size: .84rem; font-weight: 750; }
.choice label::before { content: ""; width: 18px; height: 18px; flex: 0 0 18px; border: 2px solid #aab4c5; border-radius: 5px; }
.choice input:checked + label { color: var(--blue); border-color: var(--blue); background: #f3f5ff; }
.choice input:checked + label::before { border: 5px solid var(--blue); background: white; }
.wizard-actions { display: flex; justify-content: space-between; gap: 10px; margin-top: 26px; padding-top: 21px; border-top: 1px solid var(--line); }
.success-box { padding: 25px; border: 1px solid #b7ead1; border-radius: 15px; color: #075d39; background: #edfff6; }
.success-box h3 { color: var(--success); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; }
.feature-card { padding: 27px; border: 1px solid #e3e8f1; border-radius: 18px; background: white; }
.feature-card .icon { width: 44px; height: 44px; display: grid; place-items: center; margin-bottom: 22px; border-radius: 12px; color: var(--blue); background: #e9edff; font-weight: 900; }
.feature-card p { color: var(--muted); font-size: .88rem; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; }
.product-card { min-height: 260px; padding: 27px; display: flex; flex-direction: column; border: 1px solid #e3e8f1; border-radius: 18px; background: white; transition: .2s; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product-card .tag { align-self: flex-start; margin-bottom: 22px; padding: 5px 9px; border-radius: 999px; color: var(--blue); background: #edf0ff; font-size: .67rem; font-weight: 900; }
.product-card p { color: var(--muted); font-size: .88rem; }
.product-card a { margin-top: auto; color: var(--blue); font-size: .82rem; font-weight: 850; }
/* Le filtre s'appuie sur l'attribut [hidden] ; sans !important, display:flex des cartes l'emporte et rien ne se masque. */
[hidden] { display: none !important; }
.filter-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 7px; margin: 0 0 34px; }
.filter-btn { padding: 9px 14px; border: 1px solid var(--line); border-radius: 999px; color: #56637a; background: white; cursor: pointer; font-size: .77rem; font-weight: 800; }
.filter-btn.active { color: white; border-color: var(--blue); background: var(--blue); }
.profile-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 65px; align-items: center; }
.portrait { min-height: 515px; overflow: hidden; position: relative; border-radius: 27px; background: #0a2d69 url("portrait.jpg") center top / cover no-repeat; box-shadow: var(--shadow); }
.portrait-label { position: absolute; left: 24px; right: 24px; bottom: 24px; padding: 16px 18px; border-radius: 14px; background: rgba(255, 255, 255, .94); backdrop-filter: blur(10px); }
.portrait-label strong, .portrait-label small { display: block; }
.portrait-label small { color: var(--muted); }
.quote { padding-left: 22px; border-left: 4px solid var(--lime); font-size: 1.27rem; font-weight: 650; line-height: 1.45; }
.facts { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 25px 0; }
.fact { padding: 14px; border: 1px solid var(--line); border-radius: 12px; }
.fact strong, .fact small { display: block; }
.fact small { color: var(--muted); }
.contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 40px; }
.contact-card { padding: 28px; border-radius: 22px; color: white; background: var(--ink); }
.contact-row { padding: 17px 0; border-bottom: 1px solid #27344b; }
.contact-row:last-child { border: 0; }
.contact-row small, .contact-row strong { display: block; }
.contact-row small { color: #9eacc4; }
.contact-form { padding: 30px; border: 1px solid #e1e7f1; border-radius: 22px; background: white; box-shadow: var(--shadow); }
/* Signale visuellement le formulaire quand on y arrive depuis un CTA. */
@keyframes form-arrive {
  0% { box-shadow: var(--shadow), 0 0 0 0 rgba(48, 76, 255, .45); }
  55% { box-shadow: var(--shadow), 0 0 0 9px rgba(48, 76, 255, .16); }
  100% { box-shadow: var(--shadow), 0 0 0 0 rgba(48, 76, 255, 0); }
}
.contact-form.is-arriving { animation: form-arrive 1.5s ease-out 1; border-color: var(--blue); }
.faq-list { max-width: 860px; margin: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; padding: 22px 0; display: flex; justify-content: space-between; gap: 20px; border: 0; background: transparent; text-align: left; font-weight: 850; cursor: pointer; }
.faq-answer { display: none; padding: 0 0 22px; color: var(--muted); }
.faq-item.open .faq-answer { display: block; }
.legal-content h1 { font-size: clamp(2.7rem, 5vw, 4.5rem); }
.legal-content h2 { margin-top: 42px; font-size: 1.55rem; letter-spacing: -.025em; }
.legal-content p, .legal-content li { color: #53617b; }
.notice { padding: 16px 18px; border: 1px solid #ffe09a; border-radius: 12px; color: #735000; background: #fff9e8; }
.footer { padding: 62px 0 24px; color: #aebbd2; background: var(--ink); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 44px; }
.footer-logo { display: block; width: 190px; padding: 2px; border-radius: 999px; background: white; }
.footer h4 { color: white; margin-bottom: 14px; }
.footer a, .footer span { display: block; margin: 8px 0; font-size: .82rem; }
.legal-line { margin-top: 40px; padding-top: 22px; border-top: 1px solid #27334a; font-size: .68rem; }
.whatsapp { width: 58px; height: 58px; display: grid; place-items: center; position: fixed; right: 20px; bottom: 20px; z-index: 80; border-radius: 50%; color: white; background: #25d366; box-shadow: 0 12px 30px rgba(0, 0, 0, .2); font-size: 1.25rem; font-weight: 900; }
.mobile-bar { display: none; }

@media (max-width: 940px) {
  .nav { display: none; }
  .mobile-toggle { display: grid; place-items: center; }
  .mobile-menu { display: block; }
  .hero-grid, .page-hero-grid, .wizard-layout, .profile-grid, .contact-grid { grid-template-columns: 1fr; }
  /* Sur mobile la colonne s'empile : on montre le formulaire d'abord (action
     principale), les coordonnées ensuite — sinon il faut scroller pour l'atteindre. */
  .contact-grid .contact-form { order: -1; }
  .method-grid, .feature-grid, .product-grid { grid-template-columns: 1fr 1fr; }
  .method-card:last-child { grid-column: 1 / -1; }
  .sector-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: 0; }
  .wizard-aside { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-box { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 620px) {
  .wrap, .narrow { width: calc(100% - 28px); }
  .topbar { display: none; }
  .header { height: 70px; }
  .brand { width: 154px; }
  .nav .btn { padding: 10px 13px; font-size: .73rem; }
  h1 { font-size: 3.1rem; }
  .hero { padding: 58px 0 80px; }
  .hero-grid { gap: 45px; }
  .actions .btn { width: 100%; }
  .ticks { display: grid; gap: 8px; }
  .scan-inner { padding: 21px; }
  .trust { margin-top: -29px; }
  .trust-grid { padding: 12px; }
  .trust-item { padding: 9px; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:nth-child(3), .trust-item:nth-child(4) { border-bottom: 0; }
  .trust-item small { font-size: .67rem; }
  section { padding: 76px 0; }
  .method-grid, .feature-grid, .product-grid, .sector-grid, .form-grid, .choice-grid, .facts { grid-template-columns: 1fr; }
  .method-card:last-child { grid-column: auto; }
  .method-card { min-height: 0; padding: 27px; }
  .method-number { margin-bottom: 31px; }
  .method-card p { margin-bottom: 0; }
  .line-ui { position: static; margin-top: 25px; }
  .sector-card { min-height: 150px; }
  .cta-box { padding: 40px 24px; }
  .cta-actions, .cta-actions .btn { width: 100%; }
  .page-hero { padding: 62px 0; }
  .wizard { padding: 22px; }
  .wizard-actions { flex-direction: column-reverse; }
  .wizard-actions .btn { width: 100%; }
  .portrait { min-height: 390px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .whatsapp { bottom: 77px; }
  .mobile-bar { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 9px; position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; background: white; box-shadow: 0 -8px 24px rgba(7, 17, 38, .12); }
  .mobile-bar .btn { padding: 12px 8px; }
  .legal-line { padding-bottom: 64px; }
}
