:root {
  --lavender: #eedff8;
  --lavender-deep: #d4bcec;
  --baby-blue: #d8eef6;
  --beige: #f8eee4;
  --blush: #fde3ea;
  --cream: #fff8fb;
  --moon: #ffe9b0;
  --ink: #5a4a62;
  --muted: #857490;
  --cta: #c45c86;
  --cta-hover: #b04e76;
  --white: #ffffff;
  --shadow: 0 12px 30px rgba(196, 92, 134, 0.1);
  --radius: 28px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Nunito", system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(900px 420px at 20% -10%, #ffe9f2 0%, transparent 70%),
    radial-gradient(800px 380px at 100% 8%, #e7f4fb 0%, transparent 65%),
    linear-gradient(180deg, #f8eef8 0%, var(--cream) 22%, #eef6fb 58%, var(--beige) 100%);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

.sky {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
}

.sparkle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--moon);
  clip-path: polygon(50% 0, 61% 35%, 100% 50%, 61% 65%, 50% 100%, 39% 65%, 0 50%, 39% 35%);
  animation: twinkle 3.2s ease-in-out infinite;
}

.sp1 { top: 12%; left: 8%; animation-delay: 0s; }
.sp2 { top: 18%; right: 10%; width: 6px; height: 6px; animation-delay: 0.6s; }
.sp3 { top: 46%; left: 4%; width: 7px; height: 7px; animation-delay: 1.1s; }
.sp4 { top: 62%; right: 6%; animation-delay: 1.8s; }
.sp5 { top: 84%; left: 14%; width: 5px; height: 5px; animation-delay: 0.4s; }

@keyframes twinkle {
  0%, 100% { opacity: 0.35; transform: scale(0.8) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.15) rotate(20deg); }
}

.container {
  width: min(720px, calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

h1, h2, h3 {
  font-family: "Quicksand", "Nunito", sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
}

h1 {
  font-size: clamp(1.7rem, 6vw, 2.45rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.45rem, 4.6vw, 1.9rem);
  margin-bottom: 0.9rem;
  text-align: center;
}

section {
  padding: 3.3rem 0;
}

.hero {
  padding: 2.8rem 0 0;
  text-align: center;
  position: relative;
}

.cloud {
  position: absolute;
  background: #fff;
  border-radius: 999px;
  opacity: 0.85;
  filter: drop-shadow(0 8px 12px rgba(201, 184, 232, 0.18));
}

.cloud::before,
.cloud::after {
  content: "";
  position: absolute;
  background: #fff;
  border-radius: 50%;
}

.cloud-a {
  width: 90px;
  height: 32px;
  top: 28px;
  left: 6%;
  animation: floaty 7s ease-in-out infinite;
}

.cloud-a::before { width: 38px; height: 38px; left: 14px; top: -20px; }
.cloud-a::after { width: 48px; height: 48px; right: 10px; top: -26px; }

.cloud-b {
  width: 70px;
  height: 24px;
  top: 70px;
  right: 8%;
  animation: floaty 8s ease-in-out infinite reverse;
}

.cloud-b::before { width: 30px; height: 30px; left: 10px; top: -16px; }
.cloud-b::after { width: 36px; height: 36px; right: 8px; top: -20px; }

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

.sleeping-moon {
  display: flex;
  justify-content: center;
  margin-bottom: 0.4rem;
}

.sleeping-moon svg {
  width: 132px;
  height: auto;
  animation: floaty 5.5s ease-in-out infinite;
}

.hero-badge {
  display: inline-block;
  background: var(--blush);
  color: var(--cta);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  box-shadow: 0 6px 16px rgba(196, 92, 134, 0.12);
}

.hero-sub {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 1.6rem;
}

.hero-seal {
  margin-top: 0.95rem;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--cta);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
}

.mini-star {
  width: 8px;
  height: 8px;
  background: var(--moon);
  clip-path: polygon(50% 0, 61% 35%, 100% 50%, 61% 65%, 50% 100%, 39% 65%, 0 50%, 39% 35%);
}

.wave {
  display: block;
  width: 100%;
  height: 48px;
  margin-top: 2.4rem;
}

.btn {
  display: inline-block;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 800;
  border-radius: 999px;
  transition: transform 0.16s ease, background 0.16s ease, box-shadow 0.16s ease;
}

.btn-cta {
  background: linear-gradient(180deg, #d46a93 0%, var(--cta) 100%);
  color: var(--white);
  padding: 1rem 1.8rem;
  font-size: 1.06rem;
  box-shadow: 0 12px 24px rgba(196, 92, 134, 0.32);
}

.btn-cta:hover,
.btn-cta:focus-visible {
  background: var(--cta-hover);
  transform: translateY(-2px);
}

.btn-large {
  padding: 1.12rem 1.9rem;
  font-size: 1.12rem;
  width: 100%;
  max-width: 420px;
  text-align: center;
}

.pain {
  background: var(--white);
  padding-top: 1.2rem;
}

.pain-list {
  list-style: none;
  display: grid;
  gap: 0.95rem;
}

.pain-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  background: linear-gradient(180deg, #fff, #fff8fb);
  border-radius: var(--radius);
  padding: 1.05rem 1.15rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(232, 213, 242, 0.7);
}

.pain-icon {
  flex: 0 0 56px;
}

.pain-icon svg {
  width: 56px;
  height: 56px;
  display: block;
}

.pain-list p {
  padding-top: 0.55rem;
}

.turn {
  text-align: center;
}

.turn-inner {
  background: linear-gradient(180deg, #f8eef8, #eef6fb);
  border-radius: 36px;
  padding: 2.3rem 1.4rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(232, 213, 242, 0.8);
}

.sleepy-star {
  display: flex;
  justify-content: center;
  margin-bottom: 0.2rem;
}

.sleepy-star svg {
  width: 64px;
  height: 64px;
}

.turn p {
  color: var(--muted);
  font-size: 1.05rem;
}

.whom-list {
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.whom-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--white);
  border-radius: 22px;
  padding: 0.95rem 1.05rem;
  box-shadow: var(--shadow);
  font-weight: 700;
}

.check {
  flex: 0 0 28px;
}

.check svg {
  width: 28px;
  height: 28px;
  display: block;
}

.section-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.3rem;
}

.bonus-grid {
  display: grid;
  gap: 1rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.4rem 1.25rem;
  box-shadow: var(--shadow);
}

.bonus-card {
  text-align: center;
  border: 1px solid rgba(253, 227, 234, 0.9);
}

.gift-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 0.35rem;
}

.gift-icon svg {
  width: 48px;
  height: 48px;
}

.bonus-tag {
  display: inline-block;
  background: var(--blush);
  color: #c45c86;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.65rem;
}

.bonus-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.bonus-card p:last-child {
  color: var(--muted);
}

.offer-inner {
  text-align: center;
  background: var(--white);
  border-radius: 36px;
  padding: 2.4rem 1.3rem 2.5rem;
  box-shadow: var(--shadow);
  border: 2px solid #f3c9d8;
  position: relative;
  overflow: hidden;
}

.tiny-cloud {
  width: 54px;
  height: 18px;
  background: #fff6fb;
  border-radius: 999px;
  margin: 0 auto 0.8rem;
  position: relative;
}

.tiny-cloud::before,
.tiny-cloud::after {
  content: "";
  position: absolute;
  background: #fff6fb;
  border-radius: 50%;
}

.tiny-cloud::before { width: 22px; height: 22px; left: 8px; top: -12px; }
.tiny-cloud::after { width: 28px; height: 28px; right: 6px; top: -16px; }

.offer-lead {
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.price-box {
  margin-bottom: 1.4rem;
}

.price-old {
  color: #b5a4b8;
  text-decoration: line-through;
  font-size: 1.05rem;
}

.price-now {
  font-family: "Quicksand", sans-serif;
  font-size: clamp(2.5rem, 8vw, 3.3rem);
  font-weight: 700;
  color: var(--cta);
  line-height: 1.1;
}

.price-install {
  color: var(--muted);
  font-weight: 700;
  margin-top: 0.25rem;
}

.urgency {
  margin-top: 0.95rem;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--cta);
}

.guarantee-inner {
  display: grid;
  gap: 1rem;
  justify-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.78);
  border-radius: 36px;
  padding: 2rem 1.3rem;
  box-shadow: var(--shadow);
}

.seal svg {
  width: 84px;
  height: 84px;
}

.guarantee p {
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

details {
  background: var(--white);
  border-radius: 22px;
  padding: 0.2rem 1rem;
  box-shadow: var(--shadow);
}

summary {
  cursor: pointer;
  font-weight: 800;
  padding: 0.95rem 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--blush);
  color: var(--cta);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  line-height: 1;
}

details[open] summary::after {
  content: "–";
}

details p {
  color: var(--muted);
  padding-bottom: 1rem;
}

.final-cta {
  text-align: center;
  padding-bottom: 3.6rem;
}

.final-inner {
  background: linear-gradient(180deg, #fdeef4, #eaf5fb);
  border-radius: 36px;
  padding: 2.4rem 1.3rem;
  box-shadow: var(--shadow);
}

.sleeping-baby {
  display: flex;
  justify-content: center;
  margin-bottom: 0.4rem;
}

.sleeping-baby svg {
  width: 120px;
  height: auto;
}

.final-inner p {
  color: var(--muted);
  margin-bottom: 1.3rem;
}

footer {
  text-align: center;
  padding: 1.2rem 0 2.2rem;
  color: var(--muted);
  font-size: 0.88rem;
}

@media (min-width: 720px) {
  .container {
    width: min(880px, calc(100% - 48px));
  }

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

  .guarantee-inner {
    grid-template-columns: auto 1fr;
    text-align: left;
    align-items: center;
    padding: 2rem 2rem;
  }

  .guarantee h2 {
    text-align: left;
  }

  .pain-list {
    grid-template-columns: 1fr 1fr;
  }
}
