:root {
  color-scheme: light;
  --teal: #0f6c78;
  --teal-dark: #0a4c55;
  --yellow: #ffd166;
  --orange: #ff8c42;
  --pink: #ff6fb1;
  --purple: #7c4dff;
  --white: #ffffff;
  --light: #f5fbff;
  --ink: #1b1b2a;
}

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

html,
body {
  height: 100%;
}

body {
  font-family: "Baloo 2", "Fredoka", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #0f6c78 0%, #2c9caf 40%, #f7f7ff 100%);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}

img {
  width: 100%;
  display: block;
  border-radius: 18px;
}

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

.hero {
  padding: 32px 6vw 70px;
  color: var(--white);
  background: radial-gradient(circle at top left, #48d1cc, #0f6c78 55%);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
}

.logo {
  font-family: "Fredoka", sans-serif;
  font-size: 28px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-weight: 600;
}

.nav a:hover {
  color: var(--yellow);
}

.hero-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.05;
  margin: 16px 0;
}

.hero-text span {
  color: var(--yellow);
}

.hero-text p {
  font-size: 18px;
  line-height: 1.6;
  max-width: 520px;
}

.pill {
  background: var(--white);
  color: var(--teal-dark);
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 700;
  display: inline-block;
}

.hero-actions {
  margin: 24px 0 16px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  background: var(--yellow);
  color: var(--ink);
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: var(--white);
  color: var(--teal-dark);
}

.btn-ghost {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-block {
  width: 100%;
}

.hero-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 600;
  opacity: 0.95;
}

.hero-media {
  position: relative;
}

.floating-card {
  position: absolute;
  bottom: -20px;
  left: 20px;
  background: var(--white);
  color: var(--teal-dark);
  padding: 12px 18px;
  border-radius: 16px;
  font-weight: 600;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.18);
}

.section {
  padding: 80px 6vw;
  background: var(--light);
}

.section:nth-child(even) {
  background: #ffffff;
}

.section-title {
  text-align: center;
  margin-bottom: 59px;
}

.section-title h2 {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--teal-dark);
}

.section-title p {
  font-size: 18px;
  margin-top: 12px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.benefit-grid,
.testimonial-grid {
  display: grid;
  gap: 20px;
}

.benefit-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.benefit-card {
  position: relative;
  padding-top: 96px;
  text-align: left;
  border: 2px dashed rgba(255, 140, 66, 0.35);
  background: linear-gradient(140deg, #ffffff 0%, #fff4e6 100%);
}

.benefit-card h3 {
  margin-top: 8px;
}

.benefit-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  position: absolute;
  top: -39px;
  left: 20px;
  box-shadow: 0 12px 18px rgba(0, 0, 0, 0.12);
}

.benefit-avatar::before,
.benefit-avatar::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: #2a2a2a;
  border-radius: 50%;
  top: 24px;
}

.benefit-avatar::before {
  left: 20px;
}

.benefit-avatar::after {
  right: 20px;
}

.benefit-avatar span {
  position: absolute;
  bottom: 14px;
  left: 50%;
  width: 26px;
  height: 12px;
  border-radius: 0 0 16px 16px;
  border: 3px solid #2a2a2a;
  border-top: 0;
  transform: translateX(-50%);
}

.avatar-1 {
  background: #ffe082;
}

.avatar-2 {
  background: #b2ebf2;
}

.avatar-3 {
  background: #ffcdd2;
}

.avatar-4 {
  background: #c8e6c9;
}

.avatar-5 {
  background: #d1c4e9;
}

.avatar-6 {
  background: #ffecb3;
}

.testimonial-marquee {
  overflow: hidden;
  max-width: 820px;
  margin: 0 auto;
  height: 420px;
  position: relative;
}

.testimonial-track {
  display: grid;
  gap: 20px;
  animation: testimonialScroll 75s linear infinite;
}

@keyframes testimonialScroll {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

.card {
  background: var(--white);
  padding: 22px;
  border-radius: 20px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

.card h3 {
  margin-bottom: 8px;
  color: var(--teal-dark);
}

.play-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.play-card img {
  margin-top: 16px;
}

.play-header span {
  font-weight: 700;
  color: var(--purple);
}

.video-card {
  margin-top: 32px;
  background: linear-gradient(120deg, #ffe1f0, #d6f5ff);
  padding: 28px;
  border-radius: 24px;
}

.video-media video {
  width: 100%;
  border-radius: 16px;
  border: 4px solid var(--white);
  box-shadow: 0 16px 25px rgba(0, 0, 0, 0.15);
}

.testimonial {
  font-size: 16px;
  line-height: 1.6;
  border-left: 6px solid var(--pink);
}

.testimonial strong {
  display: block;
  margin-top: 14px;
}

.order-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: start;
}

.price {
  font-size: 32px;
  color: var(--teal-dark);
  margin: 16px 0 6px;
}

.price span {
  font-size: 16px;
  text-decoration: line-through;
  color: #999;
  margin-left: 10px;
}

.tagline {
  color: #444;
  margin-bottom: 14px;
}

.checklist {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.bonus {
  background: var(--yellow);
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 700;
}

.order-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  margin-bottom: 14px;
}

.order-form input,
.order-form select {
  padding: 10px 12px;
  border-radius: 12px;
  border: 2px solid #e0e6ee;
  font-family: inherit;
  font-size: 15px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.divider {
  text-align: center;
  font-weight: 700;
  color: var(--teal-dark);
  margin: 18px 0 12px;
}

.small-note {
  font-size: 12px;
  margin-top: 10px;
  color: #555;
  text-align: center;
}

.payment-status {
  margin-top: 12px;
  font-weight: 600;
  color: var(--teal-dark);
  text-align: center;
  min-height: 20px;
}

.process {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  text-align: center;
}

.process span {
  background: var(--pink);
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer {
  background: var(--teal-dark);
  color: var(--white);
  text-align: center;
  padding: 24px 16px;
  font-weight: 600;
}

@media (max-width: 980px) {
  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    padding: 28px 5vw 60px;
  }

  .section {
    padding: 64px 5vw;
  }

  .testimonial-marquee {
    max-width: 640px;
    height: 380px;
  }
}

@media (max-width: 760px) {
  .nav {
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 10px;
  }

  .hero-content {
    gap: 28px;
  }

  .hero-text h1 {
    font-size: clamp(30px, 8vw, 40px);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-media {
    max-width: 100%;
  }

  .floating-card {
    position: static;
    margin-top: 16px;
  }

  .section {
    padding: 52px 6vw;
  }

  .gallery-grid,
  .benefit-grid,
  .play-grid,
  .testimonial-grid,
  .order-layout {
    grid-template-columns: 1fr;
  }

  .video-card {
    padding: 20px;
  }

  .video-media video {
    border-width: 3px;
  }

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

  .process {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
  }
}

@media (max-width: 520px) {
  .logo {
    font-size: 24px;
  }

  .pill {
    font-size: 13px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .section-title p {
    font-size: 16px;
  }

  .price {
    font-size: 28px;
  }

  .testimonial-marquee {
    height: 340px;
  }

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

@media (prefers-reduced-motion: reduce) {
  .testimonial-track {
    animation: none;
  }
}
