:root {
  --bg: #fffaf3;
  --ink: #2a1f14;
  --muted: #6b5744;
  --panel: #ffffff;
  --line: #e8ddd0;
  --brand: #c8621a;
  --brand-2: #e07830;
  --accent: #b8860b;
  --good: #3a6b3a;
  --bad: #b91c1c;
  --radius: 18px;
  --shadow: 0 14px 30px rgba(42, 31, 20, 0.09);
  --max: 1180px;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  min-height: 100vh;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fffdf8 0%, var(--bg) 100%);
  position: relative;
  overflow-x: hidden;
}

.bg-glow {
  position: fixed;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}

.bg-glow-1 {
  width: 420px;
  height: 420px;
  background: #f6d7bf;
  top: -120px;
  left: -80px;
}

.bg-glow-2 {
  width: 480px;
  height: 480px;
  background: #f8e8be;
  right: -120px;
  bottom: -180px;
}

.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.38);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.wa-float:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.48);
}

.wa-float svg {
  width: 28px;
  height: 28px;
}

.shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px 14px;
  position: relative;
  z-index: 1;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
  align-items: stretch;
}

.hero-copy {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(125deg, #0f3d3e 0%, #185f61 62%, #1f7f7e 100%);
  color: #f4ffff;
  box-shadow: var(--shadow);
  padding: 26px 22px;
}

.tag {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d8faf7;
}

.price-chip {
  margin: 10px 0 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(245, 158, 11, 0.5);
  background: rgba(245, 158, 11, 0.16);
  color: #fff4cf;
  font-size: 13px;
  font-weight: 700;
}

.hero h1 {
  margin: 9px 0 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.lead {
  margin: 0;
  color: #e5f3f2;
  max-width: 58ch;
}

.cta-row {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  border-radius: 12px;
  padding: 10px 14px;
  border: 1px solid transparent;
}

.btn-primary {
  background: #f6fffe;
  color: #103738;
}

.btn-ghost {
  border-color: rgba(238, 255, 254, 0.45);
  color: #e8fbfa;
  background: transparent;
}

.hero-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  padding: 18px 16px;
}

.hero-card h2 {
  margin: 0 0 6px;
  font-size: 18px;
  font-family: "Space Grotesk", sans-serif;
}

.status {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 600;
}

.status.muted { color: var(--muted); }
.status.ok { color: var(--good); }
.status.err { color: var(--bad); }

.facts {
  margin: 0;
  padding-left: 18px;
  color: #2f4242;
  display: grid;
  gap: 8px;
}

.sections {
  display: grid;
  gap: 12px;
  padding-top: 2px;
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  padding: 16px;
}

.panel h3 {
  margin: 0 0 12px;
  font-size: 21px;
  font-family: "Space Grotesk", sans-serif;
}

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

.steps article {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  background: #f9fcfb;
}

.steps span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
}

.steps h4 {
  margin: 8px 0 4px;
  font-size: 15px;
}

.steps p {
  margin: 0;
  color: #476060;
  font-size: 13px;
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.links-grid a {
  display: block;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fbfefe;
  font-weight: 600;
}

.links-grid a:hover {
  border-color: #9fc9c7;
  background: #f2fbfa;
}

.price-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 12px;
}

.price-card,
.price-details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f9fcfb;
  padding: 14px;
}

.price-label {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.price-value {
  margin: 4px 0 6px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1;
  color: var(--brand);
  font-weight: 700;
}

.price-note {
  margin: 0 0 12px;
  color: #365252;
}

.price-btn {
  width: 100%;
}

.price-details h4 {
  margin: 0 0 8px;
  font-size: 16px;
}

.benefit-list {
  margin: 0;
  padding-left: 18px;
  color: #2f4242;
  display: grid;
  gap: 8px;
  font-size: 14px;
}

.pay-flow {
  margin: 0;
  padding-left: 22px;
  display: grid;
  gap: 8px;
  color: #2f4242;
  font-size: 14px;
}

.flow-note {
  margin: 12px 0 0;
  padding: 10px 12px;
  border: 1px dashed #b6ccca;
  border-radius: 10px;
  color: #2d4f4d;
  background: #f4fbfa;
  font-size: 13.5px;
}

body.astro-landing .lead {
  font-size: 16px;
  line-height: 1.65;
}

.chip-cut {
  text-decoration: line-through;
  opacity: 0.85;
  font-weight: 600;
}

.chip-save {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.trust-strip {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-strip span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #ecfdfc;
  font-size: 12px;
  font-weight: 700;
}

.hero-proof .flow-note {
  margin-top: 10px;
}

.offer-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.offer-left h3 {
  margin-bottom: 6px;
}

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

.testi-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f9fcfb;
  padding: 12px;
}

.testi-card p {
  margin: 0 0 8px;
  color: #2d4546;
  font-size: 14px;
  line-height: 1.55;
}

.testi-card strong {
  color: #184042;
  font-size: 13px;
}

.faq-list {
  display: grid;
  gap: 8px;
}

.faq-item {
  border: 1px solid #d8e4e3;
  border-radius: 12px;
  background: #fbfefe;
  padding: 10px 12px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: #133a3b;
}

.faq-item p {
  margin: 8px 0 0;
  color: #365456;
  font-size: 14px;
  line-height: 1.6;
}

.pay-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pay-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f9fcfb;
  padding: 14px;
}

.pay-card h4 {
  margin: 0 0 8px;
  font-size: 16px;
}

.auth-helper {
  margin-top: 0;
}

.auth-email-panel {
  margin-top: 10px;
  padding: 10px;
  border: 1px dashed #c7d9d8;
  border-radius: 10px;
  background: #f5fbfa;
}

.pay-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}

.gate-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  border: 1px solid transparent;
}

.gate-badge.guest {
  color: #1f2937;
  border-color: #9ca3af;
  background: #e5e7eb;
}

.gate-badge.warn {
  color: #9a3412;
  border-color: #fdba74;
  background: #fff7ed;
}

.gate-badge.ok {
  color: #065f46;
  border-color: #6ee7b7;
  background: #ecfdf5;
}

.gate-badge.admin {
  color: #1e3a8a;
  border-color: #93c5fd;
  background: #eff6ff;
}

.pay-cta-title {
  margin: 2px 0 4px;
  font-size: 15px;
  font-weight: 800;
  color: #163e3f;
}

.pay-cta-sub {
  margin: 0 0 10px;
  color: #466061;
  font-size: 13px;
  line-height: 1.45;
}

.pay-kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 6px;
}

.pay-kpi {
  border: 1px solid #d8e4e3;
  border-radius: 10px;
  background: #fff;
  padding: 8px;
}

.pay-kpi small {
  display: block;
  color: #5e7677;
  font-size: 11px;
  margin-bottom: 2px;
}

.pay-kpi strong {
  color: #123839;
  font-size: 14px;
}

.pay-label {
  display: block;
  margin: 8px 0 4px;
  font-size: 12px;
  font-weight: 700;
  color: #355050;
}

.pay-input {
  width: 100%;
  border: 1px solid #c8d8d6;
  border-radius: 10px;
  background: #fff;
  padding: 9px 10px;
  font: inherit;
}

.pay-input:focus {
  outline: none;
  border-color: #7fb8b4;
  box-shadow: 0 0 0 3px rgba(29, 112, 114, 0.14);
}

.pay-actions {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

#guestAuthActions .btn-primary {
  min-width: 210px;
}

.pay-ghost {
  color: #174748;
  border-color: #b8d0ce;
}

.pay-line {
  margin: 0 0 6px;
  color: #2b4546;
}

.pay-note {
  margin: 10px 0 0;
  color: #466061;
  font-size: 13px;
}

.client-access {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px dashed #c6d7d6;
}

.dashboard-pay-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pay-checkout-card {
  background: #f7fcfb;
}

.pay-order-ref {
  margin-top: 8px;
  border: 1px dashed #c3d7d5;
  border-radius: 10px;
  padding: 10px;
  background: #fff;
}

.pay-order-ref small {
  display: block;
  color: #5d7677;
  font-size: 11px;
  margin-bottom: 3px;
}

.pay-order-ref strong {
  color: #123839;
  font-size: 15px;
  letter-spacing: 0.4px;
}

.table-wrap {
  overflow: auto;
  border: 1px solid #d8e4e3;
  border-radius: 12px;
}

.table-wrap table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}

.table-wrap th,
.table-wrap td {
  padding: 10px;
  border-bottom: 1px solid #e6efee;
  text-align: left;
  font-size: 13px;
}

.table-wrap th {
  background: #f4f9f8;
  color: #274647;
  font-weight: 700;
}

.table-wrap tbody tr:last-child td {
  border-bottom: 0;
}

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .pay-grid { grid-template-columns: 1fr; }
  .pay-kpi-grid { grid-template-columns: 1fr; }
  .dashboard-pay-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .offer-strip { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .shell { padding: 12px; }
  .hero-copy { padding: 18px 16px; }
  .hero h1 { font-size: 30px; }
  .panel { padding: 12px; }
  .links-grid { grid-template-columns: 1fr; }
}

/* Landing redesign */
.lp-wrap {
  max-width: 1180px;
  margin: 14px auto 28px;
  padding: 0 14px;
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

.lp-browser {
  display: grid;
  grid-template-columns: auto auto auto 1fr;
  align-items: center;
  gap: 8px;
  border: 1px solid #e8ddd0;
  border-radius: 12px;
  background: #fff8ef;
  padding: 8px 10px;
}

.lp-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  display: inline-block;
}

.lp-dot-red { background: #ff5f57; }
.lp-dot-yellow { background: #ffbd2e; }
.lp-dot-green { background: #28c840; }

.lp-url {
  margin-left: 8px;
  font-size: 13px;
  color: #6b5744;
  font-weight: 600;
}

.lp-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid #eadfce;
  border-radius: 14px;
  background: #fff;
  padding: 10px 12px;
}

.lp-nav-brand {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 19px;
  font-weight: 700;
  color: #2a1f14;
  text-decoration: none;
}

.lp-nav-brand:hover,
.lp-nav-brand:focus-visible {
  color: var(--brand);
  text-decoration: none;
}

.lp-nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lp-nav-link {
  color: #6b5744;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.lp-nav-link:hover {
  color: var(--brand);
}

.lp-nav-cta {
  text-decoration: none;
  background: var(--brand);
  color: #fff;
  border: 1px solid var(--brand);
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease;
}

.lp-nav-cta:hover {
  background: var(--brand-2);
  border-color: var(--brand-2);
  transform: translateY(-1px);
}

.lp-hero {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid #ebd8c7;
  background:
    radial-gradient(circle at 85% 18%, rgba(200, 98, 26, 0.14), transparent 45%),
    radial-gradient(circle at 12% 86%, rgba(184, 134, 11, 0.1), transparent 48%),
    linear-gradient(145deg, #fff8ef 0%, #fff4e7 52%, #fff9f3 100%);
  color: #2a1f14;
  padding: 30px 24px;
  box-shadow: 0 18px 36px rgba(42, 31, 20, 0.12);
}

.lp-stars {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(200, 98, 26, 0.1) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.3;
  pointer-events: none;
}

.lp-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid rgba(200, 98, 26, 0.3);
  background: rgba(200, 98, 26, 0.1);
  color: #9b4d1a;
  font-size: 12px;
  font-weight: 700;
}

.lp-h1 {
  position: relative;
  z-index: 1;
  margin: 14px 0 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.03;
  letter-spacing: -0.03em;
}

.lp-h1 span {
  color: var(--brand);
}

.lp-sub {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  max-width: 860px;
  color: #5f4a37;
}

.lp-price-block {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  margin-bottom: 16px;
}

.lp-price {
  min-width: 130px;
  border-radius: 14px;
  border: 1px solid rgba(200, 98, 26, 0.35);
  background: rgba(200, 98, 26, 0.08);
  color: #b85b1f;
  text-align: center;
  padding: 12px 14px;
  font-size: 48px;
  line-height: 1;
  font-weight: 800;
}

.lp-price-meta p {
  margin: 0;
}

.lp-price-meta .mrp {
  color: #877360;
  text-decoration: line-through;
  font-size: 15px;
}

.lp-price-meta .save {
  color: #2f6b3f;
  font-size: 17px;
  font-weight: 700;
}

.lp-price-meta .per {
  color: #6b5744;
  font-size: 14px;
}

.lp-cta {
  position: relative;
  z-index: 1;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(180deg, #c8621a 0%, #e07830 100%);
  color: #fff;
  padding: 14px 22px;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.22);
}

.lp-cta:hover {
  transform: translateY(-1px);
}

.lp-cta-sub {
  margin-top: 10px;
  color: #6e5844;
  font-size: 13px;
  font-weight: 600;
}

.lp-alert {
  margin: 10px 0 0;
  color: #8f3f12;
  font-size: 14px;
  font-weight: 600;
}

.lp-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.lp-trust-item {
  border: 1px solid #eadfce;
  border-radius: 12px;
  background: #fff;
  color: #5f4a37;
  font-size: 14px;
  padding: 12px 12px;
}

.lp-hero-proof {
  position: relative;
  z-index: 1;
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.lp-proof-chip {
  border: 1px solid #ebd8c7;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.85);
  color: #6b5744;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 10px;
  text-align: center;
}

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

.lp-feature {
  border: 1px solid #eadfce;
  border-radius: 14px;
  background: #fff;
  padding: 14px;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 12px;
}

.lp-feat-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  border: 1px solid #eadfce;
  background: #fff5ea;
  display: grid;
  place-items: center;
  font-size: 24px;
}

.lp-feat-title {
  margin: 0 0 5px;
  font-size: 19px;
  line-height: 1.2;
  color: #5b3a1d;
  font-family: "Playfair Display", Georgia, serif;
}

.lp-feat-desc {
  margin: 0;
  color: #6b5744;
  font-size: 15px;
  line-height: 1.65;
}

.lp-how {
  border: 1px solid #eadfce;
  border-radius: 14px;
  background: #fffdf8;
  padding: 16px;
}

.lp-how-title {
  margin: 0;
  font-size: 30px;
  color: #5b3a1d;
  font-family: "Playfair Display", Georgia, serif;
}

.lp-how-sub {
  margin: 6px 0 12px;
  color: #6b5744;
  font-size: 15px;
}

.lp-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.lp-step {
  border: 1px solid #eadfce;
  border-radius: 12px;
  background: #fff;
  padding: 12px;
}

.lp-step-num {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #c8621a;
  color: #fff;
  display: inline-grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
}

.lp-step-title {
  margin: 8px 0 5px;
  font-size: 16px;
  color: #5b3a1d;
}

.lp-step-desc {
  margin: 0;
  font-size: 14px;
  color: #6b5744;
  line-height: 1.58;
}

.lp-social {
  border: 1px solid #eadfce;
  border-radius: 14px;
  background: #fffdf8;
  padding: 16px;
}

.lp-social-title {
  margin: 0 0 10px;
  font-size: 27px;
  color: #5b3a1d;
  font-family: "Playfair Display", Georgia, serif;
}

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

.lp-review {
  border: 1px solid #eadfce;
  border-radius: 12px;
  background: #fff;
  padding: 12px;
}

.lp-review .lp-stars {
  position: static;
  opacity: 1;
  background: none;
  color: #e58f0f;
  font-size: 15px;
}

.lp-review-text {
  margin: 8px 0 8px;
  color: #6b5744;
  font-size: 14px;
  line-height: 1.62;
}

.lp-reviewer {
  margin: 0;
  color: #5b3a1d;
  font-size: 13px;
  font-weight: 700;
}

.lp-payment {
  border: 1px solid #eadfce;
  background: #fffdf8;
}

.lp-pay-title {
  margin: 0 0 10px;
  font-size: 27px;
  color: #5b3a1d;
  font-family: "Playfair Display", Georgia, serif;
}

.lp-google-btn {
  min-width: 250px;
}

.lp-faq h2 {
  margin: 0 0 8px;
  color: #5b3a1d;
  font-family: "Playfair Display", Georgia, serif;
}

.lp-cta-foot {
  border: 1px solid #eadfce;
  border-radius: 14px;
  background: linear-gradient(180deg, #fffdf8 0%, #fff5e9 100%);
  padding: 18px;
  text-align: center;
}

.lp-cta-foot h3 {
  margin: 0 0 6px;
  color: #5b3a1d;
  font-size: 30px;
  font-family: "Playfair Display", Georgia, serif;
}

.lp-cta-foot p {
  margin: 0 0 14px;
  color: #6b5744;
  font-size: 16px;
}

@media (max-width: 980px) {
  .lp-nav {
    flex-wrap: wrap;
  }

  .lp-nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    padding-top: 4px;
  }

  .lp-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-features {
    grid-template-columns: 1fr;
  }

  .lp-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-reviews {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .lp-wrap {
    margin-top: 10px;
    padding: 0 10px;
  }

  .lp-nav-brand {
    font-size: 17px;
  }

  .lp-nav-cta {
    width: 100%;
    text-align: center;
    justify-content: center;
    display: inline-flex;
  }

  .lp-hero {
    padding: 20px 15px;
  }

  .lp-h1 {
    font-size: 36px;
  }

  .lp-sub {
    font-size: 16px;
  }

  .lp-price-block {
    flex-direction: column;
    align-items: flex-start;
  }

  .lp-price {
    font-size: 42px;
  }

  .lp-cta {
    width: 100%;
  }

  .lp-trust {
    grid-template-columns: 1fr;
  }

  .lp-how-title,
  .lp-social-title,
  .lp-pay-title,
  .lp-cta-foot h3 {
    font-size: 24px;
  }

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