﻿:root {
  --blue: #009fe3;
  --deep-blue: #083b77;
  --navy: #06244a;
  --yellow: #ffcf22;
  --orange: #ff8a00;
  --red: #c71515;
  --green: #18a957;
  --cream: #fff7df;
  --paper: #fffdf7;
  --ink: #15243a;
  --muted: #5b6a7f;
  --shadow: 0 22px 55px rgba(6, 36, 74, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Nunito", Arial, sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  width: min(820px, calc(100% - 32px));
  text-align: center;
}

.top-alert {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 11px 16px;
  color: #fff;
  background: var(--red);
  text-align: center;
  font-weight: 900;
  text-transform: uppercase;
}

.top-alert span {
  font-weight: 800;
  text-transform: none;
}

.section {
  padding: 76px 0;
}

.section-sky {
  background:
    radial-gradient(circle at 16% 18%, rgba(255,255,255,0.85) 0 9%, transparent 10%),
    radial-gradient(circle at 88% 14%, rgba(255,255,255,0.7) 0 7%, transparent 8%),
    linear-gradient(180deg, #80d9ff 0%, #dff7ff 50%, #fff6df 100%);
}

.hero {
  min-height: 760px;
  display: flex;
  align-items: center;
  padding: 58px 0 66px;
  overflow: hidden;
}

.hero-stack {
  display: grid;
  justify-items: center;
  gap: 22px;
  text-align: center;
}

.hero-grid,
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: center;
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.yellow {
  color: var(--yellow);
  text-shadow: 0 2px 0 rgba(0,0,0,0.16);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 710px;
  font-size: clamp(42px, 7vw, 78px);
}

.hero-stack h1 {
  max-width: 920px;
  margin: 0 auto;
}

h2 {
  font-size: clamp(34px, 5vw, 56px);
}

h3 {
  font-size: 27px;
}

.lead,
.section-intro {
  margin: 20px 0 0;
  color: var(--deep-blue);
  font-size: 22px;
  font-weight: 800;
}

.section-intro {
  color: var(--muted);
  font-size: 20px;
  font-weight: 700;
}

.check-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 26px 0;
}

.hero-after {
  max-width: 790px;
}

.hero-after .check-list {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.check-list span,
.receive-list li,
.price-card li,
.bonus-text li {
  position: relative;
  padding-left: 30px;
}

.check-list span {
  color: var(--navy);
  font-weight: 900;
}

.check-list span::before,
.receive-list li::before,
.price-card li::before,
.bonus-text li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 5px #fff;
}

.cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 58px;
  padding: 16px 28px;
  border-radius: 8px;
  color: #fff;
  font-size: 18px;
  font-weight: 1000;
  line-height: 1.1;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 9px 0 rgba(0,0,0,0.2), 0 18px 30px rgba(0,0,0,0.18);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.cta:hover {
  transform: translateY(2px);
  box-shadow: 0 6px 0 rgba(0,0,0,0.2), 0 14px 24px rgba(0,0,0,0.16);
}

.cta-primary {
  background: linear-gradient(180deg, #2ee66f, #119e49);
}

.cta-pulse {
  animation: pulseCta 1.4s ease-in-out infinite;
}

@keyframes pulseCta {
  0%, 100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.045);
  }
}

.cta-secondary {
  background: linear-gradient(180deg, #ffae2c, #f06b00);
}

.cta-light {
  background: #fff;
  color: var(--red);
}

.microcopy {
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.hero-media img {
  width: min(620px, 100%);
  margin: 0 auto;
  filter: drop-shadow(0 35px 34px rgba(0,0,0,0.22));
}

.white {
  background: #fff;
}

.image-frame {
  margin-top: 32px;
}

.image-frame img,
.split > img {
  border: 8px solid #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.section-blue {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(8,59,119,0.95), rgba(0,159,227,0.88)),
    url("assets/mockup-album.jpg") center/cover;
}

.section-blue h2,
.section-blue strong,
.section-blue p {
  color: #fff;
}

.benefit-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.benefit-list article {
  padding: 20px;
  border: 2px solid rgba(255,255,255,0.28);
  border-radius: 8px;
  background: rgba(255,255,255,0.12);
}

.benefit-list strong {
  display: block;
  margin-bottom: 6px;
  font-size: 22px;
}

.benefit-list p {
  margin: 0;
}

.urgency {
  padding: 56px 0;
  color: #fff;
  background: var(--red);
  text-align: center;
}

.urgency p {
  margin: 0 0 8px;
  color: var(--yellow);
  font-weight: 1000;
  text-transform: uppercase;
}

.urgency h2 {
  max-width: 920px;
  margin: 0 auto 26px;
  color: #fff;
}

.desire-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 30px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.desire-grid article {
  min-height: 150px;
  padding: 24px;
  border: 3px solid #d7ebff;
  border-radius: 8px;
  color: var(--deep-blue);
  background: #f2f9ff;
  font-size: 19px;
  font-weight: 900;
}

.section-sand {
  background: linear-gradient(180deg, #fff7df, #ffffff);
}

.receive-list,
.price-card ul,
.bonus-text ul {
  display: grid;
  gap: 12px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 18px;
  font-weight: 800;
}

.bonuses {
  color: #fff;
  background: linear-gradient(180deg, #083b77, #061d3c);
}

.bonuses h2 {
  color: #fff;
}

.social-proof {
  background: linear-gradient(180deg, #fff, #f3f9ff);
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 34px;
  align-items: start;
}

.proof-grid img {
  width: 100%;
  border: 3px solid #e6eef8;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.bonus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 34px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.bonus-card {
  overflow: hidden;
  border: 3px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.bonus-card div {
  padding: 24px;
}

.bonus-card span,
.bonus-badge,
.ribbon {
  display: inline-block;
  padding: 7px 12px;
  border-radius: 6px;
  color: #fff;
  background: var(--red);
  font-weight: 1000;
  text-transform: uppercase;
}

.bonus-card p {
  color: var(--muted);
  font-size: 18px;
  font-weight: 800;
}

.bonus-card strong {
  color: var(--green);
  font-weight: 1000;
  text-transform: uppercase;
}

.bonus-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  background:
    radial-gradient(circle at 90% 10%, rgba(255,207,34,0.32), transparent 32%),
    #fff;
}

.bonus-text .bonus-badge {
  align-self: flex-start;
  margin-bottom: 18px;
}

.pricing {
  background: #fff;
}

.price-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  margin-top: 34px;
  align-items: stretch;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border: 3px solid #d7ebff;
  border-radius: 8px;
  background: #f6fbff;
  box-shadow: var(--shadow);
}

.price-card.featured {
  border-color: var(--yellow);
  background: linear-gradient(180deg, #fff9d8, #fff);
  transform: none;
}

.price-card p {
  color: var(--muted);
  font-size: 18px;
  font-weight: 800;
}

.price {
  margin-top: auto;
  margin-bottom: 22px;
}

.price small {
  display: block;
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
}

.price s {
  color: #8b97a8;
  text-decoration-thickness: 2px;
}

.price strong {
  display: block;
  color: var(--red);
  font-family: "Baloo 2", "Nunito", Arial, sans-serif;
  font-size: 64px;
  line-height: 1;
}

.ribbon {
  position: absolute;
  top: -18px;
  right: 24px;
  background: var(--green);
}

.access {
  background: linear-gradient(180deg, #e9f8ff, #fff);
}

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 34px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.steps article {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  column-gap: 16px;
  align-items: center;
  padding: 24px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  text-align: left;
}

.steps span {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(180deg, var(--orange), #f05f00);
  font-size: 28px;
  font-weight: 1000;
}

.steps h3,
.steps p {
  grid-column: 2;
}

.steps p {
  margin: 4px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.center {
  margin-top: 32px;
  text-align: center;
}

.guarantee {
  background: linear-gradient(180deg, #fff7df, #eef9ff);
}

.guarantee-box {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  padding: 34px;
  border: 4px solid #ffd966;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.guarantee-box img {
  filter: drop-shadow(0 16px 18px rgba(0,0,0,0.18));
}

.guarantee p {
  max-width: 760px;
  color: var(--muted);
  font-size: 20px;
  font-weight: 800;
}

.faq {
  background: #fff;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 840px;
  margin-top: 28px;
}

details {
  border: 2px solid #d7ebff;
  border-radius: 8px;
  background: #f8fcff;
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--deep-blue);
  font-size: 20px;
  font-weight: 1000;
}

details p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
  font-weight: 800;
}

.security-strip {
  padding: 28px 0;
  background: #071d3c;
}

.security-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}

.security-grid img {
  max-height: 58px;
  width: auto;
}

.legal-footer {
  padding: 18px 0;
  color: #d5e6ff;
  background: #041025;
  text-align: center;
}

.legal-footer p {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .top-alert {
    display: grid;
    gap: 2px;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  .hero-grid,
  .split,
  .reverse,
  .bonus-grid,
  .price-grid,
  .guarantee-box {
    grid-template-columns: 1fr;
  }

  .hero-media img {
    margin: 0 auto;
  }

  .desire-grid,
  .steps,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }

  .guarantee-box {
    text-align: center;
  }

  .guarantee-box img {
    margin: 0 auto;
  }
}

@media (max-width: 560px) {
  .wrap,
  .narrow {
    width: min(100% - 28px, 1120px);
  }

  .section {
    padding: 46px 0;
  }

  .hero {
    padding: 28px 0 42px;
  }

  .hero-stack {
    gap: 16px;
  }

  .eyebrow {
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 1.2;
  }

  h1 {
    font-size: 34px;
    line-height: 1.04;
  }

  h2 {
    font-size: 29px;
    line-height: 1.04;
  }

  h3 {
    font-size: 23px;
    line-height: 1.06;
  }

  .lead,
  .section-intro {
    margin-top: 14px;
    font-size: 17px;
    line-height: 1.38;
  }

  .hero-media img {
    width: min(330px, 100%);
    filter: drop-shadow(0 18px 20px rgba(0,0,0,0.2));
  }

  .hero-after {
    width: 100%;
  }

  .hero-after .check-list {
    margin-top: 18px;
    margin-bottom: 18px;
  }

  .check-list,
  .desire-grid,
  .steps,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .check-list {
    gap: 9px;
  }

  .check-list span,
  .receive-list li,
  .price-card li,
  .bonus-text li {
    padding-left: 28px;
  }

  .check-list span::before,
  .receive-list li::before,
  .price-card li::before,
  .bonus-text li::before {
    top: 4px;
    width: 18px;
    height: 18px;
    box-shadow: inset 0 0 0 4px #fff;
  }

  .cta {
    width: 100%;
    min-height: 56px;
    padding: 15px 16px;
    font-size: 15px;
    line-height: 1.15;
    text-align: center;
  }

  .microcopy {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.35;
  }

  .image-frame {
    margin-top: 22px;
  }

  .image-frame img,
  .split > img {
    border-width: 5px;
  }

  .benefit-list {
    gap: 12px;
    margin-top: 22px;
  }

  .benefit-list article,
  .desire-grid article,
  .steps article {
    padding: 18px;
  }

  .benefit-list strong {
    font-size: 19px;
    line-height: 1.15;
  }

  .benefit-list p,
  .bonus-card p,
  .price-card p,
  .steps p,
  .guarantee p {
    font-size: 16px;
    line-height: 1.42;
  }

  .urgency {
    padding: 38px 0;
  }

  .urgency h2 {
    margin-bottom: 20px;
  }

  .desire-grid {
    gap: 12px;
    margin-top: 22px;
  }

  .desire-grid article {
    min-height: 0;
    font-size: 17px;
    line-height: 1.3;
  }

  .receive-list,
  .price-card ul,
  .bonus-text ul {
    gap: 10px;
    margin: 18px 0;
    font-size: 16px;
    line-height: 1.35;
  }

  .bonus-grid,
  .price-grid {
    gap: 18px;
    margin-top: 24px;
  }

  .bonus-card div {
    padding: 18px;
  }

  .bonus-text {
    display: block;
  }

  .bonus-text .bonus-badge,
  .bonus-card span {
    margin-bottom: 10px;
    font-size: 13px;
  }

  .bonus-card img {
    width: 100%;
  }

  .proof-grid {
    gap: 12px;
    margin-top: 22px;
  }

  .proof-grid img {
    border-width: 2px;
    box-shadow: 0 12px 26px rgba(6, 36, 74, 0.12);
  }

  .price-card,
  .bonus-text,
  .guarantee-box {
    padding: 20px;
  }

  .price-card {
    border-width: 2px;
  }

  .ribbon {
    top: -13px;
    right: 14px;
    font-size: 12px;
  }

  .price {
    margin-bottom: 18px;
  }

  .price strong {
    font-size: 46px;
    line-height: 0.95;
  }

  .price small {
    font-size: 14px;
  }

  .steps {
    gap: 12px;
    margin-top: 24px;
  }

  .steps article {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    column-gap: 14px;
    align-items: center;
    text-align: left;
  }

  .steps span {
    width: 52px;
    height: 52px;
    margin: 0;
    font-size: 24px;
  }

  .steps h3,
  .steps p {
    grid-column: 2;
  }

  .steps h3 {
    align-self: end;
  }

  .steps p {
    margin: 4px 0 0;
    align-self: start;
  }

  .guarantee-box {
    gap: 16px;
    border-width: 3px;
  }

  .guarantee-box img {
    width: 128px;
  }

  summary {
    padding: 17px 18px;
    font-size: 17px;
    line-height: 1.25;
  }

  details p {
    padding: 0 18px 18px;
    font-size: 15px;
  }

  .security-grid {
    gap: 16px;
  }

  .security-grid img {
    max-width: 100%;
    max-height: 44px;
  }

  .legal-footer p {
    font-size: 11px;
    line-height: 1.35;
  }
}

@media (max-device-width: 760px), (max-width: 980px) {
  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  .wrap,
  .narrow {
    width: min(100% - 28px, 1120px);
  }

  .section {
    padding: 44px 0;
  }

  .hero {
    min-height: auto;
    padding: 28px 0 42px;
  }

  .hero-stack {
    gap: 16px;
  }

  h1 {
    max-width: 100%;
    font-size: 34px;
    line-height: 1.04;
  }

  h2 {
    font-size: 29px;
    line-height: 1.04;
  }

  h3 {
    font-size: 23px;
    line-height: 1.08;
  }

  .lead,
  .section-intro {
    margin-top: 14px;
    font-size: 17px;
    line-height: 1.38;
  }

  .hero-media img {
    width: min(330px, 100%);
  }

  .hero-grid,
  .split,
  .reverse,
  .bonus-grid,
  .price-grid,
  .guarantee-box,
  .check-list,
  .desire-grid,
  .steps,
  .proof-grid {
    display: grid;
    grid-template-columns: 1fr !important;
  }

  .price-grid,
  .bonus-grid,
  .steps,
  .proof-grid {
    gap: 16px;
    margin-top: 24px;
  }

  .price-card.featured {
    transform: none;
  }

  .price-card {
    width: 100%;
    padding: 20px;
    border-width: 2px;
  }

  .price strong {
    font-size: 46px;
    line-height: 0.95;
  }

  .cta {
    width: 100%;
    min-height: 56px;
    padding: 15px 16px;
    font-size: 15px;
    line-height: 1.15;
    text-align: center;
  }

  .steps article {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    column-gap: 14px;
    align-items: center;
    padding: 18px;
    text-align: left;
  }

  .steps span {
    width: 52px;
    height: 52px;
    margin: 0;
    font-size: 24px;
  }

  .steps h3,
  .steps p {
    grid-column: 2;
  }

  .steps p {
    margin: 4px 0 0;
    font-size: 16px;
    line-height: 1.35;
  }

  .proof-grid img {
    width: 100%;
  }
}

html.mobile-view .hero-grid,
html.mobile-view .split,
html.mobile-view .reverse,
html.mobile-view .bonus-grid,
html.mobile-view .price-grid,
html.mobile-view .guarantee-box,
html.mobile-view .check-list,
html.mobile-view .desire-grid,
html.mobile-view .steps,
html.mobile-view .proof-grid {
  display: grid;
  grid-template-columns: 1fr !important;
}

html.mobile-view .price-card.featured {
  transform: none;
}

html.mobile-view .steps article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  column-gap: 14px;
  text-align: left;
}

