:root {
  --ink: #0f172a;
  --ink-soft: #334155;
  --teal: #2563eb;
  --teal-dark: #1d4ed8;
  --mint: #dbeafe;
  --cream: #f8fafc;
  --paper: #ffffff;
  --line: #cbd5e1;
  --accent: #60a5fa;
  --white: #ffffff;
  --surface-dark: #202a37;
  --surface-darker: #1e293b;
  --card-dark: #243244;
  --text-on-dark: #f8fafc;
  --text-on-dark-soft: #cbd5e1;
  --muted-on-dark: #94a3b8;
  --border-dark: #334155;
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.2);
  --radius-sm: 0.625rem;
  --radius-md: 1rem;
  --radius-lg: 1.25rem;
  --container: 74rem;
  --space-section: clamp(4.5rem, 8vw, 8rem);
  --step--1: clamp(0.84rem, 0.8rem + 0.1vw, 0.92rem);
  --step-0: clamp(1rem, 0.96rem + 0.18vw, 1.12rem);
  --step-1: clamp(1.25rem, 1.1rem + 0.4vw, 1.55rem);
  --step-2: clamp(1.7rem, 1.35rem + 1.1vw, 2.45rem);
  --step-3: clamp(2.55rem, 1.75rem + 2.35vw, 4.2rem);
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: var(--step-0);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0 28%, var(--teal) 28% 100%);
  z-index: 100;
}
a { color: inherit; }
.container { width: min(calc(100% - 2rem), var(--container)); margin-inline: auto; }
.section { padding-block: var(--space-section); }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 999; padding: 0.75rem 1rem; background: var(--teal); color: white; border-radius: var(--radius-sm); }
.skip-link:focus { top: 1rem; }

.site-header { position: absolute; inset: 0 0 auto; z-index: 10; padding-top: 1.6rem; }
.header-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand-logo { display: block; width: clamp(10.5rem, 15vw, 13.25rem); height: auto; }

.button { display: inline-flex; align-items: center; justify-content: center; min-height: 3.35rem; padding: 0.9rem 1.55rem; border: 1px solid var(--teal); border-radius: 0.625rem; background: var(--teal); color: var(--text-on-dark); font-weight: 650; text-align: center; text-decoration: none; line-height: 1.1; letter-spacing: 0.0125rem; box-shadow: 0 8px 22px rgba(37, 99, 235, 0.18); transition: background 160ms ease, border-color 160ms ease, transform 160ms ease; }
.button:hover { background: var(--teal-dark); border-color: var(--teal-dark); transform: translateY(-1px); }
.button:focus-visible, .text-link:focus-visible, .brand:focus-visible { outline: 3px solid rgba(96, 165, 250, 0.65); outline-offset: 4px; }
.button-small { min-height: 2.75rem; padding: 0.65rem 1rem; font-size: var(--step--1); }
.button-secondary { background: var(--white); color: var(--teal-dark); border-color: var(--white); box-shadow: none; }
.button-secondary:hover { background: var(--mint); border-color: var(--mint); }
.text-link { font-weight: 700; color: var(--ink); text-underline-offset: 0.3em; }

.hero { position: relative; overflow: hidden; padding: 11.2rem 0 6.5rem; background: var(--surface-dark); color: var(--text-on-dark); }
.hero::before { content: ""; position: absolute; width: 32rem; height: 32rem; right: -13rem; top: -13rem; border: 1px solid rgba(96, 165, 250, 0.22); border-radius: 50%; box-shadow: 0 0 0 4rem rgba(96, 165, 250, 0.035), 0 0 0 8rem rgba(37, 99, 235, 0.025); }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(20rem, 0.88fr); align-items: center; gap: clamp(3rem, 7vw, 7rem); }
.eyebrow { margin: 0 0 1rem; color: var(--teal-dark); font-size: var(--step--1); font-weight: 750; letter-spacing: 0.085em; text-transform: uppercase; }
.eyebrow span { display: inline-block; width: 1.6rem; height: 2px; margin: 0 0.55rem 0.25rem 0; background: var(--accent); }
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: -0.038em; text-wrap: balance; }
h1 { max-width: 16ch; font-size: var(--step-3); }
h2 { font-size: var(--step-2); }
h3 { font-size: var(--step-1); }
.hero h1 { color: var(--text-on-dark); }
.hero .eyebrow { color: var(--accent); }
.hero .text-link { color: var(--accent); }
.hero-lead { max-width: 42rem; margin: 1.65rem 0 0; color: var(--text-on-dark-soft); font-size: var(--step-1); line-height: 1.6; }
.hero-actions { display: flex; align-items: center; gap: 1.4rem; margin-top: 2.2rem; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 0.7rem 1.3rem; margin: 2rem 0 0; padding: 0; list-style: none; color: var(--text-on-dark-soft); font-size: var(--step--1); }
.hero-facts li { display: flex; align-items: center; gap: 0.45rem; }
.hero-facts li::before { content: ""; width: 0.42rem; height: 0.42rem; flex: none; border-radius: 50%; background: var(--accent); }

.hero-workflow { padding: 1.2rem; border: 1px solid var(--border-dark); border-radius: var(--radius-lg); background: rgba(36,50,68,0.94); box-shadow: var(--shadow); backdrop-filter: blur(12px); transform: rotate(1.2deg); }
.workflow-topline { display: flex; justify-content: space-between; align-items: center; padding: 0.2rem 0.25rem 0.85rem; color: var(--text-on-dark-soft); font-size: 0.76rem; font-weight: 750; letter-spacing: 0.07em; text-transform: uppercase; }
.live-dot { display: flex; align-items: center; gap: 0.35rem; color: var(--accent); }
.live-dot::before { content: ""; width: 0.45rem; height: 0.45rem; border-radius: 50%; background: var(--accent); }
.workflow-stack { display: grid; gap: 0.65rem; }
.workflow-item { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 0.75rem; padding: 0.9rem; border: 1px solid var(--border-dark); border-radius: 0.75rem; background: var(--surface-darker); color: var(--text-on-dark); }
.workflow-item.is-noisy { border-left: 3px solid var(--accent); }
.workflow-icon { display: grid; place-items: center; width: 2.15rem; height: 2.15rem; border-radius: 0.6rem; background: var(--border-dark); color: var(--accent); font-size: 0.82rem; font-weight: 800; }
.workflow-item strong, .workflow-item small { display: block; }
.workflow-item strong { font-size: 0.9rem; line-height: 1.3; }
.workflow-item small { color: var(--muted-on-dark); font-size: 0.72rem; }
.workflow-state { color: var(--accent); background: rgba(96,165,250,0.1); border-radius: 999px; padding: 0.25rem 0.5rem; font-size: 0.66rem; font-weight: 750; }
.workflow-result { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 0.8rem; margin-top: 0.75rem; padding: 1rem; border-radius: 0.75rem; background: var(--teal); color: white; }
.result-symbol { display: grid; place-items: center; width: 2.15rem; height: 2.15rem; border-radius: 50%; background: var(--text-on-dark); color: var(--teal-dark); font-weight: 900; }
.workflow-result strong, .workflow-result small { display: block; }
.workflow-result strong { font-size: 0.9rem; }
.workflow-result small { color: #dbeafe; font-size: 0.72rem; }

.recognition { background: var(--surface-darker); color: var(--text-on-dark); }
.recognition .eyebrow { color: var(--accent); }
.recognition .section-heading > p:last-child { color: var(--text-on-dark-soft); }
.section-heading { max-width: 46rem; margin-bottom: 3rem; }
.section-heading > p:last-child { margin: 1.1rem 0 0; color: var(--ink-soft); font-size: var(--step-0); }
.pain-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 1.5rem; }
.pain-card { grid-column: span 2; display: flex; flex-direction: column; min-height: 20rem; padding: 1.75rem; border: 1px solid var(--border-dark); border-radius: var(--radius-md); background: var(--card-dark); transition: border-color 160ms ease, transform 160ms ease; }
.pain-card:nth-child(4) { grid-column: 2 / span 2; }
.pain-card:nth-child(5) { grid-column: 4 / span 2; }
.pain-card:hover { border-color: #475569; transform: translateY(-2px); }
.card-number { display: block; margin-bottom: 2.4rem; color: var(--accent); font-size: 0.75rem; font-weight: 800; letter-spacing: 0.08em; }
.pain-card h3 { max-width: 22ch; color: var(--text-on-dark); }
.pain-card p { margin: 1rem 0 0; color: var(--text-on-dark-soft); font-size: 0.96rem; }
.inline-cta { display: flex; align-items: center; justify-content: space-between; gap: 2rem; margin-top: 1rem; padding: 1.5rem 1.7rem; border-radius: var(--radius-md); background: var(--teal); color: white; }
.inline-cta p { margin: 0; line-height: 1.5; }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-workflow { max-width: 36rem; transform: none; }
  .inline-cta { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 1.25rem), var(--container)); }
  .site-header { padding-top: 1.15rem; }
  .header-inner .button { display: none; }
  .hero { padding: 8.4rem 0 4.5rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .text-link { padding-block: 0.4rem; text-align: center; }
  .workflow-item { grid-template-columns: auto 1fr; }
  .workflow-state { grid-column: 2; justify-self: start; }
  .pain-grid { grid-template-columns: 1fr; gap: 1rem; }
  .pain-card, .pain-card:nth-child(4), .pain-card:nth-child(5) { grid-column: 1; }
  .pain-card { min-height: 0; margin-bottom: 0.75rem; }
  .card-number { margin-bottom: 1.3rem; }
.inline-cta .button { width: 100%; }
}

.problem { position: relative; overflow: hidden; background: var(--surface-dark); color: white; }
.problem::after { content: ""; position: absolute; right: -8rem; bottom: -12rem; width: 29rem; height: 29rem; border: 1px solid rgba(96, 165, 250, 0.2); border-radius: 50%; box-shadow: 0 0 0 5rem rgba(96, 165, 250, 0.035), 0 0 0 10rem rgba(37, 99, 235, 0.02); }
.problem-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(3rem, 8vw, 8rem); }
.eyebrow-light { color: var(--accent); }
.problem-copy h2 { max-width: 12ch; color: white; }
.problem-detail { max-width: 39rem; }
.problem-detail > p { color: var(--text-on-dark-soft); }
.problem-detail .problem-lead { margin-top: 0; color: white; font-size: var(--step-1); line-height: 1.5; }
.contrast-box { margin-top: 2rem; padding: 1.45rem; border: 1px solid var(--border-dark); border-radius: var(--radius-md); background: rgba(255,255,255,0.04); }
.contrast-box span { display: block; margin-bottom: 0.55rem; color: var(--accent); font-size: 0.75rem; font-weight: 780; letter-spacing: 0.08em; text-transform: uppercase; }
.contrast-box p { margin: 0; color: var(--text-on-dark-soft); }
.contrast-box strong { color: white; }

.process { background: var(--cream); }
.section-heading-split { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(16rem, 0.6fr); gap: clamp(2rem, 8vw, 7rem); max-width: none; }
.section-heading-split > p { align-self: end; margin: 0 0 0.3rem; color: var(--ink-soft); }
.section-heading-split h2 { max-width: 17ch; }
.process-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin: 3.2rem 0 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.process-list li { position: relative; padding: 1.5rem 1.4rem 1rem 0; }
.process-list li:not(:last-child)::after { content: ""; position: absolute; right: 1.1rem; top: -0.3rem; width: 0.58rem; height: 0.58rem; border-radius: 50%; background: var(--accent); }
.process-number { display: block; margin-bottom: 2.5rem; color: var(--teal); font-size: 0.75rem; font-weight: 800; }
.process-list h3 { font-size: 1.3rem; }
.process-list p { margin: 0.75rem 0 0; color: var(--ink-soft); font-size: 0.95rem; }
.process-note { max-width: 58rem; margin: 2.5rem 0 0; padding: 1.25rem 1.4rem; border-left: 3px solid var(--accent); background: white; color: var(--ink-soft); }
.process-note strong { color: var(--ink); }

.potential { background: var(--paper); }
.potential-grid { display: grid; grid-template-columns: minmax(17rem, 0.75fr) minmax(0, 1.25fr); gap: clamp(3rem, 8vw, 7rem); align-items: start; }
.potential-intro { position: sticky; top: 2rem; }
.potential-intro h2 { max-width: 15ch; }
.potential-intro > p:not(.eyebrow) { margin: 1.3rem 0 1.5rem; color: var(--ink-soft); }
.potential-groups { display: grid; gap: 0.8rem; }
.potential-groups article { padding: 1.5rem 1.6rem; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--cream); }
.group-label { display: block; padding-bottom: 0.9rem; border-bottom: 1px solid var(--line); color: var(--teal-dark); font-size: 0.77rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.potential-groups ul { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem 1.4rem; margin: 1.1rem 0 0; padding: 0; list-style: none; }
.potential-groups li { position: relative; padding-left: 1rem; color: var(--ink-soft); font-size: 0.94rem; }
.potential-groups li::before { content: ""; position: absolute; left: 0; top: 0.65em; width: 0.35rem; height: 0.35rem; border-radius: 50%; background: var(--accent); }

.quickcheck { background: #eaf2ff; }
.quickcheck-grid { display: grid; grid-template-columns: minmax(0, 0.86fr) minmax(26rem, 1.14fr); gap: 1rem; align-items: stretch; }
.offer-card { position: relative; overflow: hidden; padding: clamp(2rem, 5vw, 3.5rem); border-radius: var(--radius-lg); background: var(--surface-dark); color: white; }
.offer-card::after { content: ""; position: absolute; width: 18rem; height: 18rem; right: -9rem; bottom: -9rem; border: 1px solid rgba(96, 165, 250, 0.22); border-radius: 50%; box-shadow: 0 0 0 3.5rem rgba(96, 165, 250, 0.04), 0 0 0 7rem rgba(37, 99, 235, 0.025); }
.offer-card > * { position: relative; z-index: 1; }
.offer-card h2 { max-width: 16ch; color: white; }
.offer-card > p:not(.eyebrow, .offer-footnote) { color: var(--text-on-dark-soft); }
.price-line { display: flex; align-items: center; gap: 0.9rem; margin: 2rem 0; font-size: var(--step-1); }
.price-line span { width: 1px; height: 1.5rem; background: #64748b; }
.check-list { display: grid; gap: 0.65rem; margin: 1.8rem 0; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 0.65rem; color: var(--text-on-dark-soft); }
.check-list li::before { content: "✓"; color: var(--accent); font-weight: 900; }
.offer-footnote { margin: 2rem 0 0; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.14); color: var(--muted-on-dark); font-size: 0.84rem; }
.form-panel { padding: clamp(1.5rem, 5vw, 3.5rem); border: 1px solid var(--border-dark); border-radius: var(--radius-lg); background: var(--card-dark); color: var(--text-on-dark); box-shadow: 0 20px 50px rgba(15, 23, 42, 0.14); }
.form-heading { margin-bottom: 2rem; }
.form-kicker { display: block; margin-bottom: 0.55rem; color: var(--accent); font-size: 0.76rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.form-heading h3 { font-size: clamp(1.55rem, 1.25rem + 0.8vw, 2.15rem); }
.form-heading h3 { color: var(--text-on-dark); }
.form-heading p { margin: 0.7rem 0 0; color: var(--text-on-dark-soft); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { min-width: 0; }
.field-full { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: 0.35rem; color: var(--text-on-dark-soft); font-size: 0.86rem; font-weight: 650; }
.field .optional { color: var(--muted-on-dark); font-weight: 500; }
input, textarea { width: 100%; border: 1px solid var(--border-dark); border-radius: 0.625rem; background: var(--surface-darker); color: var(--text-on-dark); font: inherit; font-size: 1rem; }
input { min-height: 3rem; padding: 0.62rem 0.75rem; }
textarea { min-height: 6.4rem; padding: 0.72rem 0.75rem; resize: vertical; }
input:hover, textarea:hover { border-color: #64748b; }
input:focus, textarea:focus { outline: 3px solid rgba(37, 99, 235, 0.24); border-color: var(--teal); }
input[aria-invalid="true"], textarea[aria-invalid="true"] { border-color: #f87171; }
.field-error { display: block; min-height: 1.15em; margin-top: 0.25rem; color: #fca5a5; font-size: 0.76rem; }
.consent-field { display: grid; grid-template-columns: auto 1fr; gap: 0.6rem; align-items: start; margin-top: 0.2rem; }
.consent-field input { width: 1.1rem; min-height: auto; height: 1.1rem; margin: 0.25rem 0 0; accent-color: var(--teal); }
.consent-field label { margin: 0; color: var(--text-on-dark-soft); font-size: 0.8rem; font-weight: 500; }
.consent-field .field-error { grid-column: 2; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-submit { width: 100%; margin-top: 1.3rem; border: 0; cursor: pointer; font: inherit; font-weight: 750; }
.form-submit:disabled { opacity: 0.58; cursor: progress; transform: none; }
.form-note { margin: 0.7rem 0 0; color: var(--muted-on-dark); font-size: 0.74rem; line-height: 1.45; text-align: center; }
.form-status { margin-top: 0.8rem; padding: 0; color: #fecaca; font-size: 0.86rem; }
.form-status:not(:empty) { padding: 0.8rem; border: 1px solid #7f1d1d; border-radius: 0.5rem; background: rgba(127, 29, 29, 0.22); }
.form-success { display: grid; place-items: start; min-height: 100%; align-content: center; }
.form-success > span { display: grid; place-items: center; width: 3rem; height: 3rem; margin-bottom: 1rem; border-radius: 50%; background: var(--mint); color: var(--teal-dark); font-size: 1.35rem; font-weight: 900; }
.form-success h3 { color: var(--text-on-dark); }
.form-success p { color: var(--text-on-dark-soft); }

.trust { background: var(--cream); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.8rem; }
.trust-grid article { padding: 1.5rem; border: 1px solid var(--line); border-top: 2px solid var(--teal); border-radius: 0 0 var(--radius-md) var(--radius-md); background: white; }
.trust-grid span { display: block; margin-bottom: 2rem; color: var(--teal); font-size: 0.74rem; font-weight: 800; }
.trust-grid h3 { font-size: 1.16rem; }
.trust-grid p { margin: 0.75rem 0 0; color: var(--ink-soft); font-size: 0.9rem; }

.faq { background: white; }
.faq-grid { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.faq-intro { position: sticky; top: 2rem; }
.faq-intro h2 { max-width: 13ch; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list article { padding: 1.55rem 0; border-bottom: 1px solid var(--line); }
.faq-list h3 { font-size: 1.12rem; letter-spacing: -0.02em; }
.faq-list p { margin: 0.7rem 0 0; color: var(--ink-soft); }

.final-cta { border-bottom: 1px solid var(--border-dark); background: var(--surface-dark); color: white; }
.final-cta .eyebrow { color: var(--accent); }
.final-cta-inner { display: flex; justify-content: space-between; align-items: end; gap: 3rem; }
.final-cta h2 { max-width: 20ch; color: white; }
.final-cta p:not(.eyebrow) { margin: 1rem 0 0; color: var(--text-on-dark-soft); font-size: var(--step-1); }
.button-light { flex: none; background: white; border-color: white; color: var(--teal-dark); box-shadow: none; }
.button-light:hover { background: var(--mint); border-color: var(--mint); }

.site-footer { padding: 3.5rem 0 1.3rem; background: var(--surface-dark); color: white; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 3rem; }
.brand-footer { color: white; }
.brand-logo-footer { width: clamp(11rem, 16vw, 14rem); }
.footer-grid > div > p { max-width: 36rem; margin: 1rem 0 0; color: var(--text-on-dark-soft); font-size: 0.88rem; }
.footer-grid nav { display: flex; flex-wrap: wrap; align-items: flex-start; justify-content: flex-end; gap: 0.65rem 1.2rem; }
.footer-grid nav a, .footer-button { color: var(--accent); font: inherit; font-size: 0.84rem; text-underline-offset: 0.25em; }
.footer-button { padding: 0; border: 0; background: none; text-decoration: underline; cursor: pointer; }
.footer-grid nav a:hover, .footer-button:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2.7rem; padding-top: 1.2rem; border-top: 1px solid var(--border-dark); color: var(--muted-on-dark); font-size: 0.75rem; }

.mobile-cta { display: none; }
.hero-visible .mobile-cta, .quickcheck-visible .mobile-cta { opacity: 0; pointer-events: none; transform: translateY(120%); }
.consent-banner { position: fixed; z-index: 200; right: 1rem; bottom: 1rem; left: 1rem; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 2rem; max-width: 68rem; margin-inline: auto; padding: 1.15rem; border: 1px solid var(--border-dark); border-radius: var(--radius-md); background: var(--surface-dark); color: white; box-shadow: 0 24px 80px rgba(0,0,0,0.26); }
.consent-banner[hidden] { display: none; }
.consent-copy strong { display: block; }
.consent-copy p { max-width: 50rem; margin: 0.3rem 0; color: var(--text-on-dark-soft); font-size: 0.82rem; line-height: 1.45; }
.consent-copy a { color: white; font-size: 0.78rem; text-underline-offset: 0.2em; }
.consent-actions { display: flex; gap: 0.55rem; }
.consent-actions .button { min-height: 2.75rem; padding: 0.65rem 0.9rem; border: 0; font: inherit; font-size: 0.78rem; font-weight: 750; cursor: pointer; }
.button-ghost { border: 1px solid var(--accent) !important; background: transparent; color: var(--accent); box-shadow: none; }
.button-ghost:hover { border-color: white !important; background: rgba(255,255,255,0.06); }

@media (max-width: 980px) {
  .quickcheck-grid { grid-template-columns: 1fr; }
  .offer-card h2 { max-width: 22ch; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .problem-grid, .potential-grid, .faq-grid { grid-template-columns: 1fr; }
  .pain-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .pain-card, .pain-card:nth-child(4) { grid-column: span 2; }
  .pain-card:nth-child(5) { grid-column: 2 / span 2; }
  .potential-intro, .faq-intro { position: static; }
  .section-heading-split { grid-template-columns: 1fr; gap: 1rem; }
  .process-list { grid-template-columns: 1fr 1fr; }
  .process-list li:nth-child(2)::after { display: none; }
  .final-cta-inner { align-items: flex-start; flex-direction: column; }
  .consent-banner { grid-template-columns: 1fr; gap: 1rem; }
}

@media (max-width: 600px) {
  body { padding-bottom: 4.4rem; }
  .section { padding-block: clamp(4rem, 16vw, 5.5rem); }
  .pain-grid { grid-template-columns: 1fr; gap: 1rem; }
  .pain-card, .pain-card:nth-child(4), .pain-card:nth-child(5) { grid-column: 1; }
  .problem-grid { gap: 2.2rem; }
  .process-list { grid-template-columns: 1fr; border-top: 0; }
  .process-list li { display: grid; grid-template-columns: 2.5rem 1fr; gap: 0.6rem; padding: 1.2rem 0; border-top: 1px solid var(--line); }
  .process-list li::after { display: none; }
  .process-number { margin: 0.2rem 0 0; }
  .potential-groups article { padding: 1.25rem; }
  .potential-groups ul { grid-template-columns: 1fr; }
  .quickcheck { padding-inline: 0.15rem; }
  .brand-logo { width: 10.25rem; }
  .form-grid { grid-template-columns: 1fr; }
  .field { grid-column: 1 / -1; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid article { padding: 1.35rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid nav { justify-content: flex-start; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .mobile-cta { position: fixed; z-index: 90; right: 0.65rem; bottom: 0.55rem; left: 0.65rem; display: flex; min-height: 3.35rem; box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3); }
  .consent-banner { right: 0.55rem; bottom: 0.55rem; left: 0.55rem; padding: 1rem; }
  .consent-actions { flex-direction: column-reverse; }
  .consent-actions .button { width: 100%; }
  body:has(.consent-banner:not([hidden])) .mobile-cta { display: none; }
}

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