/* ===== Reset & Base ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #222;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== Star Rating (reusable) ===== */
.star-rating {
  --star-size: 1.1rem;
  --star-color: #FFCF23;
  --star-empty: #ddd;
  display: inline-flex;
  gap: 2px;
}

.star-rating::before {
  content: '★★★★★';
  letter-spacing: 2px;
  font-size: var(--star-size);
  background: linear-gradient(
    90deg,
    var(--star-color) calc(var(--rating-percent, 100%) ),
    var(--star-empty) calc(var(--rating-percent, 100%))
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== Animations ===== */
.animate-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in.from-left {
  transform: translateX(-40px);
}

.animate-in.from-right {
  transform: translateX(40px);
}

.animate-in.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ===== Nav ===== */
.nav {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  z-index: 100;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo-svg {
  height: 2.8rem;
  width: auto;
}

/* Nav logo: dark text for white bg */
.nav-logo-svg path:last-child {
  fill: #222;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 0.25s ease;
}

.nav-links a:hover {
  color: #FFCF23;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #222;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border-radius: 0.625rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  transition: background 0.25s ease, color 0.25s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: #000;
  color: #fff;
}

.btn-primary:hover {
  background: #FFCF23;
}

.btn-sm {
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
}

/* ===== Hero ===== */
.hero {
  padding: 4rem 0 3rem;
  overflow: hidden;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.hero-content {
  flex: 1;
  min-width: 0;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 2rem;
  max-width: 420px;
}

.store-badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.store-badge-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
}

.store-badge {
  height: 44px;
  width: auto;
  transition: transform 0.25s ease;
}

.store-badge:hover {
  transform: scale(1.0425);
}

.store-rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.rating-number {
  font-weight: 700;
  font-size: 1.1rem;
}

.hero-image {
  flex: 1;
  min-width: 0;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  transition: transform 0.25s ease;
}

.hero-image img:hover {
  transform: scale(1.0425);
}

/* ===== Section Label ===== */
.section-divider {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 1rem 0;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.6rem;
  text-transform: uppercase;
}

.section-divider--yellow {
  background: #FFCF23;
  color: #000;
}

.section-divider--black {
  background: #000;
  color: #fff;
}

.section-divider + * {
  margin-top: 2.5rem;
}

/* ===== Features ===== */
.features {
  padding: 0 0 4rem;
  background: #FAFAFA;
  text-align: center;
}


.video-embed {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 1.5rem;
  text-align: center;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card img {
  width: 100%;
  max-width: 340px;
  border-radius: 1rem;
  margin-bottom: 1rem;
  transition: transform 0.25s ease;
}

.feature-card img:hover {
  transform: scale(1.0425);
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: #555;
  max-width: 320px;
}

/* ===== Reviews ===== */
.reviews {
  padding: 0 0 4rem;
  background: #fff;
  color: #222;
  text-align: center;
}


.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.review-card {
  background: #fff;
  color: #222;
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.review-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
}

.review-card p {
  font-size: 0.8rem;
  color: #555;
  flex: 1;
}

.review-author {
  font-weight: 600;
  font-size: 0.85rem;
}

.review-card .star-rating {
  --star-size: 0.9rem;
}

/* ===== Stats ===== */
.stats {
  display: flex;
  justify-content: center;
  gap: 12rem;
}

.stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-emoji {
  width: 80px;
  height: 80px;
  margin-bottom: 0.75rem;
}

.stat-value {
  white-space: nowrap;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: #222;
  text-shadow: 0 6px 0 #FFCF23;
  display: inline-block;
}

.stat-plus {
  font-size: 3rem;
  font-weight: 800;
  color: #222;
  text-shadow: 0 6px 0 #FFCF23;
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: #222;
  margin-top: 0.25rem;
}

/* ===== Featured Video ===== */
.featured-video {
  margin-top: 3rem;
  text-align: center;
}

.featured-label {
  font-size: 1.1rem;
  font-style: italic;
  color: #555;
  margin-bottom: 1rem;
}

.featured-label strong {
  color: #222;
  font-style: italic;
}

.video-disclaimer {
  font-size: 0.75rem;
  color: #999;
  margin-top: 0.75rem;
}

/* ===== CTA Banner ===== */
.cta-banner {
  padding: 3rem 0;
  background: #FFCF23;
  text-align: center;
}

.cta-inner p {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.cta-inner p strong {
  font-weight: inherit;
  color: #fff;
}

.store-badges--center {
  justify-content: center;
}

/* ===== Footer ===== */
.footer {
  padding: 2rem 0;
  background: #000;
  color: #fff;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo-svg {
  height: 2.8rem;
  width: auto;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-size: 0.8rem;
  font-weight: 500;
  color: #aaa;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: #FFCF23;
  text-decoration: underline;
}

/* ===== Mobile ===== */
@media (max-width: 736px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .store-badges {
    justify-content: center;
  }

  .store-badge-link {
    align-items: center;
  }

  .hero-image img {
    margin: 0 auto;
    max-width: 360px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .stats {
    flex-direction: column;
    gap: 2rem;
  }

  .stat-number, .stat-plus {
    font-size: 2.2rem;
  }

  .stat-value {
    display: flex;
    justify-content: center;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid #f0f0f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .footer-inner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .cta-inner p {
    font-size: 1.1rem;
  }
}
