/* =============================================
   NATHI PRODUCTS - Main Stylesheet
   Domain: nathiproducts.com
   ============================================= */

/* --- Google Fonts & Variables --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800&display=swap');

:root {
  --green-dark: #1a6b1a;
  --green-mid: #2d8f2d;
  --green-light: #4caf50;
  --green-accent: #66bb6a;
  --blue-dark: #0d47a1;
  --blue-mid: #1565c0;
  --blue-light: #1e88e5;
  --blue-accent: #42a5f5;
  --gold: #f9a825;
  --gold-light: #ffd54f;
  --white: #ffffff;
  --off-white: #f8fffe;
  --light-gray: #f0f4f0;
  --text-dark: #1a2a1a;
  --text-mid: #3a5a3a;
  --text-light: #6a8a6a;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
  --shadow-xl: 0 16px 60px rgba(0,0,0,0.22);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Playfair Display', serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-primary);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-primary); }

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--light-gray); }
::-webkit-scrollbar-thumb { background: var(--green-mid); border-radius: 3px; }

/* =============================================
   TOP BAR
   ============================================= */
.top-bar {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--blue-dark) 100%);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.82rem;
  font-weight: 500;
}
.top-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar-contact { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.top-bar-contact a { color: rgba(255,255,255,0.9); display: flex; align-items: center; gap: 6px; transition: color var(--transition); }
.top-bar-contact a:hover { color: var(--gold-light); }
.top-bar-social { display: flex; align-items: center; gap: 10px; }
.top-bar-social a {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  color: white;
  font-size: 0.8rem;
  transition: var(--transition);
}
.top-bar-social a:hover { background: var(--gold); transform: scale(1.15); }

/* =============================================
   HEADER / NAVBAR
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-lg); }

.navbar {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 60px; width: auto; object-fit: contain; }
.nav-logo-text { display: none; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 2px; left: 16px; right: 16px;
  height: 2px;
  background: linear-gradient(90deg, var(--green-mid), var(--blue-mid));
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover { color: var(--green-mid); background: var(--light-gray); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--green-mid); }

.nav-cta {
  background: linear-gradient(135deg, var(--green-mid), var(--blue-mid));
  color: white !important;
  border-radius: var(--radius-xl) !important;
  padding: 10px 22px !important;
  font-weight: 600 !important;
  box-shadow: var(--shadow-sm);
  transition: var(--transition) !important;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-md) !important; }
.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: var(--transition);
}
/* Hamburger X-state removed — close is handled by dedicated button inside overlay */

/* Mobile Nav Overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(26, 107, 26, 0.97);
  z-index: 1100;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1.4rem;
  font-weight: 600;
  color: white;
  padding: 12px 40px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  text-align: center;
  letter-spacing: 0.5px;
}
.mobile-nav a:hover { background: rgba(255,255,255,0.15); color: var(--gold-light); }
.mobile-nav-close {
  position: fixed;
  top: 20px; right: 20px;
  background: rgba(255,255,255,0.2);
  border: none;
  border-radius: 50%;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.5rem;
  transition: var(--transition);
  z-index: 1101;
  cursor: pointer;
}
.mobile-nav-close:hover { background: rgba(255,255,255,0.4); transform: scale(1.1); }
/* Hide hamburger button when nav is open — only one close mechanism */
.mobile-nav.open ~ header .hamburger,
body.nav-open .hamburger { display: none !important; }

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #e8f5e9 0%, #e3f2fd 50%, #e8f5e9 100%);
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(45,143,45,0.08) 0%, transparent 60%),
    radial-gradient(circle at 80% 30%, rgba(21,101,192,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero-content { animation: slideInLeft 0.9s ease-out; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(45,143,45,0.12), rgba(21,101,192,0.12));
  border: 1px solid rgba(45,143,45,0.25);
  border-radius: var(--radius-xl);
  padding: 6px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.hero-badge i { color: var(--gold); }
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.hero-title span {
  background: linear-gradient(135deg, var(--green-mid), var(--blue-mid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
  color: white;
  border: none;
  border-radius: var(--radius-xl);
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(45,143,45,0.35);
  transition: var(--transition);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(45,143,45,0.45); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--blue-mid);
  border: 2px solid var(--blue-mid);
  border-radius: var(--radius-xl);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
}
.btn-secondary:hover { background: var(--blue-mid); color: white; transform: translateY(-3px); }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--green-mid), var(--blue-mid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.hero-stat-label { font-size: 0.78rem; color: var(--text-light); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }

.hero-visual { animation: slideInRight 0.9s ease-out; position: relative; }
.hero-product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.hero-product-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
}
.hero-product-card:hover { transform: translateY(-6px) scale(1.02); box-shadow: var(--shadow-xl); }
.hero-product-card img { width: 100%; height: 180px; object-fit: cover; }
.hero-product-card:first-child { grid-row: span 2; }
.hero-product-card:first-child img { height: 100%; min-height: 280px; }
.hero-floating-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--text-dark);
  border-radius: var(--radius-xl);
  padding: 4px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

/* =============================================
   SECTION COMMON
   ============================================= */
.section { padding: 80px 0; }
.section-alt { background: var(--light-gray); }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--green-mid);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title span {
  background: linear-gradient(135deg, var(--green-mid), var(--blue-mid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.8;
  margin-bottom: 48px;
}
.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin-left: auto; margin-right: auto; }

/* Divider */
.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--green-mid), var(--blue-mid));
  border-radius: 2px;
  margin-bottom: 16px;
}
.center .divider { margin-left: auto; margin-right: auto; }

/* =============================================
   ABOUT / WHY US
   ============================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image-wrap { position: relative; }
.about-image-wrap img { border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); }
.about-badge-float {
  position: absolute;
  bottom: -20px; right: -20px;
  background: linear-gradient(135deg, var(--green-mid), var(--blue-mid));
  color: white;
  border-radius: var(--radius-md);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-badge-float strong { display: block; font-size: 2rem; font-weight: 800; }
.about-badge-float span { font-size: 0.8rem; opacity: 0.9; }

.about-features { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.feature-item:hover { box-shadow: var(--shadow-md); transform: translateX(6px); }
.feature-icon {
  width: 48px; height: 48px; min-width: 48px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--green-light), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.1rem;
}
.feature-text h4 { font-weight: 600; font-size: 0.95rem; margin-bottom: 4px; }
.feature-text p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }

/* =============================================
   PRODUCT CATEGORIES / FILTER
   ============================================= */
.filter-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  justify-content: center;
}
.filter-tab {
  padding: 8px 22px;
  border: 2px solid #dde8dd;
  background: white;
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-mid);
  transition: var(--transition);
  cursor: pointer;
}
.filter-tab:hover,
.filter-tab.active {
  background: linear-gradient(135deg, var(--green-mid), var(--blue-mid));
  border-color: transparent;
  color: white;
  box-shadow: var(--shadow-sm);
}

/* =============================================
   PRODUCT CARDS
   ============================================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.product-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.product-card-img {
  position: relative;
  overflow: hidden;
  height: 260px;
}
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-card-badge {
  position: absolute;
  top: 14px; left: 14px;
  padding: 4px 12px;
  border-radius: var(--radius-xl);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge-new { background: var(--green-light); color: white; }
.badge-hot { background: #f44336; color: white; }
.badge-sale { background: var(--gold); color: var(--text-dark); }
.badge-natural { background: linear-gradient(135deg, #66bb6a, #42a5f5); color: white; }

.product-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.product-card-category { font-size: 0.72rem; font-weight: 600; color: var(--green-mid); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.product-card-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--text-dark); }
.product-card-desc { font-size: 0.84rem; color: var(--text-light); line-height: 1.7; margin-bottom: 14px; flex: 1; }
.product-card-features { display: flex; flex-direction: column; gap: 4px; margin-bottom: 16px; }
.product-card-features li {
  font-size: 0.8rem;
  color: var(--text-mid);
  display: flex; align-items: center; gap: 6px;
}
.product-card-features li i { color: var(--green-light); font-size: 0.7rem; }
.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--light-gray);
}
.product-price { font-size: 1.1rem; font-weight: 800; color: var(--green-dark); }
.product-price-sub { font-size: 0.75rem; color: var(--text-light); font-weight: 400; }
.btn-product {
  padding: 8px 18px;
  background: linear-gradient(135deg, var(--green-mid), var(--blue-mid));
  color: white;
  border: none;
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--transition);
  display: flex; align-items: center; gap: 6px;
}
.btn-product:hover { transform: scale(1.05); box-shadow: var(--shadow-sm); }

/* =============================================
   COMBO DEALS
   ============================================= */
.combos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.combo-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
}
.combo-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.combo-card img { width: 100%; height: 360px; object-fit: cover; transition: transform 0.5s ease; }
.combo-card:hover img { transform: scale(1.04); }
.combo-card-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, transparent 100%);
  padding: 24px 20px 20px;
  color: white;
}
.combo-card-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.combo-card-price { font-size: 1.4rem; font-weight: 800; color: var(--gold-light); }
.combo-ribbon {
  position: absolute;
  top: 16px; right: -8px;
  background: linear-gradient(135deg, var(--gold), #e65100);
  color: white;
  padding: 6px 20px 6px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: var(--shadow-md);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
}

/* =============================================
   SPECIAL SALE BANNER
   ============================================= */
.sale-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--blue-dark) 100%);
  padding: 60px 0;
  overflow: hidden;
  position: relative;
}
.sale-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.sale-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.sale-content { color: white; position: relative; z-index: 1; }
.sale-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--text-dark);
  padding: 4px 16px;
  border-radius: var(--radius-xl);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.sale-title { font-family: var(--font-heading); font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.1; margin-bottom: 12px; }
.sale-price { font-size: clamp(3rem, 7vw, 5rem); font-weight: 900; color: var(--gold-light); line-height: 1; margin-bottom: 20px; }
.sale-items { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.sale-item { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; opacity: 0.92; }
.sale-item i { color: var(--gold-light); }
.sale-images { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; position: relative; z-index: 1; }
.sale-images img { border-radius: var(--radius-md); box-shadow: var(--shadow-lg); transition: var(--transition); }
.sale-images img:hover { transform: scale(1.04) rotate(1deg); }

/* =============================================
   WELLNESS SECTION
   ============================================= */
.wellness-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.wellness-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
}
.wellness-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.wellness-card-img { height: 300px; overflow: hidden; position: relative; }
.wellness-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.wellness-card:hover .wellness-card-img img { transform: scale(1.06); }
.wellness-card-body { padding: 24px; }
.wellness-card-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-xl);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, rgba(244,67,54,0.12), rgba(233,30,99,0.12));
  color: #c62828;
}
.wellness-card-title { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.wellness-card-desc { font-size: 0.84rem; color: var(--text-light); line-height: 1.7; margin-bottom: 16px; }
.wellness-features { display: flex; flex-direction: column; gap: 6px; }
.wellness-features li { font-size: 0.82rem; color: var(--text-mid); display: flex; align-items: center; gap: 8px; }
.wellness-features li i { color: #66bb6a; width: 14px; }

/* =============================================
   RANK / MLM SECTION
   ============================================= */
.rank-section { background: linear-gradient(135deg, #e8f5e9 0%, #e3f2fd 100%); }
.rank-image-full {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  display: block;
}
.rank-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.rank-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-left: 4px solid transparent;
  position: relative;
  overflow: hidden;
}
.rank-card::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-light), var(--blue-light));
  opacity: 0.06;
  transform: translate(20px, -20px);
}
.rank-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.rank-card.rank-consultant { border-color: #66bb6a; }
.rank-card.rank-leader { border-color: #42a5f5; }
.rank-card.rank-gm { border-color: var(--gold); }
.rank-card.rank-chair { border-color: #ab47bc; }
.rank-card.rank-director { border-color: #ef5350; }
.rank-card.rank-vp { border-color: #ec407a; }
.rank-card.rank-president { border-color: #ff7043; }
.rank-card.rank-infinity { border-color: #5c6bc0; }
.rank-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 14px;
  background: var(--light-gray);
}
.rank-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.rank-requirement { font-size: 0.82rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 12px; }
.rank-reward {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--text-dark);
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 700;
}

/* =============================================
   EARNINGS / BONUS SECTION
   ============================================= */
.earnings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.earning-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.earning-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-mid), var(--blue-mid));
}
.earning-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.earning-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-light), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.5rem;
  margin: 0 auto 16px;
}
.earning-title { font-size: 1rem; font-weight: 700; margin-bottom: 20px; color: var(--text-dark); }
.earning-levels { display: flex; flex-direction: column; gap: 10px; }
.earning-level {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: var(--light-gray);
  border-radius: var(--radius-sm);
}
.earning-level-name { font-size: 0.82rem; font-weight: 600; color: var(--text-mid); }
.earning-level-pct {
  font-size: 1rem;
  font-weight: 800;
  color: var(--green-dark);
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute; top: 12px; right: 20px;
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--green-light);
  opacity: 0.15;
  line-height: 1;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testimonial-stars { color: var(--gold); margin-bottom: 12px; }
.testimonial-text { font-size: 0.9rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-light), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 1rem;
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; }
.testimonial-location { font-size: 0.78rem; color: var(--text-light); }

/* =============================================
   CONTACT / LOCATIONS
   ============================================= */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.location-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-top: 4px solid transparent;
  border-image: linear-gradient(90deg, var(--green-mid), var(--blue-mid)) 1;
}
.location-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.location-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--green-light), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.3rem;
  margin-bottom: 16px;
}
.location-city { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.location-address { font-size: 0.87rem; color: var(--text-mid); line-height: 1.8; }
.contact-form-section { margin-top: 60px; }
.contact-form {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  max-width: 700px;
  margin: 0 auto;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: span 2; }
.form-group label { font-size: 0.84rem; font-weight: 600; color: var(--text-mid); }
.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border: 2px solid #e0e8e0;
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: var(--transition);
  background: var(--off-white);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--green-mid); background: white; box-shadow: 0 0 0 3px rgba(45,143,45,0.12); }
.form-group textarea { min-height: 120px; resize: vertical; }
.btn-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--green-mid), var(--blue-mid));
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: linear-gradient(135deg, #0d1f0d 0%, #0a1428 100%);
  color: rgba(255,255,255,0.85);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-brand img { height: 65px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 0.87rem; line-height: 1.8; opacity: 0.8; max-width: 300px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social a:hover { background: linear-gradient(135deg, var(--green-light), var(--blue-light)); transform: translateY(-3px); }
.footer-heading { font-size: 0.95rem; font-weight: 700; color: white; margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.footer-heading::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: linear-gradient(90deg, var(--green-light), var(--blue-light));
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.84rem; opacity: 0.78; transition: var(--transition); display: flex; align-items: center; gap: 8px; }
.footer-links a:hover { opacity: 1; color: var(--green-accent); transform: translateX(4px); }
.footer-links a i { width: 14px; font-size: 0.78rem; }
.footer-contact-list { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item { display: flex; gap: 10px; font-size: 0.84rem; opacity: 0.8; align-items: flex-start; }
.footer-contact-item i { color: var(--green-accent); margin-top: 3px; min-width: 16px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  opacity: 0.7;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a:hover { color: var(--green-accent); }

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9999;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: var(--transition);
  animation: pulse 2.5s infinite;
}
.whatsapp-float:hover { transform: scale(1.15); box-shadow: 0 6px 28px rgba(37,211,102,0.6); animation: none; }

/* =============================================
   BACK TO TOP
   ============================================= */
.back-to-top {
  position: fixed;
  bottom: 96px; right: 28px;
  z-index: 9998;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-mid), var(--blue-mid));
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  border: none;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.7); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.animate-on-scroll {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.animate-ready {
  opacity: 0;
  transform: translateY(30px);
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   COMPENSATION PAGE SPECIFIC
   ============================================= */
.comp-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--blue-dark) 100%);
  color: white;
  padding: 100px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.comp-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.comp-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
}
.comp-hero-subtitle { font-size: 1.05rem; opacity: 0.88; max-width: 580px; margin: 0 auto; position: relative; }

/* Bonus Table */
.bonus-table-wrap { overflow-x: auto; border-radius: var(--radius-md); box-shadow: var(--shadow-md); }
.bonus-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.bonus-table thead { background: linear-gradient(135deg, var(--green-dark), var(--blue-dark)); color: white; }
.bonus-table th { padding: 16px 20px; text-align: center; font-weight: 600; font-size: 0.85rem; letter-spacing: 0.5px; }
.bonus-table td { padding: 14px 20px; text-align: center; border-bottom: 1px solid rgba(0,0,0,0.05); }
.bonus-table tbody tr { background: white; transition: var(--transition); }
.bonus-table tbody tr:hover { background: var(--light-gray); }
.bonus-table .bonus-type { text-align: left; font-weight: 600; display: flex; align-items: center; gap: 10px; }
.bonus-type-icon {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: white;
  background: linear-gradient(135deg, var(--green-light), var(--blue-light));
}
.pct-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: 0.9rem;
}
.pct-l1 { background: rgba(76,175,80,0.15); color: #2e7d32; }
.pct-l2 { background: rgba(33,150,243,0.15); color: #1565c0; }
.pct-l3 { background: rgba(255,152,0,0.15); color: #e65100; }

/* Rank Cards for Comp Page */
.comp-rank-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.comp-rank-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--green-light);
}
.comp-rank-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-6px); }
.comp-rank-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.comp-rank-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-mid), var(--blue-mid));
  color: white; font-weight: 800; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
}
.comp-rank-name { font-size: 1.1rem; font-weight: 700; }
.comp-rank-body p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.7; }
.comp-rank-reward {
  margin-top: 16px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(249,168,37,0.12), rgba(255,213,79,0.12));
  display: flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 0.9rem; color: #c77800;
}

/* Steps / Journey */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute; top: 36px; left: 60px; right: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--green-mid), var(--blue-mid));
  z-index: 0;
}
.step-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.step-card:hover { box-shadow: var(--shadow-md); transform: translateY(-6px); }
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-mid), var(--blue-mid));
  color: white; font-weight: 800; font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 14px rgba(45,143,45,0.3);
}
.step-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.step-desc { font-size: 0.82rem; color: var(--text-light); line-height: 1.6; }

/* =============================================
   STATS COUNTER
   ============================================= */
.stats-bar {
  background: linear-gradient(135deg, var(--green-dark), var(--blue-dark));
  padding: 50px 0;
  color: white;
}
.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
}
.stat-item-label { font-size: 0.85rem; opacity: 0.85; margin-top: 6px; }

/* =============================================
   FAQ
   ============================================= */
.faq-item {
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.05);
}
.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}
.faq-question:hover { color: var(--green-mid); }
.faq-question i { transition: transform var(--transition); min-width: 16px; color: var(--green-mid); }
.faq-question[aria-expanded="true"] i { transform: rotate(180deg); }
.faq-question[aria-expanded="true"] { color: var(--green-mid); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
  padding: 0 24px;
}
.faq-answer.open {
  max-height: 300px;
  padding: 0 24px 20px;
}

/* =============================================
   UTILITY / REPLACEMENT CLASSES
   (replaces all inline style="" attributes)
   ============================================= */

/* About section paragraphs */
.about-para {
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 24px;
  font-size: 0.95rem;
}
.about-para-last {
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 28px;
  font-size: 0.95rem;
}

/* Sale banner CTA – gold variant */
.btn-primary-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--gold), #e65100);
  color: white;
  border: none;
  border-radius: var(--radius-xl);
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(249,168,37,0.35);
  transition: var(--transition);
  font-family: var(--font-primary);
  cursor: pointer;
  text-decoration: none;
}
.btn-primary-gold:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(249,168,37,0.5); }

/* Secondary btn on dark background */
.btn-secondary-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-xl);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  font-family: var(--font-primary);
  cursor: pointer;
  text-decoration: none;
}
.btn-secondary-light:hover { background: rgba(255,255,255,0.15); transform: translateY(-3px); }

/* Rank section image wrapper */
.rank-image-wrapper {
  text-align: center;
  margin-bottom: 48px;
}

/* Rank icon colour variants */
.rank-icon-green  { background: linear-gradient(135deg,#a5d6a7,#66bb6a); color: white; }
.rank-icon-blue   { background: linear-gradient(135deg,#90caf9,#42a5f5); color: white; }
.rank-icon-gold   { background: linear-gradient(135deg,#ffe082,#ffd54f); color: #795548; }
.rank-icon-purple { background: linear-gradient(135deg,#ce93d8,#ab47bc); color: white; }
.rank-icon-red    { background: linear-gradient(135deg,#ef9a9a,#ef5350); color: white; }
.rank-icon-pink   { background: linear-gradient(135deg,#f48fb1,#ec407a); color: white; }
.rank-icon-orange { background: linear-gradient(135deg,#ffab91,#ff7043); color: white; }
.rank-icon-indigo { background: linear-gradient(135deg,#9fa8da,#5c6bc0); color: white; }

/* Rank CTA wrapper */
.rank-cta-wrap {
  text-align: center;
  margin-top: 40px;
}

/* Contact form headings (replaces inline h3/p styles) */
.contact-form-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
}
.contact-form-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 0.88rem;
  margin-bottom: 28px;
}

/* Form submit wrapper */
.form-submit-wrap { margin-top: 24px; }

/* Form status message */
.form-status {
  margin-top: 16px;
  text-align: center;
  font-size: 0.88rem;
  min-height: 20px;
}

/* ---- Compensation Plan inline replacements ---- */

/* Hero inner z-index wrapper */
.comp-hero-inner {
  position: relative;
  z-index: 1;
}

/* Comp hero badge (white variant) */
.hero-badge-light {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
  color: white;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-width: 1px;
  border-style: solid;
  border-radius: var(--radius-xl);
  padding: 6px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.hero-badge-light i { color: var(--gold-light); }

/* Comp hero title gold span */
.comp-hero-title-gold { color: var(--gold-light); }

/* Comp hero CTA row */
.comp-hero-cta {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Earning card – blue / gold variants */
.earning-icon-blue { background: linear-gradient(135deg, #42a5f5, #1565c0); }
.earning-icon-gold { background: linear-gradient(135deg, var(--gold), #e65100); }

/* Earning level dot colours */
.dot-green { color: var(--green-light); font-size: 0.5rem; margin-right: 4px; }
.dot-blue  { color: var(--blue-light);  font-size: 0.5rem; margin-right: 4px; }
.dot-gold  { color: var(--gold);        font-size: 0.5rem; margin-right: 4px; }

/* Earning card description */
.earning-desc {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 16px;
  text-align: center;
  line-height: 1.6;
}

/* Bonus table wrap margin */
.bonus-table-wrap-mt { margin-top: 48px; }

/* Bonus table left-aligned cells */
.td-left { text-align: left; padding-left: 24px; }
.td-rank { text-align: left; font-weight: 600; }
.td-num  { font-weight: 700; color: var(--green-dark); }

/* Rank card colour borders */
.comp-rank-card.rank-1 { border-top-color: #66bb6a; }
.comp-rank-card.rank-2 { border-top-color: #42a5f5; }
.comp-rank-card.rank-3 { border-top-color: #ffd54f; }
.comp-rank-card.rank-4 { border-top-color: #ab47bc; }
.comp-rank-card.rank-5 { border-top-color: #ef5350; }
.comp-rank-card.rank-6 { border-top-color: #ec407a; }
.comp-rank-card.rank-7 { border-top-color: #ff7043; }
.comp-rank-card.rank-8 { border-top-color: #5c6bc0; }

/* Rank num colour variants */
.rank-num-1 { background: linear-gradient(135deg,#66bb6a,#43a047); }
.rank-num-2 { background: linear-gradient(135deg,#42a5f5,#1565c0); }
.rank-num-3 { background: linear-gradient(135deg,#ffd54f,#f9a825); color: #795548 !important; }
.rank-num-4 { background: linear-gradient(135deg,#ab47bc,#7b1fa2); }
.rank-num-5 { background: linear-gradient(135deg,#ef5350,#c62828); }
.rank-num-6 { background: linear-gradient(135deg,#ec407a,#ad1457); }
.rank-num-7 { background: linear-gradient(135deg,#ff7043,#d84315); }
.rank-num-8 { background: linear-gradient(135deg,#5c6bc0,#283593); }

/* Infinity rank reward badge */
.pct-badge-gold {
  background: linear-gradient(135deg, var(--gold), #e65100);
  color: white;
  padding: 4px 14px;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-block;
}

/* Rank qualifications image wrapper */
.rank-img-wrap {
  text-align: center;
  margin-bottom: 48px;
}

/* Comp page profit example card img height */
.product-card-img-tall { height: 240px; }

/* Profit price colour */
.price-profit { color: var(--green-dark); }

/* Reseller profit example card */
.product-card-img-tall img { width: 100%; height: 100%; object-fit: cover; }

/* VP Additional Requirements label */
.comp-rank-body .req-label { margin-top: 8px; }

/* CTA section */
.cta-section-inner {
  text-align: center;
  position: relative;
  z-index: 1;
  color: white;
  max-width: 700px;
  margin: 0 auto;
}
.cta-section-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem,5vw,3.2rem);
  font-weight: 800;
  margin: 16px 0;
}
.cta-section-subheading { color: var(--gold-light); }
.cta-section-para {
  font-size: 1rem;
  opacity: 0.9;
  line-height: 1.8;
  margin-bottom: 32px;
}
.cta-section-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-section-stats {
  margin-top: 40px;
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-stat { text-align: center; }
.cta-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-light);
}
.cta-stat-label { font-size: 0.82rem; opacity: 0.8; }

/* FAQ wrapper */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ---- Inner Page Hero (About, How It Works, FAQ) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--blue-dark) 100%);
  color: white;
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-xl);
  padding: 6px 18px;
  font-size: 0.78rem;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}
.page-hero-badge i { color: var(--gold-light); }
.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem,5vw,3.4rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}
.page-hero-title span { color: var(--gold-light); }
.page-hero-subtitle {
  font-size: 1.05rem;
  opacity: 0.88;
  max-width: 580px;
  margin: 0 auto 24px;
  line-height: 1.8;
}
.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  opacity: 0.75;
  margin-top: 8px;
}
.page-hero-breadcrumb a { color: white; text-decoration: none; }
.page-hero-breadcrumb a:hover { opacity: 1; color: var(--gold-light); }

/* ---- About Us Page ---- */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-story-image { position: relative; }
.about-story-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); width: 100%; }
.about-story-stats {
  position: absolute;
  bottom: -20px; right: -20px;
  background: linear-gradient(135deg, var(--green-mid), var(--blue-mid));
  color: white;
  border-radius: var(--radius-md);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-story-stats-num { font-size: 2.2rem; font-weight: 800; display: block; }
.about-story-stats-label { font-size: 0.8rem; opacity: 0.9; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.value-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-mid), var(--blue-mid));
}
.value-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.value-card-icon {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-light), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: white;
  margin: 0 auto 20px;
}
.value-card-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.value-card-desc { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
}
.team-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}
.team-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-6px); }
.team-card-avatar {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, var(--green-light), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  color: white;
}
.team-card-body { padding: 24px 20px; }
.team-card-name { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.team-card-role { font-size: 0.82rem; color: var(--green-mid); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px; }
.team-card-bio { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }

/* ---- How It Works Page ---- */
.hiw-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.hiw-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: flex-start;
  padding: 48px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: relative;
}
.hiw-step:last-child { border-bottom: none; }
.hiw-step-num {
  width: 80px; height: 80px; min-width: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-mid), var(--blue-mid));
  color: white;
  font-weight: 800;
  font-size: 1.8rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(45,143,45,0.3);
  position: relative;
  z-index: 1;
}
.hiw-step-content h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; color: var(--text-dark); }
.hiw-step-content p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; }
.hiw-step-tips { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }
.hiw-step-tip {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; color: var(--text-mid);
  background: var(--light-gray);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
}
.hiw-step-tip i { color: var(--green-mid); min-width: 16px; }

.earning-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.earning-overview-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-top: 4px solid var(--green-light);
}
.earning-overview-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.earning-overview-card:nth-child(2) { border-top-color: var(--blue-light); }
.earning-overview-card:nth-child(3) { border-top-color: var(--gold); }
.earning-overview-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-light), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: white;
  margin: 0 auto 16px;
}
.earning-overview-card:nth-child(2) .earning-overview-icon { background: linear-gradient(135deg, #42a5f5, #1565c0); }
.earning-overview-card:nth-child(3) .earning-overview-icon { background: linear-gradient(135deg, var(--gold), #e65100); }
.earning-overview-title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.earning-overview-rates { display: flex; flex-direction: column; gap: 6px; margin: 16px 0; }
.earning-rate-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.85rem; padding: 6px 0; border-bottom: 1px solid var(--light-gray);
}
.earning-rate-label { color: var(--text-mid); }
.earning-rate-pct { font-weight: 700; color: var(--green-dark); }
.earning-overview-desc { font-size: 0.82rem; color: var(--text-light); line-height: 1.6; }

/* ---- FAQ Page ---- */
.faq-categories {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.faq-cat-btn {
  padding: 8px 22px;
  border: 2px solid #dde8dd;
  background: white;
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-mid);
  transition: var(--transition);
  cursor: pointer;
  font-family: var(--font-primary);
}
.faq-cat-btn:hover,
.faq-cat-btn.active {
  background: linear-gradient(135deg, var(--green-mid), var(--blue-mid));
  border-color: transparent;
  color: white;
  box-shadow: var(--shadow-sm);
}
.faq-group { display: flex; flex-direction: column; gap: 14px; margin-bottom: 48px; }
.faq-group-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--light-gray);
  display: flex; align-items: center; gap: 10px;
}
.faq-group-title i { color: var(--green-mid); }

/* Still need contact CTA at bottom of inner pages */
.inner-page-cta {
  background: linear-gradient(135deg, var(--green-dark), var(--blue-dark));
  color: white;
  padding: 70px 0;
  text-align: center;
}
.inner-page-cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem,4vw,2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.inner-page-cta h2 span { color: var(--gold-light); }
.inner-page-cta p { font-size: 1rem; opacity: 0.88; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }
.inner-page-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .earnings-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrap { max-width: 500px; margin: 0 auto; }
  .sale-inner { grid-template-columns: 1fr; }
  .sale-images { max-width: 400px; margin: 0 auto; }
  .stats-bar-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links { display: none; }
  .top-bar-contact { display: none; }
  .section { padding: 56px 0; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
  .combos-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
  .steps-grid { grid-template-columns: 1fr; }
  .comp-rank-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .navbar { padding: 0 16px; }
  .container { padding: 0 16px; }
  .hero-inner { padding: 40px 16px; }
  .products-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-stats { justify-content: center; }
  .contact-form { padding: 24px 20px; }
  .whatsapp-float { bottom: 20px; right: 20px; }
  .back-to-top { bottom: 84px; right: 20px; }
  .values-grid { grid-template-columns: 1fr; }
  .earning-overview-grid { grid-template-columns: 1fr; }
  .cta-section-stats { gap: 20px; }
  .page-hero { padding: 60px 0 40px; }
}

@media (max-width: 900px) {
  .about-story-grid { grid-template-columns: 1fr; }
  .about-story-image { max-width: 480px; margin: 0 auto; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .earning-overview-grid { grid-template-columns: 1fr; }
  .hiw-step { grid-template-columns: 60px 1fr; gap: 20px; }
  .hiw-step-num { width: 60px; height: 60px; min-width: 60px; font-size: 1.4rem; }
}
