:root {
  --ink: #11181b;
  --muted: #5f6a67;
  --dark: #061f1c;
  --dark-2: #0a2c27;
  --teal: #167f6d;
  --teal-soft: #e5f4f0;
  --gold: #efb34f;
  --gold-dark: #c78626;
  --orange: #e99525;
  --blue: #2f87df;
  --sky: #54aee8;
  --purple: #8c77bd;
  --cream: #fbf8f4;
  --line: #e8e2d9;
  --card: #ffffff;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #101719;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  line-height: 1.45;
  overflow-x: hidden;
  text-rendering: geometricPrecision;
  /* Design was authored at ~150% browser zoom; bake that scale in so the
     layout reads at the intended size at 100% (all-px stylesheet, so zoom
     is the faithful global scaler). */
  zoom: 1.5;
}

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

button,
textarea {
  font: inherit;
}

.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

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

.hero-section {
  min-height: 421px;
  color: #fff;
  background:
    radial-gradient(ellipse at 57% 23%, rgba(33, 99, 89, .68) 0%, rgba(33, 99, 89, .22) 29%, rgba(33, 99, 89, 0) 56%),
    linear-gradient(135deg, #061d1b 0%, #062b25 48%, #061c1b 100%);
  overflow: hidden;
}

.site-header {
  display: flex;
  align-items: center;
  height: 70px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: max-content;
}

.brand-mark {
  display: block;
  width: 29px;
  height: 43px;
  object-fit: contain;
}

.brand-word {
  color: #f5f7f4;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 5px;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 37px;
  margin-left: auto;
  color: #f5fbf8;
  font-size: 12px;
  font-weight: 700;
}

.nav-links a {
  transition: color .2s ease;
}

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

.nav-button {
  margin-left: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 37px;
  padding: 0 23px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.button svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.2;
}

.button-gold {
  color: #121a19;
  border-color: #f3c36d;
  background: linear-gradient(180deg, #ffd47b 0%, #eead43 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .55), 0 6px 16px rgba(5, 13, 12, .16);
}

.button-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, .78);
  background: rgba(255, 255, 255, .03);
}

.hero-grid {
  display: grid;
  grid-template-columns: 315px 470px;
  gap: 44px;
  align-items: start;
  padding-bottom: 24px;
}

.hero-copy {
  padding-top: 7px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.3px;
  line-height: 1.1;
  text-transform: uppercase;
}

.dark-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 11px;
  color: var(--gold);
  border: 1px solid rgba(40, 151, 126, .65);
  border-radius: 6px;
  background: rgba(5, 45, 38, .72);
}

.hero-copy h1,
.feature-section h2,
.voice-copy h2,
.describe-grid h2,
.steps-title h2,
.pricing-copy h2,
.final-cta h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-copy h1 {
  width: 375px;
  margin-top: 13px;
  color: #f3f4ee;
  font-size: 37px;
  line-height: .99;
}

.hero-copy h1 span {
  color: var(--gold);
}

.hero-subtitle {
  width: 340px;
  margin: 15px 0 0;
  color: #edf4ef;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  gap: 17px;
  margin-top: 19px;
}

.hero-actions .button {
  min-height: 37px;
  padding-inline: 24px;
}

.quick-proof {
  display: flex;
  gap: 22px;
  margin: 18px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, .78);
  list-style: none;
  font-size: 11px;
}

.quick-proof li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: max-content;
}

.quick-proof svg {
  width: 12px;
  height: 12px;
  color: var(--gold);
  stroke-width: 2.8;
}

.hero-visual {
  position: relative;
  height: 316px;
}

.inbox-window {
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  grid-template-columns: 83px 1fr;
  width: 328px;
  height: 316px;
  overflow: hidden;
  border: 2px solid rgba(212, 229, 223, .42);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 24px 50px rgba(0, 0, 0, .24);
}

.inbox-sidebar {
  padding: 18px 9px 14px;
  color: #cce4df;
  background: linear-gradient(180deg, #0b2d27 0%, #08211e 100%);
}

.sidebar-mark {
  display: block;
  width: 28px;
  height: 42px;
  margin: 0 auto 21px;
  object-fit: contain;
}

.side-link {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 24px;
  padding: 0 7px;
  border-radius: 5px;
  color: rgba(255, 255, 255, .8);
  font-size: 8px;
  font-weight: 700;
}

.side-link + .side-link {
  margin-top: 7px;
}

.side-link svg {
  width: 10px;
  height: 10px;
  color: #d9c073;
  stroke-width: 2.5;
}

.side-link.active {
  color: #ffd36f;
  background: rgba(151, 184, 166, .14);
}

.lead-panel {
  padding: 24px 17px 16px;
  color: #11181b;
}

.lead-panel h2 {
  margin: 0 0 17px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0;
}

.tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid #dce2df;
  color: #8c9894;
  font-size: 8px;
  font-weight: 700;
}

.tab {
  height: 20px;
}

.tab.active {
  color: #174c42;
  border-bottom: 2px solid #174c42;
}

.lead-list {
  padding-top: 2px;
}

.lead-row {
  display: grid;
  grid-template-columns: 34px 1fr auto 36px;
  align-items: center;
  min-height: 54px;
  border-bottom: 1px solid #e8ecea;
  gap: 7px;
}

.lead-row strong {
  display: block;
  color: #15191a;
  font-size: 8px;
  font-weight: 900;
  line-height: 1.5;
}

.lead-row small {
  display: block;
  color: #2c5351;
  font-size: 8px;
  font-weight: 700;
  line-height: 1.3;
}

.row-icon,
.source-icon,
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.row-icon {
  width: 28px;
  height: 28px;
}

.row-icon svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.4;
}

.phone {
  color: #298b68;
  background: #dff3ec;
}

.voice {
  color: #e59727;
  background: #fff0db;
}

.chat {
  color: #119d96;
  background: #dff4f2;
}

.mail {
  color: #2e86df;
  background: #e7f0ff;
}

.puzzle {
  color: #8c77bd;
  background: #f0ebfb;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 16px;
  padding: 0 6px;
  border-radius: 999px;
  font-size: 7px;
  font-weight: 900;
}

.pill.new {
  color: #249166;
  background: #edf8f2;
}

.pill.amber,
.pill.working {
  color: #c77b21;
  background: #fff1dd;
}

.pill.qualified {
  color: #15836e;
  background: #e4f5f2;
}

.lead-row time {
  color: #76817e;
  font-size: 7px;
  font-weight: 700;
  text-align: right;
}

.flow-lines {
  position: absolute;
  left: 327px;
  top: 31px;
  width: 72px;
  height: 236px;
  pointer-events: none;
}

.flow-lines path {
  fill: none;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.line-green { color: #54bd7d; }
.line-gold { color: #f0a52d; }
.line-blue { color: #9ad8e2; }
.line-sky { color: #5fb3f2; }
.line-amber { color: #efc565; }

.source-stack {
  position: absolute;
  top: 27px;
  right: 0;
  display: grid;
  gap: 10px;
  width: 110px;
}

.source-card {
  display: grid;
  grid-template-columns: 33px 1fr;
  align-items: center;
  min-height: 47px;
  padding: 8px;
  border-radius: 7px;
  color: #151a1b;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .18);
}

.source-icon {
  width: 31px;
  height: 31px;
}

.source-icon svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.4;
}

.source-card strong {
  display: block;
  font-size: 8px;
  font-weight: 900;
  line-height: 1.25;
}

.source-card small {
  display: block;
  color: #3c4543;
  font-size: 7px;
  font-weight: 700;
  line-height: 1.35;
}

.feature-section {
  padding: 19px 0 18px;
  background: #ffffff;
}

.feature-section h2 {
  width: 420px;
  color: #12181a;
  font-size: 28px;
  line-height: 1.04;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.feature-card {
  min-height: 137px;
  padding: 16px 11px 13px;
  border: 1px solid #e8e4de;
  border-radius: var(--radius);
  background: #fff;
}

.feature-icon {
  width: 34px;
  height: 34px;
  color: white;
  margin-bottom: 12px;
}

.feature-icon svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.5;
}

.feature-icon.green { background: #2b956d; }
.feature-icon.orange { background: #e99525; }
.feature-icon.teal { background: #20a29c; }
.feature-icon.blue { background: #2f86df; }
.feature-icon.purple { background: #8c77bd; }

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.1;
}

.feature-card p {
  margin: 0;
  color: #17201f;
  font-size: 10.5px;
  font-weight: 550;
  line-height: 1.45;
}

.voice-section,
.steps-section,
.pricing-section,
.trust-section {
  background: var(--cream);
}

.voice-section {
  padding: 9px 0 10px;
}

.voice-grid {
  display: grid;
  grid-template-columns: 250px 1fr;
  align-items: center;
  gap: 28px;
}

.voice-copy h2 {
  color: #171819;
  font-size: 27px;
  line-height: .98;
}

.voice-copy p {
  width: 220px;
  margin: 14px 0 10px;
  color: #303a39;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.5;
}

.check-list,
.compare-list,
.pricing-notes {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.compare-list li,
.pricing-notes li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.check-list {
  color: #31403f;
  font-size: 10.5px;
  font-weight: 600;
}

.check-list li + li {
  margin-top: 4px;
}

.check-list svg {
  width: 13px;
  height: 13px;
  color: #23876f;
  border: 1px solid currentColor;
  border-radius: 50%;
  padding: 2px;
  stroke-width: 3;
}

.compare-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.07fr;
  gap: 21px;
}

.compare-card {
  min-height: 160px;
  padding: 16px 18px 14px;
  border-radius: var(--radius);
}

.light-card {
  border: 1px solid #e6e2dd;
  background: #fff;
  box-shadow: 0 5px 18px rgba(0, 0, 0, .05);
}

.dark-card {
  color: #fff;
  background: linear-gradient(180deg, #083b33 0%, #092c27 100%);
  box-shadow: 0 7px 18px rgba(0, 0, 0, .19);
}

.compare-card h3 {
  margin: 0 0 13px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(128, 142, 138, .28);
  font-size: 15px;
  line-height: 1;
}

.dark-card h3 {
  color: var(--gold);
}

.compare-list {
  color: #293332;
  font-size: 11px;
  font-weight: 600;
}

.dark-card .compare-list {
  color: rgba(255, 255, 255, .9);
}

.compare-list li + li {
  margin-top: 7px;
}

.compare-list svg {
  width: 13px;
  height: 13px;
  border: 1px solid currentColor;
  border-radius: 50%;
  padding: 2px;
  stroke-width: 3;
}

.negative svg {
  color: #66716f;
}

.positive svg {
  color: var(--gold);
}

.vs-badge {
  position: absolute;
  left: calc(48.7% - 20px);
  top: 74px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 41px;
  height: 41px;
  border-radius: 50%;
  color: #fff;
  background: #083d36;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .28);
  font-size: 14px;
  font-weight: 900;
}

.describe-section {
  padding: 13px 0 13px;
  background: #ffffff;
}

.describe-grid {
  display: grid;
  grid-template-columns: 250px 1fr;
  align-items: center;
  gap: 28px;
}

.describe-grid h2 {
  width: 286px;
  font-size: 24px;
  line-height: 1;
}

.describe-grid p:not(.eyebrow) {
  width: 226px;
  margin: 9px 0 0;
  color: #66706e;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.45;
}

.business-card {
  min-height: 122px;
  padding: 11px 17px;
  border: 1px solid #e6e2dc;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 4px 13px rgba(0, 0, 0, .06);
}

.business-card label {
  display: block;
  margin-bottom: 7px;
  color: #202726;
  font-size: 12px;
  font-weight: 850;
}

.business-card textarea {
  display: block;
  width: 100%;
  height: 52px;
  margin: 0;
  padding: 12px 13px;
  resize: none;
  border: 1px solid #ddd9d3;
  border-radius: 3px;
  outline: none;
  color: #4a5553;
  background: #fff;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 7px;
}

.form-footer span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #77817f;
  font-size: 10px;
  font-weight: 700;
}

.form-footer svg {
  width: 12px;
  height: 12px;
  color: #218771;
  border: 1px solid currentColor;
  border-radius: 50%;
  padding: 2px;
  stroke-width: 3;
}

.form-footer button {
  min-width: 111px;
  height: 29px;
  border: 0;
  border-radius: 4px;
  color: #fff;
  background: #092d28;
  font-size: 11px;
  font-weight: 800;
}

.business-label {
  display: block;
  margin-bottom: 7px;
  color: #202726;
  font-size: 12px;
  font-weight: 850;
}

.business-sample {
  display: block;
  width: 100%;
  min-height: 52px;
  margin: 0;
  padding: 12px 13px;
  border: 1px solid #ddd9d3;
  border-radius: 3px;
  color: #4a5553;
  background: #fff;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
}

.form-footer .business-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 111px;
  height: 29px;
  border-radius: 4px;
  color: #fff;
  background: #092d28;
  font-size: 11px;
  font-weight: 800;
}

.steps-section {
  padding: 13px 0 12px;
}

.steps-grid {
  display: grid;
  grid-template-columns: 190px repeat(3, 1fr);
  gap: 20px;
  align-items: center;
}

.steps-title h2 {
  font-size: 23px;
  line-height: 1.02;
}

.step-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 12px;
}

.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 49px;
  height: 49px;
  border-radius: 50%;
  color: #597c75;
  background: #eee8dd;
}

.step-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.9;
}

.step-item h3 {
  margin: 0 0 5px;
  color: #252a29;
  font-size: 11px;
  font-weight: 850;
}

.step-item p {
  margin: 0;
  color: #5f6866;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.28;
}

.pricing-section {
  padding: 8px 0 9px;
}

.pricing-shell {
  display: grid;
  grid-template-columns: 270px 230px 1fr;
  align-items: center;
  gap: 8px;
  min-height: 174px;
  padding: 11px 30px;
  border: 1px solid #eadfcf;
  border-radius: var(--radius);
  background: #fffaf1;
}

.pricing-copy h2 {
  width: 270px;
  margin-bottom: 12px;
  font-size: 22.5px;
  line-height: 1;
}

.price-card {
  position: relative;
  min-height: 132px;
  padding: 21px 26px 10px;
  border: 2px solid #e5b565;
  border-radius: 8px;
  text-align: center;
  background: #fff;
  box-shadow: 0 10px 25px rgba(203, 128, 25, .13);
}

.trial-ribbon {
  position: absolute;
  top: -11px;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 17px;
  transform: translateX(-50%);
  border-radius: 3px;
  color: #1f1b12;
  background: linear-gradient(180deg, #ffc760, #dfa13a);
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.price {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  align-items: end;
  column-gap: 8px;
  padding-bottom: 7px;
  border-bottom: 1px solid #eee7dd;
}

.amount {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  font-weight: 700;
  line-height: .86;
}

.currency {
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}

.period {
  grid-column: 1 / -1;
  margin-left: 74px;
  color: #68726f;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.1;
}

.price-card p {
  margin: 6px 0 8px;
  color: #333b39;
  font-size: 9px;
  font-weight: 800;
}

.price-button {
  width: 100%;
  min-height: 27px;
}

.price-card small {
  display: block;
  margin-top: 8px;
  color: #323836;
  font-size: 9px;
  font-weight: 800;
}

.pricing-notes {
  color: #2b3937;
  font-size: 11px;
  font-weight: 800;
}

.pricing-notes li + li {
  margin-top: 13px;
}

.pricing-notes svg {
  width: 17px;
  height: 17px;
  color: #578278;
  border: 1px solid currentColor;
  border-radius: 50%;
  padding: 3px;
  stroke-width: 2.5;
}

.trust-section {
  padding: 0 0 17px;
}

.trust-strip {
  display: grid;
  grid-template-columns: 123px repeat(4, 1fr);
  align-items: center;
  min-height: 72px;
  padding: 12px 16px;
  border: 1px solid #eadfcf;
  border-radius: 6px;
  background: #fffaf4;
}

.trust-strip .eyebrow {
  margin: 0;
}

.trust-item {
  display: grid;
  grid-template-columns: 43px 1fr;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding-left: 17px;
  border-left: 1px solid #e3d9c9;
}

.trust-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 39px;
  height: 39px;
  border-radius: 50%;
  color: #5d857c;
  background: #f6f6f0;
}

.trust-item svg {
  width: 23px;
  height: 23px;
  stroke-width: 1.8;
}

.trust-item strong {
  display: block;
  color: #25302e;
  font-size: 10px;
  line-height: 1.15;
}

.trust-item small {
  display: block;
  margin-top: 3px;
  color: #424d4a;
  font-size: 8px;
  font-weight: 650;
  line-height: 1.28;
}

.final-cta {
  padding: 26px 0;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 72% 50%, rgba(20, 118, 91, .42) 0, rgba(20, 118, 91, 0) 27%),
    linear-gradient(135deg, #06211f 0%, #063129 48%, #071b19 100%);
}

.cta-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 205px;
  align-items: center;
  min-height: 120px;
}

.final-cta h2 {
  color: #f6f3ea;
  font-size: 25px;
  line-height: 1.05;
}

.final-cta p {
  margin: 8px 0 18px;
  color: rgba(255, 255, 255, .79);
  font-size: 12px;
  font-weight: 600;
}

.cta-actions {
  display: flex;
  gap: 13px;
}

.cta-actions .button {
  min-height: 32px;
}

.cta-mark {
  justify-self: center;
  width: 78px;
  height: 114px;
  object-fit: contain;
  filter: drop-shadow(0 14px 16px rgba(0, 0, 0, .45));
}

.site-footer {
  min-height: 78px;
  padding: 13px 0 12px;
  color: rgba(255, 255, 255, .72);
  background: #101719;
}

.footer-grid {
  display: grid;
  grid-template-columns: 230px 78px 78px 101px 1fr;
  align-items: start;
  gap: 34px;
}

.footer-brand .brand-mark {
  width: 22px;
  height: 32px;
}

.footer-brand .brand-word {
  font-size: 14px;
  letter-spacing: 4px;
}

.footer-brand p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .62);
  font-size: 8px;
  line-height: 1.55;
}

.site-footer nav {
  display: grid;
  gap: 4px;
  font-size: 8px;
}

.site-footer h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 8px;
  font-weight: 850;
}

.site-footer a {
  color: rgba(255, 255, 255, .66);
}

.footer-meta {
  align-self: end;
  justify-self: end;
  min-width: 160px;
  color: rgba(255, 255, 255, .65);
  font-size: 8px;
  line-height: 1.4;
  text-align: right;
}

.footer-meta p {
  margin: 0;
}

.footer-meta p + p {
  margin-top: 26px;
}

.footer-entity {
  color: rgba(255, 255, 255, .82);
  font-weight: 700;
}

.footer-meta .footer-entity + p {
  margin-top: 8px;
}

.canada-flag {
  width: 22px;
  height: 11px;
  margin-left: 6px;
  vertical-align: -1px;
  border-radius: 1px;
  stroke: none;
}

@media (max-width: 880px) {
  .container {
    width: min(790px, calc(100% - 32px));
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-visual {
    width: 470px;
    max-width: 100%;
  }

  .quick-proof {
    flex-wrap: wrap;
  }

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

  .voice-grid,
  .describe-grid,
  .pricing-shell {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .trust-item {
    border-left: 0;
    padding-left: 0;
  }

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

  .footer-meta {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 12px;
  }

  .site-header {
    height: auto;
    padding: 24px 0 16px;
    flex-wrap: wrap;
    gap: 18px;
  }

  .nav-links {
    order: 3;
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 18px 28px;
  }

  .nav-button {
    display: none;
  }

  .hero-copy h1,
  .hero-subtitle,
  .feature-section h2,
  .describe-grid h2,
  .describe-grid p:not(.eyebrow),
  .voice-copy p {
    width: auto;
  }

  .hero-copy h1 {
    font-size: 34px;
    line-height: 1.03;
  }

  .hero-subtitle {
    max-width: 330px;
    font-size: 13px;
  }

  .hero-actions,
  .cta-actions,
  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

