:root {
  color-scheme: light;
  --bg: #f7f7fb;
  --surface: #ffffff;
  --surface-muted: #f1f2f8;
  --ink: #111827;
  --muted: #4b5563;
  --soft: #6b7280;
  --line: #e5e7eb;
  --brand: #6d28d9;
  --brand-strong: #5b21b6;
  --brand-soft: #ede9fe;
  --danger: #b91c1c;
  --success: #047857;
  --shadow: 0 18px 46px rgba(17, 24, 39, 0.08);
  --shadow-soft: 0 10px 26px rgba(17, 24, 39, 0.06);
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, "Avenir Next", "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  margin: 0;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

button,
input,
select {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid rgba(109, 40, 217, 0.32);
  outline-offset: 3px;
}

.skip-link {
  background: var(--brand);
  border-radius: 8px;
  color: #ffffff;
  font-weight: 700;
  left: 16px;
  padding: 12px 16px;
  position: fixed;
  text-decoration: none;
  top: -80px;
  z-index: 100;
}

.skip-link:focus {
  top: 12px;
}

.container {
  margin: 0 auto;
  max-width: var(--container);
  padding-inline: 18px;
  width: 100%;
}

.section {
  padding-block: 64px;
}

.section-muted {
  background: var(--surface-muted);
  border-block: 1px solid rgba(229, 231, 235, 0.8);
}

.section-heading {
  margin-bottom: 32px;
  max-width: 820px;
}

.section-heading-centered {
  margin-inline: auto;
  text-align: center;
}

.section-kicker,
.eyebrow {
  align-items: center;
  color: var(--brand-strong);
  display: flex;
  font-size: 0.78rem;
  font-weight: 800;
  gap: 9px;
  letter-spacing: 0.09em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.section-heading-centered .section-kicker,
.final-cta .section-kicker {
  justify-content: center;
}

.section-heading h2,
.why-content h2,
.final-cta h2 {
  font-size: clamp(2rem, 8.5vw, 2.75rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin-bottom: 18px;
  text-wrap: balance;
}

.section-lead {
  color: var(--muted);
  font-size: clamp(1rem, 3.8vw, 1.18rem);
  line-height: 1.65;
  margin-bottom: 0;
}

.button {
  align-items: center;
  background: var(--brand);
  border: 1px solid var(--brand);
  border-radius: 8px;
  color: #ffffff;
  display: inline-flex;
  font-weight: 750;
  gap: 10px;
  justify-content: center;
  line-height: 1.2;
  min-height: 50px;
  padding: 13px 18px;
  text-align: center;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--brand-strong);
  border-color: var(--brand-strong);
  box-shadow: 0 12px 28px rgba(91, 33, 182, 0.24);
  transform: translateY(-1px);
}

.button:disabled {
  box-shadow: none;
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.button-large {
  min-height: 54px;
  padding: 15px 21px;
}

.button-secondary {
  background: #ffffff;
  border-color: var(--line);
  color: var(--ink);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--surface-muted);
  border-color: rgba(109, 40, 217, 0.28);
  color: var(--brand-strong);
}

.button-light {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--brand-strong);
}

.button-light:hover,
.button-light:focus-visible {
  background: var(--brand-soft);
  border-color: var(--brand-soft);
  color: var(--brand-strong);
}

.site-header {
  backdrop-filter: blur(14px);
  background: rgba(247, 247, 251, 0.9);
  border-bottom: 1px solid rgba(229, 231, 235, 0.82);
  position: sticky;
  top: 0;
  z-index: 40;
}

.header-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 68px;
}

.brand {
  align-items: center;
  display: inline-flex;
  line-height: 1;
}

.brand-logo {
  width: 150px;
}

.header-cta {
  min-height: 42px;
  padding: 10px 13px;
  white-space: nowrap;
}

.header-full {
  display: none;
}

.hero {
  background:
    radial-gradient(circle at 86% 12%, rgba(109, 40, 217, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  overflow: hidden;
  padding: 48px 0 28px;
}

.hero-grid {
  display: grid;
  gap: 26px;
  grid-template-areas:
    "heading"
    "visual"
    "body";
  grid-template-columns: minmax(0, 1fr);
}

.hero-heading {
  grid-area: heading;
  min-width: 0;
}

.hero-body {
  grid-area: body;
  min-width: 0;
}

.hero-visual {
  grid-area: visual;
  min-width: 0;
}

.eyebrow span {
  background: var(--brand);
  border-radius: 999px;
  height: 7px;
  width: 7px;
}

.hero h1 {
  font-size: clamp(2rem, 9vw, 3.05rem);
  letter-spacing: -0.045em;
  line-height: 1.04;
  margin-bottom: 0;
  max-width: 720px;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero h1 strong {
  background: linear-gradient(102deg, var(--brand-strong), #8b5cf6 62%, #4c1d95);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline;
  font-weight: 850;
}

.hero-subtitle {
  color: var(--muted);
  font-size: clamp(1.04rem, 4vw, 1.22rem);
  line-height: 1.6;
  margin-bottom: 18px;
}

.hero-qualifier {
  border-left: 3px solid var(--brand);
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 620;
  line-height: 1.55;
  margin-bottom: 22px;
  padding-left: 14px;
}

.hero-cta {
  width: 100%;
}

.micro-copy {
  color: var(--soft);
  font-size: 0.84rem;
  line-height: 1.55;
  margin: 12px 0 0;
}

.media-shell {
  background: #eef0f8;
  border: 1px solid rgba(229, 231, 235, 0.94);
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.media-shell img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hero-media {
  aspect-ratio: 1.4 / 1;
}

.hero-trust {
  display: grid;
  gap: 8px;
  margin-top: 28px;
}

.hero-trust span {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: 0.87rem;
  font-weight: 700;
  gap: 8px;
}

.hero-trust span::before {
  background: var(--brand);
  border: 4px solid var(--brand-soft);
  border-radius: 50%;
  content: "";
  height: 13px;
  width: 13px;
}

.trust-section {
  background: #ffffff;
  border-block: 1px solid var(--line);
  padding: 58px 0 64px;
}

.trust-section .section-heading {
  margin-bottom: 28px;
}

.trust-section h2 {
  font-size: clamp(1.7rem, 7vw, 2.45rem);
}

.logo-marquee {
  overflow: hidden;
  padding: 8px 0 16px;
  position: relative;
}

.logo-marquee::before,
.logo-marquee::after {
  bottom: 0;
  content: "";
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 52px;
  z-index: 2;
}

.logo-marquee::before {
  background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0));
  left: 0;
}

.logo-marquee::after {
  background: linear-gradient(270deg, #ffffff, rgba(255, 255, 255, 0));
  right: 0;
}

.logo-track {
  animation: logo-scroll 44s linear infinite;
  display: flex;
  gap: 12px;
  width: max-content;
  will-change: transform;
}

.company-card {
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex: 0 0 132px;
  height: 98px;
  justify-content: center;
  padding: 10px;
}

.company-card img {
  height: 78px;
  object-fit: contain;
  width: 78px;
}

@keyframes logo-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 6px)); }
}

.pain-grid,
.solution-grid {
  display: grid;
  gap: 14px;
}

.pain-card {
  align-items: flex-start;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  display: flex;
  gap: 14px;
  min-height: 98px;
  padding: 20px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.pain-card:hover {
  border-color: rgba(109, 40, 217, 0.28);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.pain-card h3 {
  font-size: 1.02rem;
  line-height: 1.38;
  margin: 1px 0 0;
}

.card-mark,
.solution-number {
  align-items: center;
  background: var(--brand-soft);
  border-radius: 8px;
  color: var(--brand-strong);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 0.76rem;
  font-weight: 850;
  justify-content: center;
  min-height: 32px;
  min-width: 36px;
  padding: 6px 8px;
}

.feature-intro {
  align-items: center;
  display: grid;
  gap: 30px;
  margin-bottom: 38px;
}

.feature-copy .section-lead {
  max-width: 680px;
}

.feature-copy h2 {
  font-size: clamp(2rem, 8.5vw, 2.75rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin-bottom: 18px;
}

.feature-media {
  aspect-ratio: 1.4 / 1;
}

.solution-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  min-height: 220px;
  overflow: hidden;
  padding: 24px;
  position: relative;
}

.solution-card::before {
  background: linear-gradient(90deg, var(--brand), #a78bfa);
  content: "";
  height: 4px;
  inset: 0 0 auto;
  position: absolute;
}

.solution-card h3 {
  font-size: 1.15rem;
  line-height: 1.28;
  margin: 18px 0 10px;
}

.solution-card p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.62;
  margin-bottom: 0;
}

.process-section {
  background:
    radial-gradient(circle at 10% 0%, rgba(139, 92, 246, 0.1), transparent 30%),
    linear-gradient(180deg, #f2effb 0%, #f8f7fc 100%);
  border-block: 1px solid rgba(109, 40, 217, 0.1);
}

.process-list {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.process-card {
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(109, 40, 217, 0.15);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  display: flex;
  gap: 16px;
  min-height: 158px;
  padding: 22px;
  position: relative;
}

.process-card > span {
  align-items: center;
  background: linear-gradient(145deg, var(--brand), #8b5cf6);
  border: 5px solid var(--brand-soft);
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  flex: 0 0 44px;
  font-size: 1rem;
  font-weight: 850;
  height: 44px;
  justify-content: center;
}

.process-card h3 {
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.process-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.56;
  margin-bottom: 0;
}

.cases-layout {
  display: grid;
  gap: 38px;
}

.application-list {
  display: grid;
  gap: 12px;
}

.application-list article {
  align-items: flex-start;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  gap: 14px;
  padding: 18px;
}

.application-list article > span {
  color: var(--brand);
  flex: 0 0 28px;
  font-size: 0.8rem;
  font-weight: 850;
  padding-top: 2px;
}

.application-list h3 {
  font-size: 1rem;
  line-height: 1.35;
  margin-bottom: 6px;
}

.application-list p {
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.55;
  margin-bottom: 0;
}

.cases-media {
  align-self: start;
  aspect-ratio: 1.4 / 1;
}

.form-section {
  background:
    radial-gradient(circle at 80% 15%, rgba(139, 92, 246, 0.17), transparent 30%),
    linear-gradient(180deg, #eeeafb 0%, #f7f7fb 92%);
  border-top: 1px solid rgba(109, 40, 217, 0.12);
  scroll-margin-top: 72px;
}

.form-heading {
  margin-bottom: 34px;
}

.form-layout {
  align-items: start;
  display: grid;
  gap: 24px;
}

.form-card {
  background: #ffffff;
  border: 1px solid rgba(109, 40, 217, 0.16);
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(76, 29, 149, 0.12);
  min-width: 0;
  order: 1;
  padding: 20px;
  scroll-margin-top: 82px;
}

.form-visual {
  display: grid;
  gap: 16px;
  order: 2;
}

.diagnostic-media {
  aspect-ratio: 1 / 1;
}

.form-assurance {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(109, 40, 217, 0.13);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  padding: 18px;
}

.form-assurance p {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: 0.9rem;
  font-weight: 650;
  gap: 10px;
  margin: 0;
}

.form-assurance span,
.success-icon {
  align-items: center;
  background: var(--brand-soft);
  border-radius: 50%;
  color: var(--brand-strong);
  display: inline-flex;
  flex: 0 0 26px;
  height: 26px;
  justify-content: center;
}

.form-progress {
  margin-bottom: 24px;
}

.form-progress p {
  color: var(--brand-strong);
  font-size: 0.81rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 9px;
}

.progress-track {
  background: var(--brand-soft);
  border-radius: 999px;
  height: 6px;
  overflow: hidden;
}

.progress-track span {
  background: linear-gradient(90deg, var(--brand), #8b5cf6);
  border-radius: inherit;
  display: block;
  height: 100%;
  transition: width 220ms ease;
  width: 50%;
}

.form-step {
  display: grid;
  gap: 24px;
}

.step-heading {
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.step-label {
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.step-heading h3 {
  font-size: 1.38rem;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}

.field-group {
  border: 0;
  margin: 0;
  min-width: 0;
  padding: 0;
}

.field-group legend,
.field label,
.consent-field label {
  color: var(--ink);
  font-size: 0.93rem;
  font-weight: 760;
}

.field-group legend {
  line-height: 1.4;
  margin-bottom: 11px;
  padding: 0;
}

.field-group legend > span,
.field label > span,
.consent-field strong {
  color: var(--brand);
}

.field-hint {
  color: var(--soft);
  font-size: 0.78rem;
  line-height: 1.45;
  margin: -5px 0 10px;
}

.option-stack {
  display: grid;
  gap: 9px;
}

.option-card {
  align-items: flex-start;
  background: #fbfbfe;
  border: 1px solid #d9dcea;
  border-radius: 8px;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  gap: 10px;
  line-height: 1.38;
  min-height: 54px;
  padding: 13px;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.option-card:hover,
.option-card:focus-within {
  border-color: rgba(109, 40, 217, 0.42);
  box-shadow: 0 0 0 4px rgba(109, 40, 217, 0.08);
}

.option-card:has(input:checked) {
  background: rgba(109, 40, 217, 0.08);
  border-color: rgba(109, 40, 217, 0.5);
}

.option-card input {
  accent-color: var(--brand);
  flex: 0 0 19px;
  height: 19px;
  margin: 1px 0 0;
  width: 19px;
}

.option-card span {
  font-size: 0.9rem;
  font-weight: 650;
}

.field-group[data-invalid="true"] .option-card {
  border-color: rgba(185, 28, 28, 0.55);
}

.input-grid {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
  min-width: 0;
  scroll-margin-block: 110px 36vh;
}

.field input,
.field select {
  appearance: none;
  background: #fbfbfe;
  border: 1px solid #d9dcea;
  border-radius: 8px;
  color: var(--ink);
  min-height: 52px;
  padding: 12px 13px;
  width: 100%;
}

.field select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position:
    calc(100% - 19px) 50%,
    calc(100% - 14px) 50%;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
  padding-right: 38px;
}

.field input::placeholder {
  color: #9ca3af;
}

.field input:focus,
.field select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(109, 40, 217, 0.12);
  outline: 0;
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.consent-field[data-invalid="true"] label {
  border-color: rgba(185, 28, 28, 0.72);
}

.field .field-hint {
  margin: -2px 0 0;
}

.field-error {
  color: var(--danger);
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.4;
  margin: 0;
  min-height: 0;
}

.field-error:empty {
  display: none;
}

.consent-field {
  scroll-margin-block: 110px 36vh;
}

.consent-field label {
  align-items: flex-start;
  background: #fbfbfe;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  gap: 11px;
  line-height: 1.48;
  padding: 14px;
}

.consent-field input {
  accent-color: var(--brand);
  flex: 0 0 19px;
  height: 19px;
  margin: 2px 0 0;
  width: 19px;
}

.consent-field span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 570;
}

.form-microcopy {
  color: var(--soft);
  font-size: 0.78rem;
  line-height: 1.5;
  margin: -4px 0 0;
}

.form-actions {
  display: grid;
  gap: 10px;
  margin-top: 0;
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.form-actions .button {
  width: 100%;
}

.form-status {
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.48;
  margin-top: 16px;
}

.form-status:not(:empty) {
  padding: 13px 14px;
}

.form-status.is-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

.form-status.is-success {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
}

.button-spinner {
  animation: spin 760ms linear infinite;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  border-top-color: #ffffff;
  display: none;
  height: 18px;
  width: 18px;
}

.button.is-loading .button-spinner {
  display: inline-block;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.success-panel {
  min-height: 370px;
  padding: 58px 12px;
  text-align: center;
}

.success-icon {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: var(--success);
  font-size: 1.7rem;
  height: 62px;
  margin-bottom: 20px;
  width: 62px;
}

.success-panel h3 {
  font-size: clamp(1.7rem, 7vw, 2.25rem);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.success-panel p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0 auto;
  max-width: 480px;
}

.why-layout {
  align-items: center;
  display: grid;
  gap: 34px;
}

.why-media {
  aspect-ratio: 1.33 / 1;
}

.why-content h2 {
  margin-bottom: 24px;
}

.check-list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list li {
  align-items: flex-start;
  color: var(--muted);
  display: flex;
  font-size: 0.97rem;
  gap: 11px;
  line-height: 1.52;
}

.check-list li::before {
  align-items: center;
  background: var(--brand-soft);
  border-radius: 50%;
  color: var(--brand-strong);
  content: "✓";
  display: inline-flex;
  flex: 0 0 24px;
  font-size: 0.78rem;
  font-weight: 900;
  height: 24px;
  justify-content: center;
  margin-top: 1px;
}

.faq-container {
  max-width: 920px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-list summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-size: 0.98rem;
  font-weight: 750;
  gap: 16px;
  justify-content: space-between;
  list-style: none;
  min-height: 66px;
  padding: 17px 18px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  align-items: center;
  background: var(--brand-soft);
  border-radius: 50%;
  color: var(--brand-strong);
  content: "+";
  display: inline-flex;
  flex: 0 0 28px;
  font-size: 1.15rem;
  height: 28px;
  justify-content: center;
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

.faq-list details p {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.62;
  margin: 0;
  padding: 0 18px 20px;
}

.final-cta {
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 255, 255, 0.2), transparent 34%),
    linear-gradient(125deg, #4c1d95, var(--brand) 56%, #7c3aed);
  color: #ffffff;
  padding: 70px 0;
  text-align: center;
}

.final-cta .section-kicker {
  color: #ddd6fe;
}

.final-cta h2 {
  margin-inline: auto;
  max-width: 830px;
}

.final-cta p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1rem;
  line-height: 1.62;
  margin: 0 auto 24px;
  max-width: 680px;
}

.final-cta .button {
  width: 100%;
}

.site-footer {
  background: #ffffff;
  border-top: 1px solid var(--line);
  padding: 42px 0 30px;
}

.footer-inner {
  text-align: center;
}

.footer-inner img {
  margin: 0 auto 16px;
  width: 174px;
}

.footer-inner p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0 auto;
  max-width: 560px;
}

.footer-legal {
  border-top: 1px solid var(--line);
  color: var(--soft) !important;
  font-size: 0.78rem !important;
  margin-top: 24px !important;
  padding-top: 20px;
}

@media (min-width: 420px) {
  .brand-logo {
    width: 165px;
  }

  .header-full {
    display: inline;
  }

  .header-short {
    display: none;
  }

  .form-card {
    padding: 26px;
  }
}

@media (min-width: 620px) {
  .container {
    padding-inline: 28px;
  }

  .hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 28px;
  }

  .pain-grid,
  .solution-grid,
  .option-stack,
  .input-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .option-wide {
    grid-column: 1 / -1;
  }

  .process-card {
    min-height: 142px;
  }

  .form-actions {
    grid-template-columns: minmax(130px, 0.45fr) minmax(220px, 1fr);
  }

  .form-actions-end {
    grid-template-columns: minmax(220px, 0.55fr);
    justify-content: end;
  }

  .final-cta .button {
    width: auto;
  }
}

@media (min-width: 760px) {
  html {
    scroll-padding-top: 96px;
  }

  .section {
    padding-block: 88px;
  }

  .site-header .header-inner {
    min-height: 78px;
  }

  .brand-logo {
    width: 178px;
  }

  .header-cta {
    min-height: 46px;
    padding: 12px 16px;
  }

  .hero {
    padding: 68px 0 34px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 6vw, 4.15rem);
  }

  .hero-cta {
    width: auto;
  }

  .micro-copy {
    max-width: 660px;
  }

  .trust-section {
    padding-block: 74px;
  }

  .company-card {
    flex-basis: 162px;
    height: 112px;
  }

  .company-card img {
    height: 90px;
    width: 90px;
  }

  .pain-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .feature-intro {
    grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1.1fr);
  }

  .solution-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .solution-card {
    min-height: 250px;
  }

  .form-card {
    padding: 34px;
  }

  .faq-list summary {
    font-size: 1.04rem;
    min-height: 72px;
    padding: 20px 22px;
  }

  .faq-list details p {
    font-size: 0.98rem;
    padding: 0 22px 24px;
  }

  .final-cta {
    padding-block: 92px;
  }
}

@media (min-width: 980px) {
  .hero-grid {
    align-items: center;
    column-gap: clamp(42px, 5vw, 76px);
    grid-template-areas:
      "heading visual"
      "body visual";
    grid-template-columns: minmax(0, 0.95fr) minmax(470px, 1.05fr);
    row-gap: 24px;
  }

  .hero-heading {
    align-self: end;
  }

  .hero-body {
    align-self: start;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 3.55vw, 3.75rem);
  }

  .hero-media {
    border-radius: 32px;
  }

  .hero-trust {
    margin-top: 36px;
  }

  .process-list {
    gap: 12px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .process-list::before {
    background: linear-gradient(90deg, rgba(109, 40, 217, 0.08), var(--brand), rgba(109, 40, 217, 0.08));
    content: "";
    height: 2px;
    left: 8%;
    position: absolute;
    right: 8%;
    top: 48px;
  }

  .process-card {
    display: block;
    min-height: 288px;
    padding: 24px 20px;
  }

  .process-card > span {
    margin: 0 auto 26px;
    position: relative;
    z-index: 1;
  }

  .process-card h3,
  .process-card p {
    text-align: center;
  }

  .cases-layout {
    align-items: start;
    gap: 56px;
    grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  }

  .cases-media {
    position: sticky;
    top: 112px;
  }

  .form-layout {
    gap: 36px;
    grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  }

  .form-visual {
    order: 1;
    position: sticky;
    top: 112px;
  }

  .form-card {
    order: 2;
  }

  .why-layout {
    gap: 64px;
    grid-template-columns: minmax(440px, 1fr) minmax(0, 0.9fr);
  }
}

@media (min-width: 1180px) {
  .section {
    padding-block: 96px;
  }

  .hero-grid {
    max-width: 1260px;
  }
}

@media (max-width: 419px) {
  .header-cta {
    font-size: 0.8rem;
  }

  .header-full {
    display: none;
  }

  .header-short {
    display: inline;
  }

  .hero h1 {
    font-size: clamp(1.88rem, 9vw, 2.25rem);
  }

  .form-card {
    border-radius: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .logo-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
  }

  .company-card[aria-hidden="true"] {
    display: none;
  }
}
