@charset "UTF-8";

/* ================================================
   CHINGARI AGENCY - Premium Website Stylesheet
   Colors: Purple #5B21B6 | Orange #EA580C
   ================================================ */

/* --- CSS Variables ----------------------------- */
:root {
  --purple-darkest: #1E0A3C;
  --purple-dark:    #2D1B69;
  --purple-primary: #5B21B6;
  --purple-medium:  #7C3AED;
  --purple-light:   #A78BFA;
  --purple-pale:    #EDE9FE;

  --orange-primary: #EA580C;
  --orange-light:   #FB923C;
  --orange-pale:    #FFF7ED;

  --gold: #D97706;

  --white:    #FFFFFF;
  --gray-50:  #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;

  --grad-orange: linear-gradient(135deg, #EA580C 0%, #FB923C 100%);
  --grad-purple: linear-gradient(135deg, #2D1B69 0%, #7C3AED 100%);
  --grad-hero:   linear-gradient(135deg, #1E0A3C 0%, #2D1B69 35%, #4C1D95 65%, #7C3AED 100%);
  --grad-dark:   linear-gradient(135deg, #0F0A1E 0%, #1E0A3C 100%);

  --shadow-sm:     0 1px 3px rgba(0,0,0,0.10), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md:     0 4px 16px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.06);
  --shadow-lg:     0 12px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.08);
  --shadow-xl:     0 24px 64px rgba(0,0,0,0.16), 0 8px 24px rgba(0,0,0,0.10);
  --shadow-purple: 0 8px 32px rgba(124,58,237,0.30);
  --shadow-orange: 0 8px 32px rgba(234,88,12,0.30);
  --shadow-green:  0 8px 32px rgba(37,211,102,0.35);

  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-2xl:  32px;
  --radius-full: 9999px;

  --font:           'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition:     all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease;
}

/* --- Reset ------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font); color: var(--gray-800); line-height: 1.6; overflow-x: hidden; background: var(--white); }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* --- Typography -------------------------------- */
h1 { font-size: clamp(1.9rem, 4.5vw, 3.25rem); font-weight: 800; line-height: 1.18; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.55rem, 3vw, 2.4rem);   font-weight: 700; line-height: 1.25; letter-spacing: -0.01em; }
h3 { font-size: clamp(1.1rem,  2vw, 1.55rem);  font-weight: 600; line-height: 1.35; }
h4 { font-size: 1.1rem; font-weight: 600; }
h5 { font-size: 1rem;   font-weight: 600; }

/* --- Utilities --------------------------------- */
.container    { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 800px;  margin: 0 auto; padding: 0 24px; }
.section      { padding: 88px 0; }
.section-sm   { padding: 64px 0; }
.section-xs   { padding: 48px 0; }
.text-center  { text-align: center; }
.bg-gray      { background: var(--gray-50); }

/* --- Section Head ------------------------------ */
.section-head { text-align: center; margin-bottom: 56px; }
.section-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(124,58,237,0.1), rgba(234,88,12,0.08));
  color: var(--purple-medium);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(124,58,237,0.18);
  margin-bottom: 18px;
}
.section-head h2 { color: var(--gray-900); margin-bottom: 16px; }
.section-head p  { color: var(--gray-500); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.section-head.light h2 { color: var(--white); }
.section-head.light p  { color: rgba(255,255,255,0.65); }
.section-head.light .eyebrow {
  background: rgba(255,255,255,0.12);
  color: var(--orange-light);
  border-color: rgba(255,255,255,0.2);
}

/* --- Gradient Text ----------------------------- */
.grad-text {
  background: var(--grad-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.grad-text-purple {
  background: linear-gradient(135deg, var(--purple-light), var(--orange-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ================================================
   GLOW KEYFRAMES
   ================================================ */
@keyframes glowPulseOrange {
  0%, 100% { box-shadow: 0 8px 32px rgba(234,88,12,0.32); }
  50%       { box-shadow: 0 8px 56px rgba(234,88,12,0.72), 0 0 100px rgba(251,146,60,0.28); }
}
@keyframes glowPulsePurple {
  0%, 100% { box-shadow: 0 8px 32px rgba(124,58,237,0.30); }
  50%       { box-shadow: 0 8px 56px rgba(124,58,237,0.70), 0 0 100px rgba(124,58,237,0.28); }
}
@keyframes glowPulseGreen {
  0%, 100% { box-shadow: 0 8px 32px rgba(37,211,102,0.40); }
  50%       { box-shadow: 0 8px 56px rgba(37,211,102,0.75), 0 0 100px rgba(37,211,102,0.32); }
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0px)   scale(1);    opacity: 0.55; }
  33%       { transform: translateY(-40px) scale(1.08); opacity: 0.85; }
  66%       { transform: translateY(20px)  scale(0.94); opacity: 0.65; }
}
@keyframes orbFloatSlow {
  0%, 100% { transform: translate(0px, 0px)    scale(1);    opacity: 0.45; }
  40%       { transform: translate(30px, -50px) scale(1.10); opacity: 0.80; }
  70%       { transform: translate(-20px, 25px) scale(0.92); opacity: 0.55; }
}
@keyframes shimmerSlide {
  0%   { background-position: -300% center; }
  100% { background-position:  300% center; }
}
@keyframes iconGlowPulse {
  0%, 100% { box-shadow: none; filter: brightness(1); }
  50%       { box-shadow: 0 0 20px rgba(124,58,237,0.40); filter: brightness(1.15); }
}
@keyframes textGlowOrange {
  0%, 100% { text-shadow: none; }
  50%       { text-shadow: 0 0 28px rgba(251,146,60,0.55), 0 0 56px rgba(234,88,12,0.25); }
}
@keyframes statNumGlow {
  0%, 100% { filter: brightness(1); }
  50%       { filter: brightness(1.2) drop-shadow(0 0 12px rgba(251,146,60,0.70)); }
}
@keyframes ringPulse {
  0%   { transform: scale(1);    opacity: 0.6; }
  50%  { transform: scale(1.08); opacity: 1;   }
  100% { transform: scale(1);    opacity: 0.6; }
}
@keyframes waSpin {
  0%, 100% { box-shadow: 0 8px 32px rgba(37,211,102,0.42); }
  50%       { box-shadow: 0 8px 64px rgba(37,211,102,0.80), 0 0 120px rgba(37,211,102,0.38); }
}
@keyframes heroGradientShift {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

/* ================================================
   BUTTONS
   ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 36px;
  border-radius: var(--radius-full);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
/* hover shimmer overlay via ::after */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: var(--transition-fast);
  pointer-events: none;
}
.btn:hover::after { opacity: 1; }

/* Shimmer sweep ::before on primary only */
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,0.25) 50%, transparent 100%);
  animation: shimmerSlide 3.5s linear infinite;
  pointer-events: none;
  z-index: 0;
}
/* keep text above shimmer */
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary > svg { position: relative; z-index: 1; }

.btn-primary {
  background: var(--grad-orange);
  color: var(--white);
  animation: glowPulseOrange 3s ease-in-out infinite;
}
.btn-primary:hover {
  transform: translateY(-2px);
  animation: none;
  box-shadow: 0 16px 56px rgba(234,88,12,0.55), 0 0 120px rgba(251,146,60,0.25);
  color: var(--white);
}

.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-purple {
  background: var(--grad-purple);
  color: var(--white);
  box-shadow: var(--shadow-purple);
}
.btn-purple:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 44px rgba(124,58,237,0.42);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--purple-dark);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: var(--shadow-green);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 44px rgba(37,211,102,0.45);
  color: var(--white);
  background: #22C55E;
}

.btn-lg  { padding: 18px 52px; font-size: 1.1rem; }
.btn-sm  { padding: 10px 24px; font-size: 0.875rem; }
.btn-xl  { padding: 22px 64px; font-size: 1.2rem; }

/* ================================================
   HEADER / NAV
   ================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.08); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo-wrap { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-img  { height: 42px; width: auto; }
.logo-fallback {
  font-size: 1.25rem;
  font-weight: 800;
  background: var(--grad-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
  color: var(--gray-700);
  font-weight: 500;
  font-size: 0.93rem;
  padding: 8px 14px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--purple-medium);
  background: rgba(124,58,237,0.07);
}

.header-cta { display: flex; align-items: center; gap: 12px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-md);
  background: none;
  border: none;
}
.hamburger .bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open .bar:nth-child(2) { opacity: 0; }
.hamburger.open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: white;
  padding: 16px 24px 24px;
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  z-index: 999;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  color: var(--gray-700);
  font-weight: 500;
  padding: 13px 16px;
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: var(--transition);
}
.mobile-nav a:hover { background: var(--gray-100); color: var(--purple-medium); }
.mobile-nav .mobile-cta { margin-top: 16px; display: block; text-align: center; }

.page-body { padding-top: 72px; }

/* ================================================
   HERO (Homepage)
   ================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 80px;
  background: linear-gradient(-45deg, #1E0A3C, #2D1B69, #4C1D95, #7C3AED, #5B21B6, #1E0A3C);
  background-size: 400% 400%;
  animation: heroGradientShift 14s ease infinite;
}

.hero-glow-1 {
  position: absolute;
  top: -20%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(234,88,12,0.18) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  animation: orbFloat 12s ease-in-out infinite;
}
.hero-glow-2 {
  position: absolute;
  bottom: -30%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(124,58,237,0.25) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  animation: orbFloatSlow 16s ease-in-out infinite;
}
.hero-glow-3 {
  position: absolute;
  bottom: 10%; left: 55%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(234,88,12,0.12) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  animation: orbFloat 10s ease-in-out infinite reverse;
}

.hero-content { position: relative; z-index: 2; text-align: center; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.10);
  color: var(--orange-light);
  border: 1px solid rgba(255,255,255,0.22);
  padding: 8px 22px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}
/* badge shimmer */
.hero-badge::after {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.20), transparent);
  animation: shimmerSlide 2.8s linear infinite;
  pointer-events: none;
}

.hero h1 { color: var(--white); max-width: 820px; margin: 0 auto 24px; }
.hero h1 .grad-text { animation: textGlowOrange 4s ease-in-out infinite; }

.hero-desc {
  color: rgba(255,255,255,0.78);
  font-size: 1.08rem;
  max-width: 620px;
  margin: 0 auto 44px;
  line-height: 1.75;
}

.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 64px; }

.hero-img-wrap {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
}
.hero-img-wrap img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: 0 48px 120px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.06);
}
.hero-img-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle at 50% 50%, rgba(124,58,237,0.25), transparent 70%);
  pointer-events: none;
  border-radius: var(--radius-2xl);
  animation: ringPulse 4s ease-in-out infinite;
}

.hero-stats { display: flex; gap: 48px; justify-content: center; margin-top: 72px; flex-wrap: wrap; }
.hero-stat-item { text-align: center; }
.hero-stat-item .stat-num {
  font-size: 2.1rem;
  font-weight: 800;
  display: block;
  background: var(--grad-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: statNumGlow 3.5s ease-in-out infinite;
}
.hero-stat-item .stat-lbl { font-size: 0.82rem; color: rgba(255,255,255,0.62); margin-top: 4px; display: block; letter-spacing: 0.04em; }

/* ================================================
   PAGE HERO (inner pages)
   ================================================ */
.page-hero {
  background: var(--grad-hero);
  padding: 80px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -30%; right: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(234,88,12,0.15), transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  animation: orbFloat 11s ease-in-out infinite;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -30%; left: 5%;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(124,58,237,0.20) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  animation: orbFloatSlow 13s ease-in-out infinite;
}
.page-hero .eyebrow {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  color: var(--orange-light);
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}
.page-hero h1 { color: var(--white); margin-bottom: 16px; max-width: 680px; margin-left: auto; margin-right: auto; position: relative; z-index: 2; }
.page-hero p  { color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto; font-size: 1.05rem; position: relative; z-index: 2; }

/* ================================================
   BREADCRUMB
   ================================================ */
.breadcrumb-bar { background: var(--gray-50); border-bottom: 1px solid var(--gray-200); padding: 12px 0; }
.bc-list { display: flex; align-items: center; gap: 6px; font-size: 0.83rem; color: var(--gray-500); }
.bc-list a { color: var(--purple-medium); }
.bc-list a:hover { color: var(--orange-primary); }
.bc-sep { color: var(--gray-300); font-size: 0.75rem; }

/* ================================================
   FEATURE CARDS
   ================================================ */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(285px, 1fr)); gap: 24px; }

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(234,88,12,0.10), 0 0 80px rgba(124,58,237,0.06);
}
.feature-card:hover::after {
  transform: scaleX(1);
  box-shadow: 0 0 16px rgba(234,88,12,0.60), 0 0 32px rgba(234,88,12,0.30);
}
.feature-card:hover .feature-icon { animation: iconGlowPulse 1.8s ease-in-out infinite; }

.feature-icon {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 22px;
  background: linear-gradient(135deg, rgba(124,58,237,0.09), rgba(234,88,12,0.07));
  border: 1px solid rgba(124,58,237,0.12);
  transition: var(--transition);
}
.feature-card h3 { color: var(--gray-900); margin-bottom: 12px; font-size: 1.12rem; }
.feature-card p  { color: var(--gray-500); font-size: 0.93rem; margin: 0; line-height: 1.65; }

.feature-card.dark { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.12); backdrop-filter: blur(8px); }
.feature-card.dark h3 { color: var(--white); }
.feature-card.dark p  { color: rgba(255,255,255,0.65); }

/* ================================================
   STEPS
   ================================================ */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.step-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--grad-purple);
  color: white;
  font-size: 1.35rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  animation: glowPulsePurple 3.2s ease-in-out infinite;
}
.step-card h3 { color: var(--gray-900); margin-bottom: 10px; font-size: 1.05rem; }
.step-card p  { color: var(--gray-500); font-size: 0.9rem; margin: 0; }

/* ================================================
   COMMISSION TABLE
   ================================================ */
.table-scroll { overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.comm-table { width: 100%; border-collapse: collapse; background: var(--white); font-size: 0.93rem; }
.comm-table thead th {
  background: var(--grad-purple);
  color: var(--white);
  padding: 16px 18px;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
}
.comm-table tbody td {
  padding: 14px 18px;
  text-align: center;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-700);
  transition: var(--transition-fast);
}
.comm-table tbody tr:hover td { background: rgba(124,58,237,0.04); }
.comm-table tbody tr:last-child td { border-bottom: none; }
.comm-table .class-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--grad-purple);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
}
.comm-table .ratio-cell { font-weight: 700; font-size: 1.02rem; }
.comm-table .top-tier .ratio-cell {
  color: var(--orange-primary);
  animation: statNumGlow 3s ease-in-out infinite;
}
.comm-table .top-tier td { background: linear-gradient(90deg, rgba(234,88,12,0.05), rgba(124,58,237,0.05)); }

/* ================================================
   FAQ ACCORDION
   ================================================ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: rgba(124,58,237,0.28); box-shadow: var(--shadow-md); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--gray-800);
  gap: 16px;
  user-select: none;
  transition: var(--transition);
}
.faq-q:hover { color: var(--purple-medium); }
.faq-item.open .faq-q { color: var(--purple-medium); background: rgba(124,58,237,0.04); }
.faq-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--gray-500);
  transition: var(--transition);
}
.faq-item.open .faq-icon { background: var(--purple-medium); color: white; transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 4px 24px 22px;
  color: var(--gray-600);
  font-size: 0.94rem;
  line-height: 1.72;
}
.faq-item.open .faq-a { display: block; }

/* ================================================
   STATS BAR
   ================================================ */
.stats-bar { background: var(--grad-purple); padding: 56px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 32px; }
.stat-block { text-align: center; }
.stat-block .s-num {
  font-size: 2.4rem;
  font-weight: 800;
  display: block;
  color: var(--orange-light);
  margin-bottom: 8px;
  animation: statNumGlow 3.5s ease-in-out infinite;
}
.stat-block .s-lbl { font-size: 0.9rem; color: rgba(255,255,255,0.70); display: block; }

/* ================================================
   EARNING CARDS
   ================================================ */
.earning-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.earning-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.earning-card:hover {
  background: rgba(255,255,255,0.13);
  transform: translateY(-4px);
  border-color: rgba(251,146,60,0.45);
  box-shadow: 0 0 32px rgba(234,88,12,0.18), 0 12px 40px rgba(0,0,0,0.15);
}
.earning-card .e-icon   { font-size: 2.2rem; margin-bottom: 16px; }
.earning-card .e-amount {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--orange-light);
  display: block;
  margin-bottom: 6px;
  text-shadow: 0 0 20px rgba(251,146,60,0.45);
  transition: text-shadow 0.3s;
}
.earning-card:hover .e-amount { text-shadow: 0 0 32px rgba(251,146,60,0.80), 0 0 64px rgba(234,88,12,0.40); }
.earning-card .e-label { color: rgba(255,255,255,0.70); font-size: 0.88rem; display: block; margin-bottom: 12px; }
.earning-card .e-desc  { color: rgba(255,255,255,0.55); font-size: 0.85rem; margin: 0; }

/* ================================================
   BLOG GRID
   ================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 28px; }
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.blog-thumb {
  height: 172px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.blog-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
}
/* shimmer on blog thumb hover */
.blog-card:hover .blog-thumb::before {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
  animation: shimmerSlide 1.5s linear infinite;
  z-index: 2;
  pointer-events: none;
}

.blog-body { padding: 24px; }
.blog-cat {
  display: inline-block;
  background: rgba(124,58,237,0.10);
  color: var(--purple-medium);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}
.blog-card h3 { font-size: 1.02rem; color: var(--gray-900); margin-bottom: 10px; line-height: 1.45; }
.blog-card p  { color: var(--gray-500); font-size: 0.88rem; margin: 0 0 16px; line-height: 1.6; }
.blog-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}
.blog-date { font-size: 0.78rem; color: var(--gray-400); }
.blog-more { font-size: 0.83rem; font-weight: 600; color: var(--purple-medium); display: flex; align-items: center; gap: 4px; }
.blog-more:hover { color: var(--orange-primary); }

/* Blog thumb colours */
.bt-1  { background: linear-gradient(135deg, #2D1B69, #7C3AED); }
.bt-2  { background: linear-gradient(135deg, #EA580C, #FB923C); }
.bt-3  { background: linear-gradient(135deg, #0F766E, #14B8A6); }
.bt-4  { background: linear-gradient(135deg, #1D4ED8, #60A5FA); }
.bt-5  { background: linear-gradient(135deg, #7C3AED, #EC4899); }
.bt-6  { background: linear-gradient(135deg, #D97706, #FCD34D); }
.bt-7  { background: linear-gradient(135deg, #065F46, #34D399); }
.bt-8  { background: linear-gradient(135deg, #831843, #F472B6); }
.bt-9  { background: linear-gradient(135deg, #1E3A5F, #38BDF8); }
.bt-10 { background: linear-gradient(135deg, #EA580C, #7C3AED); }
.bt-11 { background: linear-gradient(135deg, #5B21B6, #0EA5E9); }
.bt-12 { background: linear-gradient(135deg, #BE123C, #FB7185); }
.bt-13 { background: linear-gradient(135deg, #064E3B, #6EE7B7); }
.bt-14 { background: linear-gradient(135deg, #312E81, #818CF8); }
.bt-15 { background: linear-gradient(135deg, #78350F, #FDE68A); }
.bt-16 { background: linear-gradient(135deg, #0C4A6E, #7DD3FC); }
.bt-17 { background: linear-gradient(135deg, #4D7C0F, #A3E635); }
.bt-18 { background: linear-gradient(135deg, #4C1D95, #DDD6FE); }
.bt-19 { background: linear-gradient(135deg, #881337, #FDA4AF); }
.bt-20 { background: linear-gradient(135deg, #1E0A3C, #FB923C); }

/* ================================================
   CTA SECTION
   ================================================ */
.cta-section {
  background: var(--grad-hero);
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(234,88,12,0.14) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -20%; right: 10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(124,58,237,0.18) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  animation: orbFloat 14s ease-in-out infinite;
}
.cta-section h2  { color: var(--white); margin-bottom: 16px; position: relative; }
.cta-section p   { color: rgba(255,255,255,0.75); max-width: 540px; margin: 0 auto 36px; font-size: 1.05rem; position: relative; }
.cta-btns        { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ================================================
   INFO BOX
   ================================================ */
.info-box {
  background: linear-gradient(135deg, rgba(124,58,237,0.08), rgba(234,88,12,0.05));
  border: 1px solid rgba(124,58,237,0.18);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  transition: var(--transition);
}
.info-box:hover {
  box-shadow: 0 0 32px rgba(124,58,237,0.18), var(--shadow-md);
  border-color: rgba(124,58,237,0.32);
}
.info-box h4 { color: var(--purple-medium); margin-bottom: 10px; }
.info-box p  { color: var(--gray-600); font-size: 0.93rem; margin: 0; }

/* ================================================
   CHECK LIST
   ================================================ */
.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--gray-700);
  font-size: 0.95rem;
  line-height: 1.5;
}
.check-list li::before {
  content: '\2713';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--grad-orange);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.check-list.light li { color: rgba(255,255,255,0.85); }

/* ================================================
   TWO-COLUMN LAYOUT
   ================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-col.reverse > *:first-child { order: 2; }
.two-col.reverse > *:last-child  { order: 1; }
.two-col-content h2 { color: var(--gray-900); margin-bottom: 16px; }
.two-col-content p  { color: var(--gray-600); font-size: 0.97rem; margin-bottom: 24px; }
.col-visual-box {
  background: var(--grad-purple);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  box-shadow: var(--shadow-xl);
}

/* ================================================
   CONTACT
   ================================================ */
.contact-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: 56px 48px;
  box-shadow: var(--shadow-xl), 0 0 60px rgba(37,211,102,0.08);
  text-align: center;
  border: 1px solid var(--gray-100);
  transition: box-shadow 0.4s ease;
}
.contact-card:hover {
  box-shadow: var(--shadow-xl), 0 0 80px rgba(37,211,102,0.18), 0 0 160px rgba(37,211,102,0.08);
}
.contact-phone-num { font-size: 2.2rem; font-weight: 800; color: var(--gray-900); margin: 12px 0 32px; letter-spacing: -0.01em; }
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; margin-bottom: 36px; }
.service-chip {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  transition: var(--transition);
}
.service-chip:hover {
  border-color: rgba(124,58,237,0.30);
  background: rgba(124,58,237,0.04);
  box-shadow: 0 0 20px rgba(124,58,237,0.12);
}
.service-chip .s-icon { font-size: 1.8rem; margin-bottom: 8px; }
.service-chip h5 { color: var(--gray-700); font-size: 0.85rem; margin: 0; }

/* ================================================
   MISSION / ABOUT CARDS
   ================================================ */
.mission-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
  text-align: center;
  transition: var(--transition);
}
.mission-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(124,58,237,0.10);
}
.mission-icon { font-size: 2.5rem; margin-bottom: 18px; display: block; }
.mission-card h3 { color: var(--gray-900); margin-bottom: 12px; font-size: 1.12rem; }
.mission-card p  { color: var(--gray-500); font-size: 0.92rem; margin: 0; }

/* ================================================
   RULES CARDS
   ================================================ */
.rules-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.rule-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.rule-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grad-orange);
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-orange);
}
.rule-text h4 { color: var(--gray-800); margin-bottom: 6px; font-size: 0.97rem; }
.rule-text p  { color: var(--gray-500); font-size: 0.88rem; margin: 0; line-height: 1.55; }

/* ================================================
   WHATSAPP FLOATING BUTTON
   ================================================ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 14px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  animation: waSpin 2.8s ease-in-out infinite;
}
.wa-float:hover {
  transform: translateY(-3px);
  animation: none;
  box-shadow: 0 16px 64px rgba(37,211,102,0.72), 0 0 140px rgba(37,211,102,0.38);
  color: white;
  background: #22C55E;
}
/* pulse ring */
.wa-float::before {
  content: '';
  position: absolute;
  top: -7px; right: -7px; bottom: -7px; left: -7px;
  border-radius: 50px;
  border: 2px solid rgba(37,211,102,0.45);
  animation: ringPulse 2.2s ease-in-out infinite;
  pointer-events: none;
}
.wa-float svg { flex-shrink: 0; width: 22px; height: 22px; }

/* ================================================
   FOOTER
   ================================================ */
.site-footer { background: #0D0819; color: rgba(255,255,255,0.75); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand .logo-fallback { font-size: 1.4rem; margin-bottom: 16px; display: block; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; opacity: 0.6; margin: 0 0 24px; }
.footer-col h4 { color: var(--white); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 22px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a { color: rgba(255,255,255,0.55); font-size: 0.88rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--orange-light); }
.footer-contact a { display: flex; align-items: center; gap: 8px; color: #25D366; font-weight: 600; font-size: 0.92rem; transition: var(--transition); margin-bottom: 12px; }
.footer-contact a:hover { color: #4ADE80; }
.footer-contact p { font-size: 0.83rem; opacity: 0.5; margin: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-bottom p  { font-size: 0.82rem; opacity: 0.45; margin: 0; }
.footer-bottom a  { color: rgba(255,255,255,0.45); font-size: 0.82rem; }
.footer-bottom a:hover { color: var(--orange-light); }

/* ================================================
   SCROLL TO TOP
   ================================================ */
.scroll-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--purple-medium);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 998;
}
.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  animation: glowPulsePurple 2.5s ease-in-out infinite;
}
.scroll-top:hover {
  background: var(--orange-primary);
  animation: none;
  box-shadow: 0 0 32px rgba(234,88,12,0.60), 0 8px 24px rgba(234,88,12,0.30);
}

/* ================================================
   ANIMATIONS (fade-up)
   ================================================ */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.in { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }

/* ================================================
   REDUCE MOTION
   ================================================ */
@media (prefers-reduced-motion: reduce) {
  .btn-primary,
  .wa-float,
  .step-num,
  .scroll-top.visible,
  .hero-stat-item .stat-num,
  .stat-block .s-num,
  .comm-table .top-tier .ratio-cell,
  .hero-img-glow,
  .hero-badge::after,
  .btn-primary::before,
  .hero h1 .grad-text,
  .hero-glow-1,
  .hero-glow-2,
  .hero-glow-3,
  .page-hero::before,
  .page-hero::after,
  .cta-section::after,
  .wa-float::before,
  .hero {
    animation: none;
  }
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col.reverse > * { order: unset; }
}

@media (max-width: 768px) {
  .site-nav          { display: none; }
  .header-cta .btn   { display: none; }
  .hamburger         { display: flex; }

  .hero { padding: 80px 0 60px; }
  .hero-stats { gap: 28px; }
  .hero-stat-item .stat-num { font-size: 1.6rem; }

  .section    { padding: 64px 0; }
  .section-sm { padding: 48px 0; }

  .feature-grid { grid-template-columns: 1fr; }
  .blog-grid    { grid-template-columns: 1fr; }
  .steps-grid   { grid-template-columns: 1fr 1fr; }
  .stats-grid   { grid-template-columns: 1fr 1fr; }

  .footer-grid  { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }

  .contact-card { padding: 36px 24px; }
  .contact-phone-num { font-size: 1.7rem; }

  .wa-float { padding: 15px; border-radius: 50%; width: 56px; height: 56px; }
  .wa-float .wa-label { display: none; }

  .cta-btns  { flex-direction: column; align-items: center; }
  .hero-btns { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .footer-grid  { grid-template-columns: 1fr; }
  .steps-grid   { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .hero-btns .btn { width: 100%; max-width: 280px; }
}
