/* ============================================================
   VitokAgent.com — Premium Design System
   Vitok Agency India | Official Streamer & Agency Platform
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@400;500;600;700;800;900&display=swap');

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

:root {
  /* Brand Colors */
  --primary:        #FF6B35;
  --primary-dark:   #E8521A;
  --primary-light:  #FF8C5A;
  --secondary:      #FFB800;
  --secondary-dark: #E0A000;
  --accent:         #7C3AED;
  --accent-light:   #A78BFA;

  /* Dark Backgrounds */
  --dark:    #060B1A;
  --dark-2:  #0D1426;
  --dark-3:  #142038;
  --dark-4:  #1C2D50;

  /* Text */
  --text:       #EDF2FF;
  --text-muted: #8892A4;
  --text-dim:   #5A6478;
  --white:      #FFFFFF;

  /* Semantic */
  --success: #10B981;
  --warning: #F59E0B;
  --info:    #3B82F6;

  /* Glass / Cards */
  --card-bg:     rgba(255,255,255,0.04);
  --card-border: rgba(255,255,255,0.08);
  --glass-bg:    rgba(13,20,38,0.85);

  /* Gradients */
  --grad-primary:  linear-gradient(135deg, #FF6B35 0%, #FFB800 100%);
  --grad-accent:   linear-gradient(135deg, #7C3AED 0%, #FF6B35 100%);
  --grad-dark:     linear-gradient(180deg, #060B1A 0%, #0D1426 100%);
  --grad-hero:     linear-gradient(135deg, #060B1A 0%, #0D1426 50%, #142038 100%);
  --grad-card:     linear-gradient(145deg, rgba(255,107,53,0.08), rgba(255,184,0,0.04));
  --grad-glow:     radial-gradient(ellipse at 50% 0%, rgba(255,107,53,0.18) 0%, transparent 65%);

  /* Shadows */
  --shadow-sm:  0 2px 12px rgba(0,0,0,0.3);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.4);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.5);
  --shadow-glow:0 0 40px rgba(255,107,53,0.25);

  /* Borders / Radius */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Typography */
  --font-head: 'Poppins', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --trans: 0.28s var(--ease);

  /* Layout */
  --header-h: 74px;
  --max-w: 1200px;
  --max-w-lg: 1440px;
}

/* ── Base ── */
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Selection ── */
::selection { background: rgba(255,107,53,0.3); color: var(--white); }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-2); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ══════════════════════════════════════
   TYPOGRAPHY
══════════════════════════════════════ */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--text-muted); }

.text-gradient {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }

/* ══════════════════════════════════════
   LAYOUT UTILITIES
══════════════════════════════════════ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.container-lg {
  width: 100%;
  max-width: var(--max-w-lg);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 5rem 0;
}

.section-sm { padding: 3rem 0; }
.section-lg { padding: 7rem 0; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.gap-1 { gap: 0.5rem; } .gap-2 { gap: 1rem; } .gap-3 { gap: 1.5rem; }

/* ══════════════════════════════════════
   SECTION HEADERS
══════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,107,53,0.12);
  border: 1px solid rgba(255,107,53,0.25);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-title {
  margin-bottom: 1rem;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
}

.section-desc {
  max-width: 580px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  transition: var(--trans);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: var(--trans);
}

.btn:hover::before { background: rgba(255,255,255,0.08); }
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--grad-primary);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255,107,53,0.35);
}

.btn-primary:hover { box-shadow: 0 6px 30px rgba(255,107,53,0.5); transform: translateY(-2px); }

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.2);
}

.btn-secondary:hover { border-color: var(--primary); color: var(--primary); }

.btn-ghost {
  background: var(--card-bg);
  color: var(--text);
  border: 1px solid var(--card-border);
}

.btn-ghost:hover { background: rgba(255,107,53,0.1); border-color: rgba(255,107,53,0.3); }

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}

.btn-whatsapp:hover { box-shadow: 0 6px 30px rgba(37,211,102,0.5); transform: translateY(-2px); }

.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.85rem; }
.btn-lg { padding: 1.05rem 2.5rem; font-size: 1.05rem; }
.btn-xl { padding: 1.2rem 3rem; font-size: 1.1rem; }

/* ══════════════════════════════════════
   CARDS
══════════════════════════════════════ */
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-card);
  opacity: 0;
  transition: var(--trans);
}

.card:hover { border-color: rgba(255,107,53,0.25); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card:hover::before { opacity: 1; }

.card-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: rgba(255,107,53,0.12);
  border: 1px solid rgba(255,107,53,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  transition: var(--trans);
}

.card:hover .card-icon { background: rgba(255,107,53,0.2); transform: scale(1.08); }

.card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.card p { font-size: 0.92rem; }

/* ══════════════════════════════════════
   HEADER / NAVIGATION
══════════════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: var(--trans);
}

.header.scrolled {
  background: var(--glass-bg);
  border-bottom: 1px solid var(--card-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  line-height: 1.1;
}

.logo-text span { color: var(--primary); }

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: var(--trans);
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255,255,255,0.07); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
}

.menu-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--trans);
}

.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h); left: 0; right: 0;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--card-border);
  padding: 1rem 1.25rem 1.5rem;
  z-index: 999;
  flex-direction: column;
  gap: 0.25rem;
  animation: slideDown 0.2s var(--ease);
}

.mobile-nav.open { display: flex; }
.mobile-nav .nav-link { font-size: 1rem; padding: 0.75rem 1rem; }
.mobile-nav .mobile-ctas { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1rem; }

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════
   HERO SECTION
══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  padding-top: var(--header-h);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--grad-hero);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-bg-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(255,107,53,0.12) 0%, transparent 65%);
}

.hero-bg-glow-2 {
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.1) 0%, transparent 65%);
}

.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}

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

.hero-content {}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,107,53,0.1);
  border: 1px solid rgba(255,107,53,0.25);
  color: var(--primary-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}

.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--card-border);
}

.hero-stat-num {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.hero-image {
  position: relative;
}

.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border: 1px solid rgba(255,107,53,0.15);
}

.hero-image-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.hero-image-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-image-badge-icon { font-size: 1.5rem; }
.hero-image-badge-text { font-size: 0.8rem; color: var(--text-muted); }
.hero-image-badge-text strong { display: block; font-size: 1rem; color: var(--white); }

/* ══════════════════════════════════════
   TRUST BAR
══════════════════════════════════════ */
.trust-bar {
  background: var(--dark-2);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  padding: 1.25rem 0;
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
}

.trust-item-icon { font-size: 1.1rem; }

/* ══════════════════════════════════════
   FEATURE CARDS / BENEFITS
══════════════════════════════════════ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* ══════════════════════════════════════
   PROGRAMS SECTION
══════════════════════════════════════ */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.program-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: var(--trans);
}

.program-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-primary);
  opacity: 0;
  transition: var(--trans);
}

.program-card:hover { border-color: rgba(255,107,53,0.2); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.program-card:hover::after { opacity: 1; }

.program-number {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 900;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.15;
  position: absolute;
  top: 1rem; right: 1.5rem;
  line-height: 1;
}

.program-icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
}

.program-card h3 { font-size: 1.4rem; margin-bottom: 0.75rem; }
.program-card p { margin-bottom: 1.5rem; }

.program-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.program-feature {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.program-feature::before {
  content: '';
  width: 18px; height: 18px;
  background: rgba(255,107,53,0.15);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23FF6B35' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ══════════════════════════════════════
   EARNINGS SECTION
══════════════════════════════════════ */
.earnings-section {
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
}

.earnings-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-glow);
  pointer-events: none;
}

.earnings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.earning-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
  transition: var(--trans);
}

.earning-card:hover { border-color: rgba(255,184,0,0.3); transform: translateY(-3px); }

.earning-card-icon { font-size: 2rem; margin-bottom: 0.75rem; }

.earning-amount {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 0.35rem;
}

.earning-label { font-size: 0.82rem; color: var(--text-muted); }

/* Salary Table */
.salary-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.salary-table th {
  background: rgba(255,107,53,0.1);
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.salary-table td {
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--card-border);
  font-size: 0.92rem;
  color: var(--text-muted);
}

.salary-table tr:hover td { background: rgba(255,255,255,0.03); }
.salary-table .amount { font-weight: 700; color: var(--secondary); }
.salary-table .beans { color: var(--primary); }

/* ══════════════════════════════════════
   STEPS / HOW TO START
══════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  z-index: 0;
}

.step-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: var(--trans);
}

.step-card:hover { border-color: rgba(255,107,53,0.25); transform: translateY(-4px); }

.step-number {
  width: 44px; height: 44px;
  background: var(--grad-primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 auto 1rem;
  box-shadow: 0 4px 16px rgba(255,107,53,0.35);
}

.step-card h4 { font-size: 0.9rem; margin-bottom: 0.5rem; }
.step-card p { font-size: 0.8rem; }

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--trans);
}

.faq-item.open { border-color: rgba(255,107,53,0.25); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  transition: var(--trans);
}

.faq-question:hover { color: var(--white); }

.faq-icon {
  width: 28px; height: 28px;
  background: rgba(255,107,53,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--primary);
  transition: var(--trans);
}

.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(255,107,53,0.2); }

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
  border-top: 1px solid var(--card-border);
  padding-top: 1rem;
}

.faq-item.open .faq-answer { display: block; }

/* ══════════════════════════════════════
   WHATSAPP CHANNEL SECTION
══════════════════════════════════════ */
.whatsapp-section {
  background: linear-gradient(135deg, rgba(37,211,102,0.08) 0%, rgba(18,140,126,0.05) 100%);
  border: 1px solid rgba(37,211,102,0.15);
  border-radius: var(--radius-xl);
  padding: 3rem;
  text-align: center;
}

.whatsapp-icon {
  font-size: 4rem;
  margin-bottom: 1.25rem;
}

/* ══════════════════════════════════════
   NETWORK WEBSITES
══════════════════════════════════════ */
.network-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.network-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  color: var(--text-muted);
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--trans);
}

.network-link:hover { border-color: rgba(255,107,53,0.3); color: var(--primary); transform: translateY(-2px); }

/* ══════════════════════════════════════
   CTA BAND
══════════════════════════════════════ */
.cta-band {
  background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark-3) 100%);
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--card-border);
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255,107,53,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.cta-band h2 { margin-bottom: 1rem; }
.cta-band p { margin-bottom: 2.5rem; }
.cta-band-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: var(--dark-2);
  border-top: 1px solid var(--card-border);
  padding: 4rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--card-border);
  margin-bottom: 2rem;
}

.footer-brand {}
.footer-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer-logo img { height: 36px; width: auto; }
.footer-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.5rem; max-width: 300px; }

.footer-social { display: flex; gap: 0.75rem; }
.social-btn {
  width: 38px; height: 38px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: var(--trans);
  color: var(--text-muted);
}
.social-btn:hover { background: rgba(255,107,53,0.1); border-color: rgba(255,107,53,0.3); color: var(--primary); }

.footer-col h4 { font-size: 0.9rem; margin-bottom: 1.25rem; color: var(--white); }
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--trans);
  display: flex; align-items: center; gap: 0.4rem;
}
.footer-links a:hover { color: var(--primary); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--text-dim);
}

.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: var(--text-dim); transition: var(--trans); }
.footer-bottom-links a:hover { color: var(--primary); }

/* ══════════════════════════════════════
   FLOATING WHATSAPP
══════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.wa-float-btn {
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: var(--trans);
  font-size: 1.75rem;
  animation: waFloat 3s ease-in-out infinite;
}

.wa-float-btn:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.55); }

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

.wa-float-tooltip {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 0.6rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: var(--trans);
}

.wa-float:hover .wa-float-tooltip { opacity: 1; transform: translateX(0); }

/* ══════════════════════════════════════
   STICKY MOBILE CTA
══════════════════════════════════════ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--card-border);
  padding: 0.85rem 1.25rem;
  z-index: 800;
  gap: 0.75rem;
}

/* ══════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════ */
.page-hero {
  padding: calc(var(--header-h) + 4rem) 0 4rem;
  background: var(--grad-hero);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-glow);
  pointer-events: none;
}

.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.page-hero .breadcrumb a { color: var(--text-muted); transition: var(--trans); }
.page-hero .breadcrumb a:hover { color: var(--primary); }
.page-hero .breadcrumb span { color: var(--text-dim); }

.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { max-width: 600px; margin: 0 auto 2.5rem; font-size: 1.05rem; }

/* ══════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-content h2 { margin-bottom: 1rem; }
.about-content p { margin-bottom: 1.5rem; line-height: 1.8; }

.about-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.about-value {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  transition: var(--trans);
}

.about-value:hover { border-color: rgba(255,107,53,0.25); }
.about-value-icon { font-size: 1.5rem; margin-bottom: 0.6rem; }
.about-value h4 { font-size: 0.9rem; margin-bottom: 0.3rem; }
.about-value p { font-size: 0.82rem; }

.about-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image-wrap img { width: 100%; height: 500px; object-fit: cover; }

/* ══════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
}

.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { margin-bottom: 2rem; }

.contact-channels { display: flex; flex-direction: column; gap: 1rem; }

.contact-channel {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  transition: var(--trans);
}

.contact-channel:hover { border-color: rgba(255,107,53,0.25); transform: translateX(4px); }
.contact-channel-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-channel-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-dim); margin-bottom: 0.2rem; }
.contact-channel-value { font-weight: 600; font-size: 0.95rem; color: var(--white); }
.contact-channel-desc { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.25rem; }

.contact-form-wrap {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}

.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text); margin-bottom: 0.5rem; }

.form-input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.1rem;
  color: var(--text);
  font-size: 0.92rem;
  transition: var(--trans);
  outline: none;
}

.form-input:focus { border-color: var(--primary); background: rgba(255,107,53,0.05); }
.form-input::placeholder { color: var(--text-dim); }

textarea.form-input { min-height: 120px; resize: vertical; }

.form-select {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.1rem;
  color: var(--text);
  font-size: 0.92rem;
  outline: none;
  transition: var(--trans);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.form-select:focus { border-color: var(--primary); }
.form-select option { background: var(--dark-2); }

/* ══════════════════════════════════════
   BLOG PAGE
══════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--trans);
}

.blog-card:hover { border-color: rgba(255,107,53,0.2); transform: translateY(-4px); box-shadow: var(--shadow-md); }

.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--dark-3), var(--dark-4));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  overflow: hidden;
}

.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }

.blog-card-body { padding: 1.5rem; }

.blog-tag {
  display: inline-block;
  background: rgba(255,107,53,0.1);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.blog-card h3 { font-size: 1rem; margin-bottom: 0.6rem; line-height: 1.4; }
.blog-card h3 a { transition: var(--trans); }
.blog-card h3 a:hover { color: var(--primary); }
.blog-card p { font-size: 0.85rem; margin-bottom: 1.25rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* ══════════════════════════════════════
   EARNINGS PAGE SPECIFIC
══════════════════════════════════════ */
.bonus-tier {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: var(--trans);
  position: relative;
}

.bonus-tier.featured {
  border-color: rgba(255,184,0,0.3);
  background: linear-gradient(145deg, rgba(255,184,0,0.06), rgba(255,107,53,0.04));
}

.bonus-tier.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-full);
}

.bonus-beans {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.35rem;
}

.bonus-daily { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1rem; }

.bonus-reward {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--secondary);
}

/* Ranking Table */
.ranking-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}

.rank-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: var(--trans);
}

.rank-card.rank-1 { border-color: rgba(255,215,0,0.3); background: linear-gradient(145deg, rgba(255,215,0,0.06), transparent); }
.rank-card.rank-2 { border-color: rgba(192,192,192,0.3); background: linear-gradient(145deg, rgba(192,192,192,0.06), transparent); }
.rank-card.rank-3 { border-color: rgba(205,127,50,0.3); background: linear-gradient(145deg, rgba(205,127,50,0.06), transparent); }

.rank-medal { font-size: 2.5rem; margin-bottom: 0.75rem; }
.rank-position { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-dim); margin-bottom: 0.5rem; }
.rank-reward { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; color: var(--secondary); }

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(1) { transition-delay: 0.0s; }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }

/* ══════════════════════════════════════
   HIGHLIGHT / BADGES
══════════════════════════════════════ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
}

.badge-primary { background: rgba(255,107,53,0.12); color: var(--primary); border: 1px solid rgba(255,107,53,0.2); }
.badge-secondary { background: rgba(255,184,0,0.12); color: var(--secondary); border: 1px solid rgba(255,184,0,0.2); }
.badge-success { background: rgba(16,185,129,0.12); color: var(--success); border: 1px solid rgba(16,185,129,0.2); }
.badge-accent { background: rgba(124,58,237,0.12); color: var(--accent-light); border: 1px solid rgba(124,58,237,0.2); }

/* ══════════════════════════════════════
   STREAMER PAGE
══════════════════════════════════════ */
.who-can-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.who-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: var(--trans);
}

.who-card:hover { border-color: rgba(255,107,53,0.25); transform: translateY(-3px); }
.who-card-icon { font-size: 2rem; margin-bottom: 0.6rem; }
.who-card h4 { font-size: 0.9rem; }

/* ══════════════════════════════════════
   AGENCY PAGE
══════════════════════════════════════ */
.commission-highlight {
  background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
  border: 1px solid rgba(255,184,0,0.2);
  border-radius: var(--radius-xl);
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.commission-highlight::before {
  content: '';
  position: absolute;
  top: -30%; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 300px;
  background: radial-gradient(ellipse, rgba(255,184,0,0.1) 0%, transparent 70%);
}

.commission-pct {
  font-family: var(--font-head);
  font-size: 6rem;
  font-weight: 900;
  line-height: 1;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

/* ══════════════════════════════════════
   STAT COUNTERS
══════════════════════════════════════ */
.stats-band {
  background: var(--dark-2);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  padding: 3rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.4rem;
}

.stat-label { font-size: 0.88rem; color: var(--text-muted); }

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--trans);
}

.testimonial-card:hover { border-color: rgba(255,107,53,0.2); transform: translateY(-3px); }

.testimonial-stars { color: var(--secondary); font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--grad-primary); display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 700; color: var(--white); }
.testimonial-name { font-size: 0.88rem; font-weight: 600; color: var(--white); }
.testimonial-role { font-size: 0.78rem; color: var(--text-dim); }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .programs-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .section { padding: 3.5rem 0; }
  .section-lg { padding: 4.5rem 0; }

  .nav, .header-cta { display: none; }
  .menu-toggle { display: flex; }

  .hero-inner { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .hero-image { order: -1; }
  .hero-image-wrap img { height: 320px; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; gap: 1.5rem; }
  .hero-desc { margin: 0 auto 2rem; }
  .hero-badge { margin: 0 auto 1.5rem; display: inline-flex; }

  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .programs-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .about-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-image-wrap img { height: 280px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: 1rem; }

  .cta-band { padding: 2.5rem 1.5rem; }
  .whatsapp-section { padding: 2rem 1.5rem; }

  .sticky-cta { display: flex; }
  .wa-float { bottom: 5.5rem; }

  .salary-table { font-size: 0.85rem; }
  .salary-table th, .salary-table td { padding: 0.75rem; }
}

@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .hero-ctas { flex-direction: column; }
  .cta-band-btns { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .btn-xl { padding: 1rem 2rem; font-size: 1rem; }
}

/* ══════════════════════════════════════
   DOWNLOAD / REFERRAL SECTION
══════════════════════════════════════ */
.download-section {
  background: linear-gradient(135deg, rgba(255,107,53,0.08) 0%, rgba(124,58,237,0.06) 100%);
  border: 1px solid rgba(255,107,53,0.2);
  border-radius: var(--radius-xl);
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.download-section::before {
  content: '';
  position: absolute;
  top: -40%; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 350px;
  background: radial-gradient(ellipse, rgba(255,107,53,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.download-bilingual {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 2rem;
}

.download-bilingual p {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.5;
}

.download-bilingual p:last-child {
  font-size: 1rem;
  color: var(--text-muted);
}

.referral-box {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,107,53,0.3);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.5rem;
  margin: 1.5rem auto;
}

.referral-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  font-weight: 600;
}

.referral-code {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--secondary);
}

.referral-copy {
  background: rgba(255,184,0,0.12);
  border: 1px solid rgba(255,184,0,0.25);
  color: var(--secondary);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--trans);
}

.referral-copy:hover { background: rgba(255,184,0,0.22); }
.referral-copy.copied { background: rgba(16,185,129,0.15); color: var(--success); border-color: rgba(16,185,129,0.3); }

.download-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn-apk {
  background: linear-gradient(135deg, #7C3AED 0%, #4F46E5 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(124,58,237,0.35);
}

.btn-apk:hover { box-shadow: 0 6px 30px rgba(124,58,237,0.5); transform: translateY(-2px); }

/* ══════════════════════════════════════
   PRINT
══════════════════════════════════════ */
@media print {
  .header, .wa-float, .sticky-cta, .footer { display: none; }
  body { background: white; color: black; }
}
