/* ═══════════════════════════════════════
   HOME PAGE – DEDICATED STYLES
═══════════════════════════════════════ */

/* ── Section Label ── */
.section-label {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}
.section-label span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255,59,107,0.1);
  color: #d91f52;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 1000;
  letter-spacing: 0.04em;
}
.section-label--light span {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
}

/* ── NAV button ── */
.btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 18px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff !important;
  border-radius: 50px;
  font-weight: 900;
  font-size: 0.95rem;
  transition: transform 200ms ease, box-shadow 200ms ease;
  box-shadow: 0 8px 24px rgba(255, 59, 107, 0.3);
}
.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(255, 59, 107, 0.4);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #05060f;
  padding: var(--header-height) 0 80px;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.hero__orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,59,107,0.22) 0%, transparent 70%);
  top: -120px; right: -80px;
}
.hero__orb--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,156,255,0.18) 0%, transparent 70%);
  bottom: -100px; left: -60px;
}
.hero__orb--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,176,0,0.14) 0%, transparent 70%);
  top: 50%; left: 42%;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}
.badge__dot {
  width: 8px; height: 8px;
  background: #16b36b;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(22,179,107,0.28);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 3px rgba(22,179,107,0.28); }
  50%      { box-shadow: 0 0 0 7px rgba(22,179,107,0.10); }
}

/* Title */
.hero__title {
  color: #fff;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 1000;
  line-height: 1.1;
  margin-bottom: 22px;
}
.gradient-text {
  background: linear-gradient(135deg, #ff3b6b 0%, #ffb000 55%, #ff3b6b 100%);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 4s ease infinite;
}
@keyframes gradient-shift {
  0%,100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* Description */
.hero__desc {
  color: rgba(255,255,255,0.68);
  font-size: 1.15rem;
  font-weight: 700;
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 36px;
}

/* Actions */
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

/* Trust bar */
.hero__trust {
  display: flex;
  align-items: center;
  gap: 16px;
}
.trust__avatars {
  display: flex;
}
.trust__avatars img {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2px solid #05060f;
  margin-inline-end: -10px;
  object-fit: cover;
}
.trust__text {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-weight: 800;
}
.trust__stars {
  color: #ffb000;
  font-size: 0.85rem;
  margin-bottom: 2px;
}
.trust__text strong {
  color: #fff;
}

/* ── FLOATING IMAGE VISUAL ── */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-float {
  position: relative;
  width: 380px;
  animation: float-y 6s ease-in-out infinite;
}
@keyframes float-y {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-20px); }
}

.hero-float__img-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.55),
    0 0 0 1px rgba(255,255,255,0.06);
}
.hero-float__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,6,15,0.5) 0%, transparent 50%);
}
.hero-float__img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

/* Float Badges */
.float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
  backdrop-filter: blur(16px);
  white-space: nowrap;
}
.float-badge i {
  font-size: 1.2rem;
  width: 36px; height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  flex-shrink: 0;
}
.float-badge strong {
  display: block;
  color: #111827;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.2;
}
.float-badge span {
  color: #667085;
  font-size: 0.75rem;
  font-weight: 800;
}
.float-badge img {
  width: 36px; height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.float-badge--calories {
  top: 36px;
  right: -60px;
  animation: float-badge-1 4s ease-in-out infinite;
}
.float-badge--calories i {
  background: rgba(255,59,107,0.12);
  color: #ff3b6b;
}
@keyframes float-badge-1 {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

.float-badge--progress {
  bottom: 100px;
  right: -52px;
  animation: float-badge-2 5s ease-in-out infinite;
}
.float-badge--progress i {
  background: rgba(22,179,107,0.12);
  color: #16b36b;
}
@keyframes float-badge-2 {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(8px); }
}

.float-badge--trainer {
  bottom: 24px;
  left: -48px;
  animation: float-badge-3 4.5s ease-in-out infinite;
}
.float-badge--trainer .is-online {
  color: #16b36b;
  font-size: 0.6rem;
}
@keyframes float-badge-3 {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.mini-progress {
  width: 100px;
  height: 6px;
  background: rgba(22,179,107,0.15);
  border-radius: 99px;
  margin-top: 6px;
  overflow: hidden;
}
.mini-progress__bar {
  height: 100%;
  width: 72%;
  background: linear-gradient(90deg, #16b36b, #009cff);
  border-radius: 99px;
  animation: progress-fill 3s ease-in-out infinite alternate;
}
@keyframes progress-fill {
  from { width: 55%; }
  to   { width: 82%; }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.scroll-indicator__line {
  width: 2px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  margin: 0 auto;
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── STATS STRIP ── */
.stats-strip {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 48px 0;
}
.stats-strip__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stat-item {
  flex: 1;
  text-align: center;
  padding: 8px 24px;
}
.stat-item__num {
  display: block;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 1000;
  color: var(--ink);
  line-height: 1.1;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-item__plus {
  font-size: 1.8rem;
  font-weight: 1000;
  color: var(--primary);
  vertical-align: top;
  margin-top: 4px;
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-item__label {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--line);
  flex-shrink: 0;
}

/* ── FEATURES ── */
.features {
  background: #f8faff;
}
.section-label {
  margin-bottom: 16px;
}
.section-label span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255,59,107,0.1);
  color: #d91f52;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 1000;
  letter-spacing: 0.04em;
}
.section-label--light span {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
}
.features__title {
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 1000;
  line-height: 1.15;
  margin-bottom: 16px;
  max-width: 600px;
}
.features__subtitle {
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 800;
  max-width: 560px;
  margin-bottom: 56px;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 28px;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1), border-color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--card-color, var(--primary));
  transform: scaleX(0);
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: right;
}
.feature-card:hover::before {
  transform: scaleX(1);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(18,36,62,0.08);
  border-color: transparent;
}
.feature-card__icon {
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: color-mix(in srgb, var(--card-color, #ff3b6b) 12%, transparent);
  color: var(--card-color, #ff3b6b);
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.feature-card h3 {
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 1000;
  margin-bottom: 10px;
}
.feature-card p {
  color: var(--muted);
  font-weight: 800;
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 20px;
}
.feature-card__link {
  color: var(--card-color, var(--primary));
  font-size: 0.9rem;
  font-weight: 1000;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 200ms ease;
}
.feature-card__link:hover { gap: 10px; }

/* ── PROOF STRIP ── */
.proof-strip {
  background: var(--ink);
  padding: 64px 0;
}
.proof-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.proof-strip__quote {
  color: rgba(255,255,255,0.9);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 800;
  max-width: 540px;
  line-height: 1.65;
  margin-bottom: 24px;
  font-style: italic;
}
.proof-strip__author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.proof-strip__author img {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255,176,0,0.5);
}
.proof-strip__author strong {
  display: block;
  color: #fff;
  font-weight: 1000;
}
.proof-strip__author span {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  font-weight: 700;
}
.proof-strip__ratings {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  flex-shrink: 0;
}
.rating-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 22px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
}
.rating-badge__score {
  font-size: 2.5rem;
  font-weight: 1000;
  color: #ffb000;
  line-height: 1;
}
.rating-stars {
  color: #ffb000;
  font-size: 0.9rem;
  margin-bottom: 4px;
}
.rating-badge span {
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  font-weight: 700;
}

/* ── CTA SECTION ── */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0c0d1a 0%, #1a0a14 50%, #0c0d1a 100%);
}
.cta-box {
  position: relative;
  border-radius: 28px;
  padding: 72px 64px;
  background: linear-gradient(135deg, rgba(255,59,107,0.15) 0%, rgba(0,156,255,0.1) 100%);
  border: 1px solid rgba(255,59,107,0.25);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.cta-box__glow {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,59,107,0.2) 0%, transparent 70%);
  top: -100px; right: -80px;
  pointer-events: none;
}
.cta-box__content {
  position: relative;
  z-index: 1;
  max-width: 560px;
}
.cta-box__content h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 1000;
  line-height: 1.15;
  margin-bottom: 16px;
}
.cta-box__content p {
  color: rgba(255,255,255,0.65);
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 36px;
}
.cta-box__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.btn--white {
  background: #fff;
  color: var(--ink) !important;
  box-shadow: 0 16px 40px rgba(0,0,0,0.22);
}
.btn--white:hover {
  box-shadow: 0 22px 50px rgba(0,0,0,0.32);
}
.btn--outline-white {
  background: transparent;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.3);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.08);
}
.btn--sm {
  min-height: 44px;
  padding: 0 18px;
  font-size: 0.9rem;
}
.cta-box__visual {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.cta-box__icon {
  font-size: 8rem;
  color: rgba(255,176,0,0.15);
  animation: trophy-float 4s ease-in-out infinite;
}
@keyframes trophy-float {
  0%,100% { transform: translateY(0) rotate(-5deg); }
  50%      { transform: translateY(-16px) rotate(5deg); }
}

/* ── FOOTER ── */
.site-footer {
  background: #080910;
  color: #fff;
  padding-top: 64px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand .brand {
  color: #fff;
  margin-bottom: 14px;
  display: inline-flex;
}
.footer__brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.92rem;
  font-weight: 700;
  max-width: 280px;
  line-height: 1.7;
}
.footer__nav h4,
.footer__contact h4,
.footer__social h4 {
  color: rgba(255,255,255,0.4);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer__nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__nav ul a {
  color: rgba(255,255,255,0.65);
  font-weight: 800;
  font-size: 0.95rem;
  transition: color 180ms ease, padding-right 180ms ease;
}
.footer__nav ul a:hover {
  color: #fff;
  padding-right: 4px;
}
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer__contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  font-weight: 800;
  transition: color 180ms;
  margin-top: 10px;
}
.footer__contact a:first-of-type { margin-top: 0; }
.footer__contact a:hover { color: #fff; }
.footer__contact i { color: var(--primary); width: 16px; }
.social-links {
  display: flex;
  gap: 10px;
}
.social-links a {
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: rgba(255,255,255,0.7);
  transition: transform 180ms, background 180ms, color 180ms;
}
.social-links a:hover {
  transform: translateY(-3px);
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.footer__bottom {
  padding: 20px 0;
}
.footer__bottom p {
  text-align: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.85rem;
  font-weight: 700;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 56px;
  }
  .hero__desc, .hero__badge { margin-inline: auto; }
  .hero__actions, .hero__trust { justify-content: center; }
  /* .hero__visual { order: -1; } Removed to show text first */
  .hero-float { width: 300px; margin-inline: auto; }
  .hero-float__img { height: 360px; }
  .float-badge {
    padding: 10px 14px;
    gap: 10px;
    border-radius: 14px;
  }
  .float-badge i, .float-badge img { width: 32px; height: 32px; }
  .float-badge i { font-size: 1rem; }
  .float-badge--calories { right: -15px; top: 20px; }
  .float-badge--progress { right: -15px; bottom: 80px; }
  .float-badge--trainer { left: -15px; bottom: 20px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .proof-strip__inner { flex-direction: column; text-align: center; }
  .proof-strip__author { justify-content: center; }
  .proof-strip__ratings { align-items: center; }
  .cta-box { flex-direction: column; text-align: center; padding: 48px 32px; }
  .cta-box__actions { justify-content: center; }
  .cta-box__icon { font-size: 5rem; }
  .cta-box__visual { display: none; }
}

@media (max-width: 640px) {
  .stats-strip__grid { flex-direction: column; gap: 32px; }
  .stat-divider { width: 60px; height: 1px; }
  .features__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero-float { width: 250px; }
  .float-badge { 
    padding: 8px 10px; 
    gap: 8px;
    border-radius: 12px;
  }
  .float-badge strong { font-size: 0.8rem; }
  .float-badge span { font-size: 0.7rem; }
  .float-badge i, .float-badge img { width: 28px; height: 28px; }
  .float-badge i { font-size: 0.9rem; }
  .float-badge--calories { right: -12px; top: 16px; }
  .float-badge--progress { right: -12px; bottom: 70px; }
  .float-badge--trainer { left: -12px; bottom: 16px; }
  .mini-progress { width: 80px; height: 4px; margin-top: 4px; }
}
