:root {
  color-scheme: light;
  --ink: #07142f;
  --muted: #5c6b86;
  --line: rgba(38, 104, 206, 0.15);
  --paper: #f7fbff;
  --panel: #ffffff;
  --soft: #edf5ff;
  --blue: #006dff;
  --blue-bright: #22a4ff;
  --cyan: #69e2ff;
  --violet: #7667ff;
  --charcoal: #102047;
  --shadow: 0 26px 80px rgba(25, 73, 145, 0.15);
  --glow: 0 0 0 1px rgba(34, 164, 255, 0.14), 0 28px 86px rgba(34, 164, 255, 0.22);
  --glass: rgba(255, 255, 255, 0.74);
  --glass-strong: rgba(255, 255, 255, 0.9);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes softFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes driftFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(var(--rotate, 0deg));
  }

  50% {
    transform: translate3d(var(--drift-x, 10px), var(--drift-y, -14px), 0) rotate(calc(var(--rotate, 0deg) + 4deg));
  }
}

@keyframes glowSweep {
  from {
    transform: translateX(-150%) rotate(12deg);
  }

  to {
    transform: translateX(118%) rotate(12deg);
  }
}

@keyframes glowSettle {
  from {
    opacity: 0;
    transform: translateX(-150%) rotate(12deg);
  }

  68% {
    opacity: 1;
    transform: translateX(118%) rotate(12deg);
  }

  to {
    opacity: 0.42;
    transform: translateX(60%) rotate(12deg);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 24px 72px rgba(31, 140, 255, 0.34);
  }

  50% {
    box-shadow: 0 30px 92px rgba(31, 140, 255, 0.52);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

body {
  margin: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(213, 241, 255, 0.95), transparent 36rem),
    radial-gradient(ellipse at 98% 28%, rgba(232, 246, 255, 0.9), transparent 30rem),
    linear-gradient(180deg, #ffffff 0%, #f8fcff 42%, #eff8ff 100%);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: rgba(0, 109, 255, 0.18);
  color: var(--ink);
}

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

img,
svg {
  display: block;
}

.brand-strip {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
  padding: clamp(18px, 3vw, 30px) clamp(18px, 5vw, 72px) 0;
  background: transparent;
  pointer-events: none;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 0;
  filter: drop-shadow(0 12px 28px rgba(31, 140, 255, 0.12));
  pointer-events: auto;
}

.icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
}

.icon svg,
.button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.brand img {
  width: clamp(220px, 22vw, 290px);
  height: auto;
  filter: drop-shadow(0 18px 32px rgba(0, 109, 255, 0.16));
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: 100vh;
  padding: clamp(118px, 11vw, 158px) clamp(18px, 5vw, 72px) clamp(34px, 5vw, 56px);
  background:
    radial-gradient(ellipse at 50% -6%, rgba(255, 255, 255, 1), transparent 29rem),
    radial-gradient(ellipse at 52% 18%, rgba(189, 232, 255, 0.58), transparent 44rem),
    radial-gradient(ellipse at 88% 32%, rgba(224, 245, 255, 0.88), transparent 32rem),
    linear-gradient(180deg, #ffffff 0%, #f9fdff 16%, #eaf7ff 100%),
    var(--paper);
}

.hero::before {
  position: absolute;
  right: -14%;
  bottom: 10%;
  width: min(44vw, 560px);
  height: min(44vw, 560px);
  content: "";
  border-radius: 42%;
  background: radial-gradient(circle, rgba(154, 218, 255, 0.42), rgba(34, 164, 255, 0.09) 48%, transparent 70%);
  filter: blur(22px);
  animation: softFloat 8s ease-in-out infinite;
  pointer-events: none;
}

.hero::after {
  display: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 740px;
}

.hero-ornaments {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.ornament {
  position: absolute;
  display: grid;
  place-items: center;
  color: var(--blue);
  opacity: 0.82;
  animation: driftFloat var(--float-speed, 7s) ease-in-out infinite;
  animation-delay: var(--float-delay, 0s);
}

.ornament svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.ornament {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(31, 140, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 48px rgba(31, 140, 255, 0.14);
  backdrop-filter: blur(16px);
}

.shield-chip {
  top: 18%;
  right: 13%;
  --rotate: -8deg;
  --float-speed: 7.6s;
  --float-delay: -0.8s;
  --drift-x: 10px;
  --drift-y: -16px;
}

.doc-chip {
  top: 39%;
  left: 43%;
  color: var(--violet);
  --rotate: 7deg;
  --float-speed: 8.8s;
  --float-delay: -2s;
  --drift-x: -12px;
  --drift-y: -14px;
}

.check-chip {
  top: 48%;
  left: 9%;
  color: #1598e8;
  --rotate: -4deg;
  --float-speed: 7.2s;
  --float-delay: -1.2s;
  --drift-x: 9px;
  --drift-y: -10px;
}

.eyebrow,
.label,
.step-kicker {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 610px;
  margin-bottom: 24px;
  font-size: clamp(2.75rem, 4.85vw, 4.85rem);
  font-weight: 780;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 strong,
h2 strong,
h3 strong {
  color: var(--blue);
  font-weight: 850;
}

.nowrap {
  white-space: nowrap;
}

.desktop-line {
  display: block;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.22rem, 2vw, 1.65rem);
  line-height: 1.18;
}

h4 {
  margin-bottom: 10px;
  font-size: 0.86rem;
  line-height: 1.35;
  letter-spacing: 0.06em;
}

.lead {
  max-width: 690px;
  color: #4d5b78;
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 760;
  line-height: 1.1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

.button::after {
  position: absolute;
  inset: -30% auto -30% -38%;
  width: 34%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.48), transparent);
  opacity: 0;
  transform: translateX(-150%) rotate(12deg);
  pointer-events: none;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(31, 140, 255, 0.2);
}

.button:hover::after {
  animation: glowSettle 1050ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.button.is-locked {
  opacity: 0.52;
  filter: grayscale(0.15);
}

.button.is-locked:hover {
  box-shadow: none;
}

.button.primary {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 34%),
    linear-gradient(135deg, var(--blue), var(--blue-bright));
  color: white;
  box-shadow: 0 18px 42px rgba(0, 109, 255, 0.3);
}

.button.secondary {
  border-color: rgba(0, 109, 255, 0.18);
  background: rgba(255, 255, 255, 0.78);
  color: #12366e;
  backdrop-filter: blur(16px);
}

.button.dark,
.button.whatsapp {
  background: linear-gradient(135deg, #12366e, var(--blue));
  color: white;
}

.hero-media {
  z-index: 1;
  position: relative;
  overflow: hidden;
  min-height: clamp(390px, 45vh, 500px);
  border: 1px solid rgba(0, 109, 255, 0.18);
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(226, 243, 255, 0.74)),
    radial-gradient(circle at 50% 20%, rgba(105, 226, 255, 0.32), transparent 42%);
  box-shadow: var(--glow);
  backdrop-filter: blur(18px);
  animation: softFloat 7s 1.2s ease-in-out infinite;
}

.visual-shell {
  position: absolute;
  inset: 34px;
  overflow: hidden;
  border: 1px solid rgba(0, 109, 255, 0.16);
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 0%, rgba(105, 226, 255, 0.22), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(233, 246, 255, 0.82));
}

.visual-shell::before {
  position: absolute;
  inset: -25% 36% auto;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(31, 140, 255, 0.34), transparent);
  filter: blur(1px);
}

.visual-top {
  display: flex;
  gap: 7px;
  padding: 18px;
}

.visual-top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(31, 140, 255, 0.35);
}

.visual-card {
  position: absolute;
  border: 1px solid rgba(0, 109, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 58px rgba(42, 95, 184, 0.14);
  backdrop-filter: blur(20px);
}

.document-card {
  left: 12%;
  top: 19%;
  width: 58%;
  min-height: 250px;
  padding: 30px;
}

.doc-line,
.mini-line {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: rgba(79, 112, 170, 0.18);
}

.doc-line {
  width: 68%;
  margin-bottom: 14px;
}

.doc-line.wide {
  width: 82%;
}

.doc-line.short {
  width: 48%;
}

.shield-glow {
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  margin: 34px auto 0;
  border-radius: 38px;
  background:
    radial-gradient(circle, rgba(72, 215, 255, 0.45), transparent 64%),
    linear-gradient(145deg, rgba(31, 140, 255, 0.9), rgba(118, 103, 255, 0.86));
  color: white;
  box-shadow: 0 24px 72px rgba(31, 140, 255, 0.42);
  animation: pulseGlow 4.8s ease-in-out infinite;
}

.shield-glow svg {
  width: 70px;
  fill: currentColor;
}

.visual-grid {
  position: absolute;
  right: 7%;
  bottom: 13%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: 38%;
}

.visual-grid span {
  min-height: 92px;
  border: 1px solid rgba(31, 140, 255, 0.14);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(219, 239, 255, 0.68));
  box-shadow: inset 0 -28px 44px rgba(31, 140, 255, 0.08);
}

.floating-card {
  right: 9%;
  top: 24%;
  width: 32%;
  min-height: 118px;
  padding: 22px;
  animation: softFloat 5.6s ease-in-out infinite;
}

.pulse-dot {
  display: block;
  width: 14px;
  height: 14px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 10px rgba(72, 215, 255, 0.14), 0 0 28px rgba(31, 140, 255, 0.7);
}

.mini-line {
  width: 82%;
  margin-bottom: 12px;
}

.mini-line.small {
  width: 52%;
}

.section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  padding: clamp(58px, 8vw, 112px) clamp(18px, 5vw, 72px);
  position: relative;
  isolation: isolate;
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

.section > * {
  width: min(1180px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.security {
  background:
    radial-gradient(circle at 18% 12%, rgba(105, 226, 255, 0.16), transparent 26rem),
    linear-gradient(180deg, #ffffff, #f7fbff);
}

.section-intro {
  max-width: 920px;
  margin-bottom: 44px;
}

.section-intro p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-intro.narrow {
  max-width: 760px;
}

.proof-grid,
.steps-grid,
.text-columns,
.mini-grid {
  display: grid;
  gap: 16px;
}

.proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 56px;
}

.proof-grid article,
.step,
.form-panel {
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(241, 249, 255, 0.76));
  box-shadow: 0 22px 70px rgba(31, 77, 152, 0.1);
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}

.proof-grid article::before,
.step::before,
.form-panel::before {
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(105, 226, 255, 0.7), transparent);
  opacity: 0.76;
}

.proof-grid article {
  padding: 30px;
}

.proof-grid article,
.step,
.form-panel,
.section-intro,
.text-columns > div,
.help-band > *,
.site-footer p,
.mini-grid > div,
.callout,
li {
}

.js .reveal {
  opacity: 0;
  translate: 0 22px;
  scale: 0.985;
  transition:
    opacity 760ms ease,
    translate 760ms cubic-bezier(0.16, 1, 0.3, 1),
    scale 760ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, translate, scale;
}

.js .reveal.is-visible {
  opacity: 1;
  translate: 0 0;
  scale: 1;
}

.proof-grid article,
.step,
.form-panel {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.proof-grid article:hover,
.step:hover,
.form-panel:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 109, 255, 0.3);
  box-shadow: 0 28px 82px rgba(31, 77, 152, 0.16);
}

.proof-grid p,
.text-columns li,
.step p,
.form-panel p,
.help-band p,
.site-footer p {
  color: var(--muted);
}

.icon {
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.64), transparent),
    linear-gradient(145deg, rgba(0, 109, 255, 0.15), rgba(105, 226, 255, 0.24));
  color: var(--blue);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 14px 32px rgba(0, 109, 255, 0.12);
  transition: transform 220ms ease, background 220ms ease;
}

.proof-grid article:hover .icon,
.step:hover .icon,
.form-panel:hover .icon {
  transform: translateY(-2px) scale(1.04);
}

.text-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-top: 8px;
}

.text-columns > div {
  padding: 28px;
  border: 1px solid rgba(0, 109, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 52px rgba(31, 77, 152, 0.07);
  backdrop-filter: blur(14px);
}

ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

li + li {
  margin-top: 12px;
}

li {
  position: relative;
  padding-left: 24px;
}

li::before {
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 0 0 5px rgba(0, 109, 255, 0.08);
}

.steps {
  background:
    radial-gradient(circle at 78% 8%, rgba(105, 226, 255, 0.22), transparent 28rem),
    radial-gradient(circle at 12% 52%, rgba(0, 109, 255, 0.08), transparent 30rem),
    linear-gradient(180deg, #f8fcff, #edf7ff);
}

.steps-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 24px;
}

.step {
  position: relative;
  overflow: hidden;
  padding: 34px;
}

.step-number {
  position: absolute;
  right: 26px;
  top: 20px;
  color: rgba(31, 140, 255, 0.14);
  font-size: 6rem;
  font-weight: 850;
  line-height: 1;
  transform-origin: center;
  transition:
    color 360ms ease,
    opacity 360ms ease,
    scale 420ms cubic-bezier(0.16, 1, 0.3, 1),
    text-shadow 420ms ease,
    translate 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.step.is-active {
  border-color: rgba(31, 140, 255, 0.36);
  box-shadow: 0 30px 88px rgba(31, 77, 152, 0.18);
}

.step.is-active .step-number {
  color: rgba(11, 111, 246, 0.36);
  opacity: 1;
  scale: 1.18;
  translate: -6px 2px;
  text-shadow: 0 18px 44px rgba(31, 140, 255, 0.28);
}

.action-block {
  display: grid;
  gap: 18px;
}

.form-panel {
  padding: clamp(26px, 4vw, 42px);
}

.accent-panel {
  border-color: rgba(0, 109, 255, 0.2);
  background:
    radial-gradient(circle at 80% 10%, rgba(105, 226, 255, 0.22), transparent 24rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(226, 243, 255, 0.86));
}

.mini-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 24px 0;
}

.mini-grid > div {
  padding: 18px 18px 18px 20px;
  border: 1px solid rgba(0, 109, 255, 0.12);
  border-left: 4px solid var(--blue);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.56);
}

.callout {
  display: grid;
  gap: 8px;
  justify-items: center;
  margin: 0 0 22px;
  padding: 20px 22px;
  border: 1px solid rgba(31, 140, 255, 0.2);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(225, 245, 255, 0.84)),
    rgba(31, 140, 255, 0.08);
  color: #12366e !important;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 16px 42px rgba(31, 77, 152, 0.08);
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.callout strong {
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.callout span {
  max-width: 820px;
  color: inherit;
  font-weight: 720;
  line-height: 1.45;
}

.callout:hover {
  border-color: #ef3149;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.22), transparent 48%),
    #ef3149;
  color: #ffffff !important;
  box-shadow: 0 18px 42px rgba(239, 49, 73, 0.24);
  transform: translateY(-2px);
}

.callout:hover strong {
  color: #ffffff;
}

.help-band {
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(44px, 6vw, 72px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 72% 18%, rgba(105, 226, 255, 0.34), transparent 22rem),
    radial-gradient(circle at 20% 100%, rgba(0, 109, 255, 0.1), transparent 24rem),
    linear-gradient(135deg, #fafdff, #eaf4ff);
  color: var(--ink);
  content-visibility: auto;
  contain-intrinsic-size: 360px;
}

.help-band > div {
  max-width: 720px;
}

.help-band .eyebrow,
.help-band p {
  color: var(--muted);
}

.help-title {
  margin-bottom: 12px;
  font-size: clamp(2.55rem, 4.5vw, 5rem);
  line-height: 0.98;
}

.help-subtitle {
  margin-bottom: 18px;
  color: var(--ink) !important;
  font-size: clamp(1.3rem, 2vw, 2rem);
  font-weight: 720;
  line-height: 1.15;
}

.help-subtitle strong {
  color: var(--blue);
  font-weight: 820;
}

.help-band .button {
  flex: 0 0 auto;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 24px;
  padding: 28px clamp(18px, 5vw, 72px);
  border-top: 1px solid rgba(0, 109, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(238, 246, 255, 0.92), #ffffff);
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.access-toast {
  position: fixed;
  right: clamp(16px, 4vw, 34px);
  bottom: clamp(16px, 4vw, 34px);
  z-index: 20;
  max-width: min(380px, calc(100% - 32px));
  padding: 15px 18px;
  border: 1px solid rgba(31, 140, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 60px rgba(31, 77, 152, 0.18);
  color: var(--ink);
  font-weight: 720;
  opacity: 0;
  pointer-events: none;
  translate: 0 16px;
  transition: opacity 220ms ease, translate 220ms ease;
  backdrop-filter: blur(18px);
}

.access-toast.is-visible {
  opacity: 1;
  translate: 0 0;
}

.form-page {
  min-height: 100svh;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(205, 238, 255, 0.72), transparent 36rem),
    linear-gradient(180deg, #ffffff, #eef8ff);
}

.form-shell {
  width: min(1080px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(28px, 5vw, 58px) 0;
}

.form-header {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  margin-bottom: 28px;
}

.form-logo img {
  width: min(100%, 260px);
  filter: drop-shadow(0 12px 28px rgba(31, 140, 255, 0.12));
}

.form-header h1 {
  max-width: 720px;
  margin-bottom: 14px;
  font-size: clamp(2.3rem, 5vw, 4.6rem);
}

.form-header p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.05rem;
}

.client-form {
  display: grid;
  gap: 18px;
}

.form-card {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 62px rgba(31, 77, 152, 0.1);
  backdrop-filter: blur(18px);
}

.form-card h2 {
  margin-bottom: 20px;
  font-size: clamp(1.45rem, 2.6vw, 2.2rem);
}

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

.client-form label,
.client-form legend {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 760;
}

.client-form input,
.client-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 15px;
  border: 1px solid rgba(31, 140, 255, 0.18);
  border-radius: 14px;
  outline: none;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  font: inherit;
  font-weight: 520;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.client-form textarea {
  resize: vertical;
}

.client-form input:focus,
.client-form textarea:focus {
  border-color: rgba(11, 111, 246, 0.56);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(31, 140, 255, 0.12);
}

.full-field,
.client-form fieldset {
  grid-column: 1 / -1;
}

.client-form fieldset {
  display: grid;
  gap: 12px;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
}

.choice {
  grid-template-columns: auto 1fr;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(31, 140, 255, 0.16);
  border-radius: 16px;
  background: rgba(239, 248, 255, 0.72);
}

.choice input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--blue);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  padding-top: 8px;
}

.form-actions .button {
  min-width: 210px;
}

.form-actions button {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.form-status {
  min-height: 28px;
  color: var(--muted);
  font-weight: 650;
  text-align: right;
}

@media (max-width: 900px) {
  .hero,
  .proof-grid,
  .steps-grid,
  .text-columns,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .section,
  .help-band {
    min-height: auto;
  }

  .hero-media {
    min-height: 430px;
  }

  .section > * {
    width: 100%;
  }

  .help-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .form-header {
    grid-template-columns: 1fr;
    gap: 22px;
    text-align: center;
  }

  .form-logo {
    justify-self: center;
  }

  .form-header h1,
  .form-header p:not(.eyebrow) {
    margin-left: auto;
    margin-right: auto;
  }

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

  .form-actions {
    justify-content: stretch;
  }

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

  .form-status {
    text-align: center;
  }

  .shield-chip {
    top: 18%;
    right: 7%;
  }

  .doc-chip {
    top: 47%;
    left: auto;
    right: 10%;
  }
}

@media (min-width: 901px) and (max-height: 760px) {
  .brand-strip {
    padding-top: 16px;
  }

  .brand img {
    width: clamp(200px, 19vw, 250px);
  }

  .hero {
    min-height: 100svh;
    padding-top: clamp(92px, 14vh, 120px);
    padding-bottom: 24px;
  }

  h1 {
    margin-bottom: 18px;
    font-size: clamp(2.6rem, 4.3vw, 4rem);
  }

  .lead {
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-actions {
    flex-wrap: nowrap;
    margin-top: 20px;
  }

  .hero-actions .button {
    width: auto;
  }

  .hero-media {
    min-height: clamp(320px, 51vh, 410px);
  }
}

@media (max-width: 640px) {
  .brand-strip {
    justify-content: center;
    padding: 14px 18px 0;
  }

  .brand img {
    width: min(68vw, 232px);
  }

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

  .button {
    min-height: 52px;
  }

  .step-number {
    font-size: 4.5rem;
  }

  .hero {
    min-height: 100svh;
    padding-top: 112px;
    padding-bottom: 22px;
    align-content: start;
    gap: 22px;
  }

  .section {
    padding: 58px 18px;
    contain-intrinsic-size: 760px;
  }

  .proof-grid article,
  .step,
  .form-panel,
  .text-columns > div {
    border-radius: 22px;
  }

  .proof-grid article,
  .step {
    padding: 26px;
  }

  .form-panel {
    padding: 24px;
  }

  .help-band {
    padding: 46px 18px;
  }

  .site-footer {
    justify-content: center;
    text-align: center;
  }

  .hero-copy {
    text-align: center;
  }

  h1,
  .lead {
    margin-left: auto;
    margin-right: auto;
  }

  h1 {
    margin-bottom: 16px;
    font-size: clamp(2.35rem, 11vw, 3.25rem);
    line-height: 0.96;
  }

  .desktop-line {
    display: inline;
  }

  .desktop-line + .desktop-line::before {
    content: " ";
  }

  .lead {
    margin-bottom: 0;
    font-size: 0.96rem;
    line-height: 1.52;
  }

  .hero-actions {
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
  }

  .button {
    min-height: 48px;
  }

  .hero-media {
    display: none;
  }

  .ornament {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .ornament svg {
    width: 18px;
    height: 18px;
  }

  .shield-chip {
    top: 14%;
    right: 8%;
    opacity: 0.62;
  }

  .doc-chip {
    top: 34%;
    right: 3%;
    opacity: 0.48;
  }

  .check-chip {
    top: 24%;
    left: 5%;
    opacity: 0.34;
  }

  .visual-shell {
    inset: 18px;
  }

  .document-card {
    left: 8%;
    width: 70%;
  }

  .floating-card {
    right: 6%;
    width: 42%;
  }
}

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