:root {
  --ink: #242930;
  --muted: #707c8c;
  --line: #e1e5ea;
  --paper: #ffffff;
  --soft: #f6f8fa;
  --mint: #0099ff;
  --mint-dark: #0069bf;
  --yellow: #ffd166;
  --peach: #ff8a65;
  --blue: #0082e6;
  --violet: #8057ff;
  --primary: #16191e;
  --primary-hover: #2c323b;
  --shadow: 0 1px 2px rgba(22, 25, 30, 0.04), 0 4px 16px rgba(22, 25, 30, 0.06);
  --shadow-float: 0 18px 40px rgba(12, 17, 29, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; line-height: 1.5; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { margin-top: 0; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  height: 64px;
  padding: 0 clamp(20px, 5vw, 64px);
  border-bottom: 1px solid rgba(225, 229, 234, 0.72);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  justify-self: start;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: var(--primary);
  box-shadow: var(--shadow);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 30px);
  font-size: 15px;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: 9999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--ink);
  background: var(--soft);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 9999px;
  font-weight: 650;
}

.nav-cta { justify-self: end; min-height: 36px; }
.hero-actions .button { min-height: 52px; padding: 0 28px; font-size: 16px; }

.button.primary,
.nav-cta {
  color: #fff;
  background: var(--primary);
  box-shadow: var(--shadow);
}

.button.primary:hover,
.nav-cta:hover { background: var(--primary-hover); }

.button.secondary {
  border: 1px solid var(--line);
  background: #fff;
}

.hero {
  display: grid;
  justify-items: center;
  min-height: 100vh;
  padding: clamp(112px, 13vw, 144px) clamp(20px, 5vw, 64px) 64px;
  overflow: hidden;
  text-align: center;
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 64%, #f6f8fa 100%);
}

.partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  font-size: 14px;
  font-weight: 750;
}

.wa-dot {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #25d366;
  font-size: 12px;
}

h1 {
  max-width: 980px;
  margin-bottom: 20px;
  font-size: clamp(42px, 7vw, 68px);
  line-height: 1.03;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.15;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(22px, 2.4vw, 28px);
  letter-spacing: 0;
}

.hero-lede,
.section-lede {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 20px);
  line-height: 1.625;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 28px 0 42px;
}

.hero-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(280px, 360px) minmax(240px, 0.86fr);
  align-items: center;
  gap: clamp(14px, 3vw, 28px);
  width: min(1120px, 100%);
}

.chat-card,
.order-card,
.phone-shell,
.dashboard-card,
.checkout-card,
.message-card,
.catalog-card,
.website-grid article,
.review-card,
.price-card,
details,
.feature-copy {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.chat-card,
.order-card {
  display: grid;
  gap: 10px;
  padding: 20px;
  text-align: left;
}

.chat-card p,
.order-card p { margin: 0; color: var(--muted); }
.chat-card .reply { justify-self: end; color: var(--ink); }
.card-label,
.section-kicker,
.limited {
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.order-card a { color: var(--blue); font-weight: 800; }

.phone-shell {
  min-height: 610px;
  padding: 18px;
  border: 10px solid #0c1713;
  border-radius: 34px;
  background: #f9fcfa;
  text-align: left;
  box-shadow: var(--shadow-float);
}

.phone-speaker {
  width: 72px;
  height: 7px;
  margin: 0 auto 22px;
  border-radius: 999px;
  background: #d5dfda;
}

.store-hero,
.product-tile,
.quantity-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.store-logo {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--yellow), var(--mint));
  font-weight: 900;
}

.food-img {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ff9f43, #2fd783);
}

.store-hero small,
.product-tile small { display: block; color: var(--muted); }

.choice-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 18px 0;
}

.choice-row span {
  padding: 10px 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  text-align: center;
  font-weight: 800;
}

.quantity-row {
  grid-template-columns: 1fr auto;
}

.phone-cta {
  margin-top: 18px;
  padding: 15px;
  border-radius: 14px;
  color: #fff;
  background: var(--primary);
  text-align: center;
  font-weight: 850;
}

.feature-band,
.pricing-section,
.faq-section,
.final-cta {
  padding: clamp(64px, 9vw, 96px) clamp(20px, 5vw, 64px);
}

.feature-band > h2,
.feature-band > .section-lede,
.pricing-section > h2,
.pricing-section > .section-lede,
.faq-section > h2,
.final-cta > h2,
.final-cta > p,
.section-kicker {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-kicker { margin-bottom: 12px; }
.pale { background: var(--soft); }
.dark { color: #fff; background: #16191e; }
.dark .section-lede { color: #c7ced8; }
.dark .section-kicker { color: #7cc9ff; }

.two-up {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1.18fr);
  gap: 24px;
  align-items: stretch;
  width: min(1120px, 100%);
  margin: 38px auto 0;
}

.two-up.compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
}

.feature-copy p,
.website-grid p,
.review-card p,
.price-card li,
details p,
.checkout-card p { color: var(--muted); }
.feature-copy a { color: var(--blue); font-weight: 850; }

.dashboard-card {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.order-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 12px;
  background: #f6f8fa;
}

.order-row em,
.order-row b {
  padding: 5px 8px;
  border-radius: 999px;
  background: #eef0f4;
  font-size: 12px;
  font-style: normal;
}

.order-row b { background: #e0f1ff; }

.payment-marquee {
  display: flex;
  gap: 12px;
  width: min(1060px, 100%);
  margin: 34px auto;
  overflow: hidden;
}

.payment-marquee span {
  flex: 0 0 auto;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-weight: 850;
}

.checkout-card {
  padding: 28px;
}

.checkout-line {
  display: flex;
  justify-content: space-between;
  margin: 12px 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fbfdfc;
}

.success {
  padding: 12px;
  border-radius: 12px;
  color: #008a46;
  background: #e8fbf1;
  font-weight: 800;
}

.qr-box {
  display: grid;
  width: 150px;
  height: 150px;
  place-items: center;
  margin: 18px 0;
  border-radius: 18px;
  background:
    linear-gradient(90deg, #111 10px, transparent 10px) 0 0 / 24px 24px,
    linear-gradient(#111 10px, transparent 10px) 0 0 / 24px 24px,
    #fff;
  color: var(--mint);
  font-weight: 900;
}

.message-grid,
.catalog-grid,
.website-grid,
.review-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: min(1120px, 100%);
  margin: 38px auto 0;
}

.message-card {
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.message-card span { color: var(--mint); font-weight: 850; }
.message-card p { color: #d8e4df; }
.message-card a { color: #fff; font-weight: 850; }

.catalog-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.catalog-card {
  min-height: 250px;
  padding: 16px;
  overflow: hidden;
}

.catalog-art {
  height: 132px;
  margin-bottom: 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f97316, #facc15);
}

.tone-2 .catalog-art { background: linear-gradient(135deg, #22c55e, #fb7185); }
.tone-3 .catalog-art { background: linear-gradient(135deg, #0ea5e9, #f59e0b); }
.tone-4 .catalog-art { background: linear-gradient(135deg, #8b5cf6, #2dd4bf); }
.tone-5 .catalog-art { background: linear-gradient(135deg, #64748b, #84cc16); }

.catalog-card p { color: var(--muted); margin-bottom: 0; }

.website-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.website-grid article,
.review-card,
.price-card {
  padding: 24px;
}

.review-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.review-card span { display: block; color: var(--muted); }

.updates-list {
  display: grid;
  gap: 12px;
  width: min(860px, 100%);
  margin: 34px auto 0;
}

.updates-list a {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.pricing-section {
  text-align: center;
  background: linear-gradient(180deg, #f6f8fa 0%, #fff 100%);
}

.pricing-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); text-align: left; }
.price-card { box-shadow: var(--shadow); }
.price-card.featured { border-color: rgba(0, 153, 255, 0.45); transform: translateY(-12px); }
.price-card strong { display: block; margin: 8px 0; font-size: 38px; line-height: 1; }
.price-card span { display: block; color: var(--muted); min-height: 48px; }
.price-card .button { width: 100%; margin: 18px 0; }
.price-card ul { margin: 0; padding-left: 20px; }

.faq-list {
  display: grid;
  gap: 12px;
  width: min(880px, 100%);
  margin: 34px auto 0;
}

details {
  padding: 20px 22px;
  box-shadow: none;
}

summary {
  cursor: pointer;
  font-weight: 850;
}

details p { margin: 12px 0 0; }

.final-cta {
  display: grid;
  justify-items: center;
  background: #16191e;
  color: #fff;
  text-align: center;
}

.final-cta p { color: #c7ced8; }

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(260px, 1fr);
  gap: 28px;
  padding: 42px clamp(18px, 5vw, 64px);
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.footer-brand { margin-bottom: 12px; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  color: var(--muted);
}

.disclaimer {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.page-hero {
  max-width: 880px;
  padding: 36px clamp(18px, 5vw, 64px) 42px;
}

.page-hero.compact h1 { font-size: clamp(38px, 5vw, 64px); }

.content-page {
  padding: 94px clamp(20px, 5vw, 64px) 80px;
}

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

.content-grid article,
.tool-shell,
.comparison-table {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.content-grid p,
.content-grid li { color: var(--muted); }
.content-grid ul { padding-left: 20px; margin: 0; }

.tool-shell {
  display: grid;
  gap: 14px;
  max-width: 720px;
}

label {
  display: grid;
  gap: 6px;
  font-weight: 750;
}

input,
textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  font: inherit;
}

textarea { min-height: 110px; resize: vertical; }
button {
  min-height: 44px;
  border: 0;
  border-radius: 7px;
  color: #fff;
  background: var(--primary);
  font: inherit;
  font-weight: 800;
}

.comparison-table {
  display: grid;
  gap: 0;
  max-width: 900px;
}

.comparison-table div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

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

@media (max-width: 1040px) {
  .hero-stage,
  .two-up,
  .two-up.compact,
  .message-grid,
  .website-grid,
  .pricing-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }
  .catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .review-grid { grid-template-columns: 1fr; }
  .chat-card,
  .order-card { max-width: 520px; width: 100%; justify-self: center; }
  .price-card.featured { transform: none; }
}

@media (max-width: 760px) {
  .site-header { grid-template-columns: 1fr auto; }
  .nav-links { display: none; }
  .hero { min-height: auto; }
  .phone-shell { min-height: 560px; border-width: 8px; }
  .catalog-grid { grid-template-columns: 1fr; }
  .order-row { grid-template-columns: 1fr 1fr; }
  .updates-list a { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .site-header { padding: 12px 16px; }
  .nav-cta { display: none; }
  .hero-actions { flex-direction: column; width: 100%; }
  .button { width: 100%; }
  .phone-shell { width: 100%; padding: 14px; }
  .footer-grid { grid-template-columns: 1fr; }
  .comparison-table div { grid-template-columns: 1fr; }
}
