/* ============================================================
   JUMS WORLD — Home CSS
   Brand: #FF6600 (primary), #FFB340 (light), #E63300 (deep)
   Font: Apple System Font Stack
   ============================================================ */

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

:root {
  --orange-primary:  #FF6600;
  --orange-light:    #FFB340;
  --orange-deep:     #E63300;
  --orange-soft:     #FFF0E6;
  --orange-mid:      #FF8C00;
  --white:           #FFFFFF;
  --dark:            #1A1A1A;
  --gray-dark:       #333333;
  --gray-mid:        #666666;
  --gray-light:      #F5F5F7;
  --gray-border:     #E5E5EA;
  --shadow-orange:   rgba(255, 102, 0, 0.18);
  --shadow-dark:     rgba(0, 0, 0, 0.10);
  --gradient-brand:  linear-gradient(135deg, #FFB340 0%, #FF6600 55%, #E63300 100%);
  --gradient-soft:   linear-gradient(135deg, #FFF0E6 0%, #FFE5CC 100%);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text',
               'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange-primary);
  background: var(--orange-soft);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.section-sub {
  font-size: 17px;
  color: var(--gray-mid);
  max-width: 560px;
  margin: 12px auto 0;
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  letter-spacing: 0.2px;
}

.btn-primary {
  background: var(--gradient-brand);
  color: var(--white);
  box-shadow: 0 6px 24px var(--shadow-orange);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(255,102,0,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--orange-primary);
  border: 2px solid var(--orange-primary);
}
.btn-outline:hover {
  background: var(--orange-primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--orange-primary);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.btn-white:hover {
  background: var(--orange-soft);
  transform: translateY(-2px);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 24px var(--shadow-dark);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-logo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
}

.navbar-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-size: 20px;
  font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.3px;
}

.brand-tagline {
  font-size: 10px;
  font-weight: 500;
  color: var(--gray-mid);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-dark);
  padding: 8px 16px;
  border-radius: 8px;
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--orange-primary);
  background: var(--orange-soft);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-actions .btn {
  padding: 10px 22px;
  font-size: 14px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--gradient-brand);
  padding-top: 72px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.06) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(0,0,0,0.08) 0%, transparent 40%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
}
.hero-orb-1 { width: 400px; height: 400px; background: #FFE0A0; top: -100px; left: -100px; }
.hero-orb-2 { width: 300px; height: 300px; background: #FF2200; bottom: -50px; right: 10%; }

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 80px 0 60px;
}

.hero-content { color: var(--white); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: 0.3px;
}

.hero-badge-dot {
  width: 8px; height: 8px;
  background: #7FFF00;
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-title {
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.hero-title .highlight {
  position: relative;
  display: inline-block;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0; right: 0;
  height: 4px;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
}

.hero-desc {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
  max-width: 500px;
  margin-bottom: 36px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 36px;
}

.hero-stat-item { text-align: left; }

.hero-stat-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
  letter-spacing: 0.5px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-float {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  padding: 32px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.2);
}

.hero-card-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.hero-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: var(--gray-light);
  transition: var(--transition);
}

.hero-step:hover { background: var(--orange-soft); }

.hero-step-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.hero-step-info {}

.hero-step-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
}

.hero-step-desc {
  font-size: 12px;
  color: var(--gray-mid);
  margin-top: 2px;
}

.hero-earn-badge {
  background: var(--gradient-brand);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-earn-label { font-size: 13px; opacity: 0.9; }
.hero-earn-amount { font-size: 26px; font-weight: 800; }

/* Floating badges */
.float-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  animation: float 3s ease-in-out infinite;
  z-index: 3;
}

.float-badge-1 { top: 20px; left: -40px; animation-delay: 0s; }
.float-badge-2 { bottom: 60px; right: -20px; animation-delay: 1.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.float-badge-icon { font-size: 24px; }
.float-badge-info {}
.float-badge-value { font-size: 14px; font-weight: 700; color: var(--dark); }
.float-badge-text  { font-size: 11px; color: var(--gray-mid); }

/* ============================================================
   DIVIDER
   ============================================================ */
.divider {
  height: 1px;
  background: var(--gray-border);
  margin: 0;
}

/* ============================================================
   BRANDS / TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--gray-light);
  padding: 28px 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-bar-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-mid);
  letter-spacing: 1px;
  text-transform: uppercase;
  flex-shrink: 0;
}

.trust-divider {
  width: 1px;
  height: 24px;
  background: var(--gray-border);
}

.trust-icons {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-icon-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-mid);
}

.trust-icon-item span { font-size: 20px; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  padding: 100px 0;
  background: var(--white);
}

.how-it-works .section-header {
  text-align: center;
  margin-bottom: 64px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.steps-grid::after {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--orange-primary), var(--orange-deep));
  z-index: 0;
}

.step-card {
  text-align: center;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.step-number-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.step-number {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: var(--white);
  font-size: 28px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px var(--shadow-orange);
  position: relative;
  z-index: 2;
}

.step-icon-circle {
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 30px; height: 30px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.step-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.step-card p {
  font-size: 15px;
  color: var(--gray-mid);
  line-height: 1.7;
}

/* ============================================================
   FEATURED PRODUCTS
   ============================================================ */
.products {
  padding: 100px 0;
  background: var(--gray-light);
}

.products .section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.products .section-header-left {}

.products-tabs {
  display: flex;
  gap: 8px;
  background: var(--white);
  padding: 6px;
  border-radius: 12px;
  box-shadow: 0 2px 8px var(--shadow-dark);
  margin-bottom: 40px;
}

.tab-btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-mid);
  cursor: pointer;
  border: none;
  background: transparent;
  transition: var(--transition);
}

.tab-btn.active, .tab-btn:hover {
  background: var(--gradient-brand);
  color: var(--white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 2px 12px var(--shadow-dark);
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px var(--shadow-orange);
}

.product-image {
  position: relative;
  aspect-ratio: 1;
  background: var(--gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  overflow: hidden;
}

.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--gradient-brand);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}

.product-wishlist {
  position: absolute;
  top: 12px; right: 12px;
  width: 36px; height: 36px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: var(--transition);
}
.product-wishlist:hover { background: var(--orange-soft); }

.product-info { padding: 18px; }

.product-category {
  font-size: 11px;
  font-weight: 600;
  color: var(--orange-primary);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.product-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
}

.stars { color: var(--orange-light); font-size: 13px; }
.rating-count { font-size: 12px; color: var(--gray-mid); }

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

.product-price {
  display: flex;
  flex-direction: column;
}

.price-current {
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
}

.price-original {
  font-size: 12px;
  color: var(--gray-mid);
  text-decoration: line-through;
}

.referral-earn {
  font-size: 11px;
  font-weight: 700;
  color: var(--orange-primary);
  background: var(--orange-soft);
  padding: 4px 10px;
  border-radius: 20px;
}

/* ============================================================
   REFERRAL PROGRAM
   ============================================================ */
.referral {
  padding: 100px 0;
  background: var(--white);
}

.referral-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.referral-visual {
  position: relative;
}

.referral-diagram {
  background: var(--gradient-soft);
  border-radius: var(--radius-xl);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.referral-diagram::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,102,0,0.08);
}

.referral-center {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  box-shadow: 0 8px 28px var(--shadow-orange);
  color: var(--white);
}

.referral-center-icon { font-size: 32px; }
.referral-center-text { font-size: 11px; font-weight: 700; letter-spacing: 0.5px; }

.referral-nodes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.referral-node {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
  box-shadow: 0 4px 16px var(--shadow-dark);
  transition: var(--transition);
}

.referral-node:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--shadow-orange);
}

.referral-node-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 8px;
}

.referral-node-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--dark);
}

.referral-node-earn {
  font-size: 11px;
  color: var(--orange-primary);
  font-weight: 600;
  margin-top: 2px;
}

.earn-badge-float {
  position: absolute;
  bottom: -20px;
  right: 24px;
  background: var(--gradient-brand);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px var(--shadow-orange);
  font-size: 14px;
  font-weight: 700;
}

.referral-content {}

.referral-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 32px 0;
}

.referral-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.referral-feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--orange-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  transition: var(--transition);
}

.referral-feature:hover .referral-feature-icon {
  background: var(--gradient-brand);
}

.referral-feature-text h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.referral-feature-text p {
  font-size: 14px;
  color: var(--gray-mid);
  line-height: 1.6;
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
  padding: 80px 0;
  background: var(--gradient-brand);
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 2;
}

.stat-item {
  text-align: center;
  color: var(--white);
}

.stat-icon {
  font-size: 36px;
  margin-bottom: 12px;
  display: block;
}

.stat-number {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 14px;
  opacity: 0.85;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ============================================================
   CATEGORIES
   ============================================================ */
.categories {
  padding: 100px 0;
  background: var(--gray-light);
}

.categories .section-header {
  text-align: center;
  margin-bottom: 48px;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.category-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 16px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 2px 8px var(--shadow-dark);
}

.category-card:hover {
  background: var(--gradient-brand);
  transform: translateY(-4px);
  box-shadow: 0 10px 32px var(--shadow-orange);
}

.category-card:hover .category-icon { background: rgba(255,255,255,0.2); }
.category-card:hover .category-name { color: var(--white); }

.category-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: var(--orange-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 14px;
  transition: var(--transition);
}

.category-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  transition: var(--transition);
}

.category-count {
  font-size: 11px;
  color: var(--gray-mid);
  margin-top: 4px;
}

.category-card:hover .category-count { color: rgba(255,255,255,0.8); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 100px 0;
  background: var(--white);
}

.testimonials .section-header {
  text-align: center;
  margin-bottom: 56px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--gray-light);
  border-radius: var(--radius-xl);
  padding: 32px;
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  background: var(--white);
  box-shadow: 0 16px 48px var(--shadow-dark);
  transform: translateY(-4px);
}

.testimonial-card.featured {
  background: var(--gradient-brand);
  color: var(--white);
}

.testimonial-quote {
  font-size: 40px;
  line-height: 1;
  color: var(--orange-primary);
  font-family: Georgia, serif;
  margin-bottom: 16px;
}

.testimonial-card.featured .testimonial-quote { color: rgba(255,255,255,0.5); }

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-dark);
  margin-bottom: 24px;
}

.testimonial-card.featured .testimonial-text { color: rgba(255,255,255,0.92); }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-card.featured .author-avatar {
  background: rgba(255,255,255,0.25);
}

.author-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
}

.testimonial-card.featured .author-name { color: var(--white); }

.author-role {
  font-size: 12px;
  color: var(--gray-mid);
  margin-top: 2px;
}

.testimonial-card.featured .author-role { color: rgba(255,255,255,0.75); }

.testimonial-earn {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--orange-primary);
  background: var(--orange-soft);
  padding: 4px 12px;
  border-radius: 20px;
}

.testimonial-card.featured .testimonial-earn {
  color: var(--orange-light);
  background: rgba(255,255,255,0.15);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  padding: 100px 0;
  background: var(--gray-light);
}

.cta-banner-inner {
  background: var(--gradient-brand);
  border-radius: var(--radius-xl);
  padding: 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner-inner::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
}

.cta-banner-inner::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -5%;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(0,0,0,0.07);
}

.cta-banner-content { position: relative; z-index: 2; }

.cta-banner h2 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.cta-banner p {
  font-size: 18px;
  color: rgba(255,255,255,0.88);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-banner-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-glass {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-glass:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
}

.footer-main {
  padding: 72px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 2fr 3fr;
  gap: 48px;
}

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo-img {
  width: 44px; height: 44px;
  border-radius: 10px;
}

.footer-brand-name {
  font-size: 22px;
  font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  cursor: pointer;
  transition: var(--transition);
}

.social-btn svg { display: block; }

.social-btn:hover {
  background: var(--gradient-brand);
  transform: translateY(-2px);
}

.footer-col-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 0.2px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-link:hover { color: var(--orange-primary); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 14px;
}

.footer-contact-icon { font-size: 16px; flex-shrink: 0; margin-top: 2px; color: rgba(255,255,255,0.55); line-height: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer-copyright span {
  color: var(--orange-primary);
  font-weight: 600;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-link {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
}

.footer-bottom-link:hover { color: var(--orange-primary); }

/* ============================================================
   DOWNLOAD APP SECTION
   ============================================================ */
.download-app {
  padding: 100px 0;
  background: var(--white);
}

.download-app-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.download-app-content {}

.download-app-content .section-title { text-align: left; }
.download-app-content .section-sub { text-align: left; margin-left: 0; }

.app-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0 36px;
}

.app-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--gray-dark);
  font-weight: 500;
}

.app-feature-check {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 12px;
  flex-shrink: 0;
}

.store-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--dark);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  cursor: pointer;
}

.store-btn:hover {
  background: var(--gradient-brand);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--shadow-orange);
}

.store-btn-icon { font-size: 24px; }

.store-btn-text { display: flex; flex-direction: column; line-height: 1.2; }
.store-btn-label { font-size: 10px; opacity: 0.7; }
.store-btn-name  { font-size: 15px; font-weight: 700; }

.download-app-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
}

.phone-mockup {
  width: 220px;
  height: 420px;
  background: var(--dark);
  border-radius: 36px;
  border: 6px solid #333;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.25);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  z-index: 2;
}

.phone-screen {
  flex: 1;
  background: var(--gradient-brand);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--white);
  text-align: center;
  padding: 20px;
}

.phone-app-logo {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.phone-app-name {
  font-size: 20px;
  font-weight: 800;
}

.phone-app-sub { font-size: 12px; opacity: 0.8; }

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 20px;
  background: var(--dark);
  border-radius: 10px;
  z-index: 10;
}

.phone-glow {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: var(--gradient-brand);
  opacity: 0.15;
  filter: blur(60px);
}

/* ============================================================
   NAVBAR TRANSPARENT → SCROLLED
   ============================================================ */
.navbar:not(.scrolled) .nav-link { color: rgba(255,255,255,0.9); }
.navbar:not(.scrolled) .nav-link:hover { background: rgba(255,255,255,0.15); color: var(--white); }
.navbar:not(.scrolled) .brand-name { -webkit-text-fill-color: var(--white); }
.navbar:not(.scrolled) .brand-tagline { color: rgba(255,255,255,0.7); }
.navbar:not(.scrolled) .btn-outline {
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}
.navbar:not(.scrolled) .btn-outline:hover { background: rgba(255,255,255,0.15); color: var(--white); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .categories-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-content { order: 1; }
  .hero-visual { order: 2; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::after { display: none; }
  .referral-inner { grid-template-columns: 1fr; gap: 48px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-grid > .footer-brand { grid-column: 1 / -1; }
  .download-app-inner { grid-template-columns: 1fr; text-align: center; gap: 48px; }
  .download-app-content .section-sub { margin: 12px auto 0; }
  .store-btns { justify-content: center; }
  .products .section-header { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 768px) {
  .navbar-nav { display: none; }
  .hamburger { display: flex; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner-inner { padding: 48px 24px; }
  .float-badge { display: none; }
}

@media (max-width: 540px) {
  .products-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 20px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .products-tabs { overflow-x: auto; }
}
