:root {
  --green: #22c55e;
  --green-dark: #16a34a;
  --navy: #0f172a;
  --navy-soft: #1e293b;
  --text: #172033;
  --muted: #607086;
  --line: #dfe7ea;
  --bg: #f5f7f5;
  --white: #fff;
  --orange: #f97316;
  --shadow: 0 24px 70px rgba(15, 23, 42, .11);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font: 400 16px/1.6 "Inter", "Segoe UI", sans-serif;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.sr-only {
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
}
.container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}
.header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(226, 232, 240, .75);
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(15px);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #dbe5e9;
  background: #f5f7f7;
  box-shadow: 0 10px 22px rgba(15, 23, 42, .09);
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brand strong {
  display: block;
  color: var(--navy);
  font: 800 21px/1.1 "Manrope", sans-serif;
}
.brand small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #435266;
  font-weight: 500;
}
.nav-links > a:not(.btn):hover { color: var(--green-dark); }
.menu-button {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
}
.menu-button span:not(.sr-only) {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 0;
  border-radius: 13px;
  padding: 0 24px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  color: white;
  background: var(--green);
  box-shadow: 0 14px 27px rgba(34, 197, 94, .28);
}
.btn-primary:hover { background: var(--green-dark); }
.btn-secondary {
  color: var(--navy);
  border: 1px solid var(--line);
  background: white;
}
.btn-small {
  min-height: 43px;
  padding: 0 19px;
}
.hero {
  padding: 54px 0 62px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 20%, rgba(34, 197, 94, .13), transparent 34%),
    linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  align-items: center;
  gap: 55px;
}
.hero-content,
.hero-media {
  min-width: 0;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin-top: 0;
  color: var(--navy);
  font-family: "Manrope", "Segoe UI", sans-serif;
}
h1 {
  max-width: 510px;
  margin-bottom: 20px;
  font-size: clamp(39px, 4vw, 53px);
  line-height: 1.08;
  letter-spacing: -.055em;
}
.hero-copy {
  max-width: 485px;
  margin: 0 0 32px;
  color: var(--muted);
  font-size: 18px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 19px;
}
.trial-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 17px;
  list-style: none;
  max-width: 530px;
  margin: 0 0 26px;
  border: 1px solid #e4efe8;
  border-radius: 14px;
  padding: 13px 15px;
  background: rgba(255, 255, 255, .68);
}
.trial-benefits li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #465668;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
.trial-check {
  display: grid;
  place-items: center;
  flex: 0 0 17px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  color: var(--green-dark);
  background: #e9faf0;
  font-size: 11px;
  font-weight: 700;
}
.hero-includes {
  max-width: 530px;
}
.hero-includes-title {
  margin: 0 0 11px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.hero-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
}
.hero-feature {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 53px;
  border: 1px solid #e4efe8;
  border-radius: 13px;
  padding: 9px 10px;
  color: #324458;
  background: white;
}
.hero-feature span {
  display: grid;
  place-items: center;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  color: var(--green-dark);
  background: #e9faf0;
  font-size: 15px;
  font-weight: 700;
}
.hero-feature strong {
  font-size: 12px;
  line-height: 1.3;
}
.hero-media {
  position: relative;
}
.hero-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: var(--shadow);
}
.floating-card {
  position: absolute;
  right: 19px;
  bottom: 19px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  min-width: 215px;
  border: 1px solid rgba(226, 232, 240, .85);
  border-radius: 16px;
  padding: 13px 15px;
  background: rgba(255, 255, 255, .93);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, .13);
}
.floating-card-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
}
.floating-card-status small {
  color: var(--green-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.floating-card strong {
  color: var(--navy);
  font: 700 17px "Manrope", sans-serif;
}
.floating-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, .18);
}
.proof-strip {
  border-block: 1px solid #e5ede7;
  background: white;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 27px 0;
}
.proof-grid div {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}
.proof-grid div:first-child { padding-left: 0; border: 0; }
.proof-grid strong {
  display: block;
  color: var(--navy);
  font: 700 19px "Manrope", sans-serif;
}
.proof-grid span { color: var(--muted); font-size: 14px; }
.section { padding: 84px 0; }
.section-heading {
  max-width: 620px;
  margin-bottom: 42px;
}
.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}
.section-heading h2, .preview-copy h2, .cta-copy h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 3.2vw, 41px);
  line-height: 1.15;
  letter-spacing: -.045em;
}
.section-heading p:not(.eyebrow), .preview-copy > p:not(.eyebrow), .cta-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.benefit {
  border: 1px solid #e6ede8;
  border-radius: var(--radius);
  padding: 30px;
  background: white;
}
.benefit .icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border-radius: 13px;
  color: var(--green-dark);
  background: #e9faf0;
  font-weight: 700;
}
.benefit h3 { margin-bottom: 9px; font-size: 21px; }
.benefit p { margin: 0; color: var(--muted); }
.promo {
  padding-top: 14px;
  background: white;
}
.promo .section-heading {
  margin-bottom: 34px;
}
.promo-player {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: min(1080px, 100%);
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  border-radius: 29px;
  color: white;
  background: var(--navy);
  box-shadow: 0 30px 76px rgba(15, 23, 42, .2);
}
.promo-player::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(8, 15, 30, .95) 0%, rgba(8, 15, 30, .76) 35%, rgba(8, 15, 30, .04) 70%);
}
.promo-player img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.promo-content {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  width: min(47%, 490px);
  height: 100%;
  padding: clamp(34px, 5vw, 57px);
}
.promo-brand {
  margin: 0;
  color: #52d879;
  font: 800 16px "Manrope", sans-serif;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.promo-scenes {
  position: relative;
  flex: 1;
  margin-top: clamp(34px, 6vw, 65px);
}
.promo-scene {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .42s ease, transform .42s ease;
}
.promo-scene.active {
  opacity: 1;
  transform: none;
}
.promo-scene small {
  display: block;
  margin-bottom: 14px;
  color: #6ee798;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.promo-scene h3 {
  max-width: 385px;
  margin: 0 0 12px;
  color: white;
  font-size: clamp(26px, 3vw, 37px);
  line-height: 1.15;
  letter-spacing: -.045em;
}
.promo-scene p {
  max-width: 355px;
  margin: 0;
  color: #c5d1e0;
  font-size: clamp(14px, 1.35vw, 16px);
}
.promo-controls {
  display: flex;
  align-items: center;
  gap: 20px;
}
.promo-toggle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  padding: 10px 15px;
  color: white;
  background: rgba(255, 255, 255, .08);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
}
.promo-toggle:hover {
  background: rgba(255, 255, 255, .14);
}
.promo-toggle-icon {
  position: relative;
  display: inline-block;
  width: 14px;
  height: 14px;
}
.promo-player.is-playing .promo-toggle-icon::before,
.promo-player.is-playing .promo-toggle-icon::after {
  position: absolute;
  top: 1px;
  width: 4px;
  height: 12px;
  content: "";
  border-radius: 1px;
  background: var(--green);
}
.promo-player.is-playing .promo-toggle-icon::before { left: 2px; }
.promo-player.is-playing .promo-toggle-icon::after { right: 2px; }
.promo-player:not(.is-playing) .promo-toggle-icon::before {
  display: block;
  margin: 1px 0 0 3px;
  border-block: 6px solid transparent;
  border-left: 10px solid var(--green);
  content: "";
}
.promo-dots {
  display: flex;
  gap: 7px;
}
.promo-dots button {
  width: 27px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 255, 255, .25);
  cursor: pointer;
  transition: width .24s ease, background .24s ease;
}
.promo-dots button.active {
  width: 43px;
  background: var(--green);
}
.preview {
  color: white;
  background: var(--navy);
}
.preview-grid {
  display: grid;
  grid-template-columns: .38fr .62fr;
  align-items: center;
  gap: 44px;
}
.preview h2 { color: white; }
.preview-copy > p:not(.eyebrow) { color: #acb6c7; }
.shortcut-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 29px;
}
.shortcut-list span {
  border: 1px solid #334155;
  border-radius: 9px;
  padding: 8px 11px;
  color: #d4dce8;
  font-size: 13px;
}
kbd {
  margin-right: 5px;
  color: var(--green);
  font-weight: bold;
}
.app-frame {
  overflow: hidden;
  border: 1px solid #29364d;
  border-radius: 20px;
  background: #f3f4f6;
  box-shadow: 0 30px 75px rgba(0, 0, 0, .25);
}
.app-topbar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 40px;
  padding: 0 14px;
  color: #aab5c8;
  background: #152136;
  font-size: 12px;
}
.app-topbar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #38445a;
}
.app-topbar label { margin-left: 10px; }
.app-body {
  display: grid;
  grid-template-columns: 136px 1fr;
  height: 474px;
}
.app-sidebar {
  display: flex;
  flex-direction: column;
  padding: 15px 11px 10px;
  color: #d4dce8;
  background: #0f172a;
  font-size: 11px;
}
.app-sidebar b { color: white; font-size: 14px; }
.app-sidebar em {
  margin-bottom: 13px;
  color: #94a3b8;
  font-style: normal;
  font-size: 9px;
}
.app-sidebar a {
  border-radius: 7px;
  padding: 6px 7px;
  margin-bottom: 2px;
}
.app-sidebar a.active { color: white; background: #1f304a; }
.app-sidebar small {
  margin-top: auto;
  color: #ef4444;
}
.app-sale {
  display: flex;
  flex-direction: column;
  padding: 12px 14px 11px;
  color: var(--navy);
}
.app-title {
  margin-bottom: 7px;
  font: 700 14px "Manrope", sans-serif;
}
.scan {
  height: 35px;
  border: 1px solid #d5dce2;
  padding: 7px 10px;
  color: #718198;
  background: white;
  font-size: 12px;
}
.sale-content {
  display: grid;
  flex: 1;
  grid-template-columns: 1fr 152px;
  gap: 10px;
  margin-top: 11px;
}
.ticket-lines {
  overflow: hidden;
  border: 1px solid #dfe6e9;
  background: white;
  font-size: 11px;
}
.ticket-lines div {
  display: grid;
  grid-template-columns: 51px 1fr 65px 65px;
  padding: 10px 7px;
  border-bottom: 1px solid #edf0f2;
}
.ticket-lines .table-header {
  color: white;
  background: #17243a;
  font-weight: bold;
}
.checkout-total {
  padding: 15px 10px;
  background: white;
}
.checkout-total small { color: #64748b; font-weight: bold; }
.checkout-total strong {
  display: block;
  margin: 3px 0 0;
  color: var(--green);
  font-size: 22px;
}
.checkout-total .total-units {
  display: block;
  margin-bottom: 20px;
  font-weight: 400;
}
.checkout-total button {
  width: 100%;
  border: 0;
  margin-bottom: 7px;
  padding: 9px 3px;
  color: white;
  font-size: 9px;
  font-weight: bold;
}
.checkout-total .finish-print { background: var(--green); }
.checkout-total .finish-no-print { background: var(--navy); }
.checkout-total .finish-credit { background: var(--orange); }
.checkout-total .finish-cancel {
  margin-top: 7px;
  background: #ef4444;
}
.app-shortcuts {
  overflow: hidden;
  margin-top: 10px;
  color: #172033;
  white-space: nowrap;
  font-size: 8px;
  font-weight: 700;
}
.finance {
  background: #f7fbf8;
}
.finance-grid {
  display: grid;
  grid-template-columns: .43fr .57fr;
  align-items: center;
  gap: 58px;
}
.finance .section-heading {
  margin-bottom: 0;
}
.finance-points {
  display: grid;
  gap: 13px;
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  color: #425268;
}
.finance-points li {
  position: relative;
  padding-left: 27px;
}
.finance-points li::before {
  position: absolute;
  left: 0;
  top: 1px;
  content: "\2713";
  color: var(--green-dark);
  font-weight: 700;
}
.finance-cards {
  display: grid;
  gap: 14px;
}
.finance-card {
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid #e1ebe5;
  border-radius: 20px;
  padding: 22px 24px;
  background: white;
  box-shadow: 0 8px 25px rgba(15, 23, 42, .035);
}
.finance-icon {
  display: grid;
  flex: 0 0 51px;
  width: 51px;
  height: 51px;
  place-items: center;
  border-radius: 15px;
  color: var(--green-dark);
  background: #e9faf0;
  font: 800 26px "Manrope", sans-serif;
}
.finance-icon.negative {
  color: #d85816;
  background: #fff2e9;
}
.finance-card p {
  margin: 0 0 5px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.finance-card h3 {
  margin: 0 0 5px;
  font-size: 20px;
}
.finance-card small {
  color: var(--muted);
  font-size: 14px;
}
.finance-card.summary {
  display: block;
  border-color: rgba(34, 197, 94, .3);
  background: #eefbf3;
}
.finance-formula {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin: 14px 0 12px;
}
.finance-formula span {
  border-radius: 9px;
  padding: 7px 10px;
  color: #324458;
  background: white;
  font-size: 13px;
  font-weight: 600;
}
.finance-formula b {
  color: var(--green-dark);
  font-size: 18px;
}
.finance-card.summary > strong {
  color: var(--navy);
  font: 700 18px "Manrope", sans-serif;
}
.features { background: white; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.feature {
  border: 1px solid #ebf0ec;
  border-radius: 20px;
  padding: 26px 22px;
  transition: border .18s ease, transform .18s ease;
}
.feature:hover {
  transform: translateY(-4px);
  border-color: #c9ecd7;
}
.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: var(--green-dark);
  background: #eafaf0;
  font-size: 21px;
  font-weight: bold;
}
.feature h3 {
  margin: 18px 0 8px;
  font-size: 18px;
}
.feature p { margin: 0; color: var(--muted); font-size: 14px; }
.steps-grid {
  display: grid;
  grid-template-columns: .42fr .58fr;
  gap: 70px;
}
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: steps;
}
.timeline li {
  position: relative;
  padding: 0 0 30px 64px;
  counter-increment: steps;
}
.timeline li:not(:last-child)::before {
  position: absolute;
  left: 22px;
  top: 45px;
  width: 2px;
  height: calc(100% - 32px);
  content: "";
  background: #d9ece1;
}
.timeline li::after {
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  content: counter(steps);
  color: var(--green-dark);
  background: #e9faf0;
  font-weight: 700;
}
.timeline strong {
  color: var(--navy);
  font: 700 19px "Manrope", sans-serif;
}
.timeline p { margin: 4px 0 0; color: var(--muted); }
.audience {
  background: #ecf8f0;
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.audience article {
  border-radius: 20px;
  padding: 30px 24px;
  background: white;
}
.audience h3 { margin-bottom: 8px; font-size: 21px; }
.audience p { margin: 0; color: var(--muted); }
.pricing {
  background: #f8faf9;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 20px;
  margin-top: 47px;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid #e1e8e4;
  border-radius: 24px;
  padding: 31px 27px 28px;
  background: white;
}
.price-card.highlighted {
  border: 2px solid var(--green);
  padding: 30px 26px 27px;
  box-shadow: 0 18px 44px rgba(34, 197, 94, .12);
}
.recommended-plan {
  position: absolute;
  top: -16px;
  left: 24px;
  border-radius: 999px;
  padding: 7px 16px;
  color: white;
  background: var(--green);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.plan-label {
  margin: 0 0 10px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.price-card h3, .setup-offer h3 {
  margin: 0;
  font-size: 23px;
}
.plan-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 23px 0 25px;
}
.plan-detail strong {
  color: var(--navy);
  font: 800 clamp(25px, 3vw, 29px) "Manrope", sans-serif;
}
.plan-detail span {
  color: var(--muted);
  font-size: 14px;
}
.price-card ul {
  flex: 1;
  display: grid;
  gap: 13px;
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
  color: var(--muted);
  font-size: 14px;
}
.price-card li {
  position: relative;
  padding-left: 23px;
}
.price-card li::before {
  position: absolute;
  left: 0;
  content: "✓";
  color: var(--green-dark);
  font-weight: 700;
}
.price-card .btn {
  width: 100%;
  justify-content: center;
}
.setup-offer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 25px;
  border-radius: 22px;
  padding: 25px 31px;
  color: white;
  background: var(--navy);
}
.setup-offer .plan-label { color: #55dd86; }
.setup-offer p:not(.plan-label) {
  margin: 9px 0 0;
  color: #c6d0dc;
}
.setup-offer .btn {
  flex: 0 0 auto;
}
.pricing-note {
  margin: 22px auto 0;
  color: var(--muted);
  text-align: center;
  font-size: 13px;
}
.requirements {
  background: white;
}
.requirements-grid {
  display: grid;
  grid-template-columns: .43fr .57fr;
  align-items: start;
  gap: 58px;
}
.recommended-system {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 24px;
  border-radius: 15px;
  padding: 15px 20px;
  color: var(--navy);
  background: #e9faf0;
}
.recommended-system span {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.recommended-system strong {
  font: 700 20px "Manrope", sans-serif;
}
.compatibility-note {
  margin-top: 22px !important;
  border-left: 3px solid var(--orange);
  padding-left: 14px;
  font-size: 14px;
}
.requirement-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.requirement {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-height: 122px;
  border: 1px solid #e1e8e4;
  border-radius: 18px;
  padding: 20px 17px;
  background: #fdfefe;
}
.requirement-icon {
  display: grid;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 13px;
  color: var(--green-dark);
  background: #e9faf0;
  font: 800 13px "Manrope", sans-serif;
}
.requirement strong {
  display: block;
  margin: 2px 0 6px;
  color: var(--navy);
  font: 700 16px "Manrope", sans-serif;
}
.requirement p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.faq-grid {
  display: grid;
  grid-template-columns: .39fr .61fr;
  gap: 58px;
}
.questions details {
  margin-bottom: 13px;
  border: 1px solid #e1e8e4;
  border-radius: 15px;
  padding: 20px 22px;
  background: white;
}
.questions summary {
  cursor: pointer;
  list-style: none;
  color: var(--navy);
  font-weight: 700;
}
.questions summary::-webkit-details-marker { display: none; }
.questions summary::after {
  float: right;
  content: "+";
  color: var(--green-dark);
  font-size: 21px;
}
.questions details[open] summary::after { content: "−"; }
.questions p { margin: 14px 0 0; color: var(--muted); }
.cta {
  padding: 85px 0;
  color: white;
  background:
    radial-gradient(circle at 12% 22%, rgba(34, 197, 94, .22), transparent 30%),
    var(--navy);
}
.cta-grid {
  display: grid;
  grid-template-columns: .51fr .49fr;
  align-items: center;
  gap: 64px;
}
.cta-copy h2 { color: white; font-size: clamp(34px, 4vw, 46px); }
.cta-copy p:not(.eyebrow) { color: #b8c2d1; max-width: 460px; }
.cta-promises {
  display: grid;
  gap: 11px;
  list-style: none;
  margin: 29px 0 0;
  padding: 0;
  color: #e2e8f0;
  font-weight: 500;
}
.cta-promises li::before {
  content: "✓";
  margin-right: 12px;
  color: var(--green);
  font-weight: 700;
}
.lead-form {
  display: grid;
  gap: 15px;
  border-radius: 25px;
  padding: 28px;
  color: var(--text);
  background: white;
}
.lead-form label {
  color: #435266;
  font-size: 13px;
  font-weight: 600;
}
.lead-form input, .lead-form textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  border: 1px solid #dae2e6;
  border-radius: 10px;
  padding: 12px 13px;
  color: var(--text);
  background: #fcfdfd;
  resize: vertical;
}
.lead-form input:focus, .lead-form textarea:focus {
  outline: 2px solid rgba(34, 197, 94, .26);
  border-color: var(--green);
}
.lead-form .btn { width: 100%; margin-top: 5px; }
.form-note {
  margin: 0;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
}
.form-note.feedback { color: var(--green-dark); font-weight: 600; }
.footer {
  padding: 28px 0;
  color: #94a3b8;
  background: #09111f;
}
.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.footer-brand .brand-mark {
  width: 38px;
  height: 38px;
  border-color: rgba(226, 232, 240, .18);
}
.footer-brand strong { color: white; font-size: 18px; }
.footer-brand small { color: #8c9ab0; }
.footer p { margin: 0; font-size: 13px; }
.footer > a, .footer-grid > a { color: #d9e1ed; font-size: 14px; }
.whatsapp-float {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 55px;
  border-radius: 999px;
  padding: 0 21px 0 15px;
  color: white;
  background: #20b85a;
  box-shadow: 0 18px 34px rgba(21, 128, 61, .3);
  font-weight: 700;
  transition: transform .18s ease, background .18s ease;
}
.whatsapp-float span {
  border-radius: 999px;
  padding: 5px 9px;
  background: rgba(255, 255, 255, .17);
  font-size: 12px;
}
.whatsapp-float:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1020px) {
  .nav-links { gap: 17px; font-size: 14px; }
  .hero-grid, .preview-grid, .finance-grid, .steps-grid, .requirements-grid, .faq-grid, .cta-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .hero-content { order: 0; }
  .hero-media { order: 1; }
  .floating-card { right: 18px; }
  .feature-grid, .audience-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card.highlighted { order: -1; }
}
@media (max-width: 760px) {
  .container { width: min(100% - 32px, 1200px); }
  .menu-button { display: block; }
  .nav-links {
    position: absolute;
    top: 76px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    border-radius: 18px;
    padding: 12px;
    background: white;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 11px 13px; }
  .nav-links .btn { margin-top: 6px; }
  .hero { padding: 35px 0 46px; }
  h1 { font-size: clamp(34px, 11vw, 44px); }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .section { padding: 64px 0; }
  .proof-grid, .benefits-grid, .feature-grid, .audience-grid, .pricing-grid { grid-template-columns: 1fr; }
  .setup-offer { flex-direction: column; align-items: flex-start; }
  .requirement-list { grid-template-columns: 1fr; }
  .proof-grid { gap: 18px; padding: 22px 0; }
  .proof-grid div { padding-left: 0; border: 0; }
  .app-body { grid-template-columns: 90px 1fr; height: 375px; }
  .app-sidebar { padding: 12px 8px; }
  .sale-content { grid-template-columns: 1fr; }
  .checkout-total { display: none; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
  .trial-benefits {
    gap: 10px;
    padding: 12px;
  }
  .trial-benefits li {
    width: 100%;
    white-space: normal;
  }
  .hero-feature-grid { grid-template-columns: 1fr; }
  .finance-card {
    align-items: flex-start;
    padding: 19px 17px;
  }
  .finance-formula {
    flex-direction: column;
    align-items: flex-start;
  }
  .promo {
    padding-top: 4px;
  }
  .promo-player {
    aspect-ratio: auto;
    min-height: 515px;
    border-radius: 22px;
  }
  .promo-player::after {
    background: linear-gradient(0deg, rgba(8, 15, 30, .98) 0%, rgba(8, 15, 30, .82) 62%, rgba(8, 15, 30, .15) 100%);
  }
  .promo-player img {
    position: absolute;
    object-position: 72% center;
  }
  .promo-content {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 68%;
    padding: 23px 20px 21px;
  }
  .promo-scenes {
    margin-top: 20px;
  }
  .promo-controls {
    justify-content: space-between;
    gap: 12px;
  }
  .floating-card {
    right: 12px;
    bottom: 12px;
    min-width: 190px;
    padding: 11px 13px;
  }
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    min-height: 51px;
    padding-right: 17px;
  }
  .whatsapp-float span { display: none; }
}

.cash-highlight {
  padding: 62px 0;
  color: white;
  background: #0b1220;
}
.cash-highlight-grid {
  display: grid;
  grid-template-columns: .43fr .57fr;
  align-items: center;
  gap: 42px;
}
.cash-highlight-copy h2 {
  margin-bottom: 13px;
  color: white;
  font-size: clamp(29px, 3vw, 39px);
  line-height: 1.14;
}
.cash-highlight-copy p:not(.eyebrow) {
  color: #b9c6d8;
  margin: 0;
}
.cash-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.cash-metrics article {
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 18px;
  padding: 20px 22px;
  background: rgba(255, 255, 255, .06);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .18);
}
.cash-metrics span {
  display: block;
  margin-bottom: 8px;
  color: #a9b6c8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.cash-metrics strong {
  display: block;
  color: white;
  font: 800 clamp(21px, 2.5vw, 30px) "Manrope", sans-serif;
}
.payment-pill {
  margin: 0 0 9px;
  border-radius: 9px;
  padding: 7px 8px;
  color: #166534;
  background: #dcfce7;
  font-size: 9px;
  font-weight: 800;
  text-align: center;
}
.method-buttons {
  display: grid;
  gap: 5px;
  margin-bottom: 8px;
}
.method-buttons span {
  border: 1px solid #bbf7d0;
  border-radius: 7px;
  padding: 5px 4px;
  color: #166534;
  background: #f0fdf4;
  font-size: 8px;
  font-weight: 800;
  text-align: center;
}
@media (max-width: 980px) {
  .cash-highlight-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .cash-metrics { grid-template-columns: 1fr; }
  .cash-highlight { padding: 46px 0; }
}

/* feature-grid-promotional-overrides */
.feature-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
@media (max-width: 1100px) {
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .feature-grid { grid-template-columns: 1fr; }
}
