:root {
  --ink: #0b1220;
  --ink-2: #121b2e;
  --ink-3: #1b2740;
  --paper: #f7f8fb;
  --paper-2: #ffffff;
  --line: #e4e7ef;
  --line-dark: #263354;
  --text: #101828;
  --text-soft: #4a5468;
  --text-dim-on-dark: #9aa6c3;
  --brand: #16a06a;
  --brand-2: #0d8a5a;
  --accent: #6d5bf6;
  --accent-2: #8f7bff;
  --warn: #f0b429;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 20px 60px -20px rgba(11, 18, 32, 0.35);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p { margin: 0; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: white;
  box-shadow: 0 8px 24px -8px rgba(22, 160, 106, 0.55);
}
.btn-primary:hover { box-shadow: 0 10px 30px -6px rgba(22, 160, 106, 0.65); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--text); }
.btn-ghost {
  background: transparent;
  color: var(--text-soft);
}
.btn-ghost:hover { color: var(--text); }
.btn-lg { padding: 15px 28px; font-size: 16px; }
.btn-block { width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 248, 251, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.02em;
  margin-right: auto;
}
.brand-mark {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  box-shadow: 0 2px 8px -1px rgba(22, 160, 106, 0.5);
}
.brand-logo { width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0; }
.footer-logo { width: 26px; height: 26px; border-radius: 7px; flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { font-size: 14.5px; font-weight: 500; color: var(--text-soft); }
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 8px; }
.nav-toggle { display: none; flex-direction: column; gap: 4px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 20px; height: 2px; background: var(--text); border-radius: 2px; }
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 8px 24px 20px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.nav-mobile a { padding: 12px 4px; font-weight: 500; color: var(--text-soft); border-bottom: 1px solid var(--line); }
.nav-mobile .btn { margin-top: 12px; }
.nav.open .nav-mobile { display: flex; }

/* ---------- Eyebrow / section head ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand-2);
  margin-bottom: 14px;
}
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 4px rgba(22,160,106,0.15); }
.section-head { max-width: 640px; margin: 0 0 44px; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 38px); letter-spacing: -0.02em; line-height: 1.15; }
.section-sub { margin-top: 14px; color: var(--text-soft); font-size: 16.5px; line-height: 1.6; }

.section { padding: 96px 0; position: relative; z-index: 1; }

/* ---------- Hero ---------- */
.hero { padding: 68px 0 40px; position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin: 18px 0 22px;
}
.lede { font-size: 18px; color: var(--text-soft); line-height: 1.65; max-width: 52ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 40px; }
.hero-proof { display: flex; gap: 34px; flex-wrap: wrap; }
.hero-proof div { display: flex; flex-direction: column; gap: 2px; }
.hero-proof strong { font-size: 24px; letter-spacing: -0.02em; }
.hero-proof span { font-size: 13px; color: var(--text-soft); max-width: 16ch; }

.hero-visual { position: relative; }
.mock-window {
  background: var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--line-dark);
}
.mock-titlebar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 16px;
  background: var(--ink-2);
  border-bottom: 1px solid var(--line-dark);
}
.mock-titlebar span { width: 9px; height: 9px; border-radius: 50%; background: #3a4763; }
.mock-titlebar span:nth-child(1) { background: #f0605a; }
.mock-titlebar span:nth-child(2) { background: #f0b429; }
.mock-titlebar span:nth-child(3) { background: #38c172; }
.mock-titlebar p { margin-left: 8px; font-size: 12.5px; color: var(--text-dim-on-dark); font-family: var(--mono); }
.mock-body { padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.mock-row { display: flex; align-items: flex-start; gap: 10px; }
.mock-row.outgoing { justify-content: flex-end; }
.mock-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--ink-3); color: #cfd8f0;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; flex-shrink: 0;
}
.mock-avatar.ai-avatar { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: white; }
.mock-bubble {
  background: var(--ink-3);
  color: #e6ebf7;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13.5px;
  max-width: 78%;
  line-height: 1.5;
}
.mock-bubble.mock-out { background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: white; }
.mock-bubble.mock-ai { background: rgba(109, 91, 246, 0.14); border: 1px solid rgba(143, 123, 255, 0.35); }
.mock-tag {
  display: inline-block;
  margin-top: 6px;
  font-size: 10.5px;
  font-family: var(--mono);
  color: var(--accent-2);
  background: rgba(109, 91, 246, 0.15);
  padding: 2px 7px;
  border-radius: 999px;
}
.mock-automation {
  margin-top: 4px;
  font-size: 12px;
  color: var(--text-dim-on-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 10px;
  border-top: 1px dashed var(--line-dark);
}
.pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 0 rgba(22,160,106, 0.6); animation: pulse 1.8s infinite; flex-shrink: 0; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(22,160,106,0.55); }
  70% { box-shadow: 0 0 0 8px rgba(22,160,106,0); }
  100% { box-shadow: 0 0 0 0 rgba(22,160,106,0); }
}

.mock-cost-card {
  position: absolute;
  right: -18px;
  bottom: -34px;
  width: 236px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px 18px;
}
.mock-cost-title { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-soft); margin-bottom: 10px; }
.mock-cost-row { display: flex; justify-content: space-between; font-size: 13px; color: var(--text-soft); padding: 5px 0; }
.mock-cost-row.total { border-top: 1px solid var(--line); margin-top: 4px; padding-top: 9px; font-weight: 700; color: var(--text); }

/* ---------- Strip ---------- */
.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper-2); padding: 20px 0; position: relative; z-index: 1; }
.strip-inner p { text-align: center; font-size: 13.5px; color: var(--text-soft); }

/* ---------- Problem / cost stack ---------- */
.problem { background: var(--paper); }
.cost-stack { display: flex; flex-direction: column; gap: 16px; max-width: 760px; }
.cost-layer-label { display: flex; justify-content: space-between; font-size: 14.5px; margin-bottom: 8px; }
.cost-layer-label span:first-child { font-weight: 700; }
.cost-layer-value { color: var(--text-soft); font-family: var(--mono); font-size: 12.5px; }
.cost-layer-bar { height: 14px; border-radius: 999px; background: var(--line); overflow: hidden; position: relative; }
.cost-layer-bar::after {
  content: "";
  position: absolute; inset: 0 auto 0 0;
  width: var(--w);
  border-radius: 999px;
}
.cost-layer.meta .cost-layer-bar::after { background: linear-gradient(90deg, #9aa6c3, #7c8bb0); }
.cost-layer.bsp .cost-layer-bar::after { background: linear-gradient(90deg, var(--accent), var(--accent-2)); }
.cost-layer.wrapper .cost-layer-bar::after { background: linear-gradient(90deg, var(--brand), var(--brand-2)); }
.cost-note { margin-top: 26px; font-size: 15px; color: var(--text-soft); max-width: 62ch; }

/* ---------- Features ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: transparent; }
.feature-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  position: relative;
}
.feature-icon::after {
  content: ""; position: absolute; inset: 10px;
  background: rgba(255,255,255,0.9);
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-size: contain; mask-size: contain;
}
.feature-card h3 { font-size: 17.5px; margin-bottom: 8px; letter-spacing: -0.01em; }
.feature-card p { font-size: 14.5px; color: var(--text-soft); line-height: 1.6; }

/* ---------- Pricing ---------- */
.pricing { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.price-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
  box-shadow: var(--shadow);
  transform: scale(1.03);
}
.price-card.featured h3, .price-card.featured .price-sub { color: white; }
.price-card.featured .price { color: #aab4cf; }
.price-card.featured .price span { color: #ffffff; }
.price-card.featured ul li { color: #cfd8f0; border-color: var(--line-dark); }
.price-badge {
  position: absolute; top: -12px; left: 28px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: white; font-size: 11.5px; font-weight: 700;
  padding: 5px 12px; border-radius: 999px;
}
.price-card h3 { font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-soft); }
.price { display: flex; align-items: baseline; gap: 6px; margin: 14px 0 2px; font-size: 16px; color: var(--text-soft); }
.price span { font-size: 42px; font-weight: 800; color: var(--text); letter-spacing: -0.03em; }
.price-sub { font-size: 13.5px; color: var(--text-soft); margin-bottom: 22px; }
.price-card ul { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; flex: 1; }
.price-card ul li {
  font-size: 14.5px; padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  color: var(--text-soft);
  padding-left: 22px;
  position: relative;
}
.price-card ul li::before {
  content: "✓"; position: absolute; left: 0; color: var(--brand); font-weight: 700;
}
.price-card.featured ul li::before { color: #4ade80; }
.pricing-footnote { margin-top: 28px; font-size: 13px; color: var(--text-soft); text-align: center; }

/* ---------- Compare table ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper-2); }
table { width: 100%; border-collapse: collapse; min-width: 720px; }
th, td { text-align: left; padding: 15px 18px; font-size: 14.5px; border-bottom: 1px solid var(--line); white-space: nowrap; }
th { font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-soft); background: var(--paper); }
tbody tr:last-child td { border-bottom: none; }
tr.highlight td { background: rgba(22, 160, 106, 0.06); font-weight: 600; }
.brand-chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 800;
}
.brand-chip::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
}
td.yes { color: var(--brand-2); font-weight: 600; }
td.no { color: #c05050; }
td.partial { color: var(--warn); }

.status-pill {
  display: inline-flex; align-items: center;
  padding: 4px 11px;
  border-radius: 999px;
  font-size: 12.5px; font-weight: 700;
  white-space: nowrap;
}
.status-pill.yes { background: rgba(22, 160, 106, 0.12); color: var(--brand-2); }
.status-pill.no { background: rgba(192, 80, 80, 0.12); color: #c05050; }
.status-pill.partial { background: rgba(240, 180, 41, 0.18); color: #8a6a10; }

tr.highlight td { background: rgba(22, 160, 106, 0.06); font-weight: 600; border-top: 1px solid rgba(22,160,106,0.35); border-bottom: 1px solid rgba(22,160,106,0.35); }
tr.highlight td:first-child { border-left: 3px solid var(--brand); padding-left: 15px; }
.this-product-badge {
  display: inline-flex; align-items: center;
  margin-left: 8px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(22, 160, 106, 0.14);
  color: var(--brand-2);
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.03em; text-transform: uppercase;
}

/* ---------- Check list (benefit bullets) ---------- */
.check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 40px;
  max-width: 920px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15.5px;
  color: var(--text-soft);
  line-height: 1.55;
}
.check-list li::before {
  content: "✓";
  color: var(--brand);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}
.check-list.check-list-lg li { font-size: 16px; }

/* ---------- Icon squares (shared by icon-grid + step cards) ---------- */
.icon-sq {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(22, 160, 106, 0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.icon-sq svg { width: 18px; height: 18px; stroke: var(--brand-2); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- What is M3VO — icon grid ---------- */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 980px;
}
.icon-card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 20px 22px;
}
.icon-card .icon-sq { margin-bottom: 14px; }
.icon-card h3 { font-size: 15.5px; font-weight: 700; letter-spacing: -0.005em; line-height: 1.4; }
.callout-brand {
  margin-top: 22px;
  background: rgba(22, 160, 106, 0.08);
  border: 1px solid rgba(22, 160, 106, 0.25);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-size: 15px;
  color: var(--ink);
  max-width: 980px;
}

/* ---------- Steps (how it works) ---------- */
.steps { display: flex; flex-direction: column; max-width: 800px; }
.step { display: flex; gap: 22px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.step:first-child { padding-top: 0; }
.step:last-child { border-bottom: none; padding-bottom: 0; }
.step-num {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: white; font-weight: 800; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.step-body h3 { font-size: 17px; margin-bottom: 6px; letter-spacing: -0.01em; }
.step-body p { font-size: 14.5px; color: var(--text-soft); line-height: 1.6; }

/* ---------- Steps timeline variant (how it works redesign) ---------- */
.steps-timeline .step { padding: 0 0 28px; border-bottom: none; }
.steps-timeline .step:first-child { padding-top: 0; }
.steps-timeline .step:last-child { padding-bottom: 0; }
.step-marker { position: relative; width: 42px; flex-shrink: 0; display: flex; flex-direction: column; align-items: center; }
.step-marker::after {
  content: "";
  position: absolute; top: 44px; bottom: -28px; left: 50%;
  width: 2px; transform: translateX(-50%);
  background: rgba(22, 160, 106, 0.25);
}
.steps-timeline .step:last-child .step-marker::after { display: none; }
.steps-timeline .step-num {
  background: var(--paper-2);
  border: 2px solid var(--brand);
  color: var(--brand-2);
}
.step-card {
  flex: 1;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.step-card .icon-sq { margin-bottom: 12px; }
.step-pill {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 12px;
  padding: 4px 11px;
  border-radius: 999px;
  background: rgba(22, 160, 106, 0.12);
  color: var(--brand-2);
  font-size: 12px; font-weight: 700;
}
.step-pill svg { width: 12px; height: 12px; stroke: var(--brand-2); fill: none; stroke-width: 2.5; }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 780px; }
.faq-list details {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px;
}
.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 15.5px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-list summary::after { content: "+"; font-size: 20px; color: var(--text-soft); font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list p { margin-top: 12px; color: var(--text-soft); font-size: 14.5px; line-height: 1.65; }

/* ---------- CTA ---------- */
.cta {
  background: linear-gradient(135deg, var(--ink) 0%, #142a22 100%);
  color: white;
  padding: 96px 0;
  position: relative;
  z-index: 1;
}
.cta-inner { text-align: center; max-width: 620px; margin: 0 auto; }
.cta h2 { font-size: clamp(26px, 3.4vw, 36px); letter-spacing: -0.02em; margin-bottom: 14px; }
.cta p { color: var(--text-dim-on-dark); font-size: 16.5px; margin-bottom: 30px; }

/* ---------- Footer ---------- */
.footer { padding: 40px 0; border-top: 1px solid var(--line); }
.footer-inner { display: flex; flex-direction: column; gap: 12px; align-items: center; text-align: center; }
.footer-brand { display: flex; align-items: center; gap: 8px; font-weight: 800; }
.footer p { font-size: 12.5px; color: var(--text-soft); max-width: 60ch; }

/* ---------- About page ---------- */
.about-hero { padding: 76px 0 20px; position: relative; z-index: 1; text-align: center; }
.about-hero-inner { max-width: 720px; margin: 0 auto; }
.about-hero .eyebrow { justify-content: center; }
.about-hero h1 { font-size: clamp(32px, 4.4vw, 50px); line-height: 1.1; letter-spacing: -0.03em; margin: 18px auto 20px; }
.about-hero .lede { margin: 0 auto; max-width: 56ch; }
.about-hero .hero-actions { justify-content: center; margin-top: 30px; }

.story-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }
.quote-panel {
  background: var(--ink);
  color: white;
  border-radius: var(--radius-lg);
  padding: 40px 40px;
  box-shadow: var(--shadow);
}
.quote-panel .quote-mark { font-family: var(--mono); font-size: 52px; color: var(--brand); line-height: 1; display: block; margin-bottom: 6px; }
.quote-panel p { font-size: 19px; line-height: 1.6; color: #e6ebf7; }
.quote-panel cite { display: block; margin-top: 18px; font-size: 13px; font-style: normal; color: var(--text-dim-on-dark); }
.story-copy p { color: var(--text-soft); font-size: 16.5px; line-height: 1.8; max-width: 64ch; margin-bottom: 26px; }
.story-copy p:last-child { margin-bottom: 0; }

.facts-table td:first-child { color: var(--text-soft); width: 180px; }
.facts-table td:last-child { font-weight: 600; }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .mock-cost-card { position: static; margin-top: 16px; width: 100%; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .story-grid { grid-template-columns: 1fr; }
  .icon-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .feature-grid { grid-template-columns: 1fr; }
  .hero-proof { gap: 22px; }
  .section { padding: 64px 0; }
  .check-list { grid-template-columns: 1fr; }
  .step { gap: 16px; }
  .icon-grid { grid-template-columns: 1fr; }
}
