:root {
  --bg: #051a45;
  --bg-deep: #03112e;
  --panel: rgba(7, 35, 84, 0.92);
  --panel-soft: rgba(10, 44, 103, 0.9);
  --line: rgba(228, 191, 113, 0.34);
  --gold: #e8bc69;
  --gold-strong: #f1cc84;
  --text: #f6f8ff;
  --muted: #c8d4f0;
  --muted-soft: rgba(240, 244, 255, 0.74);
  --shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(58, 113, 223, 0.35), transparent 34%),
    radial-gradient(circle at top right, rgba(232, 188, 105, 0.12), transparent 18%),
    linear-gradient(180deg, #07215a 0%, #03163b 48%, #02102a 100%);
  min-height: 100vh;
}

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

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

.site-shell,
.legal-page {
  width: min(100%, 480px);
  margin: 0 auto;
  padding: 16px 14px 112px;
}

.card {
  background: linear-gradient(180deg, rgba(7, 38, 92, 0.96), rgba(3, 21, 57, 0.94));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero {
  padding: 14px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold-strong), var(--gold));
  color: #07215a;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.badge--outline {
  background: transparent;
  color: var(--gold-strong);
  border: 1px solid rgba(241, 204, 132, 0.55);
}

.hero-media {
  background: linear-gradient(180deg, #fbfbfc 0%, #eef1f7 100%);
  border-radius: 24px;
  padding: 16px;
  border: 1px solid rgba(7, 28, 70, 0.08);
}

.hero-image {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  object-position: center;
}

.hero-content {
  padding-top: 18px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 8px;
  color: var(--gold-strong);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 10px;
  font-size: 34px;
  line-height: 1.06;
  color: var(--gold);
}

.hero h2 {
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.2;
}

.hero-text,
.section-description,
.split-card__content p,
.highlight__content p,
.review-item p,
.list-check li,
.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.55;
  font-size: 15px;
}

.price-box {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin: 18px 0 16px;
}

.price-main {
  font-size: 52px;
  line-height: 0.95;
  font-weight: 800;
  color: var(--gold-strong);
}

.price-main span {
  font-size: 28px;
}

.price-old {
  padding-bottom: 7px;
  color: rgba(233, 233, 243, 0.55);
  font-size: 26px;
  text-decoration: line-through;
}

.promo-grid,
.feature-top-grid,
.benefit-grid,
.audience-grid,
.two-col-section {
  display: grid;
  gap: 12px;
}

.promo-grid,
.feature-top-grid,
.benefit-grid,
.audience-grid,
.two-col-section,
.specs,
.audience,
.benefits,
.highlight,
.image-copy,
.reviews-block,
.bundle,
.order-section,
.footer {
  margin-top: 14px;
}

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

.promo-card,
.mini-card,
.benefit-card,
.audience-card,
.two-col-card,
.spec-row,
.review-item,
.order-form label,
.legal-card,
.product-small-card,
.split-card__media--framed {
  background: rgba(7, 32, 76, 0.65);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.promo-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
}

.promo-icon,
.mini-icon,
.benefit-icon,
.audience-icon,
.avatar,
.success-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(241, 204, 132, 0.5);
  color: var(--gold-strong);
  font-size: 18px;
}

.promo-label {
  color: var(--muted-soft);
  font-size: 13px;
}

.promo-value {
  margin-top: 4px;
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
}

.cta-button,
.sticky-order-bar__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  padding: 14px 18px;
  border-radius: 18px;
  border: none;
  cursor: pointer;
  background: linear-gradient(180deg, #f0cc83 0%, #d8a955 100%);
  color: #08225a;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover,
.sticky-order-bar__button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.3);
}

.cta-button--secondary {
  margin-top: 10px;
}

.feature-top-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 14px;
}

.mini-card,
.benefit-card,
.audience-card {
  padding: 12px;
}

.mini-card {
  min-height: 96px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.3;
}

.highlight,
.split-card {
  padding: 14px;
}

.glow-card {
  overflow: hidden;
}

.highlight__media {
  margin-top: 12px;
  border-radius: 22px;
  background: radial-gradient(circle at center, rgba(232, 188, 105, 0.24), transparent 58%), rgba(255,255,255,0.04);
  padding: 18px;
}

.highlight__media img {
  width: 100%;
  height: auto;
  max-height: 260px;
  object-fit: contain;
}

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

.section-head h3,
.highlight__content h3,
.split-card__content h3,
.two-col-card h3,
.legal-card h1,
.success-card h1 {
  margin-bottom: 10px;
  font-size: 28px;
  line-height: 1.15;
  color: var(--gold-strong);
}

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

.benefit-card,
.audience-card {
  min-height: 170px;
}

.benefit-card strong,
.audience-card strong,
.review-item strong,
.spec-row strong,
.success-row strong {
  display: block;
  margin: 10px 0 6px;
  color: var(--text);
  font-size: 16px;
}

.benefit-card p,
.audience-card p {
  margin-bottom: 0;
}

.split-card__media,
.product-small-card {
  padding: 10px;
}

.split-card__media img {
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.specs,
.audience,
.benefits,
.order-section,
.footer,
.bundle {
  padding: 16px 14px;
}

.spec-table {
  display: grid;
  gap: 10px;
}

.spec-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px;
}

.spec-row span,
.success-row span {
  color: var(--muted-soft);
  font-size: 14px;
}

.reviews-block .split-card__content {
  margin-top: 14px;
}

.review-list {
  display: grid;
  gap: 12px;
}

.review-item {
  display: flex;
  gap: 12px;
  padding: 12px;
}

.review-item p {
  margin-bottom: 0;
}

.avatar {
  background: linear-gradient(180deg, rgba(240,204,131,0.35), rgba(216,169,85,0.12));
  font-weight: 800;
}

.two-col-card {
  padding: 14px;
}

.list-check {
  margin: 0;
  padding-left: 18px;
}

.list-check li + li {
  margin-top: 8px;
}

.section-head--center {
  text-align: center;
}

.order-form {
  display: grid;
  gap: 12px;
}

.order-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px;
}

.order-form span {
  color: var(--muted-soft);
  font-size: 14px;
}

.order-form input {
  width: 100%;
  min-height: 50px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  padding: 0 14px;
  color: var(--text);
  font-size: 16px;
  outline: none;
}

.order-form input::placeholder {
  color: rgba(231, 237, 255, 0.48);
}

.order-form input:focus {
  border-color: rgba(241, 204, 132, 0.7);
  box-shadow: 0 0 0 3px rgba(241, 204, 132, 0.12);
}

.form-note,
.footer-copy {
  color: var(--muted-soft);
  text-align: center;
  font-size: 13px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
}

.footer-nav a,
.back-link {
  color: var(--gold-strong);
  font-weight: 700;
}

.sticky-order-bar {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 999;
  width: min(100%, 480px);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(2, 14, 37, 0.96);
  border-top: 1px solid rgba(241, 204, 132, 0.22);
  backdrop-filter: blur(12px);
}

.sticky-order-bar__price {
  min-width: 110px;
}

.sticky-order-bar__price strong {
  display: block;
  color: var(--gold-strong);
  font-size: 28px;
  line-height: 1;
}

.sticky-order-bar__price span {
  color: rgba(255,255,255,0.6);
  font-size: 12px;
}

.legal-page {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
}

.legal-card {
  width: 100%;
  padding: 20px 16px;
}

.legal-card h1 {
  margin-top: 14px;
}

.legal-card h2 {
  margin: 22px 0 10px;
  color: var(--gold-strong);
  font-size: 22px;
}

.success-card {
  text-align: center;
}

.success-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 16px;
  font-size: 32px;
  background: linear-gradient(180deg, rgba(240,204,131,0.25), rgba(216,169,85,0.1));
}

.success-summary {
  margin: 18px 0 20px;
  display: grid;
  gap: 10px;
}

.success-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 14px;
  text-align: left;
}

@media (min-width: 768px) {
  .site-shell,
  .legal-page,
  .sticky-order-bar {
    width: min(100%, 780px);
  }

  .feature-top-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .highlight {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 16px;
  }

  .highlight__media {
    margin-top: 0;
  }

  .split-card,
  .two-col-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-items: center;
  }

  .reviews-block .split-card__content {
    margin-top: 0;
  }

  .spec-table {
    grid-template-columns: 1fr 1fr;
  }

  .footer-nav {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
  }
}
