* { box-sizing: border-box; }

/* ── Hero ── */
.hero-wrap {
  min-height: 100vh;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 25%, #fda085 50%, #f6d365 75%, #43e97b 100%);
  background-size: 300% 300%;
  animation: gradMove 8s ease infinite;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 3rem 1rem;
  position: relative; overflow: hidden;
}
@keyframes gradMove {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero-wrap::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,.18);
}
.hero-inner { position: relative; z-index: 1; }
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.25);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: .8rem; font-weight: 700; letter-spacing: 3px;
  padding: .35rem 1.2rem; border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 900; color: #fff;
  line-height: 1.1; letter-spacing: -1px;
  text-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.hero-sub {
  color: rgba(255,255,255,.9);
  font-size: clamp(1rem, 3vw, 1.4rem);
  margin: 1.2rem auto;
  max-width: 480px;
}
.btn-start {
  display: inline-block;
  background: #fff;
  color: #f5576c;
  font-weight: 800; font-size: 1.15rem;
  padding: 1rem 3rem; border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(0,0,0,.25);
  transition: transform .2s, box-shadow .2s;
  margin-top: .5rem;
}
.btn-start:hover { transform: scale(1.05); box-shadow: 0 14px 40px rgba(0,0,0,.3); color: #f5576c; }

/* ── Scroll hint ── */
.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.7); font-size: .8rem; text-align: center;
  animation: bounce 1.8s infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ── Genre Cards ── */
.genre-section { background: #fff; padding: 5rem 0; }
.genre-card {
  border-radius: 20px; border: none;
  padding: 2.5rem 1.5rem; text-align: center;
  color: #fff; font-weight: 700;
  transition: transform .25s, box-shadow .25s;
  cursor: default;
}
.genre-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,.18); }
.genre-card .emoji { font-size: 3rem; display: block; margin-bottom: .8rem; }
.genre-card.c1 { background: linear-gradient(135deg, #f093fb, #f5576c); }
.genre-card.c2 { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.genre-card.c3 { background: linear-gradient(135deg, #43e97b, #38f9d7); }

/* ── Steps ── */
.steps-section { background: linear-gradient(180deg, #fefcff 0%, #f0f4ff 100%); padding: 5rem 0; }
.step-pill {
  display: flex; align-items: center; gap: 1.2rem;
  background: #fff; border-radius: 16px;
  padding: 1.4rem 1.8rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  margin-bottom: 1.2rem;
  transition: transform .2s;
}
.step-pill:hover { transform: translateX(6px); }
.step-num {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 50%;
  font-size: 1.3rem; font-weight: 900; color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.n1 { background: linear-gradient(135deg, #f093fb, #f5576c); }
.n2 { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.n3 { background: linear-gradient(135deg, #43e97b, #38f9d7); }
.step-text h5 { margin: 0 0 .2rem; font-weight: 700; }
.step-text p { margin: 0; color: #777; font-size: .9rem; }

/* ── Reviews ── */
.reviews-section { background: #fff; padding: 5rem 0; }
.review-bubble {
  background: linear-gradient(135deg, #ffecd2, #fcb69f);
  border-radius: 20px 20px 20px 4px;
  padding: 1.5rem 1.8rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,.07);
}
.review-bubble.alt { background: linear-gradient(135deg, #a1c4fd, #c2e9fb); border-radius: 20px 20px 4px 20px; }
.review-bubble p { font-size: 1rem; color: #333; margin: 0 0 .6rem; }
.review-bubble .name { font-size: .8rem; font-weight: 700; color: #555; }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 5rem 1rem; text-align: center; color: #fff;
}
.cta-banner h2 { font-size: clamp(1.8rem, 5vw, 3rem); font-weight: 900; }
.btn-cta {
  display: inline-block; background: #fff; color: #764ba2;
  font-weight: 800; font-size: 1.1rem;
  padding: .9rem 2.8rem; border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(0,0,0,.2);
  transition: transform .2s, box-shadow .2s;
  margin-top: 1.5rem;
}
.btn-cta:hover { transform: scale(1.05); box-shadow: 0 10px 32px rgba(0,0,0,.28); color: #764ba2; }

/* ── Footer ── */
.page-footer { background: #1a1a2e; color: rgba(255,255,255,.7); padding: 2rem 1rem; text-align: center; font-size: .85rem; }
.page-footer a { color: rgba(255,255,255,.7); text-decoration: none; }
.page-footer a:hover { color: #fff; }

/* container override for full-width sections */
.container-fluid-section { width: 100%; padding: 0; }
