:root {
  --bg: #12283f;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: #ffffff;
  --surface-dark: #1b3142;
  --surface-dark-soft: #26495f;
  --surface-accent: #fff4e7;
  --text: #15212b;
  --text-soft: rgba(21, 33, 43, 0.72);
  --text-inverse: rgba(255, 255, 255, 0.96);
  --text-inverse-soft: rgba(255, 255, 255, 0.78);
  --line: rgba(21, 33, 43, 0.1);
  --line-dark: rgba(255, 255, 255, 0.16);
  --accent: #1f67d2;
  --accent-strong: #ef7e24;
  --accent-soft: rgba(31, 103, 210, 0.12);
  --accent-warm: rgba(239, 126, 36, 0.16);
  --shadow-soft: 0 28px 80px rgba(31, 57, 78, 0.08);
  --shadow-strong: 0 32px 90px rgba(31, 57, 78, 0.14);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 8px;
  --page-gutter: clamp(20px, 3.8vw, 48px);
  --section-space: clamp(72px, 10vw, 124px);
  --content-width: min(1400px, calc(100vw - (var(--page-gutter) * 2)));
  --easing: cubic-bezier(0.32, 0.72, 0, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI Variable Text", "Segoe UI", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(31, 103, 210, 0.34), transparent 26%),
    radial-gradient(circle at 82% 12%, rgba(20, 83, 145, 0.34), transparent 24%),
    radial-gradient(circle at top right, rgba(239, 126, 36, 0.2), transparent 18%),
    linear-gradient(180deg, #10243a 0%, #132f4a 38%, #102237 100%);
  text-rendering: optimizeLegibility;
}

body.is-lightbox-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  position: relative;
  overflow: clip;
}

.floating-nav {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  width: min(1280px, calc(100vw - 32px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 20px 54px rgba(28, 56, 77, 0.12);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand-lockup {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: clamp(150px, 12vw, 190px);
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 1 auto;
  min-width: 0;
  flex-wrap: nowrap;
  justify-content: flex-end;
}

.nav-links a {
  flex-shrink: 0;
  padding: 12px 16px;
  border-radius: 999px;
  color: rgba(21, 33, 43, 0.72);
  font-size: 14px;
  white-space: nowrap;
  transition:
    transform 0.7s var(--easing),
    background-color 0.7s var(--easing),
    color 0.7s var(--easing);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
  background: rgba(31, 103, 210, 0.08);
}

.nav-links .nav-cta {
  background: var(--surface-dark);
  color: #ffffff;
}

.hero {
  position: relative;
  min-height: 100dvh;
  padding: 120px var(--page-gutter) 72px;
  display: grid;
  align-items: end;
  isolation: isolate;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  object-fit: cover;
  filter: saturate(1.08) contrast(1.03) brightness(1.08);
}

.hero-overlay {
  background:
    radial-gradient(ellipse 48% 82% at 22% 58%, rgba(7, 16, 24, 0.84) 0%, rgba(7, 16, 24, 0.62) 42%, rgba(7, 16, 24, 0.18) 68%, transparent 100%),
    linear-gradient(90deg, rgba(7, 16, 24, 0.4) 0%, rgba(7, 16, 24, 0.08) 45%, transparent 100%),
    linear-gradient(180deg, rgba(7, 16, 24, 0.1) 0%, rgba(7, 16, 24, 0.08) 100%);
}

.hero-content,
.hero-rail {
  position: relative;
  z-index: 1;
  width: min(1400px, 100%);
  margin: 0 auto;
}

.hero-content {
  width: min(720px, 100%);
  max-width: 720px;
  margin-left: max(0px, calc((100vw - 1400px) / 2));
  margin-right: auto;
}

.hero-content,
.hero-rail,
.section-heading,
.emotion-layout,
.desire .section-heading,
.desire .desire-grid,
.cases-grid,
.objections-layout,
.trust-layout,
.final-cta-layout {
  padding-inline: clamp(10px, 1.4vw, 18px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 8px 14px;
  border: 1px solid rgba(21, 33, 43, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: rgba(21, 33, 43, 0.72);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section .eyebrow,
.objection-note .eyebrow {
  border-color: rgba(31, 103, 210, 0.12);
  background: rgba(31, 103, 210, 0.08);
  color: rgba(21, 33, 43, 0.76);
}

h1,
h2,
h3,
strong {
  font-family: "Segoe UI Variable Display", "Segoe UI", system-ui, sans-serif;
}

h1,
h2 {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.94;
}

h1 {
  max-width: 15ch;
  color: var(--text);
  font-size: clamp(2.7rem, 5.7vw, 5rem);
}

h2 {
  max-width: 24ch;
  font-size: clamp(1.95rem, 3.8vw, 3.45rem);
}

h3 {
  margin: 0 0 10px;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.1;
}

p {
  margin: 0;
  line-height: 1.7;
}

.hero-copy,
.lead,
.trust-lines p,
.desire-point p,
.split-list p,
.case-copy p,
.objection-list p,
.cta-list,
.form-meta {
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.hero-copy {
  max-width: 58ch;
  margin-top: 24px;
  color: var(--text-inverse-soft);
}

.hero-content h1 {
  color: var(--text-inverse);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 60px;
  padding: 14px 14px 14px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  transition:
    transform 0.7s var(--easing),
    box-shadow 0.7s var(--easing),
    background-color 0.7s var(--easing),
    color 0.7s var(--easing),
    border-color 0.7s var(--easing);
}

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

.button:active {
  transform: translateY(0) scale(0.98);
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent) 0%, var(--surface-dark-soft) 100%);
  border-color: rgba(31, 103, 210, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 16px 40px rgba(31, 103, 210, 0.2);
}

.section .button-primary,
.final-cta .button-primary {
  background: linear-gradient(135deg, var(--accent-strong) 0%, #cf6b1c 100%);
  border-color: rgba(239, 126, 36, 0.14);
  box-shadow: 0 20px 46px rgba(239, 126, 36, 0.2);
}

.button-secondary {
  color: var(--text);
  border-color: rgba(21, 33, 43, 0.12);
  background: rgba(255, 255, 255, 0.74);
}

.button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  transition:
    transform 0.7s var(--easing),
    background-color 0.7s var(--easing);
}

.button:hover .button-icon,
.button:focus-visible .button-icon {
  transform: translateX(4px) translateY(-1px);
  background: rgba(255, 255, 255, 0.24);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--text-inverse-soft);
}

.hero-rail {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  margin-top: 52px;
}

.hero-rail-item {
  padding: 24px 24px 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 36px rgba(12, 18, 24, 0.18);
}

.hero-rail-item span {
  display: inline-block;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  letter-spacing: 0.18em;
}

.hero-rail-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text-inverse);
  font-size: 1.2rem;
}

.hero-rail-item p {
  color: var(--text-inverse-soft);
}

.section {
  position: relative;
  width: var(--content-width);
  margin: clamp(34px, 5vw, 72px) auto;
  padding: var(--section-space) 0;
}

.section-overlap {
  margin-top: -64px;
  padding-inline: clamp(28px, 4.4vw, 72px);
  padding-top: calc(var(--section-space) + 44px);
  border-radius: 40px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(242, 246, 248, 0.92) 100%);
  box-shadow: 0 28px 70px rgba(10, 15, 20, 0.24);
}

.section-heading {
  max-width: 1040px;
  margin-bottom: clamp(36px, 6vw, 72px);
}

.section-heading h2 + p,
.lead {
  color: var(--text-soft);
}

.emotion-layout,
.desire-grid,
.objections-layout,
.trust-layout,
.final-cta-layout {
  display: grid;
  gap: clamp(22px, 4vw, 40px);
}

.emotion-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: start;
}

.split-list {
  display: grid;
  gap: 22px;
  margin-top: 34px;
}

.split-list article {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.media-frame {
  border-radius: var(--radius-lg);
  background: transparent;
  box-shadow: var(--shadow-soft);
  cursor: zoom-in;
  transition:
    transform 0.6s var(--easing),
    box-shadow 0.6s var(--easing),
    background-color 0.6s var(--easing);
}

.media-frame-inner {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #dfe7ee;
}

.media-frame img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.8s var(--easing), filter 0.8s var(--easing);
  will-change: transform;
}

.media-frame:hover,
.media-frame:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 34px 80px rgba(9, 25, 42, 0.22);
}

.media-frame:hover img,
.media-frame:focus-visible img {
  transform: scale(1.055);
  filter: saturate(1.05) contrast(1.03);
}

.media-frame:focus-visible {
  outline: 3px solid rgba(239, 126, 36, 0.66);
  outline-offset: 4px;
}

.emotion-media img {
  min-height: 100%;
}

.desire {
  width: 100%;
  max-width: none;
  padding-inline: var(--page-gutter);
  background:
    linear-gradient(180deg, #e6eef6 0%, #f4f8fb 100%),
    radial-gradient(circle at top right, rgba(31, 103, 210, 0.16), transparent 30%);
}

.desire .section-heading,
.desire .desire-grid {
  width: var(--content-width);
  margin-inline: auto;
}

.desire h2,
.desire h3,
.desire p,
.desire .point-index {
  color: var(--text);
}

.desire .eyebrow {
  border-color: rgba(31, 103, 210, 0.12);
  background: rgba(255, 255, 255, 0.84);
  color: rgba(21, 33, 43, 0.76);
}

.desire-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: stretch;
}

.desire-media {
  height: 100%;
  background: rgba(255, 255, 255, 0.94);
}

.desire-media .media-frame-inner {
  height: 100%;
}

.desire-media img {
  height: 100%;
  min-height: 620px;
}

.desire-copy {
  display: grid;
  gap: 16px;
}

.desire-point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(21, 33, 43, 0.12);
}

.point-index {
  font-size: 12px;
  letter-spacing: 0.18em;
  color: rgba(21, 33, 43, 0.48);
}

.use-cases {
  background:
    linear-gradient(180deg, rgba(255, 249, 244, 0.94) 0%, rgba(255, 240, 222, 0.92) 100%);
  border-radius: 36px;
  padding-inline: clamp(18px, 2.6vw, 26px);
  box-shadow: 0 28px 70px rgba(10, 15, 20, 0.22);
  margin-top: clamp(44px, 7vw, 96px);
}

.objections,
.trust {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(245, 248, 250, 0.94) 100%);
  border-radius: 36px;
  box-shadow: 0 28px 70px rgba(10, 15, 20, 0.22);
}

.use-cases .section-heading,
.objections .section-heading,
.trust .section-heading,
.final-cta .section-heading {
  max-width: 900px;
}

.cases-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 0.9fr;
  grid-auto-flow: dense;
  grid-auto-rows: minmax(220px, auto);
  gap: 22px;
}

.case-card {
  display: grid;
  gap: 14px;
  align-content: start;
  min-height: 100%;
}

.case-card-large {
  grid-column: span 2;
  grid-row: span 2;
}

.case-card:nth-child(2) {
  grid-row: span 2;
}

.case-card:nth-child(5) {
  grid-column: span 2;
}

.case-card-large .media-frame img,
.case-card:nth-child(2) .media-frame img {
  aspect-ratio: 16 / 11;
}

.case-card:nth-child(5) .media-frame img,
.case-card:nth-child(6) .media-frame img {
  aspect-ratio: 16 / 9;
}

.case-copy {
  padding-inline: 6px;
}

.objections-layout {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: start;
}

.objection-list {
  display: grid;
  gap: 16px;
}

.objection-list details,
.objection-note,
.cta-panel,
.lead-form input,
.lead-form textarea {
  border-radius: var(--radius-md);
}

.objection-list details {
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    var(--shadow-soft);
}

.objection-list summary {
  cursor: pointer;
  list-style: none;
  font-size: 1.12rem;
  font-weight: 600;
}

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

.objection-list p {
  margin-top: 14px;
  color: var(--text-soft);
}

.objection-note {
  padding: 28px;
  background: linear-gradient(180deg, rgba(255, 244, 231, 0.92) 0%, rgba(255, 255, 255, 0.94) 100%);
  box-shadow: var(--shadow-soft);
}

.objection-note h3 {
  margin-bottom: 14px;
}

.objection-note ul,
.cta-list {
  margin: 0;
  padding-left: 20px;
}

.objection-note li,
.cta-list li {
  margin-bottom: 10px;
  color: var(--text-soft);
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 20px;
  padding-inline: clamp(14px, 2vw, 28px);
}

.review-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 100%;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(21, 33, 43, 0.08);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(246, 250, 252, 0.92) 100%),
    radial-gradient(circle at top right, rgba(31, 103, 210, 0.14), transparent 36%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 24px 62px rgba(9, 25, 42, 0.08);
  overflow: hidden;
}

.review-card-featured {
  grid-row: span 3;
  min-height: 520px;
  padding: clamp(32px, 4vw, 46px);
  color: var(--text-inverse);
  background:
    radial-gradient(circle at 84% 12%, rgba(239, 126, 36, 0.3), transparent 24%),
    linear-gradient(145deg, #10243a 0%, #16395c 58%, #1f67d2 140%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 34px 86px rgba(6, 18, 32, 0.24);
}

.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.review-kicker,
.review-place {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.review-kicker {
  color: rgba(21, 33, 43, 0.56);
}

.review-place {
  color: var(--accent);
}

.review-card h3 {
  margin: 0;
  max-width: 18ch;
  font-size: clamp(1.45rem, 2.6vw, 2.45rem);
  line-height: 1.02;
}

.review-card p {
  max-width: 60ch;
  color: var(--text-soft);
}

.review-card-featured h3 {
  max-width: 12ch;
  font-size: clamp(2.15rem, 4vw, 4rem);
}

.review-card-featured p,
.review-card-featured .review-kicker {
  color: var(--text-inverse-soft);
}

.review-card-featured .review-place {
  color: rgba(255, 255, 255, 0.92);
}

.review-video-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  margin-inline: calc(clamp(24px, 3vw, 34px) * -0.5);
  border-radius: 22px;
  background: #dce6ef;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 18px 44px rgba(9, 25, 42, 0.1);
}

.review-card-featured .review-video-thumb {
  margin-inline: calc(clamp(32px, 4vw, 46px) * -0.5);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 54px rgba(2, 10, 18, 0.26);
}

.review-video-thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition:
    transform 0.75s var(--easing),
    filter 0.75s var(--easing);
}

.review-video-thumb:hover img,
.review-video-thumb:focus-visible img {
  transform: scale(1.055);
  filter: saturate(1.08) contrast(1.04);
}

.review-video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 18, 31, 0.04) 0%, rgba(7, 18, 31, 0.38) 100%);
  pointer-events: none;
}

.review-play {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 12px 32px rgba(7, 18, 31, 0.2);
}

.review-play::before {
  content: "";
  width: 0;
  height: 0;
  margin-right: 9px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid var(--accent-strong);
}

.review-link {
  align-self: end;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  margin-top: 6px;
  padding: 13px 18px;
  border-radius: 999px;
  background: var(--surface-dark);
  color: #ffffff;
  font-weight: 700;
  transition:
    transform 0.45s var(--easing),
    background-color 0.45s var(--easing),
    box-shadow 0.45s var(--easing);
}

.review-link:hover,
.review-link:focus-visible {
  transform: translateY(-2px);
  background: var(--accent);
  box-shadow: 0 18px 38px rgba(31, 103, 210, 0.22);
}

.review-card-featured .review-link {
  background: var(--accent-strong);
  box-shadow: 0 18px 42px rgba(239, 126, 36, 0.24);
}

.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 56px);
  background: rgba(7, 18, 31, 0.82);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(14px);
  transition: opacity 0.35s var(--easing);
}

.photo-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.photo-lightbox-panel {
  position: relative;
  width: min(1180px, 100%);
  max-height: 88dvh;
  padding: 12px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 42px 110px rgba(1, 9, 18, 0.45);
}

.photo-lightbox img {
  width: 100%;
  max-height: calc(88dvh - 82px);
  border-radius: 18px;
  object-fit: contain;
  background: #dfe7ee;
}

.photo-lightbox-caption {
  margin: 12px 56px 2px 4px;
  color: var(--text-soft);
  font-size: 15px;
}

.photo-lightbox-close {
  position: absolute;
  right: 18px;
  bottom: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: var(--surface-dark);
  color: #ffffff;
  cursor: pointer;
  transition:
    transform 0.3s var(--easing),
    background-color 0.3s var(--easing);
}

.photo-lightbox-close:hover,
.photo-lightbox-close:focus-visible {
  transform: translateY(-2px);
  background: var(--accent);
}

.final-cta {
  width: 100%;
  max-width: none;
  padding-inline: var(--page-gutter);
  color: var(--text-inverse);
  background:
    linear-gradient(180deg, #213544 0%, #2d4558 100%),
    radial-gradient(circle at top left, rgba(239, 126, 36, 0.18), transparent 24%);
}

.final-cta-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  width: var(--content-width);
  margin: 0 auto;
}

.final-cta .eyebrow {
  border-color: rgba(239, 126, 36, 0.16);
  background: rgba(239, 126, 36, 0.12);
  color: rgba(255, 255, 255, 0.8);
}

.final-cta-copy .lead,
.final-cta-copy .cta-list li {
  color: var(--text-inverse-soft);
}

.lead-form .form-meta {
  color: var(--text-soft);
}

.cta-panel {
  display: grid;
  gap: 18px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    var(--shadow-strong);
}

.lead-form {
  display: grid;
  gap: 18px;
  padding: 24px;
  border-radius: calc(var(--radius-md) - 4px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 250, 252, 0.98) 100%);
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 14px;
  color: rgba(21, 33, 43, 0.8);
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(21, 33, 43, 0.12);
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  transition:
    border-color 0.6s var(--easing),
    transform 0.6s var(--easing),
    background-color 0.6s var(--easing);
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(21, 33, 43, 0.38);
}

.lead-form input:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: rgba(31, 103, 210, 0.82);
  background: #ffffff;
}

.lead-form .is-invalid {
  border-color: rgba(223, 92, 92, 0.92);
}

.button-submit {
  width: 100%;
  justify-content: space-between;
}

.form-status {
  min-height: 1.4em;
  font-size: 14px;
  color: rgba(21, 33, 43, 0.84);
}

.form-status.is-error {
  color: #b03a2e;
}

.cta-media img {
  aspect-ratio: 16 / 10;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 8vw, 104px) var(--page-gutter) 34px;
  color: var(--text-inverse);
  background:
    radial-gradient(circle at 16% 0%, rgba(31, 103, 210, 0.34), transparent 28%),
    radial-gradient(circle at 84% 20%, rgba(239, 126, 36, 0.2), transparent 22%),
    linear-gradient(180deg, #102237 0%, #071524 100%);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 82%);
}

.footer-inner {
  position: relative;
  z-index: 1;
  width: var(--content-width);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(180px, 1fr));
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.footer-brand,
.footer-column {
  display: grid;
  gap: 14px;
}

.footer-brand {
  max-width: 360px;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo .brand-logo {
  width: min(210px, 100%);
  filter: brightness(0) invert(1);
}

.footer-brand p,
.footer-column p,
.footer-column a,
.footer-bottom,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.68);
}

.footer-title {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-column {
  font-style: normal;
}

.footer-column a {
  justify-self: start;
  font-weight: 700;
  transition:
    transform 0.45s var(--easing),
    color 0.45s var(--easing);
}

.footer-column a:hover,
.footer-column a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: #ffffff;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: clamp(64px, 10vw, 112px);
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 24px;
}

.footer-bottom a {
  transition: color 0.45s var(--easing);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(10px);
  transition:
    opacity 0.95s var(--easing),
    transform 0.95s var(--easing),
    filter 0.95s var(--easing);
}

[data-reveal="fade-left"] {
  transform: translateX(32px);
}

[data-reveal="fade-down"] {
  transform: translateY(-18px);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

@media (max-width: 1180px) {
  .hero-points,
  .hero-rail {
    grid-template-columns: 1fr 1fr;
  }

  .cases-grid,
  .trust-gallery,
  .reviews-layout {
    grid-template-columns: 1fr 1fr;
  }

  .emotion-layout,
  .desire-grid,
  .objections-layout,
  .trust-layout,
  .final-cta-layout {
    grid-template-columns: 1fr;
  }

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

  .case-card-large,
  .case-card:nth-child(2),
  .case-card:nth-child(5),
  .trust-gallery figure:first-child,
  .review-card-featured {
    grid-row: auto;
    grid-column: span 1;
    min-height: auto;
  }
}

@media (max-width: 1040px) {
  .floating-nav {
    width: calc(100vw - 20px);
    gap: 10px;
  }

  .nav-links {
    gap: 4px;
  }

  .nav-links a {
    padding: 10px 11px;
    font-size: 13px;
  }
}

@media (max-width: 820px) {
  .floating-nav {
    top: 12px;
    width: calc(100vw - 16px);
    gap: 10px;
    padding-inline: 12px;
  }

  .nav-links {
    gap: 4px;
  }

  .nav-links a {
    padding: 10px 12px;
    font-size: 13px;
  }

  .hero {
    padding-top: 112px;
    padding-bottom: 42px;
  }

  .hero-content {
    margin-inline: auto;
  }

  h1 {
    max-width: 14ch;
    font-size: clamp(2.2rem, 10vw, 3.6rem);
  }

  h2 {
    max-width: none;
    font-size: clamp(1.75rem, 6.8vw, 2.7rem);
  }

  .hero-points,
  .hero-rail,
  .cases-grid,
  .trust-gallery {
    grid-template-columns: 1fr;
  }

  .reviews-layout {
    grid-template-columns: 1fr;
  }

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

  .case-card-large,
  .case-card:nth-child(2),
  .case-card:nth-child(5),
  .trust-gallery figure:first-child,
  .review-card-featured {
    grid-column: auto;
  }

  .section-overlap {
    margin-top: -28px;
    padding-inline: clamp(18px, 5vw, 34px);
    border-radius: 28px;
  }

  .desire {
    padding-inline: 0;
  }

  .desire .section-heading,
  .desire .desire-grid,
  .final-cta-layout,
  .footer-inner {
    width: calc(100vw - (var(--page-gutter) * 2));
  }

  .desire-media img {
    min-height: auto;
  }

  .objection-list details,
  .objection-note,
  .lead-form {
    padding: 20px;
  }

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

  .footer-bottom nav {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  body {
    background:
      radial-gradient(circle at top left, rgba(31, 103, 210, 0.28), transparent 24%),
      radial-gradient(circle at top right, rgba(239, 126, 36, 0.16), transparent 16%),
      linear-gradient(180deg, #10243a 0%, #132f4a 38%, #102237 100%);
  }

  .floating-nav {
    align-items: flex-start;
    flex-direction: column;
    border-radius: 24px;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .hero-content,
  .hero-rail,
  .section,
  .desire .section-heading,
  .desire .desire-grid,
  .final-cta-layout,
  .footer-inner {
    width: calc(100vw - (var(--page-gutter) * 2));
  }

  .hero-copy,
  .hero-points li,
  .lead,
  .split-list p,
  .case-copy p,
  .objection-list p,
  .trust-lines p,
  .cta-list,
  .form-meta {
    font-size: 1rem;
  }

  .button,
  .button-submit {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
