:root {
  --navy-950: #070b24;
  --navy-900: #0b102c;
  --navy-850: #111744;
  --navy-800: #171f67;
  --brand-indigo: #21299b;
  --brand-blue: #3e4bd8;
  --cyan: #00ebff;
  --cyan-dark: #00bcdb;
  --ink: #101828;
  --muted: #596579;
  --line: #dfe6ee;
  --light: #f3f7fa;
  --white: #ffffff;
  --error: #ffb7b7;
  --radius: 8px;
  --shadow: 0 20px 60px rgba(11, 16, 44, 0.12);
  --container: 1280px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--white);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.area-picker-modal-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.14;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(2.45rem, 4.15vw, 4.2rem);
  font-weight: 700;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.3vw, 3.4rem);
  font-weight: 700;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  font-weight: 700;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  padding: clamp(80px, 9vw, 132px) 0;
}

.section--light {
  background: var(--light);
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--cyan);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow--dark {
  color: var(--brand-indigo);
}

.hero .eyebrow {
  margin-bottom: 14px;
  font-size: 1rem;
  letter-spacing: .105em;
}

.section-heading {
  max-width: 720px;
}

.section-heading > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading--center {
  margin: 0 auto clamp(52px, 6vw, 82px);
  text-align: center;
}

/* Consistent alignment for every left-aligned text block. */
.section-heading:not(.section-heading--center),
.hero__content,
.form-card__heading,
.about-layout > div,
.final-cta__content > div {
  text-align: left;
}

.section-heading:not(.section-heading--center),
.hero__content,
.form-card__heading,
.about-layout > div,
.final-cta__content > div {
  width: 100%;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  justify-self: start;
  text-align: left;
}

.section-heading:not(.section-heading--center) > *,
.hero__content > *,
.form-card__heading > *,
.about-layout > div > *,
.final-cta__content > div > * {
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  text-indent: 0;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: auto;
  overflow: visible;
  color: var(--white);
  background: linear-gradient(125deg, var(--brand-indigo), #11184f 76%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("https://images.unsplash.com/photo-1423592707957-3b212afa6733?auto=format&fit=crop&fm=jpg&ixlib=rb-4.1.0&q=80&w=2400");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(6, 10, 35, .88) 0%, rgba(6, 10, 35, .76) 48%, rgba(6, 10, 35, .80) 100%),
    linear-gradient(125deg, rgba(33, 41, 155, .34), rgba(8, 11, 34, .46) 76%);
}

.hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 540px);
  gap: clamp(56px, 7vw, 112px);
  align-items: stretch;
  min-height: min(880px, 92svh);
  padding-top: 48px;
  padding-bottom: 48px;
}

.hero__content {
  display: flex;
  max-width: 680px;
  min-height: 100%;
  height: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 34px;
}

.hero__content-main {
  width: 100%;
}

.hero__content-main h1 {
  margin-top: 28px;
}

.brand {
  display: inline-flex;
  margin-bottom: clamp(42px, 5vh, 58px);
}

.brand img {
  width: 220px;
  height: auto;
}

.hero__lead {
  max-width: 630px;
  margin-bottom: 0;
  color: rgba(255,255,255,.73);
  font-size: clamp(1.05rem, 1.4vw, 1.24rem);
}



.form-card {
  position: relative;
  align-self: start;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  background: #121630;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.05),
    0 0 0 1px rgba(255,255,255,.025),
    0 0 22px rgba(0, 235, 255, .16),
    0 10px 34px rgba(3, 7, 28, .34);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.form-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius) - 1px);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02) 45%, rgba(255,255,255,.01));
  pointer-events: none;
}

.form-card > * {
  position: relative;
  z-index: 1;
}

.form-card__heading h2 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: clamp(1.65rem, 2.2vw, 2.2rem);
}

.form-card__heading p {
  margin-bottom: 24px;
  color: rgba(255,255,255,.67);
  font-size: .95rem;
}

.progress {
  width: 100%;
  height: 4px;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.13);
}

.progress__bar {
  display: block;
  width: 50%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), #6bf5ff);
  box-shadow: 0 0 18px rgba(0,235,255,.45);
  transition: width .32s ease;
}


.form-card .wf-parent,
.form-card .wf-wrapper {
  min-width: 0;
  background: transparent;
}

.technical-field,
.technical-group {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.form-step[hidden] {
  display: none !important;
}

.form-step.is-entering-right {
  animation: stepInRight .3s ease both;
}

.form-step.is-entering-left {
  animation: stepInLeft .3s ease both;
}

@keyframes stepInRight {
  from { opacity: 0; transform: translateX(22px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes stepInLeft {
  from { opacity: 0; transform: translateX(-22px); }
  to { opacity: 1; transform: translateX(0); }
}

.wf-row {
  margin-bottom: 20px;
}

.wf-label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,.9);
  font-size: .92rem;
  font-weight: 600;
}

.mandatory-label::after {
  content: " *";
  color: var(--cyan);
}

.wf-field,
.wf-field-inner {
  position: relative;
  min-width: 0;
}

.wf-field-input,
.wf-field-dropdown,
.area-picker-toggle {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 7px;
  outline: none;
  background: rgba(255,255,255,.075);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(2, 6, 26, .1);
  font-size: .95rem;
  transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.wf-field-input:hover,
.wf-field-dropdown:hover,
.area-picker-toggle:hover {
  background: rgba(255,255,255,.1);
}

.wf-field-input:focus,
.wf-field-dropdown:focus,
.area-picker-toggle:focus-visible,
.area-picker[open] .area-picker-toggle {
  border-color: rgba(0,235,255,.78);
  background: rgba(255,255,255,.11);
  box-shadow: 0 0 0 3px rgba(0,235,255,.12);
}

.wf-field-input::placeholder {
  color: rgba(255,255,255,.35);
}

select.wf-field-dropdown {
  appearance: none;
  padding-right: 44px;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='m7 10 5 5 5-5' stroke='%23ffffff' stroke-opacity='.82' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

select.wf-field-dropdown option {
  color: var(--navy-900);
  background: var(--white);
}

.select-placeholder {
  color: rgba(255,255,255,.35);
}

.wf-field-error-active .wf-field-input,
.wf-field-error-active .wf-field-dropdown,
.wf-field-error-active .area-picker-toggle {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(255,183,183,.11);
}

.wf-error-parent-ele {
  margin-top: 6px;
}

.wf-field-error {
  display: block;
  color: var(--error);
  font-size: .78rem;
  line-height: 1.35;
}

.form-error-summary {
  margin-bottom: 20px;
  padding: 12px 14px;
  border: 1px solid rgba(255,183,183,.3);
  border-radius: 7px;
  background: rgba(255,183,183,.09);
  color: var(--white);
  font-size: .82rem;
}

.form-error-summary[hidden] {
  display: none;
}

.wform-btn-wrap {
  display: flex;
  align-items: center;
  margin-top: 28px;
}

.form-step-btn-wrap {
  justify-content: flex-end;
}

.form-step-actions {
  justify-content: space-between;
  gap: 12px;
}

.wf-btn,
.button {
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  font-size: .92rem;
  font-weight: 700;
  transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease;
}

.wf-btn:hover,
.button:hover {
  transform: translateY(-1px);
}

.wf-btn--primary,
.button--cyan {
  background: var(--cyan);
  color: var(--navy-950);
  box-shadow: 0 10px 28px rgba(0,235,255,.18);
}

.wf-btn--primary:hover,
.button--cyan:hover {
  background: #62f4ff;
}

.wf-btn--secondary {
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: var(--white);
}

.wf-btn--secondary:hover {
  background: rgba(255,255,255,.11);
}

#formsubmit:disabled {
  cursor: wait;
  opacity: .65;
}

.form-disclaimer {
  margin: 18px 0 0;
  color: rgba(255,255,255,.46);
  font-size: .75rem;
  transition: opacity .18s ease;
}

.mobile-sticky-marker {
  display: block;
  width: 100%;
  height: 1px;
  pointer-events: none;
}

.form-card:has(.area-picker[open]) .form-disclaimer {
  opacity: 0;
}

.area-picker {
  position: relative;
}

.area-picker > summary {
  list-style: none;
}

.area-picker > summary::-webkit-details-marker {
  display: none;
}

.area-picker-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
}

.area-picker-value {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.area-picker.is-empty .area-picker-value {
  color: rgba(255,255,255,.35);
}

.area-picker-arrow {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='m7 10 5 5 5-5' stroke='%23ffffff' stroke-opacity='.82' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform .18s ease;
}

.area-picker[open] .area-picker-arrow {
  transform: rotate(180deg);
}

.area-picker-options {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  left: 0;
  z-index: 1200;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  background-color: #141937;
  background-image: none;
  color: var(--white);
  box-shadow: 0 18px 48px rgba(3,8,55,.36), 0 0 0 1px rgba(255,255,255,.03);
  isolation: isolate;
}

.area-picker-backdrop,
.area-picker-sheet-header {
  display: none;
}

.area-picker-sheet-list {
  max-height: 184px;
  overflow-y: auto;
  background: #141937;
}

.area-picker-sheet-list::-webkit-scrollbar {
  width: 10px;
}

.area-picker-sheet-list::-webkit-scrollbar-thumb {
  border: 2px solid transparent;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  background-clip: padding-box;
}

.area-option {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 38px;
  padding: 8px 18px;
  cursor: pointer;
  background: #141937;
  color: rgba(255,255,255,.92);
  font-size: .98rem;
  transition: background-color .18s ease;
}

.area-option + .area-option {
  border-top: 1px solid rgba(255,255,255,.07);
}

.area-option:hover {
  background: rgba(255,255,255,.04);
}

.area-option span {
  line-height: 1.35;
}

.area-option input {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 6px;
  background: rgba(255,255,255,.05);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
  transition: border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
}

.area-option input:checked {
  border-color: rgba(0,235,255,.82);
  background-color: rgba(0,235,255,.18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='m5 10 3.1 3.1L15 6.4' stroke='%2300EBFF' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: 0 0 0 3px rgba(0,235,255,.1);
}

.area-picker-sheet-footer {
  padding: 8px 10px 10px;
  border-top: 1px solid rgba(255,255,255,.07);
  background: #10142d;
}

.area-picker-done {
  width: 100%;
  min-height: 42px;
  border: 0;
  border-radius: 10px;
  background: var(--cyan);
  color: var(--navy-950);
  cursor: pointer;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0,235,255,.16);
}

.cards {
  display: grid;
  gap: 24px;
  margin-top: clamp(48px, 6vw, 78px);
}

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

.feature-card,
.criteria-card {
  padding: clamp(28px, 3vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 42px rgba(11,16,44,.055);
}

.feature-card p,
.criteria-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.icon-box {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 26px;
  border-radius: var(--radius);
  background: rgba(33,41,155,.09);
  color: var(--brand-indigo);
}

.icon-box svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.process::before {
  content: "";
  position: absolute;
  top: 28px;
  right: 8%;
  left: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line) 10%, var(--line) 90%, transparent);
}

.process__item {
  position: relative;
  padding-top: 76px;
}

.process__number {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(33,41,155,.17);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--brand-indigo);
  font-size: .8rem;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(11,16,44,.07);
}

.process__item p {
  margin-bottom: 0;
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr);
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}

.criteria-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.objection {
  color: var(--ink);
  background: var(--white);
}

.objection-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 540px);
  gap: clamp(56px, 7vw, 112px);
  align-items: start;
}

.objection-layout .section-heading {
  max-width: 680px;
}

.objection .section-heading > p:last-child {
  color: var(--muted);
}

.objection__answer {
  margin-bottom: 8px !important;
  color: var(--brand-indigo) !important;
  font-size: 1.72rem !important;
  font-weight: 800;
}

.objection-options {
  position: relative;
  display: grid;
  margin-top: calc(0.88rem * 1.65 + 22px);
  grid-template-columns: 1fr;
  gap: 42px;
}

.objection-options::before {
  content: "";
  position: absolute;
  top: 56px;
  bottom: -8px;
  left: 27px;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, var(--line) 10%, var(--line) 82%, transparent 100%);
}

.objection-option {
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.objection-option__number {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(33,41,155,.17);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--brand-indigo);
  font-size: .8rem;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(11,16,44,.07);
}

.objection-option__content {
  padding-top: 2px;
}

.objection-option h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.14;
}

.objection-option p {
  margin-bottom: 0;
  color: var(--muted);
}

.about-section {
  color: var(--white);
  background:
    radial-gradient(circle at 18% 30%, rgba(0,235,255,.11), transparent 28%),
    linear-gradient(135deg, var(--navy-950), var(--navy-850));
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(48px, 7vw, 100px);
  align-items: start;
}

.about-layout h2 {
  margin-bottom: 0;
  color: var(--white);
}

.about-layout__text {
  padding-top: 2.18rem;
}

.about-layout__text p {
  color: rgba(255,255,255,.72);
}

.about-layout__text p:last-child {
  margin-bottom: 0;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(300px, .7fr) minmax(0, 1.3fr);
  gap: clamp(52px, 8vw, 110px);
  align-items: start;
}

.faq-layout .section-heading {
  position: sticky;
  top: 36px;
}

.faq-expand-all {
  display: inline-grid;
  place-items: center;
  text-align: center;
  vertical-align: middle;
  height: 44px;
  min-height: 44px;
  margin-top: 28px;
  padding: 0 18px !important;
  border: 1px solid rgba(33,41,155,.2);
  border-radius: var(--radius);
  background: transparent;
  color: var(--brand-indigo);
  cursor: pointer;
  font-size: .86rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}


.faq-layout .section-heading > .faq-expand-all {
  padding-inline: 18px !important;
  text-align: center !important;
}

.faq-expand-all:hover {
  background: rgba(33,41,155,.06);
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion__item {
  border-bottom: 1px solid var(--line);
}

.accordion__item h3 {
  margin: 0;
}

.accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 25px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
}

.accordion__icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

.accordion__icon::before,
.accordion__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: var(--brand-indigo);
  transform: translate(-50%, -50%);
  transition: transform .22s ease, opacity .22s ease;
}

.accordion__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion__item.is-open .accordion__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0);
}

.accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .32s ease;
}

.accordion__item.is-open .accordion__panel {
  grid-template-rows: 1fr;
}

.accordion__content {
  min-height: 0;
  overflow: hidden;
}

.accordion__content p {
  margin: -3px 44px 26px 0;
  color: var(--muted);
}

.final-cta {
  color: var(--white);
  background: linear-gradient(125deg, var(--brand-indigo), #11184f 76%);
}

.final-cta__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.final-cta__content > div {
  max-width: 760px;
}

.final-cta h2 {
  margin-bottom: 16px;
}

.final-cta p:last-child {
  margin-bottom: 0;
  color: rgba(255,255,255,.7);
}

.final-cta__content > div > .final-cta__button {
  margin-top: 28px;
  padding: 0 22px !important;
  text-align: center !important;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.footer {
  padding: 28px 0;
  color: rgba(255,255,255,.64);
  background: var(--navy-950);
  font-size: .78rem;
}

.footer__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer p {
  margin: 0;
}

.footer a {
  color: var(--white);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.mobile-sticky-cta {
  display: none;
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal-enabled .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .78s ease, transform .78s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-enabled .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.split-section > .section-heading,
.faq-layout > .section-heading,
.about-layout > div:first-child,
.about-layout__text {
  justify-self: start;
  align-self: start;
  width: 100%;
  margin-inline-start: 0 !important;
  padding-inline-start: 0 !important;
}

@media (max-width: 1050px) {
  .hero__layout {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 470px);
    gap: 48px;
  }

  .cards--three,
  .process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process::before {
    display: none;
  }

  .split-section,
  .about-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .objection-layout {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 470px);
    gap: 48px;
  }

  .faq-layout .section-heading {
    position: static;
  }

  .objection-options {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 44px), var(--container));
  }

  .hero__layout {
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
    min-height: auto;
    padding-top: 34px;
    padding-bottom: 58px;
  }

  .objection-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .objection-options {
    margin-top: 0;
  }

  .brand {
    margin-bottom: 46px;
  }

  .hero__content {
    max-width: 720px;
    height: auto;
    gap: 28px;
  }


  .about-layout__text {
    padding-top: 0;
  }

  .form-card {
    width: 100%;
    max-width: 620px;
    margin-inline: auto;
  }

  .criteria-grid {
    grid-template-columns: 1fr 1fr;
  }


  .final-cta__content {
    align-items: flex-start;
    flex-direction: column;
  }

  .final-cta__button {
    display: none;
  }

  .footer__content {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15px;
  }

  .container {
    width: min(calc(100% - 40px), var(--container));
  }

  .section {
    padding: 76px 0;
  }

  .hero__layout {
    padding-bottom: 48px;
  }

  .brand img {
    width: 184px;
  }


  h1 {
    font-size: clamp(2.12rem, 10vw, 2.85rem);
  }

  .hero .eyebrow {
    font-size: .9rem;
  }

  .hero__lead {
    font-size: 1rem;
  }

  .form-card {
    padding: 24px 20px;
  }

  .form-card__heading p {
    margin-bottom: 20px;
  }

  .wf-row {
    margin-bottom: 18px;
  }

  .wf-field-input,
  .wf-field-dropdown,
  .area-picker-toggle {
    min-height: 48px;
  }

  .form-step-actions .wf-btn {
    width: calc(50% - 6px);
    padding-inline: 10px;
  }

  .cards--three,
  .process,
  .criteria-grid,
  .objection-options {
    grid-template-columns: 1fr;
  }

  .process::before {
    display: block;
    top: 25px;
    right: auto;
    bottom: 22px;
    left: 24px;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, transparent, var(--line) 10%, var(--line) 90%, transparent);
  }

  .process__item {
    padding: 0 0 0 72px;
    min-height: 72px;
  }

  .process__number {
    z-index: 1;
    width: 50px;
    height: 50px;
  }

  .accordion__trigger {
    padding: 22px 0;
  }

  .accordion__content p {
    margin-right: 0;
  }

  .mobile-sticky-cta {
    position: fixed;
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    left: 14px;
    z-index: 8000;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: var(--radius);
    background: var(--cyan);
    color: var(--navy-950);
    box-shadow: 0 18px 50px rgba(3,8,55,.3);
    text-decoration: none;
    font-weight: 800;
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
    transition: opacity .22s ease, transform .22s ease;
  }

  .mobile-sticky-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .area-picker-options {
    position: fixed;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10000;
    display: flex;
    max-height: min(82vh, 720px);
    flex-direction: column;
    overflow: hidden;
    border-radius: 20px !important;
    clip-path: inset(0 round 20px);
    transform: translateY(105%);
    opacity: 0;
    visibility: hidden;
    transition: transform .24s ease, opacity .18s ease, visibility .24s;
  }

  .area-picker[open] .area-picker-options {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .area-picker-backdrop {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: block;
    background: rgba(6,8,43,.64);
    backdrop-filter: blur(2px);
  }

  .area-picker-sheet-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 68px;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    background: linear-gradient(180deg, #1a214a, #141937);
    color: var(--white);
  }

  .area-picker-sheet-close {
    position: relative;
    display: grid;
    width: 40px;
    height: 40px;
    padding: 0;
    place-items: center;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    background: rgba(255,255,255,.06);
    color: transparent;
    cursor: pointer;
    font-size: 0;
    line-height: 0;
  }

  .area-picker-sheet-close::before {
    content: "×";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: var(--white);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 2rem;
    line-height: 1;
    transform: translateY(-1px);
  }

  .area-picker-sheet-list {
    flex: 1;
    max-height: none;
    overflow-y: auto;
  }

  .area-option {
    min-height: 44px;
    padding: 8px 18px;
    font-size: 1rem;
  }

  .area-picker-sheet-footer {
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
    border-radius: 0 0 20px 20px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
