/* ============================================================
   HOME.CSS — HameemBhai er Dokan Homepage
   Hero · Categories · Recommends · Timeline · Stats · Testimonials
   ============================================================ */

/* ══════════════════════════════════════════════════════════════
   HERO SECTION — Full-width gradient showcase
   ══════════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-h) + var(--section-pad)) 0 var(--section-pad);
}

/* Multi-layer gradient background */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 60%, rgba(244, 168, 199, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(155, 89, 182, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 80%, rgba(52, 152, 219, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, var(--clr-bg-primary) 0%, #1e1e1e 100%);
}

/* Animated grid pattern */
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(244, 168, 199, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 168, 199, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
  mask-image: radial-gradient(ellipse 70% 70% at center, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at center, black, transparent);
}

/* Floating orbs */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}

.hero__orb--1 {
  width: 400px;
  height: 400px;
  background: rgba(244, 168, 199, 0.15);
  top: 10%;
  left: -10%;
  animation-delay: 0s;
}

.hero__orb--2 {
  width: 300px;
  height: 300px;
  background: rgba(155, 89, 182, 0.1);
  top: 20%;
  right: -5%;
  animation-delay: -2s;
}

.hero__orb--3 {
  width: 200px;
  height: 200px;
  background: rgba(244, 168, 199, 0.1);
  bottom: 15%;
  right: 30%;
  animation-delay: -4s;
}

/* Floating particles */
.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero__particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--clr-accent);
  border-radius: 50%;
  opacity: 0.3;
  animation: heroParticleFloat 10s ease-in-out infinite;
}

.hero__particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.hero__particle:nth-child(2) { top: 60%; left: 25%; animation-delay: -2s; animation-duration: 12s; }
.hero__particle:nth-child(3) { top: 30%; left: 50%; animation-delay: -4s; animation-duration: 8s; }
.hero__particle:nth-child(4) { top: 70%; left: 65%; animation-delay: -1s; animation-duration: 11s; }
.hero__particle:nth-child(5) { top: 40%; left: 80%; animation-delay: -3s; animation-duration: 9s; }
.hero__particle:nth-child(6) { top: 80%; left: 40%; animation-delay: -5s; animation-duration: 13s; }

@keyframes heroParticleFloat {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.2; }
  25%      { transform: translateY(-30px) translateX(10px); opacity: 0.5; }
  50%      { transform: translateY(-15px) translateX(-15px); opacity: 0.3; }
  75%      { transform: translateY(-40px) translateX(5px); opacity: 0.4; }
}

/* Hero content */
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  background: var(--clr-accent-subtle);
  border: 1px solid var(--border-accent);
  border-radius: var(--border-radius-full);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--clr-accent);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  margin-bottom: var(--sp-6);
  animation: fadeInDown 0.8s ease;
}

.hero__label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clr-accent);
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 8px var(--clr-accent-glow);
}

.hero__title {
  font-family: var(--font-heading);
  font-size: var(--fs-hero);
  font-weight: var(--fw-black);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-6);
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero__title-highlight {
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-hover), #e8a0d0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradientShift 4s ease infinite;
}

.hero__title-highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-accent), transparent);
  border-radius: var(--border-radius-full);
  opacity: 0.5;
}

.hero__description {
  font-size: var(--fs-md);
  color: var(--clr-text-secondary);
  line-height: var(--lh-relaxed);
  max-width: 550px;
  margin-bottom: var(--sp-8);
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s both;
}

/* Stats strip under hero */
.hero__stats {
  display: flex;
  gap: var(--sp-10);
  margin-top: var(--sp-12);
  animation: fadeInUp 0.8s ease 0.8s both;
}

.hero__stat {
  text-align: left;
}

.hero__stat-value {
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-extrabold);
  color: var(--clr-text-primary);
  line-height: 1;
}

.hero__stat-value span {
  color: var(--clr-accent);
}

.hero__stat-label {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  margin-top: var(--sp-1);
}

/* Right-side decoration / image */
.hero__visual {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  max-width: 600px;
  z-index: 2;
  animation: fadeInRight 1s ease 0.5s both;
}

.hero__visual-img {
  width: 100%;
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-subtle);
}

.hero__visual-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(244, 168, 199, 0.15) 0%, transparent 70%);
  z-index: -1;
  border-radius: var(--border-radius-xl);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  color: var(--clr-text-muted);
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  animation: fadeIn 1s ease 1.5s both;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--clr-accent), transparent);
  animation: heroScrollPulse 2s ease-in-out infinite;
}

@keyframes heroScrollPulse {
  0%, 100% { height: 40px; opacity: 1; }
  50%      { height: 25px; opacity: 0.5; }
}

@media (max-width: 1024px) {
  .hero__visual { display: none; }
  .hero__content { max-width: 100%; }
}

@media (max-width: 768px) {
  .hero {
    min-height: 100svh;
    padding: calc(var(--header-h) + 3rem) 0 3rem;
  }
  .hero__stats {
    flex-wrap: wrap;
    gap: var(--sp-6);
  }
  .hero__scroll { display: none; }
}

/* Universal section padding */
.section {
  padding: var(--section-pad) 0;
}


/* ══════════════════════════════════════════════════════════════
   CATEGORY CARDS SECTION
   ══════════════════════════════════════════════════════════════ */

.categories {
  position: relative;
}

.categories__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--sp-4);
}

.category-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--sp-8) var(--sp-5);
  background: var(--clr-bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-xl);
  cursor: pointer;
  transition: all var(--transition-smooth);
  text-decoration: none;
  overflow: hidden;
}

/* Subtle gradient overlay on hover */
.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(244, 168, 199, 0.06) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity var(--transition-smooth);
  border-radius: inherit;
}

.category-card:hover::before {
  opacity: 1;
}

.category-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md), 0 0 30px rgba(244, 168, 199, 0.08);
}

.category-card__icon {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius-md);
  background: rgba(244,168,199,0.06);
  border: 1px solid rgba(244,168,199,0.15);
  font-size: 1.6rem;
  margin-bottom: var(--sp-4);
  transition: all var(--transition-smooth);
}

.category-card:hover .category-card__icon {
  background: var(--clr-accent);
  color: var(--clr-text-on-accent);
  transform: scale(1.05);
  box-shadow: 0 0 25px var(--clr-accent-glow);
}

.category-card__name {
  font-family: var(--font-heading);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--clr-text-primary);
  margin-bottom: var(--sp-2);
}

.category-card__count {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
}


/* ══════════════════════════════════════════════════════════════
   RECOMMENDED / POPULAR SERVICES SECTION
   ══════════════════════════════════════════════════════════════ */

.recommends {
  position: relative;
}

.recommends__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--sp-10);
}

.recommends__header-content {
  max-width: 500px;
}

.recommends__view-all {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--clr-accent);
  text-decoration: none;
  transition: gap var(--transition-fast);
}

.recommends__view-all:hover {
  gap: var(--sp-3);
}

.recommends__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--sp-6);
}

/* Service card in recommends — extends .card */
.service-card {
  /* Inherits from .card in components.css */
}

.service-card__author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.service-card__author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-subtle);
}

.service-card__author-name {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--clr-text-primary);
}

.service-card__author-level {
  font-size: var(--fs-xs);
  color: var(--clr-accent);
}

@media (max-width: 768px) {
  .recommends__header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-4);
  }
}


/* ══════════════════════════════════════════════════════════════
   "HOW IT WORKS" TIMELINE
   ══════════════════════════════════════════════════════════════ */

.timeline {
  position: relative;
  padding: var(--sp-8) 0;
}

.timeline__track {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--sp-12);
}

/* Vertical line connecting steps */
.timeline__track::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--clr-accent) 15%,
    var(--clr-accent) 85%,
    transparent
  );
  opacity: 0.3;
}

.timeline__step {
  display: flex;
  gap: var(--sp-6);
  position: relative;
}

.timeline__step-marker {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--clr-bg-surface);
  border: 2px solid var(--border-accent);
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: var(--fw-extrabold);
  color: var(--clr-accent);
  z-index: 1;
  transition: all var(--transition-smooth);
}

.timeline__step:hover .timeline__step-marker {
  background: var(--clr-accent);
  color: var(--clr-text-on-accent);
  box-shadow: var(--shadow-glow);
  transform: scale(1.1);
}

.timeline__step-content {
  padding-top: var(--sp-3);
  flex: 1;
}

.timeline__step-title {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-2);
}

.timeline__step-desc {
  font-size: var(--fs-sm);
  color: var(--clr-text-secondary);
  line-height: var(--lh-relaxed);
  max-width: 400px;
}

@media (max-width: 768px) {
  .timeline__track::before {
    left: 22px;
  }
  .timeline__step-marker {
    width: 44px;
    height: 44px;
    font-size: var(--fs-md);
  }
}


/* ══════════════════════════════════════════════════════════════
   STATS COUNTER SECTION
   ══════════════════════════════════════════════════════════════ */

.stats {
  position: relative;
  background: var(--clr-bg-elevated);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}

/* Background glow */
.stats::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(244, 168, 199, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-8);
  text-align: center;
}

.stat-item {
  padding: var(--sp-4);
  position: relative;
}

/* Divider between items */
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border-subtle);
}

.stat-item__value {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--clr-text-primary);
  line-height: 1;
  margin-bottom: var(--sp-2);
  letter-spacing: -0.03em;
}

.stat-item__value span {
  color: var(--clr-accent);
}

.stat-item__label {
  font-size: var(--fs-sm);
  color: var(--clr-text-secondary);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
}

.stat-item__icon {
  font-size: 1.5rem;
  color: var(--clr-accent);
  margin-bottom: var(--sp-3);
  opacity: 0.6;
}

@media (max-width: 768px) {
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-6);
  }
  .stat-item:not(:last-child)::after {
    display: none;
  }
  .stat-item__value {
    font-size: var(--fs-2xl);
  }
}


/* ══════════════════════════════════════════════════════════════
   TESTIMONIALS SECTION
   ══════════════════════════════════════════════════════════════ */

.testimonials {
  position: relative;
  overflow: hidden;
}

.testimonials__slider {
  display: flex;
  gap: var(--sp-6);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: var(--sp-4) 0;
}

.testimonials__slider::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - var(--sp-4));
  min-width: 320px;
  scroll-snap-align: start;
  background: var(--clr-bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-xl);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
  position: relative;
}

.testimonial-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* Quote mark decoration */
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-5);
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: var(--fw-black);
  color: var(--clr-accent);
  opacity: 0.1;
  line-height: 1;
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--sp-4);
}

.testimonial-card__star {
  color: #f0c75e;
  font-size: var(--fs-sm);
}

.testimonial-card__text {
  font-size: var(--fs-sm);
  color: var(--clr-text-secondary);
  line-height: var(--lh-relaxed);
  flex: 1;
  margin-bottom: var(--sp-5);
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--border-subtle);
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-accent);
}

.testimonial-card__name {
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--clr-text-primary);
}

.testimonial-card__role {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
}

/* Slider controls */
.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  margin-top: var(--sp-8);
}

.testimonials__arrow {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--clr-bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--clr-text-secondary);
  font-size: var(--fs-md);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.testimonials__arrow:hover {
  color: var(--clr-accent);
  border-color: var(--border-accent);
  background: var(--clr-accent-subtle);
}

.testimonials__dots {
  display: flex;
  gap: var(--sp-2);
}

.testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.testimonials__dot.is-active {
  width: 24px;
  border-radius: var(--border-radius-full);
  background: var(--clr-accent);
  box-shadow: 0 0 10px var(--clr-accent-glow);
}

@media (max-width: 1024px) {
  .testimonial-card {
    flex: 0 0 calc(50% - var(--sp-3));
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 85%;
  }
}


/* ══════════════════════════════════════════════════════════════
   CTA / BANNER SECTION
   ══════════════════════════════════════════════════════════════ */

.cta-banner {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(244, 168, 199, 0.08) 0%,
    var(--clr-bg-elevated) 40%,
    rgba(244, 168, 199, 0.05) 100%
  );
  border: 1px solid var(--border-accent);
  border-radius: var(--border-radius-xl);
  padding: var(--sp-12) var(--sp-10);
  text-align: center;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--clr-accent);
  filter: blur(150px);
  opacity: 0.06;
  pointer-events: none;
}

.cta-banner__title {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: var(--fw-extrabold);
  margin-bottom: var(--sp-4);
}

.cta-banner__text {
  max-width: 550px;
  margin-inline: auto;
  color: var(--clr-text-secondary);
  margin-bottom: var(--sp-8);
}

.cta-banner__actions {
  display: flex;
  justify-content: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .cta-banner {
    padding: var(--sp-8) var(--sp-6);
  }
}


/* ══════════════════════════════════════════════════════════════
   TRUSTED BY / PARTNERS SECTION
   ══════════════════════════════════════════════════════════════ */

.trusted {
  text-align: center;
}

.trusted__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-10);
  flex-wrap: wrap;
  opacity: 0.4;
  filter: grayscale(100%);
  transition: all var(--transition-smooth);
}

.trusted__logos:hover {
  opacity: 0.6;
  filter: grayscale(50%);
}

.trusted__logo {
  height: 32px;
  object-fit: contain;
}


/* ══════════════════════════════════════════════════════════════
   HERO BADGE & STAT PILLS (matching index.html markup)
   ══════════════════════════════════════════════════════════════ */

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(244, 168, 199, 0.08);
  border: 1px solid rgba(244, 168, 199, 0.2);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #f4a8c7;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease;
}

.hero__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: #f0f0f0;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero__title-accent {
  background: linear-gradient(135deg, #f4a8c7, #f8c4d9, #e8a0d0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradientShift 4s ease infinite;
}

.hero__subtitle {
  font-size: 1.125rem;
  color: #999;
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s both;
  margin-bottom: 2.5rem;
}

.hero__stats-mini {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.8s both;
}

.hero__stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-size: 0.75rem;
  color: #999;
  font-weight: 500;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #555;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: fadeIn 1.5s ease 1.5s both;
}

.hero__scroll-arrow {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, #f4a8c7, transparent);
  animation: heroScrollPulse 2s ease-in-out infinite;
  border-radius: 999px;
}


/* ══════════════════════════════════════════════════════════════
   HOME STATS SECTION (matching index.html BEM classes)
   ══════════════════════════════════════════════════════════════ */

.stats__item {
  padding: 2rem 1rem;
  position: relative;
}

.stats__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.06);
}

.stats__number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #f0f0f0;
  line-height: 1;
  margin-bottom: 0.25rem;
  display: inline;
}

.stats__suffix {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #f4a8c7;
  margin-left: 2px;
  display: inline;
}

.stats__label {
  font-size: 0.8rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .stats__item:not(:last-child)::after { display: none; }
  .stats__number { font-size: 2rem; }
}


/* ══════════════════════════════════════════════════════════════
   RECOMMENDED SECTION (matching index.html markup)
   ══════════════════════════════════════════════════════════════ */

.recommended__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.recommended__cta {
  text-align: center;
}


/* ══════════════════════════════════════════════════════════════
   REVIEWS CAROUSEL (matching index.html markup)
   ══════════════════════════════════════════════════════════════ */

.reviews-carousel {
  position: relative;
  overflow: hidden;
}

.reviews-carousel__track {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.reviews-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.reviews-carousel__btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(42, 42, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #999;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
}

.reviews-carousel__btn:hover {
  color: #f4a8c7;
  border-color: rgba(244, 168, 199, 0.35);
  background: rgba(244, 168, 199, 0.08);
}

.reviews-carousel__dots {
  display: flex;
  gap: 6px;
}


/* ══════════════════════════════════════════════════════════════
   RETURNING BANNER & REFERRAL (matching index.html markup)
   ══════════════════════════════════════════════════════════════ */

.returning-banner__content {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: linear-gradient(135deg, rgba(244, 168, 199, 0.08) 0%, rgba(244, 168, 199, 0.03) 100%);
  border: 1px solid rgba(244, 168, 199, 0.2);
  border-radius: 20px;
  padding: 2rem 2.5rem;
  flex-wrap: wrap;
}

.returning-banner__icon {
  font-size: 3rem;
  flex-shrink: 0;
}

.returning-banner__text {
  flex: 1;
  min-width: 200px;
}

.returning-banner__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #f0f0f0;
  margin-bottom: 0.5rem;
}

.returning-banner__desc {
  font-size: 0.95rem;
  color: #999;
  line-height: 1.6;
}

.referral__content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}

.referral__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #f0f0f0;
  margin-bottom: 1rem;
}

.referral__desc {
  font-size: 0.95rem;
  color: #999;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.referral__codes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.referral__graphic-circle {
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(244, 168, 199, 0.08);
  border: 2px dashed rgba(244, 168, 199, 0.25);
  animation: float 4s ease-in-out infinite;
}

.referral__graphic-emoji {
  font-size: 3rem;
}

@media (max-width: 768px) {
  .referral__content { grid-template-columns: 1fr; }
  .referral__graphic { display: none; }
}


/* ══════════════════════════════════════════════════════════════
   HOW IT WORKS (matching index.html markup)
   ══════════════════════════════════════════════════════════════ */

.how-it-works__timeline {
  padding: 1rem 0;
}

