:root {
  --navy-950: #031229;
  --navy-900: #061b3b;
  --navy-850: #082451;
  --blue-700: #073d9f;
  --blue-600: #075bd8;
  --blue-500: #1275ed;
  --cyan-400: #38d7ff;
  --yellow-400: #ffd51e;
  --yellow-500: #f3c700;
  --white: #ffffff;
  --ice-50: #f7fbff;
  --ice-100: #eef6ff;
  --ice-200: #d9e9f8;
  --slate-500: #60708a;
  --slate-700: #34445d;
  --slate-900: #10203a;
  --success: #15c47e;
  --border: rgba(9, 52, 113, .13);
  --shadow-sm: 0 14px 35px rgba(13, 47, 92, .09);
  --shadow-lg: 0 28px 80px rgba(1, 20, 50, .24);
  --display: "Sora", "Manrope", sans-serif;
  --body: "Manrope", Arial, sans-serif;
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--slate-900);
  background: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.dialog-open {
  overflow: hidden;
}

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

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

button {
  border: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

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

svg {
  display: block;
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  line-height: 1.08;
  letter-spacing: -.035em;
}

p {
  color: var(--slate-500);
}

:focus-visible {
  outline: 3px solid var(--cyan-400);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 84px;
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.site-header.is-scrolled {
  background: rgba(3, 18, 41, .92);
  border-color: rgba(255, 255, 255, .08);
  box-shadow: 0 12px 38px rgba(0, 12, 34, .16);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 208px;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, .6);
  border-radius: 17px;
  box-shadow: 0 9px 24px rgba(0, 19, 61, .22);
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  color: var(--white);
  font: 800 19px/1 var(--display);
  letter-spacing: -.04em;
}

.brand-copy small {
  margin-top: 6px;
  color: rgba(255, 255, 255, .66);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  color: rgba(255, 255, 255, .73);
  font-size: 13px;
  font-weight: 700;
  transition: color .2s ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--yellow-400);
  border-radius: 4px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.desktop-nav a:hover {
  color: var(--white);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  color: var(--navy-950);
  background: none;
  border-radius: 12px;
  box-shadow: none;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
  cursor: pointer;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.button::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, .42) 47%, transparent 73%);
  transform: translateX(-120%);
  transition: transform .55s ease;
}

.button:hover::before {
  transform: translateX(120%);
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 18px;
  height: 18px;
  margin-left: 10px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button--primary {
  color: var(--navy-950);
  background: var(--yellow-400);
  box-shadow: 0 12px 28px rgba(255, 213, 30, .22);
}

.button--primary:hover {
  background: #ffe04a;
  box-shadow: 0 16px 36px rgba(255, 213, 30, .31);
}

.button--secondary {
  color: var(--blue-700);
  background: var(--ice-100);
  border: 1px solid rgba(7, 61, 159, .1);
}

.button--secondary:hover {
  color: var(--white);
  background: var(--blue-700);
  box-shadow: 0 14px 34px rgba(7, 61, 159, .18);
}

.button--compact {
  min-height: 46px;
  padding: 11px 18px;
  font-size: 12px;
}

.button--compact svg {
  width: 17px;
  margin: 0 9px 0 0;
  fill: currentColor;
  stroke: none;
}

.button--large {
  min-height: 60px;
  padding: 17px 26px;
  font-size: 15px;
}

.button--full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 158px 0 46px;
  color: var(--white);
  background:
    linear-gradient(112deg, rgba(3, 18, 41, .98) 0%, rgba(5, 36, 84, .97) 55%, rgba(7, 61, 159, .94) 100%),
    radial-gradient(circle at 20% 20%, #0c6af4, transparent 42%);
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  opacity: .12;
  background-image: radial-gradient(rgba(255, 255, 255, .8) .75px, transparent .75px);
  background-size: 22px 22px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: -100px;
  bottom: -300px;
  width: 760px;
  height: 760px;
  content: "";
  border: 1px solid rgba(65, 213, 255, .24);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(65, 213, 255, .035), 0 0 0 180px rgba(65, 213, 255, .025);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-glow--one {
  top: 4%;
  left: 34%;
  width: 240px;
  height: 240px;
  background: rgba(17, 117, 237, .44);
}

.hero-glow--two {
  right: 4%;
  bottom: 15%;
  width: 260px;
  height: 260px;
  background: rgba(54, 217, 255, .19);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, .82fr);
  align-items: center;
  gap: clamp(46px, 7vw, 100px);
}

.hero-copy {
  padding-bottom: 18px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  color: var(--blue-600);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow {
  color: rgba(255, 255, 255, .86);
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  margin-right: 10px;
  background: var(--yellow-400);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 213, 30, .13);
}

.hero h1 {
  max-width: 720px;
  margin: 24px 0 24px;
  color: var(--white);
  font-size: clamp(3rem, 5.2vw, 5.1rem);
  letter-spacing: -.065em;
}

.hero h1 span {
  display: block;
  color: var(--yellow-400);
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, .72);
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.text-link svg {
  width: 17px;
  fill: none;
  stroke: var(--cyan-400);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform .2s ease;
}

.text-link:hover svg {
  transform: translateY(3px);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 22px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, .68);
  font-size: 11px;
  font-weight: 700;
}

.hero-trust svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--cyan-400);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.hero-visual {
  position: relative;
  max-width: 490px;
  margin-left: auto;
}

.hero-photo-wrap {
  position: relative;
  aspect-ratio: .78;
  padding: 10px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .32), rgba(255, 255, 255, .04));
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 56%;
  border-radius: 22px;
}

.hero-photo-shade {
  position: absolute;
  inset: 10px;
  background: linear-gradient(to bottom, rgba(2, 12, 31, .08) 40%, rgba(2, 12, 31, .76) 100%);
  border-radius: 22px;
  pointer-events: none;
}

.hero-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  top: 28px;
  left: 28px;
  padding: 10px 13px;
  color: var(--white);
  background: rgba(3, 18, 41, .68);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .03em;
}

.status-dot {
  width: 7px;
  height: 7px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(21, 196, 126, .14);
}

.hero-card {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 17px;
  color: var(--white);
  background: rgba(3, 18, 41, .78);
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 17px;
  backdrop-filter: blur(16px);
}

.hero-card-icon {
  display: grid;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--navy-950);
  background: var(--yellow-400);
  border-radius: 10px;
}

.hero-card-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero-card strong {
  display: block;
  font-family: var(--display);
  font-size: 13px;
  line-height: 1.35;
}

.hero-card small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, .62);
  font-size: 10px;
  line-height: 1.55;
}

.visual-tag {
  position: absolute;
  z-index: -1;
  padding: 7px 12px;
  color: var(--navy-950);
  background: var(--cyan-400);
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .18);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.visual-tag--left {
  bottom: 25%;
  left: -35px;
  transform: rotate(-8deg);
}

.visual-tag--right {
  top: 19%;
  right: -28px;
  color: var(--navy-950);
  background: var(--yellow-400);
  transform: rotate(7deg);
}

.hero-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 56px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .045);
  border-radius: 18px;
  backdrop-filter: blur(9px);
}

.hero-step {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 78px;
  padding: 16px 24px;
}

.hero-step + .hero-step {
  border-left: 1px solid rgba(255, 255, 255, .09);
}

.hero-step > span {
  color: var(--yellow-400);
  font: 800 11px/1 var(--display);
  letter-spacing: .08em;
}

.hero-step p {
  margin: 0;
  color: rgba(255, 255, 255, .53);
  font-size: 10px;
  line-height: 1.45;
}

.hero-step strong {
  display: block;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, .9);
  font-size: 12px;
}

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

.section-heading--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2,
.decision-copy h2,
.faq-intro h2,
.trust-intro h2 {
  margin: 16px 0 20px;
  color: var(--navy-950);
  font-size: clamp(2.25rem, 4vw, 3.8rem);
}

.section-heading h2 span,
.decision-copy h2 span,
.faq-intro h2 span {
  color: var(--blue-600);
}

.section-heading p,
.decision-copy > p,
.faq-intro > p {
  max-width: 640px;
  margin-bottom: 0;
  font-size: 16px;
}

.section-heading--center p {
  margin-right: auto;
  margin-left: auto;
}

.pain-section {
  position: relative;
  background: var(--ice-50);
}

.pain-section::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1180px, calc(100% - 40px));
  height: 1px;
  content: "";
  background: linear-gradient(to right, transparent, var(--ice-200), transparent);
  transform: translateX(-50%);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pain-card {
  min-height: 245px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.pain-card:hover {
  border-color: rgba(7, 91, 216, .28);
  box-shadow: 0 20px 50px rgba(13, 47, 92, .13);
  transform: translateY(-5px);
}

.pain-icon,
.service-icon,
.process-icon,
.trust-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--blue-600);
  background: var(--ice-100);
  border-radius: 14px;
}

.pain-icon svg,
.service-icon svg,
.process-icon svg,
.trust-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.pain-card h3 {
  margin: 23px 0 10px;
  color: var(--navy-950);
  font-size: 18px;
}

.pain-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
}

.pain-card--action {
  display: flex;
  flex-direction: column;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(56, 215, 255, .28), transparent 35%),
    var(--blue-700);
  border-color: transparent;
  box-shadow: 0 20px 52px rgba(7, 61, 159, .18);
}

.pain-card--action:hover {
  border-color: transparent;
}

.pain-card--action h3 {
  margin: 13px 0 10px;
  color: var(--white);
  font-size: 23px;
}

.pain-card--action p {
  color: rgba(255, 255, 255, .68);
}

.pain-card-label,
.service-card-kicker {
  color: var(--cyan-400);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.inline-button {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  margin-top: auto;
  padding: 12px 0 1px;
  color: var(--yellow-400);
  background: transparent;
  border-bottom: 1px solid rgba(255, 213, 30, .35);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.inline-button svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform .2s ease;
}

.inline-button:hover svg {
  transform: translateX(4px);
}

.decision-section {
  position: relative;
  background:
    radial-gradient(circle at 85% 18%, rgba(56, 215, 255, .13), transparent 23%),
    linear-gradient(135deg, var(--white) 0%, #f5f9ff 56%, #edf6ff 100%);
  overflow: hidden;
}

.decision-section::before {
  position: absolute;
  top: 40px;
  right: 0;
  width: 33%;
  height: 70%;
  content: "";
  background-image: radial-gradient(rgba(7, 91, 216, .13) 1px, transparent 1px);
  background-size: 18px 18px;
  -webkit-mask-image: linear-gradient(to left, #000, transparent);
  mask-image: linear-gradient(to left, #000, transparent);
  pointer-events: none;
}

.decision-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(430px, .86fr);
  align-items: center;
  gap: clamp(56px, 7vw, 96px);
}

.decision-copy {
  max-width: 620px;
}

.decision-copy .button {
  margin-top: 30px;
  color: var(--white);
  background: var(--navy-900);
  border-color: var(--navy-900);
  box-shadow: 0 14px 30px rgba(2, 26, 63, .16);
}

.decision-copy .button:hover {
  color: var(--white);
  background: var(--blue-700);
  border-color: var(--blue-700);
  box-shadow: 0 17px 34px rgba(7, 91, 216, .22);
}

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

.check-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 530px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(7, 91, 216, .08);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(2, 26, 63, .035);
}

.check-list li > span {
  display: grid;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--navy-950);
  background: var(--yellow-400);
  border-radius: 10px;
}

.check-list svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.check-list strong,
.check-list small {
  display: block;
}

.check-list strong {
  color: var(--navy-950);
  font-size: 13px;
}

.check-list small {
  margin-top: 2px;
  color: var(--slate-500);
  font-size: 11px;
}

.decision-visual {
  position: relative;
  display: grid;
  min-height: 570px;
  place-items: center;
}

.decision-visual::before {
  position: absolute;
  width: 470px;
  height: 470px;
  content: "";
  border: 1px solid rgba(7, 91, 216, .13);
  border-radius: 50%;
  box-shadow:
    0 0 0 42px rgba(7, 91, 216, .035),
    0 0 0 86px rgba(56, 215, 255, .025);
}

.decision-visual::after {
  position: absolute;
  top: 30px;
  right: 12px;
  width: 74px;
  height: 74px;
  content: "";
  background: var(--yellow-400);
  border-radius: 22px;
  box-shadow: 0 14px 38px rgba(255, 214, 16, .2);
  transform: rotate(12deg);
}

.diagnostic-card {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  padding: 30px;
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0, rgba(56, 215, 255, .18), transparent 36%),
    linear-gradient(145deg, #071b36, var(--navy-950));
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 30px;
  box-shadow:
    0 35px 80px rgba(2, 26, 63, .26),
    0 8px 24px rgba(2, 26, 63, .14);
}

.diagnostic-card::before {
  position: absolute;
  inset: 0;
  content: "";
  border: 1px solid rgba(56, 215, 255, .08);
  border-radius: inherit;
  pointer-events: none;
  transform: translate(11px, 11px);
}

.diagnostic-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.diagnostic-brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

.diagnostic-brand-mark {
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--navy-950);
  background: var(--yellow-400);
  border-radius: 12px;
  font: 900 15px/1 var(--display);
}

.diagnostic-brand > span:last-child,
.diagnostic-brand strong,
.diagnostic-brand small {
  display: block;
}

.diagnostic-brand strong {
  font: 800 12px/1.1 var(--display);
  letter-spacing: .08em;
}

.diagnostic-brand small {
  margin-top: 5px;
  color: rgba(255, 255, 255, .52);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .04em;
}

.diagnostic-status {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  color: rgba(255, 255, 255, .75);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
}

.diagnostic-status i {
  width: 7px;
  height: 7px;
  background: var(--cyan-400);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(56, 215, 255, .1);
}

.diagnostic-intro {
  margin: 22px 0 16px;
  padding: 23px;
  background:
    linear-gradient(125deg, rgba(7, 91, 216, .34), rgba(7, 91, 216, .08)),
    rgba(255, 255, 255, .035);
  border: 1px solid rgba(56, 215, 255, .13);
  border-radius: 20px;
}

.diagnostic-intro > span {
  display: inline-flex;
  padding: 6px 9px;
  color: var(--navy-950);
  background: var(--yellow-400);
  border-radius: 7px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.diagnostic-intro h3 {
  max-width: 390px;
  margin: 17px 0 10px;
  color: var(--white);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  line-height: 1.12;
  letter-spacing: -.025em;
}

.diagnostic-intro p {
  max-width: 390px;
  margin: 0;
  color: rgba(255, 255, 255, .62);
  font-size: 11px;
  line-height: 1.6;
}

.diagnostic-flow {
  display: grid;
  gap: 8px;
}

.diagnostic-step {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 14px;
}

.diagnostic-step-number {
  color: var(--cyan-400);
  font: 800 11px/1 var(--display);
  letter-spacing: .04em;
}

.diagnostic-step small,
.diagnostic-step strong {
  display: block;
}

.diagnostic-step small {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, .43);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.diagnostic-step strong {
  color: rgba(255, 255, 255, .9);
  font-size: 11px;
}

.diagnostic-step > svg {
  width: 19px;
  height: 19px;
  padding: 4px;
  fill: none;
  stroke: var(--navy-950);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.7;
  background: var(--yellow-400);
  border-radius: 6px;
}

.diagnostic-assurance {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 13px 15px;
  color: rgba(255, 255, 255, .7);
  background: rgba(56, 215, 255, .07);
  border: 1px solid rgba(56, 215, 255, .12);
  border-radius: 14px;
}

.diagnostic-assurance-icon {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--cyan-400);
  background: rgba(56, 215, 255, .1);
  border-radius: 10px;
}

.diagnostic-assurance-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.diagnostic-assurance > span:last-child,
.diagnostic-assurance small,
.diagnostic-assurance strong {
  display: block;
}

.diagnostic-assurance small {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, .43);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.diagnostic-assurance strong {
  color: rgba(255, 255, 255, .9);
  font-size: 11px;
}

.services-section {
  position: relative;
  color: var(--white);
  background: var(--navy-950);
  overflow: hidden;
}

.services-section::before {
  position: absolute;
  top: -300px;
  left: -200px;
  width: 650px;
  height: 650px;
  content: "";
  background: radial-gradient(circle, rgba(7, 91, 216, .24), transparent 68%);
}

.services-section .section-heading h2 {
  color: var(--white);
}

.services-section .section-heading h2 span,
.trust-intro h2 span {
  color: var(--yellow-400);
}

.services-section .section-heading p {
  color: rgba(255, 255, 255, .58);
}

.section-kicker--light {
  color: var(--cyan-400);
}

.service-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 24px;
}

.service-card {
  position: relative;
  min-height: 280px;
  padding: 30px;
  background: var(--navy-900);
  overflow: hidden;
  transition: background .25s ease;
}

.service-card:hover {
  background: var(--navy-850);
}

.service-number {
  position: absolute;
  top: 25px;
  right: 25px;
  color: rgba(255, 255, 255, .12);
  font: 800 34px/1 var(--display);
}

.service-icon {
  color: var(--cyan-400);
  background: rgba(56, 215, 255, .09);
  border: 1px solid rgba(56, 215, 255, .12);
}

.service-card h3 {
  margin: 44px 0 12px;
  color: var(--white);
  font-size: 20px;
}

.service-card p {
  max-width: 300px;
  margin: 0;
  color: rgba(255, 255, 255, .53);
  font-size: 13px;
}

.service-card--cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background:
    radial-gradient(circle at 100% 0, rgba(56, 215, 255, .26), transparent 42%),
    var(--blue-700);
}

.service-card--cta:hover {
  background:
    radial-gradient(circle at 100% 0, rgba(56, 215, 255, .34), transparent 44%),
    var(--blue-700);
}

.service-card--cta h3 {
  max-width: 260px;
  margin: 20px 0 12px;
  font-size: 25px;
}

.service-card--cta p {
  color: rgba(255, 255, 255, .68);
}

.service-card--cta .button {
  margin-top: auto;
}

.process-section {
  background: var(--ice-50);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 62px 0 0;
  padding: 0;
  list-style: none;
}

.process-item {
  position: relative;
  padding: 0 28px 0 0;
}

.process-index {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--blue-700);
  background: var(--yellow-400);
  border-radius: 11px;
  box-shadow: 0 7px 18px rgba(255, 213, 30, .22);
  font: 800 12px/1 var(--display);
}

.process-line {
  position: absolute;
  top: 18px;
  left: 50px;
  width: calc(100% - 62px);
  height: 1px;
  background: repeating-linear-gradient(to right, var(--ice-200) 0 7px, transparent 7px 13px);
}

.process-content {
  margin-top: 28px;
}

.process-icon {
  width: 46px;
  height: 46px;
}

.process-content h3 {
  margin: 20px 0 10px;
  color: var(--navy-950);
  font-size: 17px;
}

.process-content p {
  margin: 0;
  font-size: 12px;
}

.trust-section {
  position: relative;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(4, 27, 61, .96), rgba(7, 61, 159, .94)),
    var(--navy-900);
  overflow: hidden;
}

.trust-section::after {
  position: absolute;
  right: -180px;
  bottom: -180px;
  width: 500px;
  height: 500px;
  content: "";
  border: 90px solid rgba(56, 215, 255, .04);
  border-radius: 50%;
}

.trust-wrap {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: start;
  gap: 80px;
}

.trust-intro {
  position: sticky;
  top: 130px;
}

.trust-intro h2 {
  color: var(--white);
  font-size: clamp(2.1rem, 3.6vw, 3.4rem);
}

.trust-intro p {
  color: rgba(255, 255, 255, .62);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.trust-card {
  min-height: 220px;
  padding: 28px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 20px;
  backdrop-filter: blur(8px);
}

.trust-card:nth-child(2),
.trust-card:nth-child(4) {
  transform: translateY(26px);
}

.trust-icon {
  color: var(--navy-950);
  background: var(--yellow-400);
}

.trust-card h3 {
  margin: 25px 0 10px;
  color: var(--white);
  font-size: 17px;
}

.trust-card p {
  margin: 0;
  color: rgba(255, 255, 255, .55);
  font-size: 12px;
}

.faq-section {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  align-items: start;
  gap: clamp(60px, 9vw, 120px);
}

.faq-intro {
  position: sticky;
  top: 130px;
}

.faq-intro .button {
  margin-top: 28px;
}

.faq-list {
  border-top: 1px solid var(--ice-200);
}

.faq-list details {
  border-bottom: 1px solid var(--ice-200);
}

.faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  padding: 20px 52px 20px 0;
  color: var(--navy-950);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 18px;
  height: 2px;
  content: "";
  background: var(--blue-600);
  border-radius: 2px;
  transition: transform .2s ease;
}

.faq-list summary span::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: rotate(0);
}

.faq-answer {
  padding: 0 60px 24px 0;
}

.faq-answer p {
  margin: 0;
  font-size: 13px;
}

.final-cta {
  position: relative;
  padding: 106px 0;
  color: var(--white);
  background: var(--blue-700);
  overflow: hidden;
}

.final-cta::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .15;
  background-image: radial-gradient(rgba(255, 255, 255, .8) .75px, transparent .75px);
  background-size: 22px 22px;
  mask-image: radial-gradient(circle at center, black, transparent 75%);
}

.final-ring {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
}

.final-ring--one {
  top: -220px;
  left: -170px;
  width: 500px;
  height: 500px;
}

.final-ring--two {
  right: -260px;
  bottom: -260px;
  width: 650px;
  height: 650px;
  box-shadow: 0 0 0 80px rgba(255, 255, 255, .025), 0 0 0 160px rgba(255, 255, 255, .02);
}

.final-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 830px;
  text-align: center;
}

.final-content > img {
  width: 84px;
  height: 84px;
  margin-bottom: 24px;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, .72);
  border-radius: 23px;
  box-shadow: 0 18px 50px rgba(0, 16, 52, .23);
}

.final-content h2 {
  margin: 18px 0 20px;
  color: var(--white);
  font-size: clamp(2.35rem, 4.7vw, 4.35rem);
}

.final-content h2 span {
  display: block;
  color: var(--yellow-400);
}

.final-content p {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, .7);
}

.final-content > small {
  margin-top: 16px;
  color: rgba(255, 255, 255, .52);
  font-size: 10px;
}

.site-footer {
  padding: 64px 0 20px;
  color: var(--white);
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .7fr .8fr;
  gap: 70px;
  padding-bottom: 50px;
}

.footer-brand .brand {
  margin-bottom: 20px;
}

.footer-brand p,
.footer-action p {
  max-width: 370px;
  margin: 0;
  color: rgba(255, 255, 255, .48);
  font-size: 12px;
}

.footer-links,
.footer-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-links strong,
.footer-action strong {
  margin-bottom: 6px;
  color: var(--white);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(255, 255, 255, .53);
  font-size: 12px;
  transition: color .2s ease;
}

.footer-links a:hover {
  color: var(--yellow-400);
}

.inline-button--light {
  margin-top: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  color: rgba(255, 255, 255, .35);
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: 10px;
}

.mobile-contact {
  display: none;
}

.lead-dialog {
  width: min(620px, calc(100% - 28px));
  max-height: calc(100vh - 28px);
  padding: 0;
  color: var(--slate-900);
  background: transparent;
  border: 0;
  border-radius: 24px;
  box-shadow: 0 30px 90px rgba(0, 12, 34, .36);
  overflow: visible;
}

.lead-dialog::backdrop {
  background: rgba(3, 18, 41, .78);
  backdrop-filter: blur(7px);
}

.dialog-shell {
  position: relative;
  max-height: calc(100vh - 28px);
  padding: 30px;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 24px;
  overflow-y: auto;
}

.dialog-close {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--slate-700);
  background: var(--ice-100);
  border-radius: 10px;
  cursor: pointer;
}

.dialog-close svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}

.dialog-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-right: 42px;
}

.dialog-brand img {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 16px;
}

.dialog-brand span {
  display: grid;
}

.dialog-brand small {
  color: var(--blue-600);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
}

.dialog-brand strong {
  margin-top: 4px;
  font: 700 13px/1.35 var(--display);
}

.dialog-progress {
  height: 4px;
  margin: 22px 0 26px;
  background: var(--ice-100);
  border-radius: 999px;
  overflow: hidden;
}

.dialog-progress span {
  display: block;
  width: 33%;
  height: 100%;
  background: var(--yellow-400);
  border-radius: inherit;
}

.dialog-copy h2 {
  margin: 10px 0 8px;
  color: var(--navy-950);
  font-size: 27px;
}

.dialog-copy p {
  margin-bottom: 22px;
  font-size: 12px;
}

.lead-form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: flex;
  flex-direction: column;
}

.field label {
  margin-bottom: 7px;
  color: var(--slate-700);
  font-size: 11px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  color: var(--navy-950);
  background: var(--ice-50);
  border: 1px solid var(--ice-200);
  border-radius: 11px;
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.field input,
.field select {
  height: 48px;
  padding: 0 14px;
}

.field textarea {
  min-height: 100px;
  padding: 12px 14px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #8795a9;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  background: var(--white);
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(18, 117, 237, .1);
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #e74d5b;
}

.field-error {
  min-height: 16px;
  padding-top: 4px;
  color: #c93646;
  font-size: 9px;
}

.form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: -2px 0 0;
  color: var(--slate-500);
  font-size: 9px;
  text-align: center;
}

.form-note svg {
  width: 14px;
  fill: none;
  stroke: var(--blue-600);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.form-status {
  display: none;
  margin: 0;
  padding: 10px 12px;
  color: var(--slate-700);
  background: var(--ice-100);
  border-radius: 9px;
  font-size: 10px;
  text-align: center;
}

.form-status.is-visible {
  display: block;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s cubic-bezier(.2, .7, .2, 1);
}

.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }

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

@media (max-width: 1080px) {
  .hero {
    padding-top: 140px;
  }

  .hero-grid {
    grid-template-columns: 1fr minmax(370px, .8fr);
    gap: 44px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 5vw, 4.25rem);
  }

  .desktop-nav {
    gap: 22px;
  }

  .pain-card {
    padding: 25px;
  }

  .trust-wrap {
    gap: 55px;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 88px 0;
  }

  .site-header {
    height: 76px;
  }

  .desktop-nav {
    display: none;
  }

  .brand img {
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }

  .hero {
    padding: 126px 0 42px;
  }

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

  .hero-copy {
    max-width: 700px;
  }

  .hero-visual {
    width: min(520px, 86%);
    margin: 0 auto;
  }

  .hero-steps {
    margin-top: 46px;
  }

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

  .decision-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .decision-copy {
    max-width: 700px;
  }

  .decision-visual {
    width: min(620px, 100%);
    margin: 0 auto;
  }

  .service-showcase {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .process-item:nth-child(2) .process-line {
    display: none;
  }

  .trust-wrap {
    grid-template-columns: 1fr;
  }

  .trust-intro,
  .faq-intro {
    position: static;
    max-width: 690px;
  }

  .trust-intro {
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1.3fr .7fr;
  }

  .footer-action {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100% - 28px, 1180px);
  }

  body {
    padding-bottom: 74px;
  }

  .section {
    padding: 74px 0;
  }

  .site-header {
    height: 70px;
  }

  .header-inner {
    gap: 14px;
  }

  .header-inner > .button {
    display: none;
  }

  .brand {
    min-width: auto;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand-copy strong {
    font-size: 17px;
  }

  .brand-copy small {
    font-size: 8px;
  }

  .hero {
    min-height: 0;
    padding: 112px 0 34px;
  }

  .hero::after {
    right: -330px;
    bottom: 0;
  }

  .hero-grid {
    gap: 42px;
  }

  .eyebrow {
    font-size: 9px;
  }

  .hero h1 {
    margin: 19px 0 20px;
    font-size: clamp(2.5rem, 12.2vw, 3.55rem);
    line-height: 1.02;
  }

  .hero-lead {
    margin-bottom: 26px;
    font-size: 15px;
    line-height: 1.65;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 17px;
  }

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

  .text-link {
    align-self: center;
  }

  .hero-trust {
    display: grid;
    gap: 9px;
    margin-top: 24px;
  }

  .hero-visual {
    width: calc(100% - 10px);
  }

  .hero-photo-wrap {
    border-radius: 24px;
  }

  .hero-photo,
  .hero-photo-shade {
    border-radius: 17px;
  }

  .hero-card {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .hero-badge {
    top: 21px;
    left: 21px;
  }

  .visual-tag--left {
    left: -8px;
  }

  .visual-tag--right {
    right: -8px;
  }

  .hero-steps {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }

  .hero-step {
    min-height: 70px;
    padding: 14px 18px;
  }

  .hero-step + .hero-step {
    border-top: 1px solid rgba(255, 255, 255, .09);
    border-left: 0;
  }

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

  .section-heading h2,
  .decision-copy h2,
  .faq-intro h2,
  .trust-intro h2 {
    font-size: clamp(2rem, 9.5vw, 2.75rem);
  }

  .section-heading p,
  .decision-copy > p,
  .faq-intro > p {
    font-size: 14px;
  }

  .pain-grid,
  .service-showcase,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .pain-card {
    min-height: 220px;
  }

  .decision-grid,
  .faq-grid {
    gap: 48px;
  }

  .decision-visual {
    width: 100%;
    min-height: auto;
    padding: 20px 0 10px;
  }

  .decision-visual::before {
    width: 310px;
    height: 310px;
    box-shadow:
      0 0 0 25px rgba(7, 91, 216, .035),
      0 0 0 50px rgba(56, 215, 255, .025);
  }

  .decision-visual::after {
    top: 0;
    right: 2px;
    width: 48px;
    height: 48px;
    border-radius: 15px;
  }

  .diagnostic-card {
    width: calc(100% - 8px);
    padding: 20px;
    border-radius: 23px;
  }

  .diagnostic-card::before {
    transform: translate(6px, 7px);
  }

  .diagnostic-head {
    gap: 10px;
  }

  .diagnostic-status {
    padding: 7px 8px;
    font-size: 8px;
  }

  .diagnostic-intro {
    padding: 19px;
  }

  .diagnostic-step {
    grid-template-columns: 28px minmax(0, 1fr) 22px;
    gap: 9px;
    padding: 11px;
  }

  .check-list small {
    font-size: 11px;
  }

  .service-card {
    min-height: 260px;
  }

  .process-list {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .process-item {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 18px;
    padding: 0;
  }

  .process-line {
    top: 48px;
    bottom: -24px;
    left: 18px;
    width: 1px;
    height: auto;
    background: repeating-linear-gradient(to bottom, var(--ice-200) 0 7px, transparent 7px 13px);
  }

  .process-item:nth-child(2) .process-line {
    display: block;
  }

  .process-item:last-child .process-line {
    display: none;
  }

  .process-content {
    margin-top: 0;
  }

  .process-icon {
    width: 42px;
    height: 42px;
  }

  .process-content h3 {
    margin-top: 16px;
  }

  .trust-wrap {
    gap: 40px;
  }

  .trust-card,
  .trust-card:nth-child(2),
  .trust-card:nth-child(4) {
    min-height: 190px;
    transform: none;
  }

  .faq-list summary {
    min-height: 78px;
    padding-right: 44px;
    font-size: 14px;
  }

  .faq-answer {
    padding-right: 38px;
  }

  .final-cta {
    padding: 82px 0;
  }

  .final-content h2 {
    font-size: clamp(2.2rem, 10.5vw, 3.1rem);
  }

  .final-content p {
    font-size: 14px;
  }

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

  .footer-action {
    grid-column: auto;
  }

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

  .mobile-contact {
    position: fixed;
    z-index: 90;
    right: 12px;
    bottom: 10px;
    left: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    color: var(--navy-950);
    background: var(--yellow-400);
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 14px;
    box-shadow: 0 18px 45px rgba(3, 18, 41, .28);
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(120%);
    transition: opacity .22s ease, transform .22s ease;
  }

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

  .mobile-contact svg {
    width: 19px;
    margin-right: 9px;
    fill: currentColor;
  }

  .lead-dialog {
    width: calc(100% - 16px);
    max-height: calc(100vh - 16px);
  }

  .dialog-shell {
    max-height: calc(100vh - 16px);
    padding: 22px 18px;
    border-radius: 19px;
  }

  .dialog-close {
    top: 14px;
    right: 14px;
  }

  .dialog-brand img {
    width: 54px;
    height: 54px;
    border-radius: 14px;
  }

  .dialog-brand strong {
    max-width: 210px;
    font-size: 11px;
  }

  .dialog-copy h2 {
    font-size: 23px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

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

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

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