:root {
  --ink: #071a33;
  --muted: #506879;
  --paper: #f3f8fa;
  --surface: #ffffff;
  --line: #d7e6e9;
  --teal: #087f83;
  --teal-dark: #075a64;
  --mint: #ddf7f3;
  --amber: #12b8ac;
  --coral: #087f83;
  --blue: #123f68;
  --shadow: 0 22px 54px rgba(7, 26, 51, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  letter-spacing: 0;
}

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

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

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

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

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(215, 230, 233, 0.86);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1160px, calc(100% - 32px));
  min-height: 92px;
  margin: 0 auto;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 92px;
}

.brand-logo {
  display: block;
  flex: 0 0 auto;
  width: 92px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a,
.nav-cta,
.menu-button {
  min-height: 42px;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 800;
}

.nav-links a {
  color: var(--muted);
}

.nav-links a:not(.nav-cta):hover,
.nav-links a:not(.nav-cta).active {
  background: #fff;
  color: var(--ink);
}

.nav-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
}

.nav-cta,
.primary-button {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 10px 24px rgba(8, 127, 131, 0.24);
}

.nav-links .nav-cta {
  background: var(--teal);
  color: #fff;
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta.active {
  background: var(--teal-dark);
  color: #fff;
}

.nav-links a,
.nav-cta,
.primary-button,
.secondary-button,
.menu-button,
.feature-card,
.proof-card,
.workflow-card,
.quote-card,
.form-panel,
.insight-panel,
.module-card,
.persona-card,
.metric-card,
.trust-item,
.comparison,
.compact-kpis div,
.scenario-panel {
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .nav-links a:not(.nav-cta):hover {
    background: #edf8f7;
    color: var(--teal-dark);
  }

  .nav-links .nav-cta:hover,
  .primary-button:hover {
    background: var(--teal-dark);
    color: #fff;
    box-shadow: 0 12px 28px rgba(7, 90, 100, 0.28);
    transform: translateY(-1px);
  }

  .secondary-button:hover,
  .menu-button:hover {
    border-color: rgba(8, 127, 131, 0.34);
    background: #f1fbfa;
    color: var(--teal-dark);
    box-shadow: 0 8px 20px rgba(7, 26, 51, 0.08);
    transform: translateY(-1px);
  }

  .feature-card:hover,
  .proof-card:hover,
  .workflow-card:hover,
  .quote-card:hover,
  .form-panel:hover,
  .insight-panel:hover,
  .module-card:hover,
  .persona-card:hover,
  .metric-card:hover,
  .trust-item:hover,
  .compact-kpis div:hover,
  .scenario-panel:hover {
    border-color: rgba(8, 127, 131, 0.28);
    box-shadow: 0 16px 36px rgba(7, 26, 51, 0.1);
    transform: translateY(-2px);
  }
}

.nav-links a:focus-visible,
.nav-cta:focus-visible,
.primary-button:focus-visible,
.secondary-button:focus-visible,
.menu-button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(18, 184, 172, 0.28);
  outline-offset: 3px;
}

.secondary-button {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

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

.hero {
  position: relative;
  min-height: 82vh;
  overflow: hidden;
  color: #fff;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(4, 22, 49, 0.92), rgba(5, 48, 69, 0.68) 46%, rgba(8, 127, 131, 0.14));
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  width: min(1160px, calc(100% - 32px));
  min-height: 82vh;
  margin: 0 auto;
  padding: 74px 0 84px;
}

.eyebrow {
  color: #83f3e5;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(52px, 8vw, 104px);
  line-height: 0.92;
}

.hero-lede {
  max-width: 690px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 22px;
  line-height: 1.45;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  max-width: 820px;
  margin: 26px 0 0;
  gap: 10px;
}

.hero-badges span,
.pill-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border-radius: 8px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 850;
}

.pill-tag {
  background: #e3f8f4;
  color: var(--teal-dark);
}

.primary-button,
.secondary-button {
  min-height: 50px;
  padding: 0 18px;
}

.hero .secondary-button {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 760px;
  margin-top: 42px;
  gap: 10px;
}

.hero-metrics div {
  min-height: 92px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 14px;
  backdrop-filter: blur(8px);
}

.hero-metrics strong {
  display: block;
  font-size: 30px;
}

.hero-metrics span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 750;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.trust-strip .container {
  display: grid;
  grid-template-columns: 1.1fr repeat(4, minmax(0, 1fr));
  gap: 10px;
  align-items: center;
  padding: 18px 0;
}

.trust-strip span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.trust-item {
  display: inline-flex;
  justify-content: center;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7fbfc;
  padding: 10px;
  color: var(--ink);
  font-weight: 850;
}

.section {
  padding: 76px 0;
}

.section.alt {
  background: #fff;
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.section-heading {
  display: grid;
  max-width: 790px;
  gap: 10px;
  margin-bottom: 28px;
}

.section-heading h2,
.page-hero h1 {
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
}

.section-heading p,
.page-hero p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.grid {
  display: grid;
  gap: 16px;
}

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

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

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

.feature-card,
.proof-card,
.workflow-card,
.quote-card,
.form-panel,
.insight-panel,
.module-card,
.persona-card,
.metric-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 22px;
  box-shadow: 0 10px 28px rgba(7, 26, 51, 0.07);
}

.feature-card h3,
.proof-card h3,
.workflow-card h3,
.quote-card h3,
.insight-panel h3,
.module-card h3,
.persona-card h3,
.metric-card h3 {
  margin-bottom: 8px;
  font-size: 21px;
}

.feature-card p,
.proof-card p,
.workflow-card p,
.quote-card p,
.insight-panel p,
.module-card p,
.persona-card p,
.metric-card p,
.text-list li {
  color: var(--muted);
  line-height: 1.6;
}

.icon-tile {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--mint);
  color: var(--teal-dark);
  font-weight: 900;
}

.icon-tile.amber {
  background: #d3f7f1;
  color: #096d70;
}

.icon-tile.coral {
  background: #dff4f5;
  color: #075a64;
}

.icon-tile.blue {
  background: #e3edf7;
  color: #123f68;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 32px;
  align-items: center;
}

.dashboard-shot {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.visual-stack {
  position: relative;
  min-height: 520px;
}

.phone-mock {
  position: absolute;
  right: 0;
  top: 18px;
  width: min(310px, 82vw);
  border: 10px solid #0a2547;
  border-radius: 34px;
  background: #f7fbfc;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.phone-mock::before {
  display: block;
  width: 88px;
  height: 6px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: #294d68;
  content: "";
}

.phone-screen {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.phone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.phone-stop {
  border-radius: 8px;
  background: var(--teal);
  color: #fff;
  padding: 16px;
}

.phone-stop strong {
  display: block;
  margin-top: 8px;
  font-size: 24px;
}

.phone-row {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 10px;
}

.phone-row span:first-child {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--mint);
  color: var(--teal-dark);
  font-weight: 900;
}

.phone-row strong {
  display: block;
  font-size: 14px;
}

.phone-row small {
  color: var(--muted);
  font-weight: 750;
}

.floating-panel {
  position: absolute;
  left: 0;
  bottom: 24px;
  width: min(360px, 74vw);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 18px;
  box-shadow: var(--shadow);
}

.floating-panel h3 {
  margin-bottom: 12px;
}

.mini-bars {
  display: grid;
  gap: 8px;
}

.mini-bars span {
  display: block;
  height: 11px;
  border-radius: 999px;
  background: var(--mint);
}

.mini-bars span:nth-child(2) {
  width: 72%;
  background: #dceef2;
}

.mini-bars span:nth-child(3) {
  width: 54%;
  background: #d3f7f1;
}

.module-card {
  position: relative;
  min-height: 230px;
  overflow: hidden;
}

.module-card::after {
  position: absolute;
  right: 16px;
  bottom: 14px;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(8, 127, 131, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 49%, rgba(8, 127, 131, 0.14) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(8, 127, 131, 0.14) 50%, transparent 51%);
  content: "";
}

.module-card strong {
  display: block;
  margin: 18px 0 8px;
  color: var(--teal-dark);
  font-size: 28px;
}

.pricing-section .section-heading {
  max-width: 860px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.pricing-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 365px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(7, 26, 51, 0.07);
}

.pricing-card.featured {
  border-color: rgba(8, 127, 131, 0.4);
  box-shadow: 0 18px 42px rgba(7, 26, 51, 0.12);
}

.pricing-card-head {
  display: grid;
  gap: 8px;
  align-content: start;
  min-height: 126px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.pricing-card-head .pill-tag {
  width: fit-content;
}

.pricing-card-head strong {
  color: var(--ink);
  font-size: 42px;
  line-height: 1;
}

.pricing-card-head small {
  color: var(--muted);
  font-weight: 850;
}

.pricing-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.pricing-list li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
  line-height: 1.5;
}

.pricing-list li::before {
  position: absolute;
  left: 0;
  top: 0.35em;
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 900;
  content: "✓";
}

.addons-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.6fr) minmax(0, 1.4fr);
  gap: 18px;
  align-items: start;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7fbfc;
  padding: 24px;
}

.addons-panel h3 {
  margin: 8px 0 8px;
  font-size: 26px;
}

.addons-panel p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

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

.addons-grid div {
  display: grid;
  gap: 5px;
  min-height: 84px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 14px;
}

.addons-grid strong {
  font-size: 15px;
}

.addons-grid span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.comparison {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(7, 26, 51, 0.07);
}

.comparison-row {
  display: grid;
  grid-template-columns: 0.9fr 1fr 1fr;
  min-height: 74px;
  border-bottom: 1px solid var(--line);
}

.comparison-row:last-child {
  border-bottom: 0;
}

.comparison-row > div {
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 16px;
}

.comparison-row > div:not(:last-child) {
  border-right: 1px solid var(--line);
}

.comparison-head {
  background: var(--ink);
  color: #fff;
  font-weight: 900;
}

.comparison-row strong {
  color: var(--ink);
}

.comparison-head strong {
  color: #fff;
}

.comparison-row span {
  color: var(--muted);
  line-height: 1.5;
}

.comparison-head span {
  color: rgba(255, 255, 255, 0.72);
}

.dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 14px;
  color: #bfede8;
  font-weight: 850;
}

.dot-row {
  display: flex;
  gap: 6px;
}

.dot-row span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--amber);
}

.dashboard-body {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 12px;
  padding: 14px;
}

.route-map,
.status-list {
  min-height: 260px;
  border-radius: 8px;
  background: #f7fbfc;
}

.route-map {
  position: relative;
  overflow: hidden;
}

.route-line {
  position: absolute;
  inset: 38px 46px 48px 42px;
  border: 4px solid var(--teal);
  border-right-color: transparent;
  border-bottom-color: var(--amber);
  border-radius: 42% 58% 46% 54%;
  transform: rotate(-9deg);
}

.pin {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 4px solid #fff;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 8px 18px rgba(7, 90, 100, 0.25);
}

.pin.one {
  top: 46px;
  left: 56px;
}

.pin.two {
  top: 116px;
  right: 82px;
  background: var(--amber);
}

.pin.three {
  right: 48px;
  bottom: 62px;
}

.pin.four {
  left: 92px;
  bottom: 44px;
  background: var(--coral);
}

.status-list {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 14px;
}

.status-list div {
  display: grid;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
}

.status-list strong {
  font-size: 15px;
}

.status-list span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.page-hero {
  padding: 92px 0 64px;
  background:
    linear-gradient(120deg, rgba(221, 247, 243, 0.86), rgba(255, 255, 255, 0.9) 42%, rgba(227, 237, 247, 0.78)),
    #fff;
}

.page-hero .container {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.55fr);
  gap: 16px;
  align-items: center;
}

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

.page-hero-art {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 18px;
  box-shadow: var(--shadow);
}

.page-hero-art .route-map {
  min-height: 220px;
}

.text-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding-left: 19px;
}

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

.step-list li {
  counter-increment: steps;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 18px;
}

.step-list li::before {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
  content: counter(steps);
}

.step-list h3 {
  margin-bottom: 5px;
}

.step-list p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.cta-band {
  padding: 64px 0;
  background: var(--ink);
  color: #fff;
}

.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band h2 {
  margin-bottom: 8px;
  font-size: clamp(30px, 4vw, 46px);
}

.cta-band p {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.form-panel form {
  display: grid;
  gap: 14px;
}

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

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 12px;
}

textarea {
  resize: vertical;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 800;
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: #fff;
}

.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.compact-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.compact-kpis div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 18px;
}

.compact-kpis strong {
  display: block;
  color: var(--teal-dark);
  font-size: 28px;
}

.compact-kpis span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.scenario-band {
  background: var(--ink);
  color: #fff;
}

.scenario-band .section-heading p,
.scenario-band .text-list li {
  color: rgba(255, 255, 255, 0.74);
}

.scenario-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 16px;
}

.scenario-panel {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 22px;
}

.scenario-panel h3 {
  margin-bottom: 10px;
}

.persona-card {
  display: grid;
  gap: 12px;
}

.persona-card .role {
  display: inline-flex;
  width: fit-content;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 900;
}

@media (max-width: 860px) {
  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav {
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 14px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a,
  .nav-cta {
    width: 100%;
  }

  .hero,
  .hero-content {
    min-height: 78vh;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(4, 22, 49, 0.92), rgba(5, 48, 69, 0.7));
  }

  .grid.three,
  .grid.two,
  .grid.four,
  .split,
  .dashboard-body,
  .form-grid,
  .compact-kpis,
  .page-hero .container,
  .scenario-grid,
  .pricing-grid,
  .addons-panel,
  .addons-grid,
  .comparison-row {
    grid-template-columns: 1fr;
  }

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

  .cta-band .container,
  .site-footer .container {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .trust-strip span {
    grid-column: 1 / -1;
  }

  .visual-stack {
    min-height: 670px;
  }

  .phone-mock,
  .floating-panel {
    position: relative;
    right: auto;
    left: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    margin-top: 16px;
  }

  .comparison-row > div:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}
