:root {
  --ink: #07130f;
  --ink-soft: #17352b;
  --forest: #08251c;
  --forest-2: #0d3428;
  --emerald: #19c37d;
  --emerald-dark: #0d8f5c;
  --lime: #c8f76b;
  --cream: #f4f1e9;
  --paper: #fffdf8;
  --white: #fff;
  --muted: #66736d;
  --line: rgba(7, 37, 28, .12);
  --shadow: 0 30px 80px rgba(4, 24, 18, .12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select {
  font-family: inherit;
}

a {
  color: inherit;
}

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

.site-shell {
  overflow: hidden;
}

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

.nav-wrap {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  padding-top: 20px;
}

.nav {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  color: var(--white);
  background: rgba(7, 27, 21, .68);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .14);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 850;
  text-decoration: none;
  letter-spacing: -.03em;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  box-shadow: 0 8px 20px rgba(25, 195, 125, .26);
}

.nav-links,
.nav-actions,
.hero-actions,
.trust-row {
  display: flex;
  align-items: center;
}

.nav-links {
  gap: 28px;
  color: rgba(255, 255, 255, .7);
  font-size: .84rem;
  font-weight: 700;
}

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

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

.nav-actions {
  gap: 10px;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  font-size: .9rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #052118;
  background: var(--lime);
  box-shadow: 0 14px 34px rgba(200, 247, 107, .2);
}

.btn-primary:hover {
  color: #052118;
  background: #d7ff85;
  box-shadow: 0 18px 38px rgba(200, 247, 107, .28);
}

.btn-white {
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .12);
}

.btn-dark {
  color: var(--white);
  background: var(--forest);
  box-shadow: 0 14px 32px rgba(8, 37, 28, .18);
}

.btn-ghost {
  min-height: 44px;
  color: rgba(255, 255, 255, .82);
  border-color: rgba(255, 255, 255, .13);
  background: rgba(255, 255, 255, .06);
}

.btn-link {
  padding-inline: 2px;
  color: rgba(255, 255, 255, .8);
  background: transparent;
}

.hero {
  position: relative;
  min-height: 860px;
  display: flex;
  align-items: center;
  isolation: isolate;
  padding: 140px 0 90px;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 18%, rgba(45, 221, 145, .18), transparent 25%),
    radial-gradient(circle at 15% 70%, rgba(200, 247, 107, .08), transparent 26%),
    linear-gradient(145deg, #04120d 0%, #08251c 54%, #0b3024 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .16;
  background-image:
    linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 84%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(450px, .78fr);
  align-items: center;
  gap: 70px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  color: var(--emerald);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.hero .eyebrow {
  color: var(--lime);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--white) !important;
  font-size: clamp(3.2rem, 6vw, 5.45rem);
  line-height: .99;
  font-weight: 850;
  letter-spacing: -.065em;
}

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

.hero-lead {
  max-width: 650px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, .7);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-lead strong {
  color: var(--white);
  font-weight: 750;
}

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

.hero-actions .btn {
  min-height: 56px;
  padding-inline: 24px;
}

.trust-row {
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: 24px;
  color: rgba(255, 255, 255, .55);
  font-size: .78rem;
  font-weight: 650;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.trust-row i {
  color: var(--lime);
  font-size: 1rem;
}

.product-stage {
  position: relative;
  min-height: 570px;
  display: grid;
  place-items: center;
}

.product-glow {
  position: absolute;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: rgba(25, 195, 125, .17);
  filter: blur(70px);
}

.phone {
  position: relative;
  z-index: 3;
  width: 310px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 40px;
  background: #050c09;
  box-shadow: 0 45px 90px rgba(0, 0, 0, .45);
  transform: rotate(2deg);
}

.phone::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 50%;
  z-index: 5;
  width: 88px;
  height: 23px;
  border-radius: 20px;
  background: #050c09;
  transform: translateX(-50%);
}

.phone-screen {
  min-height: 585px;
  overflow: hidden;
  border-radius: 31px;
  color: var(--ink);
  background: #f7f8f3;
}

.app-head {
  padding: 52px 22px 24px;
  color: var(--white);
  background: linear-gradient(145deg, #0c4433, #0b6f50);
}

.app-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, .72);
  font-size: .7rem;
  font-weight: 700;
}

.app-head p {
  margin: 22px 0 4px;
  color: rgba(255, 255, 255, .68);
  font-size: .72rem;
}

.app-head strong {
  display: block;
  font-size: 2rem;
  letter-spacing: -.05em;
}

.trend {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 12px;
  padding: 6px 9px;
  border-radius: 20px;
  color: #0b442f;
  background: var(--lime);
  font-size: .65rem;
  font-weight: 850;
}

.app-body {
  padding: 18px;
}

.mini-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 750;
}

.chart {
  height: 92px;
  display: flex;
  align-items: end;
  gap: 8px;
  padding: 12px 11px 0;
  border: 1px solid rgba(8, 37, 28, .08);
  border-radius: 16px;
  background: var(--white);
}

.chart i {
  flex: 1;
  height: var(--height);
  border-radius: 6px 6px 2px 2px;
  background: #d8e8df;
}

.chart i:nth-child(5),
.chart i:nth-child(6) {
  background: var(--emerald);
}

.insight-card {
  margin-top: 13px;
  padding: 14px;
  border-radius: 16px;
  color: var(--white);
  background: var(--forest);
}

.insight-card small {
  display: block;
  color: var(--lime);
  font-size: .63rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.insight-card strong {
  display: block;
  margin-top: 7px;
  font-size: .82rem;
  line-height: 1.45;
}

.product-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 11px;
  padding: 11px 12px;
  border: 1px solid rgba(8, 37, 28, .08);
  border-radius: 14px;
  background: var(--white);
}

.product-row div {
  min-width: 0;
}

.product-row strong,
.product-row small {
  display: block;
}

.product-row strong {
  overflow: hidden;
  font-size: .72rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-row small {
  margin-top: 3px;
  color: var(--muted);
  font-size: .6rem;
}

.product-row span {
  flex: 0 0 auto;
  color: var(--emerald-dark);
  font-size: .72rem;
  font-weight: 850;
}

.float-card {
  position: absolute;
  z-index: 4;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 24px 54px rgba(0, 0, 0, .2);
  backdrop-filter: blur(15px);
}

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

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

.float-card span {
  margin-top: 4px;
  color: var(--muted);
  font-size: .68rem;
}

.float-saving {
  top: 84px;
  right: -20px;
}

.float-saving b {
  color: var(--emerald-dark);
  font-size: 1.25rem;
}

.float-scan {
  bottom: 72px;
  left: -35px;
  display: flex;
  align-items: center;
  gap: 11px;
}

.float-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: var(--white);
  background: var(--emerald-dark);
  font-size: 1.15rem;
}

.value-strip {
  position: relative;
  z-index: 6;
  margin-top: -44px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(8, 37, 28, .08);
  border-radius: 22px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.value-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 25px 28px;
}

.value-item + .value-item {
  border-left: 1px solid var(--line);
}

.value-item i {
  color: var(--emerald-dark);
  font-size: 1.5rem;
}

.value-item strong,
.value-item span {
  display: block;
}

.value-item strong {
  font-size: .86rem;
}

.value-item span {
  margin-top: 4px;
  color: var(--muted);
  font-size: .73rem;
  line-height: 1.4;
}

.section {
  padding: 116px 0;
}

.section-white {
  background: var(--paper);
}

.section-dark {
  color: var(--white);
  background: var(--forest);
}

.section-dark h2,
.section-dark h3,
.lead-section h2,
.lead-section h3,
.price-card.featured h3 {
  color: var(--white) !important;
}

.section-head {
  max-width: 740px;
  margin-bottom: 54px;
}

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

.section-head.center .eyebrow {
  justify-content: center;
}

.section h2,
.lead-section h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(2.35rem, 4.5vw, 4.2rem);
  line-height: 1.05;
  font-weight: 830;
  letter-spacing: -.055em;
}

.section-copy {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.center .section-copy {
  margin-inline: auto;
}

.problem-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  gap: 80px;
}

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

.receipt {
  position: absolute;
  width: 310px;
  min-height: 430px;
  padding: 30px 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #25322c;
  background: #fff;
  box-shadow: 0 24px 60px rgba(8, 37, 28, .13);
}

.receipt.back {
  top: 40px;
  left: 80px;
  opacity: .55;
  transform: rotate(8deg);
}

.receipt.front {
  top: 0;
  left: 20px;
  transform: rotate(-4deg);
}

.receipt-brand {
  padding-bottom: 18px;
  border-bottom: 1px dashed #aeb8b2;
  text-align: center;
  font-size: .75rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.receipt-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px dashed #d5dcd8;
  font-size: .7rem;
}

.receipt-total {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  font-size: .9rem;
  font-weight: 850;
}

.receipt-forgotten {
  position: absolute;
  right: -10px;
  bottom: 52px;
  z-index: 4;
  padding: 12px 15px;
  border-radius: 12px;
  color: #7c2d12;
  background: #ffedd5;
  box-shadow: 0 14px 30px rgba(124, 45, 18, .13);
  font-size: .72rem;
  font-weight: 800;
  transform: rotate(3deg);
}

.pain-list {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.pain-item {
  display: flex;
  gap: 14px;
  padding: 18px 19px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, .62);
}

.pain-item i {
  color: var(--emerald-dark);
  font-size: 1.25rem;
}

.pain-item strong,
.pain-item span {
  display: block;
}

.pain-item strong {
  font-size: .9rem;
}

.pain-item span {
  margin-top: 4px;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.5;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .045);
}

.step-number {
  color: var(--lime);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .12em;
}

.step-visual {
  height: 130px;
  display: grid;
  place-items: center;
  margin: 24px 0;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  color: var(--lime);
  background: rgba(0, 0, 0, .14);
  font-size: 3rem;
}

.step h3 {
  margin: 0;
  font-size: 1.22rem;
  letter-spacing: -.03em;
}

.step p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, .58);
  font-size: .84rem;
  line-height: 1.65;
}

.demo-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(420px, 1fr);
  align-items: center;
  gap: 70px;
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.feature-pills button {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: .76rem;
  font-weight: 800;
}

.feature-pills button.is-active {
  color: var(--white);
  border-color: var(--forest);
  background: var(--forest);
}

.demo-window {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.demo-toolbar {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: .72rem;
  font-weight: 750;
}

.traffic-lights {
  display: flex;
  gap: 6px;
}

.traffic-lights i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d8dedb;
}

.demo-content {
  padding: 28px;
}

.demo-metrics {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 10px;
}

.demo-metric {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fafbf8;
}

.demo-metric span,
.demo-metric strong {
  display: block;
}

.demo-metric span {
  color: var(--muted);
  font-size: .62rem;
  font-weight: 700;
}

.demo-metric strong {
  margin-top: 6px;
  font-size: 1.25rem;
  letter-spacing: -.04em;
}

.demo-metric:first-child {
  color: var(--white);
  border-color: var(--forest);
  background: var(--forest);
}

.demo-metric:first-child span {
  color: rgba(255, 255, 255, .58);
}

.demo-list {
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.demo-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 17px 18px;
}

.demo-row + .demo-row {
  border-top: 1px solid var(--line);
}

.demo-row strong,
.demo-row small {
  display: block;
}

.demo-row strong {
  font-size: .82rem;
}

.demo-row small {
  margin-top: 4px;
  color: var(--muted);
  font-size: .67rem;
}

.demo-row b {
  color: var(--emerald-dark);
  font-size: .78rem;
}

.demo-alert {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 15px;
  color: #36530f;
  background: #f0fbd8;
  font-size: .72rem;
  font-weight: 750;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.benefit {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, .52);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--emerald-dark);
  background: rgba(25, 195, 125, .11);
  font-size: 1.3rem;
}

.benefit h3 {
  margin: 24px 0 0;
  font-size: 1.05rem;
  letter-spacing: -.03em;
}

.benefit p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: .8rem;
  line-height: 1.65;
}

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

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
}

.price-card.featured {
  color: var(--white);
  border-color: var(--forest);
  background: var(--forest);
  box-shadow: 0 32px 70px rgba(8, 37, 28, .22);
  transform: translateY(-12px);
}

.plan-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 9px;
  border-radius: 30px;
  color: var(--forest);
  background: var(--lime);
  font-size: .62rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.price-card h3 {
  margin: 0;
  font-size: 1rem;
}

.price {
  display: flex;
  align-items: end;
  gap: 7px;
  margin-top: 20px;
}

.price strong {
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: -.06em;
}

.price span {
  color: var(--muted);
  font-size: .72rem;
}

.featured .price span,
.featured .plan-copy,
.featured .check-list {
  color: rgba(255, 255, 255, .62);
}

.plan-copy {
  min-height: 44px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: .76rem;
  line-height: 1.55;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 30px;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  list-style: none;
  font-size: .76rem;
}

.featured .check-list {
  border-color: rgba(255, 255, 255, .12);
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.check-list i {
  color: var(--emerald);
  font-size: 1rem;
}

.price-card .btn {
  width: 100%;
  margin-top: auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .55);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 21px 22px;
  cursor: pointer;
  font-size: .84rem;
  font-weight: 800;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  color: var(--emerald-dark);
  font-size: 1.3rem;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: -3px 22px 22px;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.65;
}

.lead-section {
  padding: 104px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 10%, rgba(200, 247, 107, .13), transparent 30%),
    var(--forest);
}

.lead-grid {
  display: grid;
  grid-template-columns: 1fr .8fr;
  align-items: center;
  gap: 80px;
}

.lead-section .section-copy {
  color: rgba(255, 255, 255, .6);
}

.lead-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.lead-points span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 30px;
  color: rgba(255, 255, 255, .7);
  background: rgba(255, 255, 255, .04);
  font-size: .7rem;
  font-weight: 700;
}

.lead-form {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 24px;
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(16px);
}

.lead-form h3 {
  margin: 0;
  font-size: 1.15rem;
}

.lead-form > p {
  margin: 8px 0 20px;
  color: rgba(255, 255, 255, .55);
  font-size: .76rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.form-grid input,
.form-grid select {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  outline: none;
  color: var(--white);
  background: rgba(255, 255, 255, .07);
  font-size: .76rem;
}

.form-grid input::placeholder {
  color: rgba(255, 255, 255, .43);
}

.form-grid select option {
  color: var(--ink);
}

.form-grid input:focus,
.form-grid select:focus {
  border-color: rgba(200, 247, 107, .55);
}

.form-grid .full {
  grid-column: 1 / -1;
}

.lead-message {
  margin-bottom: 14px;
  padding: 11px 13px;
  border-radius: 10px;
  font-size: .72rem;
  font-weight: 750;
}

.lead-message.ok {
  color: #d9ff91;
  background: rgba(200, 247, 107, .1);
}

.lead-message.error {
  color: #fecaca;
  background: rgba(239, 68, 68, .12);
}

.final-cta {
  padding: 112px 0;
  text-align: center;
  background: var(--lime);
}

.final-cta h2 {
  max-width: 850px;
  margin-inline: auto;
}

.final-cta p {
  max-width: 620px;
  margin: 20px auto 30px;
  color: #385221;
  font-size: .95rem;
  line-height: 1.7;
}

.final-cta .btn {
  min-height: 56px;
  padding-inline: 25px;
}

.footer {
  padding: 40px 0;
  color: rgba(255, 255, 255, .65);
  background: #04120d;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer .brand {
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: .72rem;
  font-weight: 650;
}

.footer-links a {
  text-decoration: none;
}

.mobile-cta {
  position: fixed;
  inset: auto 12px 12px;
  z-index: 30;
  display: none;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 17px;
  background: rgba(5, 24, 18, .92);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .25);
  backdrop-filter: blur(18px);
  transform: translateY(130%);
  transition: transform .25s ease;
}

.mobile-cta.is-visible {
  transform: translateY(0);
}

.mobile-cta .btn {
  flex: 1;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-bottom: 100px;
  }

  .hero-grid,
  .problem-grid,
  .demo-grid,
  .lead-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 20px;
  }

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

  .product-stage {
    min-height: 620px;
  }

  .problem-grid {
    gap: 30px;
  }

  .receipt-stack {
    width: min(450px, 100%);
    margin-inline: auto;
  }

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

  .price-card.featured {
    transform: none;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .nav-wrap {
    padding-top: 12px;
  }

  .nav {
    min-height: 60px;
    padding: 8px 9px 8px 13px;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .nav-actions .btn-ghost {
    display: none;
  }

  .nav-actions .btn {
    min-height: 42px;
    padding-inline: 13px;
    font-size: .75rem;
  }

  .hero {
    padding: 118px 0 80px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4rem);
  }

  .hero-lead {
    font-size: .96rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .product-stage {
    min-height: 570px;
    transform: scale(.88);
    margin: -30px -30px;
  }

  .phone {
    width: 292px;
  }

  .float-saving {
    right: -8px;
  }

  .float-scan {
    left: -8px;
  }

  .value-strip {
    margin-top: -22px;
  }

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

  .value-item + .value-item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section,
  .lead-section,
  .final-cta {
    padding: 82px 0;
  }

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

  .section h2,
  .lead-section h2,
  .final-cta h2 {
    font-size: 2.5rem;
  }

  .receipt-stack {
    min-height: 450px;
    transform: scale(.86);
    transform-origin: top center;
    margin-bottom: -60px;
  }

  .steps,
  .benefit-grid,
  .pricing-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .step {
    min-height: auto;
  }

  .demo-grid {
    gap: 40px;
  }

  .demo-content {
    padding: 16px;
  }

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

  .demo-metric:first-child {
    grid-column: 1 / -1;
  }

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

  .form-grid .full {
    grid-column: auto;
  }

  .footer {
    padding-bottom: 96px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-cta {
    display: flex;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
