:root {
  --lp-bg: #f4f8f7;
  --lp-surface: rgba(255, 255, 255, 0.88);
  --lp-surface-strong: #ffffff;
  --lp-border: rgba(10, 30, 27, 0.08);
  --lp-border-strong: rgba(15, 124, 120, 0.2);
  --lp-text: #12221f;
  --lp-text-strong: #081715;
  --lp-text-muted: #617670;
  --lp-accent: #0f7c78;
  --lp-accent-strong: #0b605d;
  --lp-accent-soft: rgba(15, 124, 120, 0.09);
  --lp-success: #e8f7f4;
  --lp-shadow: 0 24px 70px rgba(15, 43, 39, 0.12);
  --lp-shadow-soft: 0 14px 34px rgba(15, 43, 39, 0.08);
  --lp-radius-xl: 34px;
  --lp-radius-lg: 24px;
  --lp-radius-md: 18px;
  --lp-container: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.lp-body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--lp-text);
  background:
    radial-gradient(circle at top left, rgba(15, 124, 120, 0.1), transparent 28%),
    radial-gradient(circle at top right, rgba(15, 124, 120, 0.08), transparent 24%),
    linear-gradient(180deg, #fbfcfc 0%, var(--lp-bg) 100%);
}

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

img {
  display: block;
  max-width: 100%;
}

.lp-container {
  width: min(var(--lp-container), calc(100% - 40px));
  margin: 0 auto;
}

.lp-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(16px);
  background: rgba(251, 252, 252, 0.84);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.lp-header.is-scrolled {
  border-color: rgba(10, 30, 27, 0.08);
  box-shadow: 0 16px 38px rgba(16, 35, 32, 0.08);
}

.lp-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 86px;
}

.lp-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.lp-brand__image,
.lp-brand__mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 22px rgba(15, 124, 120, 0.14);
}

.lp-brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  background: linear-gradient(135deg, var(--lp-accent), #20a39d);
}

.lp-brand__copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lp-brand__copy strong {
  font-family: 'Sora', sans-serif;
  font-size: 1.32rem;
  letter-spacing: -0.04em;
}

.lp-brand__copy span {
  color: var(--lp-text-muted);
  font-size: 0.89rem;
}

.lp-nav {
  display: inline-flex;
  align-items: center;
  gap: 28px;
}

.lp-nav a,
.lp-link-btn {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--lp-text-muted);
  transition: color 0.2s ease;
}

.lp-nav a:hover,
.lp-link-btn:hover {
  color: var(--lp-text-strong);
}

.lp-header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 22px;
  font-size: 0.98rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.lp-btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--lp-accent), #179893);
  box-shadow: 0 18px 38px rgba(15, 124, 120, 0.25);
}

.lp-btn--primary:hover {
  box-shadow: 0 22px 46px rgba(15, 124, 120, 0.32);
}

.lp-btn--ghost {
  background: rgba(255, 255, 255, 0.76);
  color: var(--lp-text);
  border-color: rgba(10, 30, 27, 0.1);
}

.lp-btn--lg {
  min-height: 58px;
  padding-inline: 28px;
}

.lp-btn--block {
  width: 100%;
}

.lp-menu-btn {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(10, 30, 27, 0.1);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.lp-menu-btn span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--lp-text);
}

.lp-mobile-nav {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 0 20px 22px;
  border-top: 1px solid rgba(10, 30, 27, 0.08);
  background: rgba(251, 252, 252, 0.96);
}

.lp-mobile-nav a {
  font-weight: 700;
  color: var(--lp-text);
}

.lp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--lp-accent);
  text-transform: uppercase;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.lp-kicker--light {
  color: rgba(255, 255, 255, 0.78);
}

.lp-hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 44px;
}

.lp-hero__glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.62;
  pointer-events: none;
}

.lp-hero__glow--left {
  top: 56px;
  left: -140px;
  width: 380px;
  height: 380px;
  background: rgba(15, 124, 120, 0.16);
}

.lp-hero__glow--right {
  right: -180px;
  bottom: 20px;
  width: 470px;
  height: 470px;
  background: rgba(38, 184, 173, 0.12);
}

.lp-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(460px, 0.98fr);
  gap: 48px;
  align-items: center;
}

.lp-hero__content,
.lp-section-head,
.lp-demo__content,
.lp-feature-panel__copy {
  min-width: 0;
}

.lp-hero__content h1,
.lp-section-head h2,
.lp-demo__content h2,
.lp-feature-panel h2,
.lp-final-cta h2 {
  margin: 16px 0 0;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.98;
  color: var(--lp-text-strong);
}

.lp-hero__content h1 {
  max-width: 10ch;
  font-size: clamp(3.2rem, 5.8vw, 5.7rem);
}

.lp-hero__lead {
  margin: 22px 0 0;
  max-width: 560px;
  color: var(--lp-text-muted);
  font-size: 1.18rem;
  line-height: 1.72;
}

.lp-hero__trial {
  margin: 12px 0 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--lp-accent);
}

.lp-check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 14px;
}

.lp-check-list li {
  position: relative;
  padding-left: 34px;
  font-size: 1rem;
  font-weight: 700;
}

.lp-check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--lp-success);
  color: var(--lp-accent);
  font-size: 0.82rem;
}

.lp-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.lp-hero__mini-proof {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 560px;
}

.lp-hero__mini-proof > div {
  padding: 18px 18px 17px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(10, 30, 27, 0.08);
  box-shadow: var(--lp-shadow-soft);
}

.lp-hero__mini-proof strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
}

.lp-hero__mini-proof span {
  display: block;
  margin-top: 5px;
  color: var(--lp-text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.lp-hero__compliance {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin-top: 22px;
}

.lp-hero__compliance span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(10, 30, 27, 0.08);
  color: var(--lp-text-muted);
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: var(--lp-shadow-soft);
}

.lp-hero__visual {
  position: relative;
  min-height: 660px;
}

.lp-orbit {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(15, 124, 120, 0.12);
}

.lp-orbit--a {
  inset: 80px 10px auto auto;
  width: 460px;
  height: 460px;
}

.lp-orbit--b {
  right: 180px;
  top: 12px;
  width: 170px;
  height: 170px;
}

@keyframes lpFloatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes lpFloatMedium {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-14px) rotate(1deg); }
}

@keyframes lpFloatFast {
  0%, 100% { transform: translateY(0) rotate(4deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}

.lp-float--slow {
  animation: lpFloatSlow 7s ease-in-out infinite;
}

.lp-float--medium {
  animation: lpFloatMedium 6.5s ease-in-out infinite;
}

.lp-float--fast {
  animation: lpFloatFast 5.8s ease-in-out infinite;
}

.lp-browser-mock,
.lp-phone-mock,
.lp-floating-card,
.lp-admin-shot,
.lp-store-shot,
.lp-demo__phone,
.lp-dashboard-card {
  box-shadow: var(--lp-shadow);
}

.lp-browser-mock {
  position: absolute;
  inset: 42px 0 auto 10px;
  width: min(100%, 700px);
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.88);
  transform: rotate(-2deg);
}

.lp-browser-mock__bar {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 16px 18px;
  background: rgba(245, 248, 247, 0.96);
  border-bottom: 1px solid rgba(10, 30, 27, 0.06);
}

.lp-browser-mock__bar > span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(15, 124, 120, 0.22);
}

.lp-browser-mock__url {
  margin-left: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(10, 30, 27, 0.08);
  color: var(--lp-text-muted);
  font-size: 0.85rem;
}

.lp-browser-mock__body {
  padding: 22px;
}

.lp-store-preview {
  min-height: 440px;
  padding: 24px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(238, 248, 247, 0.96), rgba(255, 255, 255, 0.95));
}

.lp-store-preview__top,
.lp-store-preview__hero,
.lp-store-preview__grid,
.lp-admin-shot__stats,
.lp-admin-shot__rows,
.lp-store-shot__products {
  display: grid;
  gap: 14px;
}

.lp-store-preview__top {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.lp-store-preview__top strong {
  font-size: 1.16rem;
  letter-spacing: -0.04em;
}

.lp-store-preview__top span,
.lp-store-preview__hero p,
.lp-floating-card span,
.lp-section-head p,
.lp-step-card p,
.lp-benefit-card p,
.lp-demo__content p,
.lp-feature-panel p,
.lp-testimonial span,
.lp-faq__item p,
.lp-price-card p,
.lp-price-card__aside span {
  color: var(--lp-text-muted);
}

.lp-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(15, 124, 120, 0.15);
  color: var(--lp-accent);
  font-size: 0.88rem;
  font-weight: 800;
}

.lp-store-preview__hero {
  margin-top: 18px;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
  align-items: end;
}

.lp-store-preview__hero h3 {
  margin: 0;
  font-family: 'Sora', sans-serif;
  font-size: 2.2rem;
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.lp-store-preview__hero p {
  margin: 12px 0 0;
  max-width: 32ch;
  font-size: 1rem;
  line-height: 1.65;
}

.lp-store-preview__hero button {
  margin-top: 18px;
  padding: 14px 18px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--lp-accent), #199892);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(15, 124, 120, 0.22);
}

.lp-store-preview__card {
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, #103937, #0f2c29);
  color: #f5fffe;
}

.lp-store-preview__card span,
.lp-store-preview__card small {
  display: block;
  color: rgba(255, 255, 255, 0.78);
}

.lp-store-preview__card strong {
  display: block;
  margin: 10px 0 8px;
  font-family: 'Sora', sans-serif;
  font-size: 2rem;
}

.lp-store-preview__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
}

.lp-store-preview__grid article {
  min-height: 126px;
  border-radius: 20px;
  border: 1px solid rgba(10, 30, 27, 0.05);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(231, 244, 243, 0.96));
}

.lp-dashboard-card {
  position: absolute;
  right: 26px;
  top: 12px;
  width: 250px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(10, 30, 27, 0.08);
}

.lp-dashboard-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.lp-dashboard-card__head span,
.lp-dashboard-card__stats small {
  color: var(--lp-text-muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lp-dashboard-card__head strong,
.lp-dashboard-card__stats strong {
  font-size: 0.96rem;
  font-weight: 800;
}

.lp-dashboard-card__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.lp-dashboard-card__stats div {
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(15, 124, 120, 0.09), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(10, 30, 27, 0.05);
}

.lp-dashboard-card__chart {
  margin-top: 14px;
  height: 70px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(15, 124, 120, 0.08), transparent),
    linear-gradient(90deg, transparent 0 14%, rgba(15, 124, 120, 0.16) 14% 15%, transparent 15% 30%, rgba(15, 124, 120, 0.16) 30% 31%, transparent 31% 46%, rgba(15, 124, 120, 0.16) 46% 47%, transparent 47% 62%, rgba(15, 124, 120, 0.16) 62% 63%, transparent 63% 78%, rgba(15, 124, 120, 0.16) 78% 79%, transparent 79%);
}

.lp-phone-mock {
  position: absolute;
  right: 12px;
  bottom: 8px;
  width: 235px;
  padding: 12px;
  border-radius: 34px;
  background: linear-gradient(180deg, #122a27, #081513);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transform: rotate(5deg);
}

.lp-phone-mock__notch {
  width: 80px;
  height: 18px;
  margin: 0 auto 10px;
  border-radius: 999px;
  background: #071311;
}

.lp-phone-mock__screen {
  min-height: 420px;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, #f9fbfa, #eef7f6);
}

.lp-mobile-store {
  padding: 18px;
}

.lp-mobile-store__badge {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(15, 124, 120, 0.10);
  color: var(--lp-accent);
  font-size: 0.78rem;
  font-weight: 800;
}

.lp-mobile-store h4 {
  margin: 18px 0 0;
  font-family: 'Sora', sans-serif;
  font-size: 1.7rem;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.lp-mobile-store__product {
  height: 180px;
  margin-top: 18px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(15, 124, 120, 0.18), rgba(255, 255, 255, 0.95)),
    linear-gradient(135deg, rgba(15, 124, 120, 0.15), rgba(255, 255, 255, 0.3));
}

.lp-mobile-store__checkout {
  margin-top: 16px;
  padding: 18px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(10, 30, 27, 0.08);
}

.lp-mobile-store__checkout span {
  display: block;
  color: var(--lp-accent);
  font-size: 0.78rem;
  font-weight: 800;
}

.lp-mobile-store__checkout strong {
  display: block;
  margin-top: 8px;
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem;
}

.lp-floating-card {
  position: absolute;
  max-width: 250px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(10, 30, 27, 0.08);
}

.lp-floating-card strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 800;
}

.lp-floating-card span {
  display: block;
  margin-top: 6px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.lp-floating-card--whats {
  left: 38px;
  bottom: 48px;
}

.lp-floating-card--orders {
  right: 178px;
  top: 216px;
}

.lp-section {
  padding: 96px 0;
}

.lp-section--muted {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.16));
}

.lp-section--deep {
  background: linear-gradient(180deg, rgba(232, 247, 244, 0.38), rgba(255, 255, 255, 0.55));
}

.lp-trust {
  padding: 18px 0 0;
}

.lp-section-head {
  max-width: 760px;
  margin-bottom: 40px;
}

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

.lp-section-head h2,
.lp-demo__content h2,
.lp-feature-panel h2,
.lp-final-cta h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
}

.lp-section-head p,
.lp-demo__content p,
.lp-feature-panel p,
.lp-final-cta p {
  margin: 16px 0 0;
  font-size: 1.06rem;
  line-height: 1.75;
}

.lp-trust__grid,
.lp-steps,
.lp-benefits,
.lp-testimonials {
  display: grid;
  gap: 20px;
}

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

.lp-trust__card,
.lp-step-card,
.lp-benefit-card,
.lp-testimonial,
.lp-price-card,
.lp-feature-panel,
.lp-faq__item,
.lp-admin-shot,
.lp-store-shot,
.lp-demo__phone {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(10, 30, 27, 0.08);
  border-radius: 28px;
}

.lp-trust__card {
  padding: 24px 24px 22px;
  box-shadow: var(--lp-shadow-soft);
}

.lp-trust__card strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 2rem;
  letter-spacing: -0.06em;
}

.lp-trust__card span,
.lp-trust__footnote {
  display: block;
  color: var(--lp-text-muted);
}

.lp-trust__card span {
  margin-top: 8px;
  font-size: 0.95rem;
}

.lp-trust__footnote {
  margin-top: 20px;
  text-align: center;
  font-size: 0.96rem;
}

.lp-logo-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.lp-logo-strip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(10, 30, 27, 0.08);
  color: var(--lp-text-muted);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  box-shadow: var(--lp-shadow-soft);
}

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

.lp-step-card,
.lp-benefit-card,
.lp-testimonial,
.lp-price-card {
  padding: 30px;
  box-shadow: var(--lp-shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.2s ease;
}

.lp-step-card:hover,
.lp-benefit-card:hover,
.lp-testimonial:hover,
.lp-price-card:hover,
.lp-feature-panel:hover {
  transform: translateY(-4px);
  box-shadow: var(--lp-shadow);
  border-color: rgba(15, 124, 120, 0.18);
}

.lp-step-card__icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(15, 124, 120, 0.14), rgba(15, 124, 120, 0.05));
  color: var(--lp-accent);
  font-family: 'Sora', sans-serif;
  font-weight: 800;
}

.lp-step-card__eyebrow,
.lp-price-card__eyebrow,
.lp-price-card__tag {
  display: inline-flex;
  margin-top: 18px;
  color: var(--lp-accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lp-step-card h3,
.lp-benefit-card h3,
.lp-price-card h3 {
  margin: 14px 0 0;
  font-family: 'Sora', sans-serif;
  font-size: 1.45rem;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.lp-step-card p,
.lp-benefit-card p,
.lp-testimonial p,
.lp-price-card p,
.lp-price-card li {
  margin: 14px 0 0;
  font-size: 0.98rem;
  line-height: 1.72;
}

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

.lp-benefit-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 30% 30%, rgba(15, 124, 120, 0.32), transparent 34%),
    linear-gradient(135deg, rgba(15, 124, 120, 0.16), rgba(255, 255, 255, 0.94));
  position: relative;
}

.lp-benefit-card__icon::after,
.lp-benefit-card__icon::before {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
}

.lp-benefit-card__icon--store::before {
  width: 24px;
  height: 18px;
  border: 2px solid var(--lp-accent);
  border-radius: 6px;
  top: 16px;
}

.lp-benefit-card__icon--store::after {
  width: 16px;
  height: 2px;
  background: var(--lp-accent);
  top: 12px;
}

.lp-benefit-card__icon--checkout::before {
  width: 22px;
  height: 16px;
  border: 2px solid var(--lp-accent);
  border-radius: 5px;
}

.lp-benefit-card__icon--checkout::after {
  width: 12px;
  height: 2px;
  background: var(--lp-accent);
  top: 20px;
}

.lp-benefit-card__icon--orders::before {
  width: 22px;
  height: 18px;
  border-radius: 6px;
  border: 2px solid var(--lp-accent);
}

.lp-benefit-card__icon--orders::after {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--lp-accent);
  top: 16px;
  left: 18px;
}

.lp-benefit-card__icon--customers::before {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid var(--lp-accent);
  top: 10px;
}

.lp-benefit-card__icon--customers::after {
  width: 24px;
  height: 12px;
  border-radius: 999px 999px 10px 10px;
  border: 2px solid var(--lp-accent);
  top: 26px;
}

.lp-benefit-card__icon--coupon::before {
  width: 24px;
  height: 16px;
  border-radius: 8px;
  border: 2px solid var(--lp-accent);
  transform: rotate(-18deg);
}

.lp-benefit-card__icon--coupon::after {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--lp-accent);
  top: 16px;
  left: 18px;
}

.lp-benefit-card__icon--recovery::before {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 2px solid var(--lp-accent);
}

.lp-benefit-card__icon--recovery::after {
  width: 12px;
  height: 2px;
  background: var(--lp-accent);
  transform: rotate(45deg);
  top: 20px;
  left: 20px;
}

.lp-demo {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 36px;
  align-items: center;
}

.lp-inline-list,
.lp-feature-panel__list,
.lp-price-card ul {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 12px;
}

.lp-inline-list li,
.lp-feature-panel__list li,
.lp-price-card li {
  position: relative;
  padding-left: 28px;
  font-weight: 700;
}

.lp-inline-list li::before,
.lp-feature-panel__list li::before,
.lp-price-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--lp-accent);
  box-shadow: 0 0 0 6px rgba(15, 124, 120, 0.12);
}

.lp-demo__visual {
  position: relative;
  min-height: 620px;
}

.lp-admin-shot {
  position: absolute;
  left: 0;
  top: 20px;
  width: min(100%, 700px);
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  overflow: hidden;
}

.lp-admin-shot__sidebar {
  min-height: 420px;
  padding: 26px 20px;
  background: linear-gradient(180deg, #10211f, #162f2c);
  display: grid;
  align-content: start;
  gap: 16px;
}

.lp-admin-shot__sidebar span,
.lp-admin-shot__rows span,
.lp-store-shot__products span,
.lp-demo__phone-card {
  display: block;
  border-radius: 18px;
  background: rgba(15, 124, 120, 0.12);
}

.lp-admin-shot__sidebar span {
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

.lp-admin-shot__content {
  padding: 26px;
  background: rgba(250, 252, 251, 0.98);
}

.lp-admin-shot__top {
  height: 58px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(10, 30, 27, 0.06);
}

.lp-admin-shot__stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.lp-admin-shot__stats div {
  height: 92px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(15, 124, 120, 0.08), #fff);
  border: 1px solid rgba(10, 30, 27, 0.05);
}

.lp-admin-shot__chart {
  margin-top: 18px;
  height: 180px;
  border-radius: 22px;
  border: 1px solid rgba(10, 30, 27, 0.05);
  background:
    linear-gradient(180deg, rgba(15, 124, 120, 0.05), rgba(255, 255, 255, 1)),
    linear-gradient(90deg, transparent 0 20%, rgba(15, 124, 120, 0.10) 20% 21%, transparent 21% 40%, rgba(15, 124, 120, 0.10) 40% 41%, transparent 41% 60%, rgba(15, 124, 120, 0.10) 60% 61%, transparent 61% 80%, rgba(15, 124, 120, 0.10) 80% 81%, transparent 81%);
}

.lp-admin-shot__rows {
  margin-top: 18px;
}

.lp-admin-shot__rows span {
  height: 54px;
  background: rgba(10, 30, 27, 0.05);
}

.lp-store-shot {
  position: absolute;
  right: 0;
  bottom: 22px;
  width: 58%;
  padding: 22px;
}

.lp-store-shot__hero {
  height: 148px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(15, 124, 120, 0.18), rgba(255, 255, 255, 0.98));
}

.lp-store-shot__products {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.lp-store-shot__products span {
  height: 110px;
}

.lp-demo__phone {
  position: absolute;
  right: 42px;
  top: -8px;
  width: 210px;
  padding: 12px;
  background: linear-gradient(180deg, #111e1c, #071311);
}

.lp-demo__phone-screen {
  min-height: 380px;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, #f9fbfb, #eef6f5);
}

.lp-demo__phone-card {
  height: 140px;
}

.lp-demo__phone-card--small {
  height: 92px;
  margin-top: 14px;
  background: rgba(15, 124, 120, 0.18);
}

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

.lp-offer-card {
  padding: 34px;
}

.lp-offer-card__price {
  margin-top: 16px;
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
  color: var(--lp-text-strong);
}

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

.lp-testimonial p {
  margin-top: 0;
  font-size: 1.02rem;
}

.lp-testimonial strong {
  display: block;
  margin-top: 24px;
  font-size: 1rem;
}

.lp-testimonial span {
  display: block;
  margin-top: 6px;
  font-size: 0.9rem;
}

.lp-pricing-single {
  max-width: 980px;
  margin: 0 auto;
}

.lp-price-card {
  position: relative;
}

.lp-price-card--featured {
  border-color: var(--lp-border-strong);
  background:
    radial-gradient(circle at top right, rgba(15, 124, 120, 0.14), transparent 34%),
    rgba(255, 255, 255, 0.96);
}

.lp-price-card--single {
  padding: 34px;
}

.lp-price-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.lp-price-card__tag {
  margin-top: 0;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--lp-success);
  letter-spacing: 0.08em;
}

.lp-price-card__note {
  color: var(--lp-text-muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.lp-price-card__value {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 12px;
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.08em;
}

.lp-price-card__value span {
  padding-bottom: 8px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--lp-text-muted);
}

.lp-price-card__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.75fr);
  gap: 26px;
  margin: 28px 0;
}

.lp-price-card__aside {
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(15, 124, 120, 0.08), rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(10, 30, 27, 0.06);
}

.lp-price-card__aside strong {
  display: block;
  font-size: 1.02rem;
  font-weight: 800;
}

.lp-price-card__aside span {
  display: block;
  margin-top: 10px;
  line-height: 1.7;
  font-size: 0.95rem;
}

.lp-faq {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 36px;
}

.lp-faq__list {
  display: grid;
  gap: 16px;
}

.lp-faq__item {
  overflow: hidden;
  box-shadow: var(--lp-shadow-soft);
}

.lp-faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 26px;
  font-size: 1.02rem;
  font-weight: 800;
}

.lp-faq__item summary::-webkit-details-marker {
  display: none;
}

.lp-faq__item p {
  margin: 0;
  padding: 0 26px 24px;
  font-size: 0.98rem;
  line-height: 1.7;
}

.lp-final-cta {
  padding: 42px 0 96px;
}

.lp-final-cta__inner {
  position: relative;
  overflow: hidden;
  padding: 56px 52px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 26%),
    linear-gradient(135deg, #0d5451, #0f7c78 44%, #17a39d 100%);
  color: #fff;
  text-align: center;
  box-shadow: 0 30px 80px rgba(15, 124, 120, 0.28);
}

.lp-final-cta__inner h2 {
  margin-top: 18px;
  color: #fff;
}

.lp-final-cta__inner p {
  max-width: 660px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.82);
}

.lp-final-cta__inner .lp-btn {
  margin-top: 28px;
  background: #fff;
  color: var(--lp-accent-strong);
  box-shadow: 0 18px 36px rgba(8, 24, 22, 0.16);
}

.lp-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.lp-final-cta__actions .lp-btn {
  margin-top: 0;
}

.lp-final-cta__sub {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.96rem;
}

.lp-footer {
  padding: 0 0 34px;
}

.lp-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--lp-text-muted);
  font-size: 0.94rem;
}

.lp-footer__brand strong {
  display: block;
  color: var(--lp-text);
  font-family: 'Sora', sans-serif;
}

.lp-footer__brand span {
  display: block;
  margin-top: 6px;
  max-width: 360px;
  line-height: 1.6;
}

.lp-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.lp-footer__links a:hover {
  color: var(--lp-text);
}

@media (max-width: 1180px) {
  .lp-hero__grid,
  .lp-demo,
  .lp-faq,
  .lp-price-card__grid,
  .lp-offer-grid,
  .lp-logo-strip {
    grid-template-columns: 1fr;
  }

  .lp-hero__visual,
  .lp-demo__visual {
    min-height: auto;
    display: grid;
    gap: 18px;
  }

  .lp-browser-mock,
  .lp-admin-shot,
  .lp-store-shot,
  .lp-phone-mock,
  .lp-demo__phone,
  .lp-dashboard-card {
    position: relative;
    inset: auto;
    right: auto;
    left: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    transform: none;
  }

  .lp-floating-card {
    position: relative;
    max-width: none;
  }
}

@media (max-width: 960px) {
  .lp-nav,
  .lp-link-btn,
  .lp-header__actions .lp-btn:not(.lp-menu-btn) {
    display: none;
  }

  .lp-menu-btn {
    display: inline-flex;
  }

  .lp-mobile-nav.is-open {
    display: flex;
  }

  .lp-hero {
    padding-top: 46px;
  }

  .lp-hero__grid,
  .lp-trust__grid,
  .lp-benefits,
  .lp-steps,
  .lp-testimonials {
    grid-template-columns: 1fr;
  }

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

  .lp-hero__compliance {
    justify-content: flex-start;
  }

  .lp-store-preview__hero,
  .lp-store-preview__grid,
  .lp-admin-shot__stats,
  .lp-store-shot__products {
    grid-template-columns: 1fr;
  }

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

  .lp-admin-shot__sidebar {
    min-height: auto;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: center;
  }

  .lp-final-cta__inner {
    padding: 42px 24px;
  }

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

@media (max-width: 720px) {
  .lp-container {
    width: min(var(--lp-container), calc(100% - 24px));
  }

  .lp-header__inner {
    min-height: 76px;
  }

  .lp-brand__copy span {
    display: none;
  }

  .lp-hero__content h1 {
    max-width: 100%;
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .lp-hero__lead,
  .lp-section-head p,
  .lp-demo__content p,
  .lp-final-cta p,
  .lp-trust__footnote {
    font-size: 1rem;
  }

  .lp-btn,
  .lp-btn--lg {
    width: 100%;
  }

  .lp-hero__cta {
    flex-direction: column;
  }

  .lp-browser-mock__body,
  .lp-store-preview,
  .lp-step-card,
  .lp-benefit-card,
  .lp-testimonial,
  .lp-price-card,
  .lp-trust__card,
  .lp-dashboard-card {
    padding: 22px;
  }

  .lp-browser-mock {
    border-radius: 24px;
  }

  .lp-phone-mock,
  .lp-demo__phone {
    width: min(100%, 320px);
    margin-inline: auto;
  }

  .lp-logo-strip span {
    justify-content: flex-start;
  }

  .lp-section {
    padding: 74px 0;
  }
}

@media (max-width: 560px) {
  .lp-header__actions {
    gap: 10px;
  }

  .lp-store-preview__hero h3,
  .lp-section-head h2,
  .lp-demo__content h2,
  .lp-final-cta h2 {
    font-size: clamp(1.95rem, 10vw, 2.7rem);
  }

  .lp-store-preview__card strong,
  .lp-price-card__value {
    font-size: 2.35rem;
  }

  .lp-price-card__value span {
    width: 100%;
    padding-bottom: 0;
    font-size: 0.92rem;
  }

  .lp-step-card,
  .lp-benefit-card,
  .lp-testimonial,
  .lp-price-card,
  .lp-trust__card,
  .lp-faq__item {
    border-radius: 24px;
  }

  .lp-store-preview__hero button,
  .lp-final-cta__inner .lp-btn {
    width: 100%;
  }

  .lp-inline-list li,
  .lp-price-card li {
    padding-left: 24px;
  }

  .lp-hero__compliance span,
  .lp-logo-strip span {
    width: 100%;
  }

  .lp-final-cta__actions {
    flex-direction: column;
  }
}
