:root {
  --ink: #071a3d;
  --ink-2: #0d2857;
  --muted: #5d6f91;
  --line: #dbe7f6;
  --paper: #f8fbff;
  --white: #ffffff;
  --blue: #0868ff;
  --blue-2: #1759e8;
  --cyan: #29bfff;
  --green: #14ad67;
  --soft-blue: #eef6ff;
  --soft-cyan: #eafaff;
  --nav-height: 82px;
  --radius: 20px;
  --radius-sm: 14px;
  --shadow-sm: 0 12px 36px rgba(10, 58, 122, 0.08);
  --shadow: 0 24px 70px rgba(15, 76, 154, 0.15);
  --shadow-blue: 0 18px 44px rgba(8, 104, 255, 0.28);
  --table-sticky-top: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 20px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: white;
  background: var(--blue);
}

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

a,
button,
input,
select,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(8, 104, 255, 0.35);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: white;
  background: var(--ink);
  border-radius: 10px;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

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

.comparison-wrap {
  width: min(1500px, calc(100% - 48px));
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.91);
  border-bottom: 1px solid rgba(9, 47, 105, 0.08);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  transition: box-shadow 220ms ease, background 220ms ease;
}

.topbar.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 35px rgba(9, 55, 120, 0.09);
}

.scroll-progress {
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  overflow: hidden;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left;
}

.nav {
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
  flex: 0 0 auto;
}

.brand-mark {
  width: 35px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-mark::before {
  display: none;
}

.brand-mark i {
  width: 3px;
  border-radius: 99px;
  background: linear-gradient(180deg, var(--cyan), var(--blue));
  box-shadow: 0 3px 10px rgba(8, 104, 255, 0.24);
}

.brand-mark i:nth-child(1),
.brand-mark i:nth-child(7) { height: 12px; }
.brand-mark i:nth-child(2),
.brand-mark i:nth-child(6) { height: 23px; }
.brand-mark i:nth-child(3),
.brand-mark i:nth-child(5) { height: 31px; }
.brand-mark i:nth-child(4) { height: 38px; }

.brand-name {
  font-size: 1.22rem;
  letter-spacing: -0.035em;
}

.brand-name sup {
  position: relative;
  top: -0.45em;
  margin-left: 3px;
  color: var(--blue);
  font-size: 0.54em;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  max-height: none;
  overflow: visible;
}

.nav-links a {
  position: relative;
  padding: 10px 12px;
  border-radius: 10px;
  color: #4c5f80;
  font-size: 0.91rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--blue);
  background: rgba(8, 104, 255, 0.06);
}

.nav-links a.is-active::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: var(--blue);
}

.nav-links a.nav-cta {
  min-height: 44px;
  margin-left: 10px;
  padding-inline: 17px;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 10px 24px rgba(8, 104, 255, 0.22);
}

.nav-links a.nav-cta:hover {
  color: white;
  background: linear-gradient(135deg, #0876ff, #174bca);
  transform: translateY(-1px);
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  background: white;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition: transform 200ms ease, opacity 200ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.btn-primary,
.btn-secondary,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 21px;
  border: 0;
  border-radius: 13px;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
  color: white;
  background: linear-gradient(135deg, #0877ff, #174bc9);
  box-shadow: 0 20px 50px rgba(8, 104, 255, 0.34);
  transform: translateY(-2px);
}

.btn-secondary {
  color: var(--blue);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(8, 104, 255, 0.22);
  box-shadow: 0 10px 28px rgba(13, 64, 132, 0.08);
}

.btn-secondary:hover {
  color: var(--blue);
  border-color: rgba(8, 104, 255, 0.45);
  background: white;
  transform: translateY(-2px);
}

.text-link {
  min-height: 42px;
  padding: 0;
  color: var(--blue);
  background: transparent;
  justify-content: flex-start;
  box-shadow: none;
}

.text-link span,
.btn-primary span,
.btn-secondary span {
  transition: transform 180ms ease;
}

.text-link:hover span,
.btn-primary:hover span,
.btn-secondary:hover span {
  transform: translateX(4px);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 650px;
  padding: 64px 0 0;
  overflow: hidden;
  border: 0;
  background:
    linear-gradient(90deg, rgba(230, 246, 255, 0.74) 0%, rgba(219, 242, 255, 0.58) 42%, rgba(159, 218, 255, 0.22) 68%, rgba(190, 231, 255, 0.12) 100%),
    linear-gradient(180deg, rgba(255,255,255,0) 58%, rgba(243,249,255,0.52) 100%),
    url("/assets/images/background.png?v=20260715a") center bottom / 100% 100% no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(180deg, rgba(248,251,255,0), var(--paper) 88%);
  pointer-events: none;
}

.hero-home {
  min-height: 720px;
}

.hero-rings {
  position: absolute;
  z-index: -1;
  width: 720px;
  aspect-ratio: 1;
  right: max(-180px, calc((100vw - 1500px) / 2));
  top: -70px;
  border: 1px solid rgba(255, 255, 255, 0.33);
  border-radius: 50%;
  box-shadow:
    0 0 0 50px rgba(255, 255, 255, 0.10),
    0 0 0 100px rgba(255, 255, 255, 0.08),
    0 0 0 150px rgba(255, 255, 255, 0.06),
    0 0 0 200px rgba(255, 255, 255, 0.045);
  animation: ringPulse 8s ease-in-out infinite;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
  min-height: 500px;
}

.hero-home .hero-grid {
  min-height: 550px;
}

.hero-content {
  max-width: 700px;
  padding-bottom: 54px;
}

.kicker {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.095em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(8, 104, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 24px rgba(13, 61, 126, 0.08);
}

.hero-kicker > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(8, 104, 255, 0.1);
}

h1,
h2,
h3 {
  color: var(--ink);
  letter-spacing: -0.04em;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 5.25rem);
  line-height: 0.99;
}

.inside h1 {
  font-size: clamp(2.6rem, 4.6vw, 4.6rem);
}

h1 span {
  color: var(--blue);
}

.hero-copy {
  max-width: 660px;
  margin: 25px 0 0;
  color: #31496f;
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
  line-height: 1.62;
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.pill {
  min-height: 31px;
  padding: 0 10px;
  border: 1px solid rgba(8, 55, 120, 0.1);
  border-radius: 999px;
  color: #456085;
  background: rgba(255,255,255,0.64);
  font-size: 0.78rem;
  font-weight: 750;
  backdrop-filter: blur(8px);
}

.pill::before {
  content: "✓";
  margin-right: 6px;
  color: var(--green);
  font-weight: 900;
}

.product-visual {
  position: relative;
  align-self: stretch;
  min-height: 530px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  perspective: 900px;
  transform-style: preserve-3d;
  transition: transform 260ms ease-out;
}

.hero-phone {
  position: relative;
  z-index: 3;
  width: min(277px, 68%);
  height: auto;
  filter: drop-shadow(0 34px 38px rgba(10, 47, 99, 0.3));
  transform: translate3d(var(--phone-x, 0), var(--phone-y, 0), 0) rotateY(var(--phone-rotate, -2deg));
  animation: phoneIn 900ms 120ms cubic-bezier(.2,.8,.2,1) both;
  will-change: transform;
}

.phone-glow {
  position: absolute;
  z-index: 0;
  width: 430px;
  height: 430px;
  bottom: 4px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.96) 0, rgba(255,255,255,0.58) 38%, rgba(56,181,255,0.08) 70%);
  filter: blur(3px);
}

.phone-orbit {
  position: absolute;
  z-index: 1;
  width: 390px;
  height: 390px;
  bottom: 18px;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 50%;
}

.phone-orbit-two {
  width: 480px;
  height: 480px;
  bottom: -25px;
  border-color: rgba(255,255,255,0.4);
}

.float-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 14px;
  background: rgba(255,255,255,0.82);
  box-shadow: 0 18px 45px rgba(7, 45, 100, 0.17);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  animation: cardFloat 4.8s ease-in-out infinite;
}

.float-card-top {
  top: 120px;
  right: 1%;
}

.float-card-bottom {
  bottom: 82px;
  left: -3%;
  animation-delay: -2.1s;
}

.float-card strong,
.float-card small {
  display: block;
}

.float-card strong {
  color: var(--ink);
  font-size: 0.82rem;
}

.float-card small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.68rem;
}

.float-icon,
.proof-icon,
.ai-float-card > span {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  flex: 0 0 35px;
  border-radius: 10px;
  color: var(--blue);
  background: var(--soft-blue);
}

.float-icon svg,
.proof-icon svg,
.ai-float-card svg,
.icon svg,
.why-dot svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-proofbar {
  position: relative;
  z-index: 5;
  min-height: 86px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(13, 76, 153, 0.12);
  border-radius: 20px 20px 0 0;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 22px 60px rgba(8, 52, 115, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
}

.hero-proofbar > div {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  grid-template-rows: auto auto;
  column-gap: 11px;
  align-content: center;
  padding: 15px 20px;
}

.hero-proofbar > div + div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: var(--line);
}

.hero-proofbar .proof-icon {
  width: 42px;
  height: 42px;
  grid-row: 1 / 3;
  border-radius: 12px;
}

.hero-proofbar strong {
  align-self: end;
  font-size: 0.8rem;
}

.hero-proofbar small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.68rem;
}

.audience-strip {
  padding: 28px 0;
  border: 0;
  background: var(--paper);
}

.audience-row {
  justify-content: center;
  gap: 10px;
}

.audience-row span:first-child {
  margin-right: 8px;
  color: var(--blue);
  font-size: 0.73rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.audience-pill {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #627392;
  background: white;
  box-shadow: 0 5px 15px rgba(16,60,120,0.04);
  font-size: 0.8rem;
}

.section {
  position: relative;
  padding: 92px 0;
}

.section-head {
  max-width: 800px;
  margin-bottom: 36px;
}

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

.section h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.04;
}

.section h3 {
  line-height: 1.18;
}

.packages-head {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.packages-head h2 {
  white-space: normal;
  font-size: clamp(2.1rem, 4vw, 3.65rem);
}

.section-copy {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.72;
}

.muted-band {
  border: 0;
  background:
    radial-gradient(circle at 85% 10%, rgba(51,190,255,0.09), transparent 31%),
    linear-gradient(180deg, #f1f8ff, #f8fbff);
}

.feature-grid,
.pricing-grid,
.link-grid,
.proof-grid,
.compare-card-grid {
  display: grid;
  gap: 18px;
}

.feature-grid,
.pricing-grid,
.proof-grid,
.link-grid,
.compare-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.platform-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.pricing-grid {
  max-width: 1060px;
  margin-inline: auto;
  align-items: stretch;
}

.feature-card,
.price-card,
.proof-card,
.content-card,
.link-grid a,
.compare-card,
.lead-form,
.legal-copy,
.faq-item,
.ai-preview-card,
.screenshot-placeholder {
  border: 1px solid rgba(14, 71, 143, 0.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.95);
  box-shadow: var(--shadow-sm);
}

.feature-card,
.price-card,
.proof-card,
.content-card,
.compare-card,
.link-grid a {
  padding: 26px;
}

.feature-card,
.price-card,
.proof-card,
.compare-card,
.link-grid a {
  position: relative;
  overflow: hidden;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.feature-card::after,
.proof-card::after,
.compare-card::after,
.link-grid a::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: -72px;
  top: -72px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8,104,255,0.10), rgba(8,104,255,0));
  transition: transform 300ms ease;
}

.feature-card:hover,
.price-card:hover,
.proof-card:hover,
.compare-card:hover,
.link-grid a:hover {
  z-index: 2;
  border-color: rgba(8, 104, 255, 0.26);
  box-shadow: 0 24px 58px rgba(13, 70, 143, 0.15);
  transform: translateY(-7px);
}

.feature-card:hover::after,
.proof-card:hover::after,
.compare-card:hover::after,
.link-grid a:hover::after {
  transform: scale(1.45);
}

.platform-grid .feature-card {
  padding: 22px 17px;
  text-align: center;
}

.feature-card h3,
.price-card h3,
.proof-card h3,
.compare-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
}

.platform-grid .feature-card h3 {
  font-size: 0.95rem;
}

.feature-card p,
.price-card p,
.proof-card p,
.compare-card p,
.link-grid span {
  color: var(--muted);
  line-height: 1.62;
}

.platform-grid .feature-card p {
  margin-bottom: 0;
  font-size: 0.82rem;
}

.icon {
  width: 50px;
  height: 50px;
  margin: 0 0 18px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--blue);
  background: linear-gradient(145deg, #f5faff, #e7f2ff);
  box-shadow: inset 0 0 0 1px rgba(8,104,255,0.06);
}

.platform-grid .icon {
  width: 62px;
  height: 62px;
  margin-inline: auto;
  border-radius: 50%;
}

.platform-grid .icon svg {
  width: 28px;
  height: 28px;
}

.price-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.price-card.is-featured {
  border-color: rgba(8,104,255,0.5);
  box-shadow: 0 25px 60px rgba(8,104,255,0.17);
  transform: translateY(-8px);
}

.price-card.is-featured:hover {
  transform: translateY(-13px);
}

.plan-badge {
  min-height: 29px;
  margin: -26px -26px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: linear-gradient(90deg, var(--blue), #0e7cff);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.price-card .kicker {
  min-height: 2em;
  margin-bottom: 8px;
  line-height: 1.45;
}

.price-card .price {
  margin: 16px 0;
  color: var(--muted);
  font-size: 0.74rem;
}

.price-card .price span {
  margin-right: 7px;
  color: var(--blue);
  font-size: clamp(2.15rem, 3vw, 3rem);
  font-weight: 850;
  letter-spacing: -0.045em;
}

.price-card ul {
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding: 7px 0 7px 23px;
  color: #405777;
  line-height: 1.45;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 900;
}

.price-card .text-link {
  margin-top: auto;
  padding-top: 14px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 13px;
}

.step {
  counter-increment: step;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 15px;
  align-items: center;
  padding: 17px 18px;
  border: 1px solid rgba(15,77,152,0.11);
  border-radius: 16px;
  background: white;
  box-shadow: 0 12px 34px rgba(13,60,125,0.06);
  transition: transform 200ms ease, border-color 200ms ease;
}

.step:hover {
  border-color: rgba(8,104,255,0.28);
  transform: translateX(5px);
}

.step::before {
  content: counter(step, decimal-leading-zero);
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: white;
  background: linear-gradient(145deg, var(--blue), #0c4dc5);
  box-shadow: 0 10px 20px rgba(8,104,255,0.2);
  font-size: 0.77rem;
  font-weight: 900;
}

.step strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.step span {
  color: var(--muted);
  line-height: 1.55;
}

.provider-value-section {
  background:
    radial-gradient(circle at 80% 0, rgba(19,111,255,0.24), transparent 28%),
    radial-gradient(circle at 20% 120%, rgba(22,100,255,0.18), transparent 30%),
    #051c45;
  overflow: hidden;
}

.provider-value-section::after {
  content: "";
  position: absolute;
  inset: auto -5% -100px 38%;
  height: 240px;
  opacity: 0.36;
  background-image: radial-gradient(circle, #1683ff 1.5px, transparent 1.5px);
  background-size: 13px 13px;
  transform: skewY(-7deg);
  mask-image: linear-gradient(90deg, transparent, black, transparent);
}

.provider-value {
  position: relative;
  z-index: 2;
}

.provider-value h2,
.provider-value .kicker,
.provider-value .why-item strong {
  color: white;
}

.provider-value .kicker {
  color: #70c7ff;
}

.provider-value .section-copy,
.provider-value .why-item > span:not(.why-dot),
.provider-value .why-item > div > span {
  color: rgba(235,245,255,0.76);
}

.provider-value .why-list {
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.045);
  backdrop-filter: blur(12px);
}

.why-list {
  display: grid;
  gap: 0;
}

.why-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 18px;
  border-bottom: 1px solid rgba(17,73,143,0.1);
}

.why-item:last-child {
  border-bottom: 0;
}

.why-dot {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  border-radius: 13px;
  color: var(--blue);
  background: var(--soft-blue);
  line-height: 1;
  text-align: center;
}

.provider-value .why-dot {
  color: #72c9ff;
  background: rgba(255,255,255,0.1);
}

.why-item strong,
.why-item > span:not(.why-dot),
.why-item > div > span {
  display: block;
}

.why-item strong {
  margin-bottom: 5px;
}

.why-item > span:not(.why-dot),
.why-item > div > span {
  color: var(--muted);
  line-height: 1.55;
}

.reassurance-list {
  display: grid;
  gap: 11px;
  margin-top: 20px;
}

.reassurance-list span {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #415979;
  font-weight: 700;
  line-height: 1.45;
}

.reassurance-list span::before {
  content: "✓";
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  flex: 0 0 23px;
  border-radius: 50%;
  color: var(--blue);
  background: var(--soft-blue);
  font-size: 0.74rem;
  font-weight: 900;
}

.proof-card h3 {
  font-size: 1.15rem;
}

.proof-card::before {
  content: "";
  width: 42px;
  height: 4px;
  display: block;
  margin-bottom: 20px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.center-actions {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.compare-card {
  text-align: left;
}

.compare-card > strong {
  display: block;
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1.05rem;
}

.compare-card .icon {
  margin-bottom: 20px;
}

.comparison-panel {
  overflow: hidden;
  border: 1px solid rgba(10,69,144,0.13);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

.comparison-block {
  border-color: var(--line);
}

.comparison-block h3 {
  margin: 0;
  padding: 24px 22px 14px;
  color: var(--ink);
  font-size: 1.15rem;
}

.comparison-scroll {
  scrollbar-color: #a8c9f2 #eef5fc;
  scrollbar-width: thin;
}

.comparison-table th,
.comparison-table td {
  padding: 15px 16px;
  border-color: #e5edf8;
  font-size: 0.84rem;
  line-height: 1.5;
}

.comparison-table th {
  top: var(--table-sticky-top);
  z-index: 10;
  color: #30496d;
  background: #edf6ff;
  font-size: 0.69rem;
  letter-spacing: 0.07em;
}

.comparison-table th:nth-child(2) {
  color: white;
  background: var(--blue);
}

.comparison-table .lv-col {
  color: #123f78;
  background: rgba(232,244,255,0.72);
  font-weight: 700;
}

.comparison-table tbody tr:hover td {
  background-color: #f8fbff;
}

.comparison-table tbody tr:hover .lv-col {
  background-color: #e4f2ff;
}

.comparison-note {
  padding: 21px;
  background: var(--ink);
}

.lead-form {
  padding: 30px;
  box-shadow: var(--shadow);
}

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

label {
  display: grid;
  gap: 8px;
  margin-bottom: 15px;
  color: #263e62;
  font-size: 0.82rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 51px;
  padding: 12px 14px;
  border: 1px solid #cfdeef;
  border-radius: 12px;
  color: var(--ink);
  background: #fbfdff;
  font: inherit;
  font-size: 0.94rem;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

input:hover,
select:hover,
textarea:hover {
  border-color: #afc8e8;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  background: white;
  box-shadow: 0 0 0 4px rgba(8,104,255,0.1);
}

textarea {
  min-height: 124px;
  resize: vertical;
}

.lead-form > .btn-primary {
  width: 100%;
}

.trial-inclusions {
  padding: 20px;
  border: 1px solid rgba(20, 87, 231, 0.18);
  border-radius: 16px;
  background: rgba(20, 87, 231, 0.045);
}

.trial-inclusions strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
}

.trial-inclusions ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trial-inclusions li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 0.92rem;
}

.trial-inclusions li::before {
  position: absolute;
  left: 0;
  color: var(--blue);
  content: "✓";
  font-weight: 800;
}

.trial-order-summary {
  display: grid;
  gap: 5px;
  margin: 5px 0 17px;
  padding: 17px 18px;
  border: 1px solid #b8d5fb;
  border-radius: 14px;
  background: linear-gradient(135deg, #edf6ff, #f8fbff);
  color: #435b7e;
  line-height: 1.55;
}

.trial-order-summary strong {
  color: var(--ink);
  font-size: 1.04rem;
}

.check-label {
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 11px;
  color: #4f6382;
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.55;
}

.check-label input[type="checkbox"] {
  width: 19px;
  min-height: 19px;
  margin-top: 2px;
  accent-color: var(--blue);
}

.check-label a {
  color: var(--blue);
  font-weight: 800;
}

.secure-checkout-note {
  margin: 2px 0 18px;
  color: #657b99;
  font-size: 0.82rem;
  line-height: 1.55;
}

.trial-existing-login {
  margin: 13px 0 0;
  color: #657b99;
  font-size: 0.84rem;
  text-align: center;
}

.trial-existing-login a {
  color: var(--blue);
  font-weight: 800;
}

.trial-reference {
  display: inline-flex;
  gap: 6px;
  margin: 4px 0 0;
  padding: 8px 11px;
  border: 1px solid #cfe1f7;
  border-radius: 9px;
  color: #526987;
  background: #f6faff;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
}

.trial-steps {
  display: grid;
  gap: 14px;
  padding: 0;
  list-style: none;
  counter-reset: trial-step;
}

.trial-signup-section .content-card h2,
.form-section .content-card h2 {
  font-size: clamp(1.65rem, 2.35vw, 2.35rem);
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.trial-steps li {
  counter-increment: trial-step;
  display: grid;
  grid-template-columns: 38px 1fr;
  column-gap: 12px;
  align-items: start;
}

.trial-steps li::before {
  content: counter(trial-step);
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: var(--blue);
  color: white;
  font-weight: 900;
}

.trial-steps strong,
.trial-steps span {
  display: block;
}

.trial-steps span {
  margin-top: 3px;
  color: var(--muted);
  line-height: 1.5;
}

.legal-copy {
  max-width: 960px;
  padding: clamp(26px, 5vw, 58px);
  color: #4f6382;
  line-height: 1.78;
  box-shadow: var(--shadow);
}

.legal-copy h2 {
  margin-top: 2.25em;
  color: var(--ink);
  font-size: clamp(1.45rem, 2.6vw, 2.15rem);
  line-height: 1.2;
}

.legal-copy a {
  color: var(--blue);
}

.legal-updated {
  padding: 14px 16px;
  border: 1px solid #dbe9f7;
  border-radius: 13px;
  color: var(--ink);
  background: var(--soft-blue);
}

.link-grid a {
  min-height: 145px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 15px;
  text-decoration: none;
}

.link-grid a::before {
  content: "→";
  position: absolute;
  right: 24px;
  bottom: 21px;
  color: var(--blue);
  font-size: 1.2rem;
  transition: transform 200ms ease;
}

.link-grid a:hover::before {
  transform: translateX(5px);
}

.link-grid strong {
  max-width: 86%;
  color: var(--ink);
  line-height: 1.35;
}

.link-grid span {
  padding-right: 30px;
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-list {
  max-width: 900px;
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: clip;
  box-shadow: 0 10px 30px rgba(12,58,121,0.06);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.faq-item[open] {
  border-color: rgba(8,104,255,0.3);
  box-shadow: 0 18px 45px rgba(12,58,121,0.1);
}

.faq-item summary {
  position: relative;
  padding: 21px 58px 21px 22px;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: var(--blue);
  background: var(--soft-blue);
  font-size: 1.2rem;
  transform: translateY(-50%);
  transition: transform 200ms ease, color 200ms ease, background 200ms ease;
}

.faq-item[open] summary::after {
  color: white;
  background: var(--blue);
  transform: translateY(-50%) rotate(45deg);
}

.faq-item p {
  margin: 0;
  padding: 0 58px 22px 22px;
  color: var(--muted);
  line-height: 1.68;
}

.ai-detail-layout {
  align-items: center;
}

.ai-preview-card {
  padding: 20px;
  overflow: hidden;
}

.placeholder-label {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  border: 1px solid rgba(8,104,255,0.13);
  border-radius: 999px;
  color: var(--blue);
  background: var(--soft-blue);
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ai-device-stage {
  position: relative;
  min-height: 530px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 70%, rgba(255,255,255,0.96), rgba(255,255,255,0.3) 45%, transparent 64%),
    linear-gradient(145deg, #dff4ff, #86ceff);
  overflow: hidden;
}

.ai-device-stage img {
  position: relative;
  z-index: 2;
  width: 230px;
  filter: drop-shadow(0 28px 28px rgba(8,47,102,0.27));
}

.device-orbit {
  position: absolute;
  width: 380px;
  height: 380px;
  bottom: 20px;
  border: 1px solid rgba(255,255,255,0.62);
  border-radius: 50%;
}

.orbit-two {
  width: 470px;
  height: 470px;
  bottom: -20px;
}

.ai-float-card {
  position: absolute;
  z-index: 3;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: 14px;
  background: rgba(255,255,255,0.86);
  box-shadow: 0 16px 35px rgba(8,50,110,0.15);
  backdrop-filter: blur(15px);
}

.ai-float-card strong,
.ai-float-card small {
  display: block;
}

.ai-float-card strong {
  font-size: 0.82rem;
}

.ai-float-card small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.7rem;
}

.ai-screenshot-grid {
  gap: 18px;
}

.screenshot-placeholder {
  padding: 18px;
}

.mock-screen {
  border: 0;
  border-radius: 15px;
  background: linear-gradient(145deg, #e8f6ff, #f7fbff);
}

.mock-bar {
  background: linear-gradient(90deg, var(--ink), #123a7a);
}

.mock-card-line {
  background: rgba(8,104,255,0.12);
}

.mock-card-line.strong {
  border-color: rgba(8,104,255,0.09);
  box-shadow: 0 10px 26px rgba(10,60,125,0.06);
}

.cta-band {
  position: relative;
  isolation: isolate;
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 26px;
  color: white;
  background:
    radial-gradient(circle at 85% 20%, rgba(28,133,255,0.5), transparent 30%),
    linear-gradient(135deg, #061b42, #063373);
  box-shadow: 0 30px 80px rgba(6,39,88,0.2);
  overflow: hidden;
}

.cta-band::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 380px;
  height: 380px;
  right: -90px;
  bottom: -250px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 48px rgba(255,255,255,0.035), 0 0 0 96px rgba(255,255,255,0.025);
}

.cta-band .kicker {
  color: #6dc5ff;
}

.cta-band h2 {
  max-width: 760px;
  color: white;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.cta-band p {
  margin-bottom: 0;
  color: rgba(237,246,255,0.76);
}

.cta-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 0 0 160px;
}

.cta-band .btn-primary {
  color: var(--blue);
  background: white;
  box-shadow: 0 14px 35px rgba(3,26,62,0.24);
}

.cta-band .btn-secondary {
  color: white;
  border-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.08);
  box-shadow: none;
}

footer {
  padding: 68px 0 24px;
  border: 0;
  color: #aebbd0;
  background: #04132f;
}

footer .brand,
footer .brand-name {
  color: white;
}

footer .wrap {
  display: grid;
  align-items: start;
}

.footer-grid {
  grid-template-columns: minmax(240px, 0.85fr) minmax(420px, 1.15fr);
  gap: 70px;
  padding-bottom: 48px;
}

.footer-brand p {
  max-width: 390px;
  margin: 20px 0 0;
  color: #8fa0ba;
  line-height: 1.65;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 30px;
}

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-links strong {
  margin-bottom: 4px;
  color: white;
  font-size: 0.83rem;
}

footer a {
  margin: 0;
  color: #91a3bf;
  font-size: 0.83rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease;
}

footer a:hover {
  color: white;
}

.footer-bottom {
  grid-template-columns: 1fr auto;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.76rem;
}

.footer-bottom > span:last-child {
  display: flex;
  gap: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 720ms cubic-bezier(.2,.8,.2,1), transform 720ms cubic-bezier(.2,.8,.2,1);
  will-change: opacity, transform;
}

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

.lead-form {
  opacity: 1;
  transform: none;
}

.feature-grid .reveal:nth-child(2),
.proof-grid .reveal:nth-child(2),
.pricing-grid .reveal:nth-child(2),
.compare-card-grid .reveal:nth-child(2),
.link-grid .reveal:nth-child(2) { transition-delay: 80ms; }

.feature-grid .reveal:nth-child(3),
.proof-grid .reveal:nth-child(3),
.pricing-grid .reveal:nth-child(3),
.compare-card-grid .reveal:nth-child(3),
.link-grid .reveal:nth-child(3) { transition-delay: 160ms; }

.feature-grid .reveal:nth-child(4),
.link-grid .reveal:nth-child(4) { transition-delay: 240ms; }

.feature-grid .reveal:nth-child(5),
.link-grid .reveal:nth-child(5) { transition-delay: 320ms; }

@keyframes contentIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes phoneIn {
  from { opacity: 0; transform: translateY(65px) rotateY(-8deg) scale(.94); }
  to { opacity: 1; transform: translateY(0) rotateY(-2deg) scale(1); }
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

@keyframes ringPulse {
  0%, 100% { transform: scale(.98); opacity: .72; }
  50% { transform: scale(1.03); opacity: 1; }
}

@media (min-width: 1180px) {
  .comparison-scroll {
    overflow-x: auto;
  }

  .comparison-table.comparison-wide {
    min-width: 1260px;
  }
}

@media (max-width: 1080px) {
  .nav-links a {
    padding-inline: 8px;
    font-size: 0.84rem;
  }

  .nav-links a.nav-cta {
    margin-left: 4px;
  }

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

  .float-card-top { right: -5%; }
  .float-card-bottom { left: -7%; }
}

@media (max-width: 900px) {
  :root {
    --nav-height: 72px;
    --table-sticky-top: 72px;
  }

  .wrap,
  .comparison-wrap {
    width: min(100% - 36px, 1180px);
  }

  .nav {
    min-height: var(--nav-height);
    padding: 0;
  }

  .menu-toggle {
    display: flex;
    position: relative;
    z-index: 102;
  }

  .nav-links {
    position: fixed;
    z-index: 101;
    inset: var(--nav-height) 0 auto;
    max-height: calc(100dvh - var(--nav-height));
    display: grid;
    grid-template-columns: 1fr;
    justify-items: stretch;
    justify-content: stretch;
    align-items: stretch;
    gap: 4px;
    width: auto;
    padding: 18px;
    overflow-y: auto;
    border-bottom: 1px solid var(--line);
    background: rgba(255,255,255,0.98);
    box-shadow: 0 24px 55px rgba(7,37,84,0.18);
    transform: translateY(-115%);
    opacity: 0;
    pointer-events: none;
    transition: transform 260ms cubic-bezier(.2,.8,.2,1), opacity 200ms ease;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    width: 100%;
    padding: 13px 15px;
    font-size: 0.95rem;
    text-align: left;
  }

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

  .nav-links a.nav-cta {
    display: inline-flex;
    margin: 7px 0 0;
  }

  .hero,
  .hero-home {
    min-height: 0;
    padding-top: 48px;
    background-position: center bottom;
  }

  .hero-grid,
  .hero-home .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(250px, .72fr);
    gap: 20px;
    min-height: 510px;
  }

  .hero-content {
    padding-bottom: 40px;
  }

  .product-visual {
    min-height: 490px;
  }

  .float-card {
    display: none;
  }

  .hero-proofbar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 18px 18px 0 0;
  }

  .hero-proofbar > div:nth-child(3)::before {
    display: none;
  }

  .hero-proofbar > div:nth-child(n+3) {
    border-top: 1px solid var(--line);
  }

  .section {
    padding: 76px 0;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .feature-grid,
  .pricing-grid,
  .proof-grid,
  .link-grid,
  .compare-card-grid,
  .ai-screenshot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .provider-value {
    grid-template-columns: 0.85fr 1.15fr;
  }

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

@media (max-width: 680px) {
  .trial-inclusions ul {
    grid-template-columns: 1fr;
  }

  :root {
    --nav-height: 68px;
    --table-sticky-top: 68px;
  }

  .wrap,
  .comparison-wrap {
    width: min(100% - 28px, 1180px);
  }

  .brand-mark {
    width: 31px;
    height: 33px;
  }

  .brand-mark i:nth-child(1),
  .brand-mark i:nth-child(7) { height: 10px; }
  .brand-mark i:nth-child(2),
  .brand-mark i:nth-child(6) { height: 20px; }
  .brand-mark i:nth-child(3),
  .brand-mark i:nth-child(5) { height: 27px; }
  .brand-mark i:nth-child(4) { height: 33px; }

  .brand-name {
    font-size: 1.08rem;
  }

  .nav {
    min-height: var(--nav-height);
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .hero,
  .hero-home {
    padding: 34px 0 0;
    background-position: center, center, right bottom;
    background-size: 100% 100%, 100% 100%, auto 100%;
  }

  .hero-grid,
  .hero-home .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    min-height: 0;
    text-align: left;
  }

  .hero-content {
    max-width: none;
    padding-bottom: 18px;
  }

  h1,
  .inside h1 {
    font-size: clamp(2.45rem, 12vw, 3.7rem);
    line-height: 1.01;
  }

  .hero-copy {
    font-size: 1rem;
    line-height: 1.58;
  }

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

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
  }

  .trust-row {
    gap: 6px;
  }

  .pill {
    font-size: 0.7rem;
  }

  .hero .product-visual {
    min-height: 455px;
    display: flex;
    align-items: flex-end;
    margin-top: -5px;
  }

  .hero-phone {
    width: 220px;
  }

  .phone-glow {
    width: 330px;
    height: 330px;
  }

  .phone-orbit {
    width: 315px;
    height: 315px;
  }

  .phone-orbit-two {
    width: 390px;
    height: 390px;
  }

  .hero-proofbar {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0,1fr));
    border-radius: 16px 16px 0 0;
  }

  .hero-proofbar > div {
    grid-template-columns: 34px 1fr;
    padding: 12px 10px;
    column-gap: 8px;
  }

  .hero-proofbar .proof-icon {
    width: 34px;
    height: 34px;
  }

  .hero-proofbar .proof-icon svg {
    width: 17px;
    height: 17px;
  }

  .hero-proofbar strong {
    font-size: 0.68rem;
  }

  .hero-proofbar small {
    font-size: 0.59rem;
  }

  .audience-strip {
    padding: 23px 0 4px;
  }

  .audience-row {
    justify-content: flex-start;
  }

  .audience-row span:first-child {
    width: 100%;
  }

  .section {
    padding: 64px 0;
  }

  .section h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .section-head {
    margin-bottom: 28px;
  }

  .feature-grid,
  .pricing-grid,
  .proof-grid,
  .link-grid,
  .compare-card-grid,
  .form-grid,
  .ai-screenshot-grid,
  .platform-grid,
  .provider-value,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .platform-grid {
    gap: 11px;
  }

  .platform-grid .feature-card {
    min-height: 150px;
    display: grid;
    grid-template-columns: 58px 1fr;
    column-gap: 15px;
    align-content: center;
    text-align: left;
  }

  .platform-grid .icon {
    grid-row: 1 / 3;
    width: 54px;
    height: 54px;
    margin: 0;
  }

  .platform-grid .feature-card h3 {
    align-self: end;
  }

  .platform-grid .feature-card p {
    margin-top: 4px;
  }

  .price-card.is-featured,
  .price-card.is-featured:hover {
    transform: none;
  }

  .feature-card,
  .price-card,
  .proof-card,
  .content-card,
  .compare-card,
  .link-grid a {
    padding: 22px;
  }

  .lead-form {
    padding: 22px;
  }

  .cta-band {
    display: grid;
    gap: 26px;
    padding: 29px 22px;
  }

  .cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .ai-device-stage {
    min-height: 475px;
  }

  .ai-device-stage img {
    width: 210px;
  }

  .legal-copy {
    padding: 22px;
  }

  footer {
    padding-top: 50px;
  }

  .footer-grid {
    gap: 36px;
  }

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

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

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

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

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