:root {
  --bg: #fffaf0;
  --surface: #ffffff;
  --surface-soft: #fff6dd;
  --ink: #15202b;
  --muted: #5f6b76;
  --line: rgba(21, 32, 43, 0.08);
  --accent: #27c76f;
  --accent-dark: #15924f;
  --accent-soft: #e8fff1;
  --mango: #ffb703;
  --sun: #ff7a18;
  --sky: #4dabf7;
  --berry: #ff5d8f;
  --shadow: 0 18px 40px rgba(21, 32, 43, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 183, 3, 0.22), transparent 28%),
    radial-gradient(circle at top right, rgba(77, 171, 247, 0.18), transparent 22%),
    linear-gradient(180deg, #fffdf6 0%, var(--bg) 100%);
  color: var(--ink);
  font-family: "Nunito", sans-serif;
}

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

button {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
}

.promo-bar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: linear-gradient(90deg, #d62828, #f77f00);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 8px 24px rgba(215, 38, 56, 0.22);
}

.promo-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ffe16a;
  box-shadow: 0 0 0 6px rgba(255, 225, 106, 0.2);
}

.page {
  width: min(100%, 520px);
  margin: 0 auto;
  padding: 18px 16px 120px;
}

.hero {
  padding-top: 18px;
}

.brand-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--sky), var(--accent));
  color: #fff;
  font-family: "Baloo 2", cursive;
  font-size: 1.35rem;
  font-weight: 800;
  box-shadow: 0 14px 24px rgba(39, 199, 111, 0.24);
}

.brand-name {
  margin: 0;
  font-weight: 800;
  font-size: 1rem;
}

.brand-tagline {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.trust-pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-card,
.card-block,
.support-card,
.offer-card,
.faq-item,
.modal-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 183, 3, 0.18), transparent 24%),
    radial-gradient(circle at 100% 10%, rgba(255, 93, 143, 0.16), transparent 20%),
    linear-gradient(180deg, #ffffff 0%, #fffaf2 100%);
}

.hero-card::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: rgba(77, 171, 247, 0.08);
}

.eyebrow,
.section-kicker {
  margin: 0 0 8px;
  color: var(--accent-dark);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
.section-title,
.offer-title,
.modal-card h3 {
  margin: 0;
  font-family: "Baloo 2", cursive;
  line-height: 0.95;
}

h1 {
  font-size: clamp(2rem, 9vw, 3.2rem);
  margin-bottom: 14px;
}

.hero-subtitle,
.section-text,
.hero-note,
.faq-answer,
.support-mail,
.offer-note,
.price-caption,
.modal-subtitle,
.bullet-item {
  color: var(--muted);
}

.hero-subtitle {
  margin: 0 0 16px;
  font-size: 1.02rem;
  line-height: 1.45;
}

.hero-highlights {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.highlight-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  background: #fff;
  border: 1px dashed rgba(39, 199, 111, 0.35);
  font-weight: 700;
}

.highlight-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.95rem;
}

.hero-actions,
.modal-actions {
  display: grid;
  gap: 10px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-height: 56px;
  padding: 14px 18px;
  border: 0;
  border-radius: 18px;
  font-weight: 900;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  box-shadow: 0 18px 28px rgba(39, 199, 111, 0.24);
}

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

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-note {
  margin: 14px 0 0;
  font-size: 0.86rem;
}

.hero-visual {
  margin-top: 22px;
  position: relative;
}

.hero-screen {
  padding: 14px;
  border-radius: 24px;
  background: linear-gradient(180deg, #1b263b, #0b1320);
  box-shadow: 0 18px 32px rgba(11, 19, 32, 0.24);
}

.hero-screen-top {
  display: flex;
  gap: 7px;
  margin-bottom: 14px;
}

.hero-screen-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
}

.hero-screen-body {
  display: grid;
  gap: 10px;
}

.hero-badge {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-thumb {
  border-radius: 18px;
  min-height: 88px;
}

.hero-thumb-a {
  background: linear-gradient(135deg, #ffb703, #fb8500);
}

.hero-thumb-b {
  background: linear-gradient(135deg, #4dabf7, #3a86ff);
}

.hero-thumb-c {
  background: linear-gradient(135deg, #ff5d8f, #ff87ab);
}

.section {
  margin-top: 26px;
}

.card-block,
.support-card {
  padding: 22px;
}

.section-header {
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.55rem, 6vw, 2.2rem);
  margin-bottom: 8px;
}

.section-text {
  margin: 0;
  line-height: 1.5;
}

.video-shell {
  overflow: hidden;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 183, 3, 0.16), rgba(77, 171, 247, 0.16)),
    #fff;
  border: 1px dashed rgba(21, 32, 43, 0.14);
}

.video-placeholder {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.video-poster {
  aspect-ratio: 9 / 16;
  border-radius: 20px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.35), transparent 26%),
    linear-gradient(180deg, #3a86ff, #7c3aed);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 4rem;
}

.video-copy h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.gallery-grid,
.steps-grid,
.offers-grid,
.modal-benefits,
.bullet-list {
  display: grid;
  gap: 12px;
}

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

.gallery-item {
  min-height: 158px;
  padding: 16px;
  border-radius: 24px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.38) 100%);
}

.gallery-emoji,
.gallery-copy {
  position: relative;
  z-index: 1;
}

.gallery-emoji {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 2rem;
}

.gallery-copy strong {
  display: block;
  font-size: 1.06rem;
  margin-bottom: 4px;
}

.gallery-copy span {
  display: block;
  font-size: 0.84rem;
  opacity: 0.88;
}

.step-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
}

.step-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--mango), var(--sun));
  color: #fff;
  font-weight: 900;
  margin-bottom: 12px;
}

.step-card h3,
.offer-title {
  font-size: 1.22rem;
}

.step-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.offer-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
}

.offer-card.featured {
  border-color: rgba(39, 199, 111, 0.42);
  box-shadow: 0 20px 36px rgba(39, 199, 111, 0.14);
}

.offer-card::after {
  content: "";
  position: absolute;
  top: -34px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: rgba(255, 183, 3, 0.13);
}

.offer-label {
  position: relative;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff1bf;
  color: #8b5e00;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.offer-title,
.offer-copy,
.offer-price,
.offer-price-row,
.offer-benefits,
.offer-actions {
  position: relative;
  z-index: 1;
}

.offer-copy {
  margin: 8px 0 14px;
  color: var(--muted);
}

.offer-price-row {
  display: flex;
  align-items: end;
  gap: 10px;
  margin-bottom: 4px;
}

.offer-original {
  color: var(--muted);
  text-decoration: line-through;
  font-size: 0.95rem;
}

.offer-price {
  font-family: "Baloo 2", cursive;
  font-size: 2.25rem;
  line-height: 1;
}

.price-caption {
  margin-bottom: 14px;
  font-weight: 700;
}

.offer-benefits {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.bullet-item {
  display: flex;
  gap: 10px;
  align-items: start;
  font-weight: 700;
  line-height: 1.35;
}

.bullet-item::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.88rem;
}

.offer-note {
  margin-top: 12px;
  font-size: 0.85rem;
}

.guarantee-box {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 18px;
  align-items: center;
}

.guarantee-seal {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--mango), var(--sun));
  color: #fff;
  text-align: center;
  box-shadow: 0 18px 28px rgba(255, 122, 24, 0.24);
}

.guarantee-seal span {
  font-family: "Baloo 2", cursive;
  font-size: 2rem;
  line-height: 0.9;
}

.guarantee-seal small {
  margin-top: -4px;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

.faq-item {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  text-align: left;
  font-weight: 800;
  color: var(--ink);
  cursor: pointer;
}

.faq-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 1rem;
  flex: 0 0 28px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.24s ease, padding-bottom 0.24s ease;
}

.faq-item.open .faq-answer {
  max-height: 220px;
  padding-bottom: 18px;
}

.support-card {
  background: linear-gradient(180deg, #fff, #fafffc);
}

.support-mail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 14px 16px;
  border-radius: 18px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 800;
}

.footer {
  width: min(100%, 520px);
  margin: 0 auto;
  padding: 0 16px 40px;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer p {
  margin: 0 0 10px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  font-weight: 700;
}

.floating-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 14px;
  display: flex;
  justify-content: center;
  padding: 0 16px;
  pointer-events: none;
  z-index: 25;
}

.floating-cta .btn {
  width: min(100%, 520px);
  pointer-events: auto;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(9, 14, 24, 0.78);
  z-index: 40;
}

.modal-backdrop.show {
  display: flex;
}

.modal-card {
  width: min(100%, 390px);
  padding: 22px;
  background:
    radial-gradient(circle at top right, rgba(255, 183, 3, 0.18), transparent 24%),
    linear-gradient(180deg, #111827 0%, #0f172a 100%);
  color: #fff;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.35rem;
  cursor: pointer;
}

.modal-badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 183, 3, 0.18);
  color: #ffd166;
  font-size: 0.82rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.modal-price {
  margin: 10px 0 4px;
  font-family: "Baloo 2", cursive;
  font-size: 2.5rem;
  line-height: 1;
}

.modal-subtitle {
  margin: 0 0 16px;
}

.modal-benefits {
  margin-bottom: 18px;
}

.modal-benefits .bullet-item {
  color: rgba(255, 255, 255, 0.9);
}

.modal-benefits .bullet-item::before {
  background: rgba(255, 209, 102, 0.16);
  color: #ffd166;
}

@media (min-width: 768px) {
  .hero-card {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 18px;
    align-items: center;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 767px) {
  .promo-bar {
    font-size: 0.84rem;
  }

  .brand-row {
    align-items: start;
    flex-direction: column;
  }

  .hero-card,
  .card-block,
  .support-card,
  .offer-card {
    padding: 18px;
  }

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

  .guarantee-box {
    grid-template-columns: 1fr;
  }

  .guarantee-seal {
    width: 108px;
    margin: 0 auto;
  }
}
