:root {
  --paper: #f7f8f6;
  --paper-strong: #ffffff;
  --ink: #10262d;
  --ink-soft: #40545a;
  --green: #0c5b4c;
  --green-dark: #073f35;
  --green-pale: #e9f1ee;
  --blue: #1e73b7;
  --blue-dark: #0b3957;
  --blue-pale: #edf5fa;
  --orange: #e98124;
  --orange-pale: #fff3e7;
  --neon: #66f7a1;
  --neon-soft: rgba(102, 247, 161, .24);
  --line: #d7dfdc;
  --line-dark: rgba(16, 38, 45, 0.22);
  --muted: #68777b;
  --shadow: 0 28px 70px rgba(20, 45, 50, 0.12);
  --shadow-soft: 0 12px 34px rgba(20, 45, 50, 0.08);
  --sans: Inter, Aptos, "Segoe UI", system-ui, -apple-system, sans-serif;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --page: min(1320px, calc(100vw - 96px));
  --header-h: 116px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 116px;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
  font-family: var(--sans);
}

body.preview-resizing {
  cursor: progress;
}

html.js body.intro-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

img,
svg {
  display: block;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

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

.page-shell {
  width: var(--page);
  margin-inline: auto;
}

.section-pad {
  padding: 118px 0;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: white;
  background: var(--ink);
  transform: translateY(-160%);
}

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

.offer-intro {
  display: none;
}

.js .offer-intro {
  position: fixed;
  z-index: 500;
  inset: 0;
  padding: clamp(28px, 5vw, 76px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  color: var(--green-dark);
  background: #ffffff;
  overflow: hidden;
  transition: opacity 420ms ease, transform 480ms cubic-bezier(.77, 0, .18, 1);
}

.js .offer-intro::before,
.js .offer-intro::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(12, 91, 76, 0.11);
  border-radius: 50%;
  pointer-events: none;
}

.js .offer-intro::before {
  width: min(56vw, 820px);
  aspect-ratio: 1;
  top: -42vw;
  right: -12vw;
}

.js .offer-intro::after {
  width: min(42vw, 620px);
  aspect-ratio: 1;
  left: -22vw;
  bottom: -28vw;
}

.offer-intro[hidden] {
  display: none !important;
}

.offer-intro-brand,
.offer-intro-inner,
.offer-intro > small {
  position: relative;
  z-index: 1;
}

.offer-intro-brand {
  justify-self: center;
  width: max-content;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.offer-intro-brand .km-logo {
  width: clamp(190px, 16vw, 250px);
  height: auto;
  aspect-ratio: 712 / 522;
  padding: 0;
}

.offer-intro-inner {
  width: min(960px, 100%);
  margin: auto;
  text-align: center;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms ease 120ms, transform 650ms cubic-bezier(.22, 1, .36, 1) 120ms;
}

.offer-intro.is-ready .offer-intro-inner {
  opacity: 1;
  transform: none;
}

.offer-intro.is-leaving {
  opacity: 0;
  transform: translateY(-100%);
}

.offer-intro-inner > p {
  margin: 0 0 24px;
  color: var(--green);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.offer-intro-inner h2 {
  margin: 0;
  color: var(--green-dark);
  font-size: clamp(58px, 7vw, 106px);
  font-weight: 610;
  letter-spacing: -.065em;
  line-height: .96;
}

.offer-intro-inner h3 {
  max-width: 850px;
  margin: 24px auto 0;
  color: var(--green);
  font-size: clamp(31px, 4vw, 58px);
  font-weight: 520;
  letter-spacing: -.045em;
  line-height: 1.08;
}

.offer-intro-inner > span {
  display: block;
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: clamp(15px, 1.5vw, 20px);
}

.intro-start {
  min-width: 220px;
  min-height: 58px;
  margin-top: 40px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: white;
  background: var(--green);
  border: 1px solid var(--green);
  border-radius: 3px;
  box-shadow: 0 16px 38px rgba(7, 63, 53, .18);
  cursor: pointer;
  font-size: 15px;
  font-weight: 820;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.intro-start:hover,
.intro-start:focus-visible {
  color: var(--green);
  background: white;
  transform: translateY(-2px);
  outline: none;
}

.intro-start i {
  font-size: 20px;
  font-style: normal;
}

.offer-intro > small {
  color: rgba(7, 63, 53, .58);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.proposal-header {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  width: 100%;
  min-height: var(--header-h);
  padding: 0 max(34px, calc((100vw - 1480px) / 2));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 34px;
  background: #ffffff;
  border-bottom: 1px solid transparent;
  transition: min-height 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.proposal-header.is-scrolled {
  min-height: 100px;
  background: rgba(255, 255, 255, 0.96);
  border-color: var(--line);
  box-shadow: 0 8px 28px rgba(16, 38, 45, 0.06);
  backdrop-filter: blur(18px);
}

.km-brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  text-decoration: none;
}

.km-logo {
  display: block;
  width: 130px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 712 / 522;
  padding: 8px;
  object-fit: contain;
  object-position: center;
  overflow: visible;
}

.proposal-header nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.proposal-header nav a,
.header-action {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 13px;
  font-weight: 720;
  letter-spacing: 0.015em;
}

.proposal-header nav a {
  position: relative;
  padding: 10px 0;
}

.proposal-header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 1px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.proposal-header nav a:hover::after,
.proposal-header nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-action {
  justify-self: end;
  min-height: 46px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: white;
  background: var(--green);
  border: 1px solid var(--green);
  border-radius: 4px;
  transition: background 180ms ease, transform 180ms ease;
}

.header-action:hover,
.header-action:focus-visible {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.proposal-hero {
  min-height: 100svh;
  padding-top: var(--header-h);
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.proposal-hero::before,
.proposal-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.proposal-hero::before {
  width: 540px;
  height: 540px;
  right: -260px;
  top: 160px;
}

.proposal-hero::after {
  width: 280px;
  height: 280px;
  left: -180px;
  bottom: 60px;
}

.proposal-meta {
  min-height: 58px;
  padding-inline: max(48px, calc((100vw - 1320px) / 2));
  display: grid;
  grid-template-columns: 1.5fr 1fr 0.8fr 0.8fr;
  align-items: stretch;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.035em;
}

.proposal-meta span {
  display: flex;
  align-items: center;
  padding: 0 24px;
  border-right: 1px solid var(--line);
}

.proposal-meta span:first-child {
  padding-left: 0;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.proposal-meta span:last-child {
  border-right: 0;
}

.hero-grid {
  min-height: calc(100svh - 146px);
  padding: 80px 0 108px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(450px, 0.82fr);
  gap: clamp(60px, 7vw, 118px);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #a7d1c8;
}

.hero-copy h1 {
  max-width: 860px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(50px, 5.25vw, 82px);
  font-weight: 610;
  letter-spacing: -0.058em;
  line-height: 1.01;
}

.hero-copy h1 em,
.section-heading h2 em,
.diagnosis-copy h2 em,
.search-intro h2 em,
.closing h2 em {
  color: var(--green);
  font-family: var(--serif);
  font-weight: 400;
}

.hero-lead {
  max-width: 760px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.7;
}

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

.button {
  min-height: 54px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid var(--line-dark);
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 760;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button-primary {
  color: white;
  background: var(--green);
  border-color: var(--green);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
}

.button-quiet {
  color: var(--ink);
  background: transparent;
}

.button-quiet:hover,
.button-quiet:focus-visible {
  color: var(--green);
  border-color: var(--green);
  background: white;
}

.hero-assurance {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.hero-assurance span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-assurance i {
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  color: var(--green);
  background: var(--green-pale);
  border-radius: 50%;
  font-size: 11px;
  font-style: normal;
}

.transformation-card {
  position: relative;
  z-index: 2;
  padding: 28px;
  border: 1px solid var(--line-dark);
  background: white;
  box-shadow: var(--shadow);
}

.transformation-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -18px;
  right: -18px;
  width: 46%;
  height: 38%;
  border-top: 2px solid var(--orange);
  border-right: 2px solid var(--orange);
}

.transformation-head {
  padding-bottom: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  font-weight: 780;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.old-flow,
.new-flow {
  padding: 24px 0;
}

.old-flow {
  opacity: 0.75;
}

.flow-label {
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}

.flow-label span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.flow-label small {
  color: var(--muted);
  font-size: 11px;
}

.matrix-demo {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr 1fr 1fr;
  gap: 2px;
  padding: 2px;
  background: #d9e0e2;
}

.matrix-demo span {
  min-height: 24px;
  background: #edf1f2;
}

.matrix-demo .matrix-title {
  min-height: 17px;
  background: #88b9d8;
}

.matrix-demo .matrix-alert {
  position: relative;
}

.matrix-demo .matrix-alert::after {
  content: "×";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #b84835;
  font-size: 13px;
  font-weight: 900;
}

.old-flow p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.flow-shift {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  color: var(--green);
  font-size: 10px;
  letter-spacing: 0.02em;
}

.flow-shift span {
  height: 1px;
  background: var(--green);
}

.guided-demo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.guided-choice {
  min-height: 112px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  text-align: left;
  cursor: pointer;
}

.guided-choice svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.guided-choice strong {
  font-size: 12px;
}

.guided-choice.is-selected {
  color: var(--blue);
  border-color: var(--blue);
  box-shadow: inset 0 0 0 1px var(--blue);
  background: var(--blue-pale);
}

.progress-demo {
  height: 5px;
  margin-top: 18px;
  overflow: hidden;
  background: #e8edef;
  border-radius: 8px;
}

.progress-demo span {
  display: block;
  width: var(--progress);
  height: 100%;
  background: var(--blue);
  border-radius: inherit;
}

.summary-demo {
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 11px;
}

.summary-demo strong {
  color: var(--blue);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  text-decoration: none;
  font-size: 9px;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  width: 1px;
  height: 28px;
  background: var(--green);
  animation: scroll-pulse 1.8s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(0.45); transform-origin: top; opacity: 0.45; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
}

.section-heading {
  max-width: 980px;
}

.section-heading h2,
.diagnosis-copy h2,
.search-intro h2,
.conditions-copy h2,
.timeline-heading h2,
.investment-copy h2,
.closing h2 {
  margin: 0;
  font-size: clamp(42px, 4.6vw, 68px);
  font-weight: 570;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.section-heading > p:last-child,
.diagnosis-copy > p,
.search-intro > p,
.conditions-copy > p {
  max-width: 820px;
  margin: 25px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.75;
}

.understood {
  border-top: 1px solid var(--line);
  background: white;
}

.priority-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.priority-card {
  min-height: 390px;
  padding: 30px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  transition: background 180ms ease, transform 180ms ease;
}

.priority-card:last-child {
  border-right: 0;
}

.priority-card:hover {
  background: var(--green-pale);
  transform: translateY(-4px);
}

.card-number {
  color: var(--green);
  font-size: 12px;
  font-weight: 820;
}

.card-icon {
  width: 54px;
  height: 54px;
  margin-top: 42px;
  display: grid;
  place-items: center;
  color: var(--green);
  background: var(--green-pale);
  border-radius: 50%;
}

.card-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.priority-card h3 {
  margin: 24px 0 12px;
  font-size: 21px;
  line-height: 1.2;
}

.priority-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.priority-card small {
  margin-top: auto;
  padding-top: 25px;
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.diagnosis {
  background: var(--blue-pale);
}

.diagnosis-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: clamp(60px, 8vw, 130px);
  align-items: center;
}

.diagnosis-copy h2 em {
  color: var(--blue-dark);
}

.principle-quote {
  margin-top: 40px;
  padding: 26px 0 0 34px;
  position: relative;
  border-top: 1px solid rgba(11, 57, 87, 0.22);
}

.principle-quote span {
  position: absolute;
  top: 12px;
  left: 0;
  color: var(--blue);
  font-family: var(--serif);
  font-size: 42px;
  line-height: 1;
}

.principle-quote p {
  margin: 0;
  color: var(--blue-dark);
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1.35;
}

.comparison-table {
  border: 1px solid #c8dbe6;
  background: white;
  box-shadow: var(--shadow-soft);
}

.comparison-row {
  min-height: 76px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  border-bottom: 1px solid #dbe6ec;
}

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

.comparison-row > span,
.comparison-row > strong {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  font-size: 13px;
  line-height: 1.45;
}

.comparison-row > span {
  color: var(--muted);
  border-right: 1px solid #dbe6ec;
}

.comparison-row > strong {
  color: var(--blue-dark);
  font-weight: 740;
}

.comparison-head {
  min-height: 54px;
  color: white;
  background: var(--blue-dark);
}

.comparison-head > span {
  color: white;
  border-color: rgba(255,255,255,0.18);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.key-experience {
  border-top: 1px solid var(--line);
  background: #eef2f0;
}

.key-heading {
  max-width: 1050px;
}

.key-layout {
  margin-top: 64px;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(380px, 0.84fr);
  gap: 28px;
  align-items: stretch;
}

.key-plan {
  min-height: 650px;
  padding: 34px;
  color: white;
  background: var(--green-dark);
  box-shadow: var(--shadow);
}

.key-plan-head {
  min-height: 72px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.key-plan-head > div {
  display: flex;
  flex-direction: column;
}

.key-plan-head span {
  color: #99c7bb;
  font-size: 9px;
  font-weight: 820;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.key-plan-head strong {
  margin-top: 3px;
  font-size: 21px;
  letter-spacing: -.02em;
}

.key-plan-head > small {
  padding-top: 7px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #c9ded8;
  font-size: 10px;
}

.key-plan-head > small i {
  width: 8px;
  height: 8px;
  display: block;
  border-radius: 50%;
  background: #63d8ac;
  box-shadow: 0 0 0 6px rgba(99,216,172,.12);
  animation: live-key-pulse 2.2s ease-in-out infinite;
}

@keyframes live-key-pulse {
  0%, 100% { transform: scale(.8); opacity: .72; }
  50% { transform: scale(1.2); opacity: 1; }
}

.key-plan-list {
  display: grid;
}

.key-plan-row {
  min-height: 150px;
  display: grid;
  grid-template-columns: minmax(190px, .9fr) minmax(135px, .6fr) auto;
  gap: 22px;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.16);
}

.key-illustration {
  width: 100%;
  max-width: 250px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 10px 15px rgba(0,0,0,.2));
  animation: key-hover 5s ease-in-out infinite;
}

.key-office .key-illustration { animation-delay: -1.6s; }
.key-service .key-illustration { animation-delay: -3.2s; }

@keyframes key-hover {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(7px); }
}

.key-master { color: #8fb8ff; }
.key-office { color: #74d7c2; }
.key-service { color: #f0ad63; }

.key-name {
  display: flex;
  flex-direction: column;
  color: white;
}

.key-name strong {
  font-size: 15px;
}

.key-name small {
  margin-top: 5px;
  color: #aac7bf;
  font-size: 9px;
}

.key-doors {
  display: grid;
  grid-template-columns: repeat(3, minmax(62px, 1fr));
  gap: 5px;
}

.key-doors span {
  min-height: 34px;
  padding: 7px 8px;
  display: grid;
  place-items: center;
  color: white;
  border: 1px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.1);
  font-size: 8px;
  font-weight: 720;
}

.key-doors span::before {
  content: "✓";
  margin-right: 4px;
  color: #76deb4;
}

.key-doors .is-locked {
  color: #829e97;
  border-color: rgba(255,255,255,.1);
  background: transparent;
}

.key-doors .is-locked::before {
  content: "–";
  color: #718b85;
}

.key-plan-summary {
  min-height: 70px;
  display: flex;
  align-items: flex-end;
  gap: 24px;
  color: #c9ded8;
  font-size: 10px;
}

.key-plan-summary span {
  display: flex;
  gap: 7px;
  align-items: center;
}

.key-plan-summary i {
  color: #76deb4;
  font-style: normal;
}

.key-plan-summary strong {
  margin-left: auto;
  color: #76deb4;
  font-size: 11px;
}

.key-benefits {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 12px;
}

.key-benefits article {
  min-height: 190px;
  padding: 30px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 20px;
  align-items: start;
  border: 1px solid var(--line-dark);
  background: white;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.key-benefits article:hover {
  border-color: #8db9aa;
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
}

.key-benefits article > span {
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
}

.key-benefits h3 {
  margin: 0 0 12px;
  font-size: 23px;
  letter-spacing: -.035em;
  line-height: 1.12;
}

.key-benefits p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.65;
}

.key-comparison {
  min-height: 92px;
  margin-top: 28px;
  padding: 20px 28px;
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  gap: 28px;
  align-items: center;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: white;
}

.key-comparison span,
.key-comparison strong {
  display: flex;
  flex-direction: column;
  font-size: 17px;
}

.key-comparison span { color: var(--muted); }
.key-comparison strong { color: var(--green-dark); }

.key-comparison small {
  margin-bottom: 3px;
  color: var(--green);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.key-comparison > i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--orange);
  border-radius: 50%;
  font-size: 19px;
  font-style: normal;
}

.value-engine {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-strong);
}

.value-intro {
  padding: 112px 0 64px;
}

.value-intro h2 {
  max-width: 1180px;
  margin: 0;
  font-size: clamp(48px, 6.5vw, 92px);
  font-weight: 650;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.value-intro h2 em {
  color: var(--green);
  font-style: normal;
}

.value-intro > p {
  max-width: 860px;
  margin: 34px 0 0;
  color: var(--ink-soft);
  font-size: 19px;
}

.value-intro::after {
  content: "";
  width: 68px;
  height: 2px;
  margin-top: 34px;
  display: block;
  background: var(--orange);
}

.value-path {
  min-height: 360px;
  padding: 56px 0 54px;
  position: relative;
  color: white;
  background: var(--green-dark);
}

.value-path::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle at 28% 18%, rgba(35, 139, 121, 0.18), transparent 32%);
}

.value-track {
  width: min(1380px, calc(100% - 80px));
  height: 2px;
  position: absolute;
  z-index: 1;
  top: 111px;
  left: 50%;
  background: rgba(255, 255, 255, 0.64);
  transform: translateX(-50%);
}

.value-track::before,
.value-track::after {
  content: "";
  position: absolute;
  top: -2px;
  width: 92px;
  height: 6px;
  border-top: 2px dashed var(--orange);
}

.value-track::before { left: 0; }
.value-track::after { right: 0; }

.value-track span {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.value-track span::after {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  left: 0;
  border: 3px solid white;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 7px rgba(233, 129, 36, 0.14), 0 0 18px rgba(233, 129, 36, 0.72);
  transform: translate(-50%, -50%);
  animation: value-pulse 6.5s cubic-bezier(.45, 0, .25, 1) infinite;
}

@keyframes value-pulse {
  0% { left: 0; opacity: 0; }
  7%, 92% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

.value-stages {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}

.value-stage {
  min-width: 0;
}

.value-icon {
  width: 110px;
  height: 110px;
  display: grid;
  place-items: center;
  border: 4px solid white;
  border-radius: 50%;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
  font-size: 43px;
  line-height: 1;
  animation: value-float 4.8s ease-in-out infinite;
}

.value-stage:nth-child(2) .value-icon { animation-delay: -1.1s; }
.value-stage:nth-child(3) .value-icon { animation-delay: -2.2s; }
.value-stage:nth-child(4) .value-icon { animation-delay: -3.3s; }

@keyframes value-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

.value-icon-blue { background: #164bd5; }
.value-icon-teal { background: #197b92; }
.value-icon-green { background: var(--green); }

.value-stage strong {
  margin-top: 34px;
  display: block;
  font-size: clamp(19px, 1.55vw, 25px);
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.value-stage small {
  max-width: 260px;
  margin-top: 11px;
  display: block;
  color: #cfe1dc;
  font-size: 13px;
  line-height: 1.55;
}

.value-proof {
  padding: 64px 0 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line-dark);
}

.value-proof-item {
  min-height: 236px;
  padding: 22px clamp(34px, 4vw, 62px) 42px 0;
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 28px;
  align-items: start;
}

.value-proof-item + .value-proof-item {
  padding-right: 0;
  padding-left: clamp(34px, 4vw, 62px);
  border-left: 1px solid var(--line-dark);
}

.proof-icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  color: white;
  border-radius: 50%;
  font-size: 32px;
}

.proof-icon-green { background: var(--green-dark); }
.proof-icon-blue { background: #164bd5; }

.value-proof h3 {
  margin: 4px 0 18px;
  font-size: clamp(25px, 2.4vw, 36px);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.value-proof h3::after {
  content: "";
  width: 64px;
  height: 2px;
  margin-top: 17px;
  display: block;
  background: var(--orange);
}

.value-proof ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.value-proof li {
  padding: 5px 0 5px 19px;
  position: relative;
  color: var(--ink-soft);
  font-size: 15px;
}

.value-proof li::before {
  content: "";
  width: 5px;
  height: 5px;
  position: absolute;
  top: 15px;
  left: 0;
  border-radius: 50%;
  background: var(--green);
}

.value-statement {
  grid-column: 1 / -1;
  margin: 0;
  padding: 24px 0 0;
  position: relative;
  border-top: 1px solid var(--line-dark);
  text-align: center;
  font-size: 17px;
}

.value-statement::before {
  content: "";
  width: 84px;
  height: 3px;
  position: absolute;
  top: -2px;
  left: 50%;
  background: var(--orange);
  transform: translateX(-50%);
}

.value-statement strong { color: var(--green); }

.previews {
  background: #eef2f0;
  border-top: 1px solid var(--line);
}

.preview-heading {
  max-width: 980px;
  margin: 0 auto 44px;
  text-align: center;
}

.preview-heading > p:last-child {
  margin-inline: auto;
}

.preview-heading-second {
  margin-top: 120px;
}

.browser-wrap {
  max-width: 1480px;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid #87938f;
  border-radius: 14px;
  background: #253239;
  box-shadow: 0 36px 90px rgba(16, 38, 45, 0.18);
}

.browser-toolbar {
  min-height: 54px;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 1fr minmax(260px, 0.8fr) 1fr;
  align-items: center;
  color: #59656a;
  background: #f7f8f8;
  border-bottom: 1px solid #d4dcda;
  font-size: 11px;
}

.browser-dots {
  display: flex;
  gap: 7px;
}

.browser-dots i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e7665a;
}

.browser-dots i:nth-child(2) { background: #e7b13d; }
.browser-dots i:nth-child(3) { background: #57aa67; }

.browser-address {
  padding: 7px 22px;
  border-radius: 6px;
  background: #e9eceb;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.viewport-switch {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 4px;
}

.viewport-switch button,
.viewport-switch a {
  min-height: 32px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #5a676b;
  border: 0;
  border-radius: 4px;
  background: transparent;
  font-size: 10px;
  font-weight: 760;
  text-decoration: none;
  cursor: pointer;
}

.viewport-switch button:hover,
.viewport-switch button:focus-visible,
.viewport-switch a:hover,
.viewport-switch a:focus-visible,
.viewport-switch button.is-active {
  color: var(--green);
  background: #e2ece8;
}

.iframe-stage {
  min-height: 870px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
  background: #dce4e1;
  transition: padding 260ms ease;
}

.browser-wrap iframe {
  width: 100%;
  height: 870px;
  display: block;
  border: 0;
  background: white;
  transition: width 260ms ease, height 260ms ease, border-radius 260ms ease, box-shadow 260ms ease;
}

.browser-wrap-config .iframe-stage,
.browser-wrap-config iframe {
  min-height: 920px;
  height: 920px;
}

.browser-wrap.is-mobile .iframe-stage {
  min-height: 790px;
  padding: 24px;
}

.browser-wrap.is-mobile iframe {
  width: min(390px, 100%);
  height: 740px;
  min-height: 740px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(16, 38, 45, 0.24);
}

.migration {
  background: white;
}

.migration-heading {
  max-width: 980px;
}

.migration-map {
  margin-top: 68px;
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(260px, 0.8fr) minmax(360px, 1.15fr);
  gap: 28px;
  align-items: stretch;
}

.system-card {
  min-height: 470px;
  padding: 32px;
  border: 1px solid var(--line-dark);
  background: var(--paper);
}

.system-new {
  background: var(--green-pale);
  border-color: #b8d2c9;
}

.system-badge {
  display: inline-flex;
  padding: 6px 10px;
  color: var(--muted);
  border: 1px solid var(--line-dark);
  border-radius: 30px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.system-new .system-badge {
  color: var(--green);
  border-color: #9dbeb2;
  background: white;
}

.system-card h3 {
  margin: 26px 0;
  font-size: 25px;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.system-card > ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.system-card > ul li {
  min-height: 57px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 13px;
}

.system-card > ul li span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 820;
}

.migration-bridge {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
}

.migration-bridge > div {
  width: 180px;
  min-height: 92px;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 30px 1fr;
  align-content: center;
  column-gap: 12px;
  border: 1px solid var(--line-dark);
  background: white;
  box-shadow: var(--shadow-soft);
}

.migration-bridge > div > span {
  grid-row: 1 / 3;
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--green);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
}

.migration-bridge strong {
  font-size: 13px;
}

.migration-bridge small {
  color: var(--muted);
  font-size: 9px;
}

.migration-bridge > i {
  width: 1px;
  height: 28px;
  background: var(--green);
}

.account-preview {
  padding: 20px;
  border: 1px solid #b9d1c8;
  background: white;
  box-shadow: var(--shadow-soft);
}

.account-head {
  display: flex;
  align-items: center;
  gap: 13px;
}

.account-head > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--green);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

.account-head div,
.account-order span {
  display: flex;
  flex-direction: column;
}

.account-head strong,
.account-order strong {
  font-size: 12px;
}

.account-head small,
.account-order small {
  color: var(--muted);
  font-size: 9px;
}

.account-stats {
  margin: 18px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}

.account-stats span {
  min-height: 68px;
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 8px;
}

.account-stats span:last-child { border-right: 0; }
.account-stats strong { color: var(--green); font-size: 18px; }

.account-order {
  min-height: 66px;
  padding: 12px;
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 10px;
  align-items: center;
  background: var(--green-pale);
}

.account-order i {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--green);
  border-radius: 50%;
  font-size: 10px;
  font-style: normal;
}

.account-order b {
  color: var(--green);
  font-size: 9px;
}

.migration-notes {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
}

.migration-notes article {
  padding: 28px 30px 0 0;
  border-right: 1px solid var(--line);
}

.migration-notes article + article {
  padding-left: 30px;
}

.migration-notes article:last-child {
  border-right: 0;
}

.migration-notes h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.migration-notes p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.65;
}

.search-strategy {
  color: white;
  background: var(--blue-dark);
}

.search-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(500px, 1.15fr);
  gap: clamp(60px, 8vw, 130px);
  align-items: center;
}

.search-intro .eyebrow {
  color: #8bc4e6;
}

.search-intro h2 em {
  color: #add8ee;
}

.search-intro > p {
  color: #d0dce2;
}

.source-links {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.source-links a {
  width: max-content;
  max-width: 100%;
  color: #b9d9ea;
  text-decoration: none;
  border-bottom: 1px solid rgba(185, 217, 234, 0.4);
  font-size: 11px;
}

.search-layers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.search-layers article {
  min-height: 430px;
  padding: 34px;
}

.search-layers article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
}

.search-layers .analytics-layer {
  min-height: 300px;
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  border-left: 0;
  background: rgba(5, 39, 61, 0.48);
}

.search-layers .analytics-layer h3 {
  margin-top: 22px;
}

.search-layers .analytics-layer ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 28px;
}

.search-layers article > span {
  color: #9fc9df;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.search-layers h3 {
  margin: 34px 0 28px;
  font-size: 28px;
}

.search-layers ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.search-layers li {
  padding: 15px 0 15px 22px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: #d6e2e8;
  font-size: 12px;
  line-height: 1.45;
}

.search-layers li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #88c8e8;
  font-weight: 900;
}

.scope {
  background: var(--paper);
}

.scope-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.scope-grid article {
  min-height: 280px;
  padding: 30px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: white;
  transition: background 180ms ease;
}

.scope-grid article:hover {
  background: var(--green-pale);
}

.scope-grid article > span {
  color: var(--green);
  font-size: 12px;
  font-weight: 820;
}

.scope-grid h3 {
  margin: 60px 0 14px;
  font-size: 21px;
}

.scope-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.65;
}

.timeline {
  padding: 94px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
}

.timeline-heading {
  max-width: 820px;
}

.timeline-heading h2 {
  font-size: clamp(38px, 4vw, 58px);
}

.timeline-list {
  margin: 58px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  list-style: none;
  border-top: 1px solid var(--line-dark);
}

.timeline-list li {
  min-height: 220px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
}

.timeline-list li:last-child { border-right: 0; }
.timeline-list span { color: var(--green); font-size: 11px; font-weight: 820; }
.timeline-list strong { margin-top: auto; font-size: 16px; }
.timeline-list small { margin-top: 9px; color: var(--muted); font-size: 10px; line-height: 1.5; }

.investment {
  padding: 92px 0 74px;
  position: relative;
  overflow: hidden;
  color: white;
  background: var(--green-dark);
}

.investment::before,
.investment::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.investment::before {
  width: 620px;
  height: 620px;
  left: -420px;
  top: -260px;
}

.investment::after {
  width: 420px;
  height: 420px;
  right: -260px;
  bottom: -190px;
}

.investment-layout {
  position: relative;
  z-index: 2;
  display: block;
}

.investment-copy h2 {
  font-size: clamp(46px, 5vw, 72px);
}

.investment-copy {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.investment-copy > p {
  max-width: 800px;
  margin: 24px auto 0;
  color: #d1e1dc;
  font-size: 16px;
  line-height: 1.75;
}

.investment-note {
  margin-top: 38px;
  padding-top: 28px;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.investment-note > span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--green-dark);
  background: #b7d9d0;
  border-radius: 50%;
  font-weight: 900;
}

.investment-note p {
  margin: 0;
  color: #d3e3de;
  font-size: 13px;
}

.investment-note strong { color: white; }

.investment-note-plan {
  margin-top: 24px;
}

.investment-note-plan > span {
  color: white;
  background: var(--blue);
  font-size: 11px;
}

.price-card {
  min-height: 620px;
  padding: 38px 42px;
  color: var(--ink);
  background: white;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 38px 80px rgba(0, 0, 0, 0.2);
}

.price-card > span {
  color: var(--green);
  font-size: 10px;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.price-card > strong {
  margin-top: 12px;
  display: block;
  font-size: clamp(76px, 8vw, 116px);
  font-weight: 600;
  letter-spacing: -0.075em;
  line-height: 1;
}

.price-card > strong sup {
  margin-left: 9px;
  color: var(--green);
  font-size: 28px;
  letter-spacing: 0;
  vertical-align: top;
}

.price-card > p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.price-rule {
  height: 1px;
  margin: 30px 0 12px;
  background: var(--line-dark);
}

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

.price-card li {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.price-card li span { color: var(--ink-soft); }
.price-card li b { white-space: nowrap; }

.price-card li.price-highlight {
  margin-inline: -14px;
  padding-inline: 14px;
  border: 1px solid #b7d9d0;
  background: #eef8f5;
}

.price-card li.price-highlight span { color: var(--green-dark); font-weight: 760; }
.price-card li.price-highlight b { color: var(--green-dark); font-size: 16px; }
.price-card li.price-highlight em {
  margin-left: 7px;
  padding: 4px 7px;
  color: white;
  background: var(--green);
  border-radius: 5px;
  font-size: 8px;
  font-style: normal;
  font-weight: 820;
  letter-spacing: .07em;
  text-transform: uppercase;
  white-space: nowrap;
}

.payment-plan {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line-dark);
}

.payment-plan > span {
  color: var(--green);
  font-size: 9px;
  font-weight: 820;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.payment-plan > div {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
}

.payment-plan p {
  margin: 0;
  padding: 10px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--paper);
}

.payment-plan b { font-size: 11px; }
.payment-plan small { margin-top: 4px; color: var(--muted); font-size: 8px; line-height: 1.4; }

.package-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.package-card {
  min-height: 530px;
  padding: 30px 30px 26px;
  position: relative;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background: white;
  border: 1px solid rgba(255, 255, 255, .7);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .15);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 72px rgba(0, 0, 0, .22);
}

.package-card-featured {
  color: white;
  background: #0a4d41;
  border-color: rgba(255, 255, 255, .28);
  transform: translateY(-14px);
}

.package-card-featured:hover {
  transform: translateY(-20px);
}

.package-recommendation {
  width: max-content;
  margin: -49px auto 20px;
  padding: 8px 14px;
  color: var(--green-dark);
  background: #b7d9d0;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.package-head {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-dark);
}

.package-card-featured .package-head {
  border-color: rgba(255, 255, 255, .25);
}

.package-head > span {
  color: var(--green);
  font-size: 11px;
  font-weight: 880;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.package-card-featured .package-head > span {
  color: #b7d9d0;
}

.package-head > strong {
  margin-top: 14px;
  display: block;
  font-size: clamp(56px, 5vw, 76px);
  font-weight: 610;
  letter-spacing: -.065em;
  line-height: 1;
}

.package-head > strong sup {
  margin-left: 6px;
  color: var(--green);
  font-size: 22px;
  letter-spacing: 0;
  vertical-align: top;
}

.package-card-featured .package-head > strong sup {
  color: #b7d9d0;
}

.package-head > p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.package-card-featured .package-head > p {
  color: #bdd1cb;
}

.package-card ul {
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 11px;
  list-style: none;
}

.package-card li {
  padding-left: 25px;
  position: relative;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.45;
}

.package-card li::before {
  content: "✓";
  width: 16px;
  height: 16px;
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  place-items: center;
  color: white;
  background: var(--green);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 900;
}

.package-card-featured li {
  color: #e0ece8;
}

.package-card-featured li::before {
  color: var(--green-dark);
  background: #b7d9d0;
}

.package-note {
  min-height: 46px;
  margin: auto 0 0;
  padding: 15px 0 11px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 11px;
  line-height: 1.5;
}

.package-card-featured .package-note {
  color: #bdd1cb;
  border-color: rgba(255, 255, 255, .2);
}

.package-action {
  min-height: 50px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--green-dark);
  border: 1px solid var(--green-dark);
  text-decoration: none;
  font-size: 13px;
  font-weight: 820;
  transition: color 180ms ease, background 180ms ease;
}

.package-action:hover,
.package-action:focus-visible {
  color: white;
  background: var(--green-dark);
  outline: none;
}

.package-card-featured .package-action {
  color: var(--green-dark);
  background: white;
  border-color: white;
}

.package-card-featured .package-action:hover,
.package-card-featured .package-action:focus-visible {
  color: white;
  background: transparent;
}

.package-assurance {
  margin: 24px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #d1e1dc;
  font-size: 12px;
  text-align: center;
}

.package-assurance span {
  width: 23px;
  height: 23px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--green-dark);
  background: #b7d9d0;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
}

/* Premium sales path, package framing and interaction light */
.value-intro {
  padding: 100px 0 56px;
}

.value-intro h2 {
  max-width: 1220px;
  font-size: clamp(52px, 6.3vw, 90px);
}

.value-intro > p {
  margin-top: 28px;
  font-size: 20px;
}

.value-path {
  min-height: 0;
  padding: 38px 0;
  background: #052f29;
}

.value-path::before {
  background:
    radial-gradient(circle at 22% 8%, rgba(43, 158, 126, .22), transparent 34%),
    radial-gradient(circle at 82% 76%, rgba(102, 247, 161, .11), transparent 28%);
}

.value-path-frame {
  padding: 24px;
  position: relative;
  border: 1px solid rgba(183, 217, 208, .7);
  box-shadow: inset 0 0 0 1px rgba(102, 247, 161, .05);
}

.value-track {
  width: calc(100% - 116px);
  top: 94px;
  background: rgba(210, 255, 235, .78);
  box-shadow: 0 0 16px rgba(102, 247, 161, .24);
}

.value-track::before,
.value-track::after {
  width: 0;
  border: 0;
}

.value-track span::after {
  border-color: #d9ffea;
  background: var(--neon);
  box-shadow: 0 0 0 7px rgba(102, 247, 161, .12), 0 0 22px rgba(102, 247, 161, .76);
}

.value-stages {
  gap: 18px;
}

.value-stage {
  min-height: 330px;
  padding: 22px 18px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  background: rgba(4, 45, 39, .84);
  border: 1px solid rgba(183, 217, 208, .48);
  text-align: center;
  outline: none;
  isolation: isolate;
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.value-stage::after,
.package-card::after {
  content: "";
  width: calc(100% - 26px);
  height: 20px;
  position: absolute;
  z-index: -1;
  right: 13px;
  bottom: -9px;
  background: radial-gradient(ellipse at center, rgba(102, 247, 161, .9) 0%, rgba(39, 220, 128, .3) 44%, transparent 76%);
  filter: blur(8px);
  opacity: .28;
  transition: opacity 220ms ease, filter 220ms ease;
  pointer-events: none;
}

.value-stage:hover,
.value-stage:focus-visible {
  border-color: var(--neon);
  background: rgba(6, 69, 57, .94);
  box-shadow: inset 0 0 0 1px rgba(102, 247, 161, .16), 0 20px 48px rgba(0, 0, 0, .24);
}

.value-stage:hover::after,
.value-stage:focus-visible::after,
.package-card:hover::after,
.package-card:focus-within::after {
  opacity: 1;
  filter: blur(6px);
}

.value-icon {
  width: 96px;
  height: 96px;
  flex: 0 0 auto;
  color: #e3fff0;
  background: #063f36;
  border: 2px solid #d3f7e2;
  box-shadow: 0 0 0 8px rgba(102, 247, 161, .05), 0 14px 34px rgba(0, 0, 0, .2);
  font-size: 0;
  animation: none;
}

.value-icon svg {
  width: 56px;
  height: 56px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-icon-google svg {
  width: 61px;
  height: 61px;
  stroke: none;
}

.value-icon-funnel svg {
  color: var(--neon);
}

.value-step {
  margin-top: 27px;
  display: block;
  color: #d8f6e7;
  font-size: 12px;
  font-weight: 880;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.value-stage strong {
  max-width: 270px;
  margin-top: 14px;
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.22;
}

.value-stage small {
  max-width: 250px;
  margin: auto auto 0;
  padding-top: 20px;
  position: relative;
  color: #cae2db;
  font-size: 12px;
}

.value-stage small::before {
  content: "";
  width: 38px;
  height: 1px;
  position: absolute;
  top: 8px;
  left: 50%;
  background: var(--neon);
  transform: translateX(-50%);
}

.value-campaign-wrap {
  padding: 30px 0 72px;
}

.value-campaign {
  min-height: 144px;
  padding: 26px 30px;
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(300px, 1fr) minmax(360px, 600px) 38px;
  gap: 24px;
  align-items: center;
  background: white;
  border: 1px solid var(--green);
  box-shadow: 0 18px 48px rgba(16, 38, 45, .1);
  outline: none;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.value-campaign:hover,
.value-campaign:focus-visible {
  border-color: #21c97b;
  box-shadow: 0 24px 58px rgba(16, 38, 45, .14), 0 14px 34px rgba(37, 224, 133, .18);
  transform: translateY(-3px);
}

.campaign-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  color: var(--green);
  border: 1px solid var(--green);
  border-radius: 50%;
}

.campaign-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-campaign h3 {
  margin: 0;
  font-size: clamp(24px, 2.6vw, 37px);
  letter-spacing: -.045em;
  line-height: 1.05;
}

.value-campaign p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.campaign-months {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  border: 1px solid var(--line);
}

.campaign-months span {
  min-height: 36px;
  display: grid;
  place-items: center;
  color: var(--green);
  border-right: 1px solid var(--line);
  font-size: 9px;
  font-weight: 840;
}

.campaign-months span:last-child { border-right: 0; }
.campaign-months span:nth-child(4n) { background: var(--green-pale); }
.campaign-arrow { color: var(--green); font-size: 32px; }

.search-strategy {
  background: #073f35;
}

.search-intro .eyebrow { color: #a6e8c5; }
.search-intro h2 em { color: #96e8bd; }
.search-intro > p { color: #d4e5df; }
.source-links a { color: #c6e8da; border-color: rgba(198, 232, 218, .4); }

.search-layers {
  border-color: rgba(183, 217, 208, .42);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .16);
}

.search-layers article {
  position: relative;
  isolation: isolate;
  transition: background 220ms ease, box-shadow 220ms ease;
}

.search-layers article:hover {
  z-index: 2;
  background: rgba(102, 247, 161, .08);
  box-shadow: inset 0 0 0 1px var(--neon), 0 0 42px rgba(37, 224, 133, .18);
}

.search-layers article > span { color: #a6e8c5; }
.search-layers li::before { color: var(--neon); }
.search-layers .analytics-layer { background: rgba(2, 47, 39, .7); }

.search-campaign-band {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(183, 217, 208, .52);
  box-shadow: 0 26px 64px rgba(0, 0, 0, .17);
}

.search-campaign-band article {
  min-height: 160px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, .035);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.search-campaign-band article + article { border-left: 1px solid rgba(183, 217, 208, .38); }
.search-campaign-band article:hover { background: rgba(102, 247, 161, .08); box-shadow: inset 0 -3px 0 var(--neon); }
.search-campaign-band span { color: #a6e8c5; font-size: 10px; font-weight: 860; letter-spacing: .12em; text-transform: uppercase; }
.search-campaign-band strong { margin-top: auto; font-size: 20px; }
.search-campaign-band small { margin-top: 8px; color: #cce1d9; font-size: 12px; line-height: 1.55; }

.investment-copy {
  max-width: 1120px;
}

.investment-copy h2 {
  font-family: var(--serif);
  font-size: clamp(52px, 5.3vw, 78px);
  font-weight: 400;
  line-height: 1.04;
}

.package-grid {
  margin-top: 62px;
  gap: 24px;
}

.package-card {
  min-height: 700px;
  padding: 36px 34px 30px;
  isolation: isolate;
  border: 2px solid rgba(214, 228, 223, .92);
  box-shadow: 0 28px 68px rgba(0, 0, 0, .2), inset 0 0 0 6px rgba(7, 63, 53, .035);
  outline: none;
}

.package-card::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(7, 63, 53, .12);
  pointer-events: none;
}

.package-card:hover,
.package-card:focus-within {
  border-color: var(--neon);
  box-shadow: 0 34px 80px rgba(0, 0, 0, .27), 0 0 0 1px rgba(102, 247, 161, .55), 0 16px 42px rgba(37, 224, 133, .24);
}

.package-card-featured {
  color: white;
  background: #043a31;
  border-color: var(--neon);
  box-shadow: 0 0 0 1px rgba(102, 247, 161, .68), 0 30px 80px rgba(0, 0, 0, .34), 0 18px 46px rgba(37, 224, 133, .18);
}

.package-card-featured::before { border-color: rgba(102, 247, 161, .28); }
.package-card-intelligence { border-color: rgba(183, 217, 208, .95); }

.package-recommendation {
  margin-top: -55px;
  color: #132b2b;
  background: var(--orange);
  box-shadow: 0 8px 22px rgba(233, 129, 36, .22);
}

.package-head > strong {
  font-family: var(--serif);
  font-size: clamp(68px, 6vw, 92px);
  font-weight: 500;
}

.package-feature-band {
  min-height: 42px;
  margin-top: 20px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: var(--green);
  box-shadow: 0 10px 28px rgba(7, 63, 53, .18);
  font-size: 12px;
  font-weight: 880;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}

.package-card-featured .package-feature-band {
  color: #eafff3;
  background: #08725e;
  box-shadow: 0 8px 24px rgba(102, 247, 161, .13);
}

.package-card ul {
  margin-top: 24px;
  gap: 12px;
}

.package-card li {
  font-size: 13px;
}

.package-action {
  min-height: 56px;
  position: relative;
  overflow: hidden;
}

.package-action::after {
  content: "";
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -70%;
  background: linear-gradient(90deg, transparent, rgba(102, 247, 161, .35), transparent);
  transform: skewX(-20deg);
  transition: left 420ms ease;
}

.package-action:hover::after,
.package-action:focus-visible::after { left: 120%; }

.button:hover,
.button:focus-visible,
.guided-choice:hover,
.guided-choice:focus-visible,
.viewport-switch button:hover,
.viewport-switch button:focus-visible {
  box-shadow: 0 14px 34px rgba(37, 224, 133, .24), 0 0 0 1px rgba(102, 247, 161, .22);
}

.browser-wrap,
.key-benefits article,
.scope-grid article,
.conditions-list details {
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.browser-wrap:hover,
.key-benefits article:hover,
.scope-grid article:hover,
.conditions-list details:hover {
  border-color: rgba(102, 247, 161, .78);
  box-shadow: 0 22px 54px rgba(16, 38, 45, .13), 0 13px 36px rgba(37, 224, 133, .14);
}

.cursor-glow {
  display: none;
}

@media (pointer: fine) {
  html.custom-cursor-enabled,
  html.custom-cursor-enabled a,
  html.custom-cursor-enabled button,
  html.custom-cursor-enabled summary,
  html.custom-cursor-enabled [tabindex] {
    cursor: none !important;
  }

  .cursor-glow {
    width: 11px;
    height: 11px;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    display: block;
    border: 1px solid #d9ffea;
    border-radius: 50%;
    background: var(--neon);
    box-shadow: 0 0 10px rgba(102, 247, 161, .95), 0 0 28px rgba(37, 224, 133, .72), 0 0 52px rgba(37, 224, 133, .38);
    opacity: 0;
    pointer-events: none;
    transition: width 140ms ease, height 140ms ease, opacity 180ms ease, box-shadow 140ms ease;
  }

  .cursor-glow.is-visible { opacity: 1; }
  .cursor-glow.is-interactive {
    width: 18px;
    height: 18px;
    box-shadow: 0 0 12px rgba(102, 247, 161, 1), 0 0 34px rgba(37, 224, 133, .86), 0 0 70px rgba(37, 224, 133, .5);
  }

  .cursor-glow.is-clicking {
    width: 8px;
    height: 8px;
  }
}

.conditions {
  background: var(--paper);
}

.conditions-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(520px, 1.25fr);
  gap: clamp(60px, 9vw, 150px);
}

.conditions-copy h2 {
  font-size: clamp(42px, 4.5vw, 64px);
}

.conditions-list {
  border-top: 1px solid var(--line-dark);
}

.conditions-list details {
  border-bottom: 1px solid var(--line-dark);
}

.conditions-list summary {
  min-height: 74px;
  display: grid;
  grid-template-columns: 1fr 28px;
  gap: 20px;
  align-items: center;
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  font-weight: 750;
}

.conditions-list summary::-webkit-details-marker { display: none; }
.conditions-list summary span { color: var(--green); font-size: 21px; transition: transform 180ms ease; }
.conditions-list details[open] summary span { transform: rotate(45deg); }
.conditions-list details p { margin: -4px 0 24px; padding-right: 50px; color: var(--ink-soft); font-size: 13px; line-height: 1.7; }

.closing {
  padding-top: 120px;
  text-align: center;
  background: white;
}

.closing-inner {
  max-width: 980px;
}

.closing h2 {
  font-size: clamp(48px, 5.7vw, 78px);
}

.closing-inner > p:not(.eyebrow) {
  max-width: 760px;
  margin: 26px auto 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.7;
}

.closing-actions {
  justify-content: center;
}

.proposal-footer {
  min-height: 150px;
  margin-top: 108px;
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 34px;
  align-items: center;
  border-top: 1px solid var(--line);
  text-align: left;
}

.footer-logo {
  width: 150px;
  height: auto;
}

.proposal-footer > div {
  display: flex;
  flex-direction: column;
}

.proposal-footer strong {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.proposal-footer small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
}

.section-dots {
  position: fixed;
  z-index: 60;
  top: 50%;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transform: translateY(-50%);
}

.section-dots a {
  width: 7px;
  height: 7px;
  border: 1px solid rgba(16, 38, 45, 0.46);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.64);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.section-dots a.is-active {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.55);
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 680ms cubic-bezier(.2,.7,.25,1), transform 680ms cubic-bezier(.2,.7,.25,1);
}

.js .reveal-mid { transition-delay: 90ms; }
.js .reveal-late { transition-delay: 160ms; }
.js .reveal-last { transition-delay: 230ms; }

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1180px) {
  :root { --page: min(100% - 56px, 1100px); }
  .proposal-header nav { display: none; }
  .proposal-header { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 64px; }
  .hero-copy { max-width: 900px; }
  .transformation-card { max-width: 720px; }
  .scroll-cue { display: none; }
  .priority-grid { grid-template-columns: 1fr 1fr; }
  .priority-card:nth-child(2) { border-right: 0; }
  .priority-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .diagnosis-grid,
  .search-grid,
  .investment-layout,
  .conditions-grid { grid-template-columns: 1fr; }
  .value-stages { grid-template-columns: 1fr 1fr; row-gap: 48px; }
  .value-path { padding-bottom: 62px; }
  .value-track { display: none; }
  .key-layout { grid-template-columns: 1fr; }
  .key-plan { min-height: 0; }
  .key-benefits { grid-template-columns: repeat(3, 1fr); grid-template-rows: none; }
  .key-benefits article { min-height: 230px; }
  .comparison-table { max-width: 820px; }
  .migration-map { grid-template-columns: 1fr; }
  .migration-bridge { min-height: 150px; flex-direction: row; }
  .migration-bridge > i { width: 28px; height: 1px; }
  .system-card { min-height: auto; }
  .account-preview { max-width: 520px; }
  .scope-grid { grid-template-columns: 1fr 1fr; }
  .timeline-list { grid-template-columns: repeat(3, 1fr); }
  .timeline-list li:nth-child(3) { border-right: 0; }
  .timeline-list li:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
  .price-card { max-width: 760px; }
  .proposal-footer { grid-template-columns: 1fr 1fr; padding: 30px 0; }
}

@media (max-width: 980px) {
  .package-grid {
    max-width: 720px;
    margin-inline: auto;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .package-card,
  .package-card-featured,
  .package-card-featured:hover {
    min-height: 0;
    transform: none;
  }
}

@media (max-width: 760px) {
  :root {
    --page: calc(100vw - 36px);
    --header-h: 84px;
  }
  body { font-size: 16px; }
  .section-pad { padding: 78px 0; }
  .proposal-header { min-height: 84px; padding: 0 18px; }
  .proposal-header.is-scrolled { min-height: 80px; }
  .km-logo { width: 90px; height: auto; }
  .js .offer-intro { padding: 22px 18px 26px; }
  .offer-intro-brand { padding: 10px 14px; }
  .offer-intro-brand .km-logo { width: 145px; height: auto; }
  .offer-intro-inner > p { margin-bottom: 18px; font-size: 9px; }
  .offer-intro-inner h2 { font-size: clamp(50px, 15vw, 68px); }
  .offer-intro-inner h3 { margin-top: 18px; font-size: clamp(29px, 9vw, 42px); }
  .offer-intro-inner > span { margin-top: 18px; font-size: 15px; }
  .intro-start { width: 100%; min-height: 56px; margin-top: 30px; }
  .offer-intro > small { font-size: 8px; }
  .header-action { width: 42px; min-height: 42px; padding: 0; font-size: 0; }
  .header-action span { font-size: 18px; margin: auto; }
  .proposal-meta {
    min-height: auto;
    padding: 10px 18px;
    grid-template-columns: 1fr 1fr;
    gap: 7px 12px;
  }
  .proposal-meta span { padding: 0; border: 0; font-size: 9px; }
  .proposal-meta span:first-child { letter-spacing: 0.08em; }
  .hero-grid { min-height: auto; padding: 58px 0 78px; gap: 50px; }
  .hero-copy h1 { font-size: clamp(43px, 13vw, 59px); }
  .hero-lead { font-size: 17px; }
  .hero-actions,
  .closing-actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-assurance { flex-direction: column; gap: 9px; }
  .transformation-card { padding: 20px; }
  .transformation-card::before { display: none; }
  .transformation-head { flex-direction: column; gap: 4px; }
  .guided-demo { grid-template-columns: 1fr; }
  .section-heading h2,
  .diagnosis-copy h2,
  .search-intro h2,
  .conditions-copy h2,
  .timeline-heading h2,
  .investment-copy h2,
  .closing h2,
  .value-intro h2 { font-size: 39px; }
  .section-heading > p:last-child,
  .diagnosis-copy > p,
  .search-intro > p,
  .conditions-copy > p { font-size: 16px; }
  .priority-grid { grid-template-columns: 1fr; }
  .priority-card { min-height: 320px; border-right: 0; border-bottom: 1px solid var(--line); }
  .priority-card:nth-child(3) { border-bottom: 1px solid var(--line); }
  .priority-card:last-child { border-bottom: 0; }
  .card-icon { margin-top: 28px; }
  .comparison-row { grid-template-columns: 1fr; }
  .comparison-row > span { border-right: 0; border-bottom: 1px dashed #dbe6ec; }
  .comparison-head { grid-template-columns: 1fr 1fr; }
  .comparison-head > span { border-right: 1px solid rgba(255,255,255,0.18); border-bottom: 0; }
  .key-layout { margin-top: 42px; }
  .key-plan { padding: 20px 18px; }
  .key-plan-head { min-height: 92px; flex-direction: column; gap: 10px; }
  .key-plan-head > small { padding: 0 0 16px; }
  .key-plan-row { min-height: 190px; grid-template-columns: 112px 1fr; gap: 16px; padding: 18px 0; }
  .key-illustration { width: 112px; }
  .key-doors { grid-column: 1 / -1; }
  .key-plan-summary { padding-top: 18px; flex-wrap: wrap; align-items: center; }
  .key-plan-summary strong { width: 100%; margin: 0; }
  .key-benefits { grid-template-columns: 1fr; grid-template-rows: none; }
  .key-benefits article { min-height: 0; padding: 26px 22px; }
  .key-benefits h3 { font-size: 21px; }
  .key-comparison { grid-template-columns: 1fr; gap: 16px; text-align: center; }
  .key-comparison > i { margin: 0 auto; transform: rotate(90deg); }
  .value-intro { padding: 78px 0 46px; }
  .value-intro > p { font-size: 16px; }
  .value-path { padding: 46px 0; }
  .value-stages { grid-template-columns: 1fr; gap: 0; }
  .value-stage {
    min-height: 170px;
    padding: 0 0 28px 86px;
    position: relative;
  }
  .value-stage:not(:last-child)::after {
    content: "";
    width: 2px;
    height: 65px;
    position: absolute;
    top: 72px;
    left: 34px;
    background: rgba(255,255,255,0.48);
  }
  .value-icon { width: 68px; height: 68px; position: absolute; top: 0; left: 0; border-width: 3px; font-size: 28px; }
  .value-stage strong { margin-top: 8px; font-size: 22px; }
  .value-stage small { font-size: 13px; }
  .value-proof { padding: 42px 0 30px; grid-template-columns: 1fr; }
  .value-proof-item,
  .value-proof-item + .value-proof-item { min-height: 0; padding: 30px 0; grid-template-columns: 56px 1fr; gap: 18px; border-left: 0; border-bottom: 1px solid var(--line); }
  .proof-icon { width: 56px; height: 56px; font-size: 23px; }
  .value-proof h3 { font-size: 28px; }
  .value-proof li { font-size: 13px; }
  .value-statement { padding: 28px 0 0; }
  .preview-heading { text-align: left; }
  .preview-heading-second { margin-top: 82px; }
  .browser-toolbar { grid-template-columns: auto 1fr auto; padding: 0 10px; }
  .browser-address { margin: 0 8px; padding: 7px 8px; }
  .viewport-switch button { display: none; }
  .viewport-switch a { font-size: 18px; }
  .iframe-stage,
  .browser-wrap iframe { min-height: 760px; height: 760px; }
  .browser-wrap-config .iframe-stage,
  .browser-wrap-config iframe { min-height: 820px; height: 820px; }
  .migration-bridge { flex-direction: column; padding: 22px 0; }
  .migration-bridge > i { width: 1px; height: 25px; }
  .system-card { padding: 24px; }
  .account-stats { grid-template-columns: 1fr; }
  .account-stats span { min-height: 54px; border-right: 0; border-bottom: 1px solid var(--line); }
  .account-stats span:last-child { border-bottom: 0; }
  .account-order { grid-template-columns: 28px 1fr; }
  .account-order b { grid-column: 2; }
  .migration-notes { grid-template-columns: 1fr; }
  .migration-notes article,
  .migration-notes article + article { padding: 24px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .migration-notes article:last-child { border-bottom: 0; }
  .search-layers { grid-template-columns: 1fr; }
  .search-layers article { min-height: auto; padding: 28px 24px; }
  .search-layers article + article { border-left: 0; border-top: 1px solid rgba(255,255,255,0.24); }
  .search-layers .analytics-layer { grid-column: auto; }
  .search-layers .analytics-layer ul { grid-template-columns: 1fr; }
  .scope-grid { grid-template-columns: 1fr; }
  .scope-grid article { min-height: 245px; }
  .scope-grid h3 { margin-top: 44px; }
  .timeline { padding: 72px 0; }
  .timeline-list { grid-template-columns: 1fr; }
  .timeline-list li { min-height: 160px; border-right: 0; border-bottom: 1px solid var(--line); }
  .timeline-list li:nth-child(3) { border-right: 0; }
  .timeline-list li:last-child { border-bottom: 0; }
  .investment { padding: 82px 0; }
  .price-card { min-height: 0; padding: 28px 22px; }
  .price-card > strong { font-size: 69px; }
  .price-card li { align-items: flex-start; padding: 13px 0; flex-direction: column; gap: 2px; }
  .package-grid { margin-top: 48px; }
  .package-card { padding: 30px 24px 24px; }
  .package-head > strong { font-size: 62px; }
  .package-card li { font-size: 14px; }
  .package-recommendation { margin-top: -45px; }
  .package-assurance { align-items: flex-start; text-align: left; }
  .conditions-list details p { padding-right: 10px; }
  .closing { padding-top: 82px; }
  .proposal-footer { grid-template-columns: 1fr; gap: 18px; margin-top: 74px; }
  .footer-logo { width: 130px; }
  .section-dots { display: none; }
}

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

@media print {
  :root { --page: calc(100% - 28mm); }
  body { font-size: 11pt; background: white; }
  .proposal-header,
  .section-dots,
  .scroll-cue,
  .browser-toolbar,
  .hero-actions,
  .closing-actions,
  .offer-intro { display: none !important; }
  .proposal-hero { min-height: auto; padding-top: 0; }
  .proposal-meta { padding-inline: 0; }
  .hero-grid { min-height: auto; padding: 28mm 0; grid-template-columns: 1fr; }
  .transformation-card { box-shadow: none; break-inside: avoid; }
  .section-pad { padding: 22mm 0; }
  .priority-grid,
  .scope-grid { break-inside: avoid; }
  .previews { display: none; }
  .investment { color: var(--ink); background: white; border-top: 2px solid var(--green); }
  .investment-copy > p,
  .investment-note p { color: var(--ink-soft); }
  .investment-note strong { color: var(--ink); }
  .price-card { box-shadow: none; border-color: var(--line-dark); }
  .proposal-footer { break-inside: avoid; }
}

@media (max-width: 760px) {
  .payment-plan > div { grid-template-columns: 1fr; }
  .price-card li.price-highlight span { display: flex; flex-wrap: wrap; gap: 5px; }
  .price-card li.price-highlight em { margin-left: 0; }

  .value-path { padding: 22px 0 30px; }
  .value-path-frame { padding: 12px; }
  .value-stages { grid-template-columns: 1fr; gap: 14px; }
  .value-stage {
    min-height: 0;
    padding: 22px 18px;
    display: grid;
    grid-template-columns: 68px 1fr;
    column-gap: 16px;
    text-align: left;
    align-items: center;
  }
  .value-stage:not(:last-child)::after,
  .value-stage::after {
    width: calc(100% - 26px);
    height: 20px;
    top: auto;
    right: 13px;
    bottom: -9px;
    left: auto;
    background: radial-gradient(ellipse at center, rgba(102, 247, 161, .9) 0%, rgba(39, 220, 128, .3) 44%, transparent 76%);
  }
  .value-icon {
    width: 68px;
    height: 68px;
    position: static;
    grid-row: 1 / 4;
    border-width: 2px;
  }
  .value-icon svg { width: 40px; height: 40px; }
  .value-icon-google svg { width: 43px; height: 43px; }
  .value-step { margin-top: 0; }
  .value-stage strong { max-width: none; margin-top: 5px; font-size: 19px; }
  .value-stage small { max-width: none; margin: 9px 0 0; padding-top: 10px; font-size: 11px; }
  .value-stage small::before { left: 0; transform: none; }
  .value-campaign-wrap { padding: 24px 0 58px; }
  .value-campaign {
    padding: 22px 18px;
    grid-template-columns: 56px 1fr;
    gap: 16px;
  }
  .campaign-icon { width: 54px; height: 54px; }
  .campaign-icon svg { width: 31px; height: 31px; }
  .value-campaign h3 { font-size: 25px; }
  .campaign-months { grid-column: 1 / -1; }
  .campaign-months span { min-height: 32px; font-size: 8px; }
  .campaign-arrow { display: none; }

  .search-campaign-band { grid-template-columns: 1fr; }
  .search-campaign-band article { min-height: 138px; padding: 24px; }
  .search-campaign-band article + article {
    border-top: 1px solid rgba(183, 217, 208, .38);
    border-left: 0;
  }
  .package-feature-band { font-size: 10px; }
}
