:root {
  --bg: #f6fbff;
  --surface: #ffffff;
  --surface-soft: #eef8ff;
  --surface-blue: #dff1ff;
  --ink: #0c1f3f;
  --muted: #55708f;
  --line: #d9e7f5;
  --teal: #17c9bd;
  --teal-dark: #079b93;
  --blue: #2488ff;
  --blue-dark: #1467cf;
  --navy: #071a38;
  --coral: #ff846b;
  --shadow: 0 20px 55px rgba(20, 103, 207, 0.14);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(36, 136, 255, 0.12), transparent 28rem),
    linear-gradient(180deg, #f8fcff 0%, #ffffff 38%, #f4faff 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

body.modal-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  border-radius: var(--radius);
  background: var(--navy);
  color: #fff;
  padding: 0.7rem 1rem;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 0;
  background: rgba(246, 251, 255, 0.72);
  padding: 0.7rem 0;
  backdrop-filter: blur(20px);
}

.nav {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  border: 1px solid rgba(185, 216, 245, 0.72);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.45rem 0.65rem 0.45rem 0.75rem;
  box-shadow: 0 18px 46px rgba(20, 103, 207, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 850;
  letter-spacing: 0;
}

.brand-logo {
  width: 126px;
  height: auto;
  display: block;
  mix-blend-mode: multiply;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(36, 136, 255, 0.25);
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 650;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.12rem;
  border: 1px solid rgba(217, 231, 245, 0.74);
  border-radius: 999px;
  background: rgba(238, 248, 255, 0.72);
  padding: 0.28rem;
  color: #244366;
  font-size: 0.9rem;
  font-weight: 780;
}

.nav-links a {
  position: relative;
  border-radius: 999px;
  padding: 0.5rem 0.72rem;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease;
}

.nav-links a::after {
  display: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: #fff;
  color: var(--blue-dark);
  box-shadow: 0 8px 18px rgba(20, 103, 207, 0.08);
}

.nav-actions {
  display: none;
  align-items: center;
  gap: 0.55rem;
}

.nav-actions .btn {
  min-height: 40px;
  padding: 0.62rem 0.95rem;
}

.menu-toggle {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  width: 18px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.menu-toggle span::before {
  transform: translateY(-6px);
}

.menu-toggle span::after {
  transform: translateY(4px);
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  background: #fff;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu .container {
  display: grid;
  gap: 0.35rem;
  padding-block: 0.75rem 1rem;
}

.mobile-menu a,
.mobile-menu button {
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
  padding: 0.78rem 0.6rem;
  text-align: left;
  font-weight: 700;
}

.mobile-menu a:hover,
.mobile-menu button:hover {
  background: var(--surface-soft);
}

.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.72rem 1.05rem;
  font-weight: 800;
  line-height: 1.2;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff;
  box-shadow: 0 16px 35px rgba(36, 136, 255, 0.24);
}

.btn-primary:hover {
  box-shadow: 0 18px 42px rgba(36, 136, 255, 0.3);
}

.btn-secondary {
  border-color: #b9d8f5;
  background: rgba(255, 255, 255, 0.78);
  color: var(--blue-dark);
}

.btn-plain {
  color: var(--blue-dark);
  font-weight: 820;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(36, 136, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--blue-dark);
  padding: 0.32rem 0.72rem;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0 4.5rem;
}

.hero::before {
  position: absolute;
  inset: -12rem -8rem auto;
  height: 34rem;
  background:
    radial-gradient(circle at 72% 10%, rgba(23, 201, 189, 0.22), transparent 18rem),
    radial-gradient(circle at 25% 25%, rgba(36, 136, 255, 0.2), transparent 16rem);
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero h1,
.page-hero h1 {
  max-width: 780px;
  margin: 1rem 0 1rem;
  color: var(--navy);
  font-size: clamp(2.55rem, 6.4vw, 4.95rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 span,
.page-hero h1 span {
  color: var(--blue);
}

.hero-lead,
.section-lead,
.page-lead {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.16rem);
}

.hero-lead {
  max-width: 610px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.trust-pill {
  min-height: 92px;
  border: 1px solid rgba(217, 231, 245, 0.88);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  padding: 0.9rem;
  box-shadow: 0 14px 30px rgba(12, 31, 63, 0.06);
}

.trust-pill strong {
  display: block;
  color: var(--navy);
  font-size: 1.15rem;
}

.trust-pill span {
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-visual {
  position: relative;
}

.hero-image {
  overflow: hidden;
  border: 1px solid rgba(217, 231, 245, 0.9);
  border-radius: 24px;
  background:
    radial-gradient(circle at 72% 16%, rgba(23, 201, 189, 0.16), transparent 18rem),
    linear-gradient(135deg, #ffffff, #eef8ff);
  box-shadow: var(--shadow);
}

.hero-image img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: 68% center;
}

.floating-card {
  position: absolute;
  right: 0.8rem;
  bottom: -1.2rem;
  width: min(280px, calc(100% - 1.6rem));
  border: 1px solid rgba(217, 231, 245, 0.94);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  padding: 1rem;
  box-shadow: 0 18px 42px rgba(7, 26, 56, 0.14);
  backdrop-filter: blur(12px);
}

.mini-label {
  color: var(--teal-dark);
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.progress-line {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #dcecff;
}

.progress-line span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--teal));
}

.section {
  padding: 4.5rem 0;
}

.section-soft {
  background:
    linear-gradient(180deg, rgba(223, 241, 255, 0.88), rgba(255, 255, 255, 0.94)),
    radial-gradient(circle at 88% 20%, rgba(23, 201, 189, 0.14), transparent 18rem);
}

.section-navy {
  background: var(--navy);
  color: #fff;
}

.section-header {
  max-width: 760px;
  margin-bottom: 2rem;
}

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

.section h2,
.page-section h2 {
  margin: 0.75rem 0 0.7rem;
  color: var(--navy);
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-navy h2,
.section-navy .section-lead {
  color: #fff;
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid-2,
.grid-3,
.grid-4 {
  grid-template-columns: 1fr;
}

.card {
  border: 1px solid rgba(217, 231, 245, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  padding: 1.15rem;
  box-shadow: 0 12px 32px rgba(12, 31, 63, 0.06);
}

.card h3 {
  margin: 0.65rem 0 0.45rem;
  color: var(--navy);
  font-size: 1.15rem;
  line-height: 1.25;
}

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

.icon-badge {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(36, 136, 255, 0.14), rgba(23, 201, 189, 0.18));
  color: var(--blue-dark);
  font-weight: 900;
}

.split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.story-panel {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(223, 241, 255, 0.95), rgba(255, 255, 255, 0.95)),
    radial-gradient(circle at 70% 15%, rgba(23, 201, 189, 0.22), transparent 16rem);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.dna-rail {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  pointer-events: none;
}

.dna-rail::before,
.dna-rail::after {
  position: absolute;
  left: -10%;
  right: -10%;
  height: 90px;
  border-radius: 50%;
  border-top: 18px solid rgba(36, 136, 255, 0.16);
  content: "";
}

.dna-rail::before {
  top: 12%;
  transform: rotate(-7deg);
}

.dna-rail::after {
  bottom: 8%;
  border-color: rgba(23, 201, 189, 0.16);
  transform: rotate(6deg);
}

.report-mockup {
  position: relative;
  display: grid;
  gap: 0.85rem;
  border: 1px solid rgba(185, 216, 245, 0.8);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  padding: 1rem;
  box-shadow: 0 18px 42px rgba(12, 31, 63, 0.1);
}

.report-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.report-chip {
  border-radius: 999px;
  background: rgba(23, 201, 189, 0.14);
  color: var(--teal-dark);
  padding: 0.3rem 0.65rem;
  font-size: 0.78rem;
  font-weight: 850;
}

.metric-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.8rem;
  align-items: center;
  border: 1px solid rgba(217, 231, 245, 0.78);
  border-radius: var(--radius);
  background: #fff;
  padding: 0.85rem;
}

.metric-row strong {
  display: block;
  color: var(--navy);
}

.metric-row span {
  color: var(--muted);
  font-size: 0.9rem;
}

.score {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff;
  font-weight: 900;
}

.product-band {
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(135deg, #eaf6ff 0%, #ffffff 52%, #e9fbf7 100%);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.product-layout {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.product-visual {
  border-radius: 20px;
  background:
    radial-gradient(circle at 20% 16%, rgba(36, 136, 255, 0.18), transparent 12rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(223, 241, 255, 0.72));
  padding: 1rem;
}

.tablet-frame {
  overflow: hidden;
  border: 10px solid #0f2649;
  border-radius: 24px;
  background: #f7fbff;
  box-shadow: 0 22px 52px rgba(7, 26, 56, 0.22);
}

.tablet-bar {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid #d9e7f5;
  background: #fff;
  padding-inline: 1rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.dashboard {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
}

.dashboard-main {
  min-height: 170px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(36, 136, 255, 0.12), rgba(23, 201, 189, 0.12)),
    repeating-linear-gradient(90deg, rgba(36, 136, 255, 0.08) 0 1px, transparent 1px 28px);
}

.helix {
  position: relative;
  width: 96px;
  height: 152px;
}

.helix::before,
.helix::after {
  position: absolute;
  inset: 0;
  border: 7px solid transparent;
  border-left-color: var(--blue);
  border-right-color: var(--teal);
  border-radius: 50%;
  content: "";
  transform: rotate(18deg);
}

.helix::after {
  transform: rotate(-18deg);
}

.step-list {
  display: grid;
  gap: 0.9rem;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  border: 1px solid rgba(217, 231, 245, 0.9);
  border-radius: var(--radius);
  background: #fff;
  padding: 1rem;
}

.step-number {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--surface-soft);
  color: var(--blue-dark);
  font-weight: 900;
}

.step h3,
.step p {
  margin: 0;
}

.step p {
  color: var(--muted);
}

.quote {
  border-left: 4px solid var(--teal);
  margin: 0;
  padding: 0.25rem 0 0.25rem 1rem;
  color: #2d4969;
  font-size: 1.12rem;
  font-weight: 650;
}

.accordion {
  display: grid;
  gap: 0.75rem;
}

details {
  border: 1px solid rgba(217, 231, 245, 0.95);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 28px rgba(12, 31, 63, 0.05);
}

summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  color: var(--navy);
  font-weight: 850;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  flex: 0 0 auto;
  color: var(--blue-dark);
  content: "+";
  font-size: 1.3rem;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 1rem 1rem;
  color: var(--muted);
}

.lead-section {
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(135deg, #0b2a55, #0d7fbd 55%, #17c9bd);
  color: #fff;
  padding: 2rem;
  box-shadow: 0 24px 70px rgba(20, 103, 207, 0.28);
}

.lead-section h2,
.lead-section p {
  color: #fff;
}

.lead-form {
  display: grid;
  gap: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  padding: 1rem;
  backdrop-filter: blur(12px);
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field label {
  font-size: 0.9rem;
  font-weight: 760;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(217, 231, 245, 0.95);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 0.82rem 0.9rem;
  outline: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(36, 136, 255, 0.14);
}

.form-note {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.85rem;
}

.form-message {
  min-height: 1.5rem;
  margin: 0;
  color: #fff;
  font-weight: 750;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 3rem 0 3.5rem;
  background:
    radial-gradient(circle at 78% 12%, rgba(23, 201, 189, 0.18), transparent 20rem),
    linear-gradient(180deg, #f6fbff 0%, #ffffff 100%);
}

.page-hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.breadcrumb {
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumb a {
  color: var(--blue-dark);
  font-weight: 760;
}

.mini-hero-card {
  border: 1px solid rgba(217, 231, 245, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  padding: 1.1rem;
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.8rem;
  color: var(--muted);
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.18rem;
  width: 1rem;
  height: 1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(23, 201, 189, 0.16);
  color: var(--teal-dark);
  content: "";
  font-size: 0.75rem;
  font-weight: 900;
}

.check-list li::after {
  position: absolute;
  left: 0.34rem;
  top: 0.47rem;
  width: 0.34rem;
  height: 0.18rem;
  border-left: 2px solid var(--teal-dark);
  border-bottom: 2px solid var(--teal-dark);
  content: "";
  transform: rotate(-45deg);
}

.legal-content {
  max-width: 860px;
}

.legal-content h2 {
  margin-top: 2rem;
  font-size: 1.55rem;
}

.site-footer {
  background: #06142d;
  color: rgba(255, 255, 255, 0.78);
  padding: 3rem 0 6rem;
}

.site-footer .brand {
  width: fit-content;
  border-radius: var(--radius);
  background: #fff;
  padding: 0.35rem 0.6rem;
}

.site-footer .brand-logo {
  width: 190px;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-grid h3,
.footer-grid h4 {
  margin: 0 0 0.8rem;
  color: #fff;
}

.footer-links {
  display: grid;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 1.2rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(6, 20, 45, 0.62);
  padding: 1rem;
}

.modal.open {
  display: flex;
}

.modal-panel {
  width: min(560px, 100%);
  max-height: min(92vh, 720px);
  overflow: auto;
  border-radius: 18px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.24);
}

.modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding: 1.2rem;
}

.modal-head h2 {
  margin: 0;
  font-size: 1.45rem;
}

.modal-head p {
  margin: 0.25rem 0 0;
  color: var(--muted);
}

.modal-close {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 1.25rem;
}

.modal .lead-form {
  border: 0;
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  padding: 1.2rem;
}

.modal .form-note,
.modal .form-message {
  color: var(--muted);
}

.modal .form-message {
  color: var(--teal-dark);
}

.mobile-sticky-cta {
  position: fixed;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 90;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  border: 1px solid rgba(217, 231, 245, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  padding: 0.6rem;
  box-shadow: 0 18px 48px rgba(7, 26, 56, 0.18);
  backdrop-filter: blur(14px);
}

.mobile-sticky-cta .btn {
  min-height: 42px;
  padding: 0.62rem 0.7rem;
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

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

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

@media (min-width: 720px) {
  .hero {
    padding: 4.5rem 0 5.5rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(380px, 1.12fr);
  }

  .split,
  .product-layout,
  .page-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  }

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

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

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

  .trust-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(3, 1fr);
  }

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

  .site-footer {
    padding-bottom: 3rem;
  }
}

@media (min-width: 980px) {
  .nav-links,
  .nav-actions {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }

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

  .card {
    padding: 1.35rem;
  }

  .lead-section {
    padding: 2.4rem;
  }
}

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

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.35rem, 14vw, 3.6rem);
  }

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

  .btn {
    width: 100%;
  }

  .cta-row {
    width: 100%;
  }

  .brand-logo {
    width: 118px;
  }
}

@media (max-width: 719px) {
  .hero-image img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: 68% center;
  }
}
