/* ============================================================
   BAFURUTSHI GLOBAL NETWORKING — style.css
   Premium Corporate MLM Landing Page
   Colors: Navy #0B1C3D | Gold #F4B400 | White #FFFFFF | Green #28A745
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --navy:        #0B1C3D;
  --navy-light:  #112249;
  --navy-mid:    #0e2252;
  --navy-dark:   #07122a;
  --gold:        #F4B400;
  --gold-light:  #FFD34E;
  --gold-dark:   #C9940B;
  --white:       #FFFFFF;
  --off-white:   #F8F9FA;
  --green:       #28A745;
  --green-light: #34CE57;
  --text-muted:  #8899AA;
  --text-light:  #C5D3E0;
  --border:      rgba(244, 180, 0, 0.2);
  --glass-bg:    rgba(11, 28, 61, 0.6);
  --glass-border:rgba(255,255,255,0.1);
  --shadow-sm:   0 4px 20px rgba(0,0,0,0.3);
  --shadow-md:   0 8px 40px rgba(0,0,0,0.4);
  --shadow-lg:   0 16px 60px rgba(0,0,0,0.5);
  --shadow-gold: 0 0 30px rgba(244,180,0,0.3);
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   32px;
  --font-primary:'Poppins', sans-serif;
  --font-heading:'Montserrat', sans-serif;
  --transition:  all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --header-h:    76px;
}

/* ---------- 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);
  background-color: var(--navy);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 800;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img { max-width: 100%; display: block; }
ul  { list-style: none; }

/* ---------- Utility Classes ---------- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

.gold-text { color: var(--gold); }

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-intro {
  text-align: center;
  margin-bottom: 64px;
}

.section-heading {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtext {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 580px;
  margin: 0 auto;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(244,180,0,0.4);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(244,180,0,0.6);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.btn-outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-outline-white {
  background: transparent;
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-3px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.6);
}

.btn-lg  { padding: 16px 36px; font-size: 1rem; }
.btn-xl  { padding: 18px 44px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-outline-small {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition);
  margin-top: 12px;
}

.btn-outline-small:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(7, 18, 42, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  padding: 0 32px;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--navy);
  flex-shrink: 0;
}

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

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.08em;
}

.brand-sub {
  font-size: 0.62rem;
  color: var(--text-light);
  letter-spacing: 0.12em;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 8px 14px;
  border-radius: 8px;
  color: var(--text-light);
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  margin-left: 8px;
  box-shadow: 0 4px 15px rgba(37,211,102,0.35);
  transition: var(--transition);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(37,211,102,0.5);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
}

.hero-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
}

.hero-slide.active { opacity: 1; z-index: 1; }

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-slide.active .slide-bg {
  transform: scale(1);
}

/* Slide backgrounds — real network marketing images */
.slide-bg-1 {
  background-image:
    url('images/hero-slide-1.jpg');
  background-size: cover;
  background-position: center 30%;
}

.slide-bg-2 {
  background-image:
    url('images/hero-slide-2.jpg');
  background-size: cover;
  background-position: center center;
}

.slide-bg-3 {
  background-image:
    url('images/hero-slide-3.jpg');
  background-size: cover;
  background-position: center 40%;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(7,18,42,0.85) 0%,
    rgba(7,18,42,0.6) 50%,
    rgba(7,18,42,0.35) 100%
  );
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: calc(var(--header-h) + 40px) 64px 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244,180,0,0.15);
  border: 1px solid rgba(244,180,0,0.4);
  color: var(--gold);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-desc strong { color: var(--gold); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 16px 0;
  width: fit-content;
}

.hero-stat {
  text-align: center;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-stat strong {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold);
}

.hero-stat span {
  font-size: 0.75rem;
  color: var(--text-light);
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* Slider Controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.slider-btn:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.1);
}

.slider-prev { left: 24px; }
.slider-next { right: 24px; }

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 5px;
  box-shadow: 0 0 12px rgba(244,180,0,0.7);
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  padding: 18px 0;
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.trust-item i { font-size: 1rem; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(244,180,0,0.05) 0%, transparent 70%);
  pointer-events: none;
}

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

/* About Visual */
.about-visual {
  position: relative;
}

.about-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 420px;
  margin: 0 auto;
}

.about-logo-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-mid) 100%);
  border: 3px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  color: var(--gold);
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-md), inset 0 0 60px rgba(244,180,0,0.05);
}

.about-badge-float {
  position: absolute;
  top: 10%;
  right: -10%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-weight: 800;
  font-size: 0.85rem;
  z-index: 3;
  box-shadow: var(--shadow-gold);
  animation: float 3s ease-in-out infinite;
}

.about-badge-float i { font-size: 1.2rem; }

.about-stat-float {
  position: absolute;
  bottom: 10%;
  left: -8%;
  background: var(--green);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  z-index: 3;
  box-shadow: 0 8px 30px rgba(40,167,69,0.4);
  animation: float 3.5s ease-in-out infinite 0.5s;
}

.about-stat-float strong {
  font-size: 1.8rem;
  font-weight: 900;
  font-family: var(--font-heading);
}

.about-stat-float span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.about-card-glow {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,180,0,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.about-slogan {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dot-sep { color: var(--text-muted); }

/* About Content */
.about-content { max-width: 560px; }

.about-text {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.8;
}

.about-text strong { color: var(--gold); }

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0;
}

.pillar {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.pillar:hover {
  background: rgba(244,180,0,0.06);
  border-color: rgba(244,180,0,0.3);
  transform: translateX(6px);
}

.pillar-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.pillar-body h3 {
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 4px;
}

.pillar-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(40,167,69,0.1);
  border: 1px solid rgba(40,167,69,0.3);
  border-radius: 50px;
  color: var(--green-light);
  font-size: 0.82rem;
  font-weight: 600;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}

.how-section::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(244,180,0,0.04) 0%, transparent 60%);
  pointer-events: none;
}

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

.step-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(244,180,0,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-8px);
  border-color: rgba(244,180,0,0.4);
  box-shadow: var(--shadow-gold);
}

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

.step-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(244,180,0,0.1);
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 20px;
}

.step-icon-wrap {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--navy);
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(244,180,0,0.35);
  transition: var(--transition);
}

.step-card:hover .step-icon-wrap {
  transform: scale(1.1) rotate(5deg);
}

.step-title {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 700;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.step-desc strong { color: var(--gold); }

.step-arrow {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.2rem;
  z-index: 2;
  background: var(--navy-light);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--border);
}

/* ============================================================
   COMPENSATION PLANS
   ============================================================ */
.compensation-section {
  background: linear-gradient(180deg, var(--navy-light) 0%, var(--navy-dark) 100%);
  position: relative;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}

/* Single-card featured layout */
.plan-single-wrap {
  max-width: 1000px;
  margin: 0 auto;
}

.plan-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(244,180,0,0.4);
}

.plan-card-premium {
  border-color: rgba(244,180,0,0.4);
  background: rgba(244,180,0,0.05);
  box-shadow: 0 0 40px rgba(244,180,0,0.15);
}

/* Featured single plan card */
.plan-card-featured {
  border-color: rgba(244,180,0,0.45);
  background: rgba(244,180,0,0.04);
  box-shadow: 0 0 60px rgba(244,180,0,0.15), var(--shadow-md);
}

.plan-card-featured:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 80px rgba(244,180,0,0.25), var(--shadow-lg);
}

.plan-badge-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
}

.plan-body-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 32px 36px 36px;
}

.plan-featured-left { display: flex; flex-direction: column; gap: 0; }

.plan-featured-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.plan-matrix-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
}

/* Stage pills inside plan card */
.plan-stage-pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: 100%;
}

.stage-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 10px 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.stage-pill:hover {
  border-color: rgba(244,180,0,0.4);
  background: rgba(244,180,0,0.08);
}

.stage-pill-gold {
  background: rgba(244,180,0,0.12);
  border-color: rgba(244,180,0,0.5);
}

.pill-num {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pill-val {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--gold);
}

.plan-header {
  padding: 36px 32px 24px;
  text-align: center;
  border-bottom: 1px solid var(--glass-border);
  position: relative;
  background: linear-gradient(180deg, rgba(244,180,0,0.08) 0%, transparent 100%);
}

.plan-badge {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.plan-badge-premium {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
}

.plan-icon {
  font-size: 2.4rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.plan-name {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
}

.plan-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.plan-body {
  padding: 28px 32px;
}

.plan-entry {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  background: rgba(244,180,0,0.08);
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  border: 1px solid var(--border);
}

.plan-entry-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.plan-entry-price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold);
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-light);
}

.plan-features li i {
  color: var(--green);
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* Matrix Diagram */
.matrix-diagram {
  background: rgba(0,0,0,0.2);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--glass-border);
}

.matrix-row {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.matrix-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: rgba(244,180,0,0.12);
  border: 1px solid rgba(244,180,0,0.3);
  border-radius: 10px;
  font-size: 0.65rem;
  color: var(--gold);
  gap: 2px;
  transition: var(--transition);
  font-weight: 600;
}

.matrix-node.root {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(244,180,0,0.5);
}

.matrix-node.sm {
  width: 34px;
  height: 34px;
  font-size: 0.6rem;
}

.matrix-node i { font-size: 0.9rem; }
.matrix-node.sm i { font-size: 0.75rem; }

.matrix-connectors-2x2 {
  display: flex;
  gap: 60px;
}

.matrix-connectors-2x2.sub {
  gap: 24px;
}

.conn-line {
  width: 1px;
  height: 12px;
  background: rgba(244,180,0,0.3);
  display: block;
}

/* ============================================================
   INCOME STAGES
   ============================================================ */
.stages-section {
  background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy) 100%);
}

.stages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.stage-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}

.stage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
}

.stage-card:hover {
  transform: translateY(-10px);
  border-color: rgba(244,180,0,0.5);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 30px rgba(244,180,0,0.15);
}

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

.stage-6 {
  border-color: rgba(244,180,0,0.4);
  background: rgba(244,180,0,0.07);
  grid-column: span 1;
}

.stage-number {
  position: absolute;
  top: 16px;
  left: 20px;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.06);
  line-height: 1;
}

/* 2x2 Matrix tag on each stage card */
.stage-matrix-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(244,180,0,0.12);
  border: 1px solid rgba(244,180,0,0.35);
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
}

.stage-matrix-tag-gold {
  background: rgba(244,180,0,0.2);
  border-color: rgba(244,180,0,0.6);
  color: var(--gold-light);
  box-shadow: 0 0 10px rgba(244,180,0,0.2);
}

.stage-icon-wrap {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
  border: 2px solid var(--border);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--gold);
  margin: 0 auto 16px;
  transition: var(--transition);
}

.stage-card:hover .stage-icon-wrap {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  border-color: var(--gold);
  transform: scale(1.1);
}

.premium-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  color: var(--navy) !important;
  border-color: var(--gold) !important;
  box-shadow: var(--shadow-gold);
}

.stage-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.stage-earnings {
  display: flex;
  justify-content: center;
  gap: 0;
  background: rgba(0,0,0,0.2);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 16px;
  border: 1px solid var(--glass-border);
}

.earning-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.earning-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.earning-value {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
}

.earning-value.total {
  color: var(--gold);
  font-size: 1.5rem;
}

.earning-divider {
  width: 1px;
  background: var(--glass-border);
  margin: 0 8px;
  align-self: stretch;
}

.stage-bonus {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(40,167,69,0.1);
  border: 1px solid rgba(40,167,69,0.2);
  border-radius: 50px;
  color: var(--green-light);
  font-size: 0.82rem;
  font-weight: 600;
}

.stage-bonus-premium {
  background: rgba(244,180,0,0.15);
  border-color: rgba(244,180,0,0.4);
  color: var(--gold);
  font-size: 0.9rem;
}

/* Earnings Summary Bars */
.earnings-summary {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.earnings-summary-title {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 28px;
  text-align: center;
}

.earnings-bars {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.earnings-bar-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  align-items: center;
}

.bar-label {
  font-size: 0.88rem;
  color: var(--text-light);
  font-weight: 500;
  text-align: right;
}

.bar-track {
  height: 28px;
  background: rgba(255,255,255,0.06);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}

.bar-fill {
  height: 100%;
  width: 0;
  border-radius: 14px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 12px;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
  position: relative;
}

.bar-fill.animated {
  width: var(--bar-w);
}

.bar-fill span {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--navy);
  white-space: nowrap;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section {
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%);
}

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

.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-6px);
  background: rgba(244,180,0,0.07);
  border-color: rgba(244,180,0,0.4);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.why-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(244,180,0,0.15), rgba(244,180,0,0.05));
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  margin: 0 auto 16px;
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  transform: scale(1.1) rotate(5deg);
}

.why-card h3 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 10px;
  font-weight: 700;
}

.why-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   JOIN SECTION
   ============================================================ */
.join-section {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
}

.join-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-bottom: 64px;
}

.join-step {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}

.join-step:hover {
  transform: translateY(-6px);
  border-color: rgba(244,180,0,0.4);
  box-shadow: var(--shadow-gold);
}

.join-step-icon {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.join-step-icon > i {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(244,180,0,0.35);
}

.step-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 28px;
  height: 28px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(40,167,69,0.4);
}

.join-step h3 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 10px;
}

.join-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.join-step p strong { color: var(--gold); }

.join-step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.4rem;
  padding: 0 16px;
  margin-top: 60px;
}

/* Join CTA Box */
.join-cta-box {
  background: linear-gradient(135deg, rgba(244,180,0,0.1) 0%, rgba(244,180,0,0.03) 100%);
  border: 1px solid rgba(244,180,0,0.3);
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
}

.join-cta-content h3 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 12px;
}

.join-cta-content p {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 28px;
}

.join-cta-content p strong { color: var(--gold); }

.join-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #050f20 0%, #0B1C3D 50%, #071830 100%);
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(244,180,0,0.12) 0%, transparent 60%),
    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='%23F4B400' 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");
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-urgency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(40,167,69,0.15);
  border: 1px solid rgba(40,167,69,0.4);
  color: var(--green-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: pulse 2s ease-in-out infinite;
}

.cta-heading {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-subtext {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.7;
}

.cta-number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 32px;
}

.cta-number i {
  font-size: 2rem;
  color: #25D366;
}

.cta-number a { color: var(--gold); }

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 32px;
}

.cta-footer-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-footer-pills span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.cta-footer-pills span i { color: var(--green-light); font-size: 0.8rem; }

/* ============================================================
   LAUNCH SECTION
   ============================================================ */
.launch-section {
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-dark) 100%);
}

.launch-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 60px 80px;
  position: relative;
  overflow: hidden;
}

.launch-inner::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(244,180,0,0.1) 0%, transparent 60%);
}

.launch-rocket {
  font-size: 5rem;
  color: var(--gold);
  flex-shrink: 0;
  animation: rocket-float 2.5s ease-in-out infinite;
}

.launch-content { flex: 1; }

.launch-heading {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  margin: 12px 0;
}

.launch-tagline {
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 16px;
}

.launch-desc {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.launch-desc strong { color: var(--gold); }

/* Countdown */
.countdown-wrap {
  margin-bottom: 32px;
}

.countdown-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  font-weight: 600;
}

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

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 70px;
  background: rgba(244,180,0,0.1);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 8px;
}

.count-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.count-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.count-sep {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  opacity: 0.6;
  align-self: flex-start;
  margin-top: 8px;
  animation: blink 1s step-end infinite;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-dark);
  border-top: 1px solid var(--border);
}

.footer-top {
  padding: 80px 0 60px;
}

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

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

.footer-logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--navy);
}

.footer-brand-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.08em;
}

.footer-brand-sub {
  display: block;
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-brand-desc {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}

.footer-brand-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.footer-nav ul,
.footer-plans ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a,
.footer-plans a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-nav a::before,
.footer-plans a::before {
  content: '→';
  color: var(--gold);
  opacity: 0;
  transition: var(--transition);
  font-size: 0.75rem;
}

.footer-nav a:hover,
.footer-plans a:hover {
  color: var(--gold);
  transform: translateX(6px);
}

.footer-nav a:hover::before,
.footer-plans a:hover::before {
  opacity: 1;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-item i {
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item > div span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

.footer-contact-item > div a,
.footer-contact-item > div strong {
  color: var(--white);
  font-weight: 600;
  font-size: 0.92rem;
}

.footer-contact-item > div a:hover {
  color: var(--gold);
}

.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  margin-top: 8px;
  transition: var(--transition);
}

.footer-wa-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.5);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding: 24px 0;
}

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

.footer-copy {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-tagline {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.pill-sep { color: var(--text-muted); }

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  transition: var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 10px 32px rgba(37,211,102,0.7);
}

.wa-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37,211,102,0.4);
  animation: wa-pulse 2s ease-out infinite;
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 998;
  width: 44px;
  height: 44px;
  background: rgba(244,180,0,0.15);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

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

@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.8); opacity: 0; }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(40,167,69,0.4); }
  50%       { box-shadow: 0 0 0 8px rgba(40,167,69,0); }
}

@keyframes blink {
  50% { opacity: 0; }
}

/* ============================================================
   RESPONSIVE — Tablet (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {

  .steps-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .step-arrow { display: none; }

  .stages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .plan-body-featured {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .about-grid {
    gap: 48px;
  }

  .launch-inner {
    padding: 48px 48px;
    gap: 40px;
  }
}

/* ============================================================
   RESPONSIVE — Mobile (≤768px)
   ============================================================ */
@media (max-width: 768px) {

  :root { --header-h: 66px; }

  .section-padding { padding: 72px 0; }

  /* Navbar */
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 85vw);
    height: 100dvh;
    background: rgba(7, 18, 42, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    padding: calc(var(--header-h) + 24px) 24px 40px;
    gap: 4px;
    border-left: 1px solid var(--border);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1050;
    overflow-y: auto;
  }

  .nav-links.open { right: 0; }

  .nav-link {
    padding: 14px 16px;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
  }

  .nav-cta {
    margin: 12px 0 0;
    justify-content: center;
    padding: 14px;
  }

  /* Hero */
  .slide-content {
    padding: calc(var(--header-h) + 32px) 24px 80px;
  }

  .hero-title { font-size: clamp(1.8rem, 7vw, 2.6rem); }

  .hero-actions { flex-direction: column; align-items: flex-start; }

  .hero-stats {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding: 0;
  }

  .hero-stat { padding: 14px 20px; }

  .hero-stat-divider {
    width: auto;
    height: 1px;
    margin: 0;
  }

  .slider-btn { width: 36px; height: 36px; font-size: 0.85rem; }
  .slider-prev { left: 12px; }
  .slider-next { right: 12px; }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image-wrap { max-width: 280px; }

  .about-logo-circle { font-size: 4rem; }

  /* How it works */
  .steps-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Plans */
  .plans-grid {
    grid-template-columns: 1fr;
  }

  .plan-body-featured {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 20px;
  }

  .plan-stage-pills {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Stages */
  .stages-grid {
    grid-template-columns: 1fr;
  }

  .earnings-bar-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .bar-label { text-align: left; }

  /* Why */
  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  /* Join */
  .join-steps {
    grid-template-columns: 1fr;
  }

  .join-step-connector {
    transform: rotate(90deg);
    margin: 0 auto;
    padding: 8px 0;
  }

  .join-cta-box { padding: 32px 24px; }

  .join-cta-buttons { flex-direction: column; }

  .join-cta-buttons .btn { width: 100%; justify-content: center; }

  /* Launch */
  .launch-inner {
    flex-direction: column;
    text-align: center;
    padding: 40px 28px;
    gap: 28px;
  }

  .countdown { justify-content: center; }

  .countdown-item { min-width: 56px; }

  .count-num { font-size: 1.5rem; }

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

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  /* CTA */
  .cta-section { padding: 80px 0; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-number { font-size: 1.5rem; }

  /* Scroll/Float */
  .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; font-size: 1.5rem; }
  .scroll-top { bottom: 84px; right: 20px; }
}

/* ============================================================
   RESPONSIVE — Small Mobile (≤480px)
   ============================================================ */
@media (max-width: 480px) {

  .why-grid { grid-template-columns: 1fr; }

  .about-badge-float { right: 0; }
  .about-stat-float  { left: 0; }

  .earnings-summary { padding: 24px 16px; }

  .hero-title { font-size: clamp(1.6rem, 8vw, 2.2rem); }

  .cta-heading { font-size: 2rem; }

  .launch-inner { padding: 32px 20px; }

  .launch-rocket { font-size: 3.5rem; }

  .navbar { padding: 0 16px; }

  .container { padding: 0 16px; }
}

/* ============================================================
   AOS override — disable reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .slide-bg { transition: none; }
  .whatsapp-float,
  .about-badge-float,
  .about-stat-float,
  .launch-rocket { animation: none; }
}
