/* ============================================================
   Kome Agency India — kome-style.css  (PREMIUM v2)
   Komeagency.tech
   ============================================================ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: #080615;
  color: #DDD8F5;
  line-height: 1.7;
  overflow-x: hidden;
}
::selection { background: rgba(124,58,237,0.4); color: #fff; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #080615; }
::-webkit-scrollbar-thumb { background: #7C3AED; border-radius: 3px; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── Design Tokens ── */
:root {
  --primary: #7C3AED;
  --primary-dark: #5B21B6;
  --primary-light: #A78BFA;
  --primary-glow: rgba(124,58,237,0.35);
  --secondary: #F59E0B;
  --accent: #EC4899;
  --cyan: #06B6D4;
  --agency-green: #10B981;
  --agency-dark: #059669;
  --agency-glow: rgba(5,150,105,0.35);
  --dark: #080615;
  --dark-2: #100D28;
  --dark-3: #1A1640;
  --dark-4: #241F57;
  --white: #FFFFFF;
  --gray-50: #F8F7FF;
  --gray-100: #F0EEFF;
  --text-bright: #F4F1FF;
  --text: #C8C3E8;
  --text-muted: #7B76A0;
  --text-dark: #1A1730;
  --border: rgba(255,255,255,0.07);
  --border-purple: rgba(124,58,237,0.3);
  --border-green: rgba(5,150,105,0.3);
  --border-light: #E8E2FF;
  --grad-primary: linear-gradient(135deg, #7C3AED 0%, #EC4899 100%);
  --grad-host: linear-gradient(135deg, #6D28D9 0%, #A855F7 100%);
  --grad-agency: linear-gradient(135deg, #059669 0%, #34D399 100%);
  --grad-dark: linear-gradient(160deg, #080615 0%, #1A1640 100%);
  --grad-hero: linear-gradient(160deg, #080615 0%, #100D28 40%, #1A1640 100%);
  --grad-card: linear-gradient(135deg, rgba(124,58,237,0.08) 0%, rgba(168,85,247,0.04) 100%);
  --grad-card-green: linear-gradient(135deg, rgba(5,150,105,0.08) 0%, rgba(52,211,153,0.04) 100%);
  --grad-section-light: linear-gradient(180deg, #FAFBFF 0%, #F0EEFF 100%);
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.3);
  --shadow-md: 0 8px 32px rgba(124,58,237,0.2);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.5);
  --shadow-host: 0 6px 28px rgba(124,58,237,0.45);
  --shadow-agency: 0 6px 28px rgba(5,150,105,0.45);
  --shadow-glow-host: 0 0 60px rgba(124,58,237,0.2);
  --shadow-glow-agency: 0 0 60px rgba(5,150,105,0.15);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  --nav-h: 74px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition: all 0.3s var(--ease);
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-bright);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.1rem, 5.5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.65rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.12rem; }

.text-gradient {
  background: var(--grad-primary);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.text-host-gradient {
  background: var(--grad-host);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.text-agency-gradient {
  background: var(--grad-agency);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.text-shimmer {
  background: linear-gradient(90deg, #A78BFA 0%, #EC4899 40%, #F59E0B 70%, #A78BFA 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: shimmer 3s linear infinite;
}
@keyframes shimmer { to { background-position: 200% center; } }

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section-sm { padding: 60px 0; }
.section-lg { padding: 110px 0; }
.section-light {
  background: var(--grad-section-light);
  color: var(--text-dark);
}
.section-light h1, .section-light h2, .section-light h3, .section-light h4 { color: var(--text-dark); }
.section-light p { color: #453F72; }

/* ── Page Loader ── */
#page-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-ring {
  width: 48px; height: 48px;
  border: 3px solid rgba(124,58,237,0.2);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Back to Top ── */
.back-top {
  position: fixed; bottom: 100px; right: 28px; z-index: 997;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(124,58,237,0.15);
  border: 1px solid var(--border-purple);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--primary-light);
  cursor: pointer; transition: var(--transition);
  opacity: 0; visibility: hidden; transform: translateY(10px);
}
.back-top.visible { opacity: 1; visibility: visible; transform: none; }
.back-top:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: translateY(-2px); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-full);
  font-size: 0.95rem; font-weight: 700; letter-spacing: 0.2px;
  transition: var(--transition); white-space: nowrap;
  position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0); transition: background 0.2s ease;
}
.btn:hover::after { background: rgba(255,255,255,0.08); }

.btn-host {
  background: var(--grad-host); color: var(--white);
  box-shadow: var(--shadow-host);
}
.btn-host:hover { transform: translateY(-3px); box-shadow: 0 14px 42px rgba(109,40,217,0.55); }
.btn-host:active { transform: translateY(-1px); }

.btn-agency {
  background: var(--grad-agency); color: var(--white);
  box-shadow: var(--shadow-agency);
}
.btn-agency:hover { transform: translateY(-3px); box-shadow: 0 14px 42px rgba(5,150,105,0.55); }
.btn-agency:active { transform: translateY(-1px); }

.btn-outline {
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.25);
  color: var(--white);
  backdrop-filter: blur(8px);
}
.btn-outline:hover { border-color: var(--primary-light); background: rgba(124,58,237,0.12); transform: translateY(-2px); }

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

.btn-lg { padding: 17px 36px; font-size: 1.05rem; }
.btn-sm { padding: 9px 20px; font-size: 0.85rem; }

.btn-wa {
  background: linear-gradient(135deg, #25D366 0%, #20C35A 100%);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
}
.btn-wa:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(37,211,102,0.55); }

.btn-white { background: var(--white); color: var(--primary); font-weight: 800; }
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(255,255,255,0.25); }

.btn-group { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* ── Navigation ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 1000;
  display: flex; align-items: center;
  transition: var(--transition); padding: 0 24px;
}
.nav.scrolled {
  background: rgba(8,6,21,0.92);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo img { height: 38px; width: auto; object-fit: contain; }
.nav-logo-fallback {
  font-family: 'Space Grotesk', sans-serif; font-weight: 800; font-size: 1.15rem;
  background: var(--grad-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  padding: 8px 14px; font-size: 0.88rem; font-weight: 600;
  color: var(--text); border-radius: var(--radius-sm); transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white); background: rgba(124,58,237,0.15);
}
.nav-links a.active { color: var(--primary-light); }
.nav-cta { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.nav-cta .btn { padding: 9px 18px; font-size: 0.83rem; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; padding: 9px;
  cursor: pointer; background: rgba(255,255,255,0.06);
  border: 1px solid var(--border); border-radius: var(--radius-sm); transition: var(--transition);
}
.nav-toggle:hover { background: rgba(124,58,237,0.15); border-color: var(--border-purple); }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text-bright); border-radius: 2px; transition: var(--transition); }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: rgba(8,6,21,0.97); backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border); padding: 16px 20px;
  z-index: 999; flex-direction: column; gap: 2px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 12px 16px; font-size: 0.97rem; font-weight: 600;
  color: var(--text); border-radius: var(--radius-sm); transition: var(--transition);
}
.nav-mobile a:hover { color: var(--white); background: rgba(124,58,237,0.15); }
.nav-mobile .mobile-cta-group {
  display: flex; flex-direction: column; gap: 8px;
  margin-top: 12px; padding-top: 14px; border-top: 1px solid var(--border);
}
.nav-mobile .btn { width: 100%; justify-content: center; }

/* ── Hero ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; padding-top: var(--nav-h);
}
.hero-bg { position: absolute; inset: 0; background: var(--grad-hero); }
.hero-bg-img {
  position: absolute; inset: 0;
  background-image: url('images/hero.png');
  background-size: cover; background-position: center 20%;
  opacity: 0.15;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(8,6,21,0.95) 0%, rgba(16,13,40,0.85) 50%, rgba(26,22,64,0.75) 100%);
}
/* Geometric bg shapes */
.hero-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-shape {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.18;
  animation: float 8s ease-in-out infinite alternate;
}
.hero-shape-1 { width: 500px; height: 500px; background: #7C3AED; top: -150px; right: -100px; animation-duration: 10s; }
.hero-shape-2 { width: 350px; height: 350px; background: #EC4899; bottom: -80px; left: -80px; animation-duration: 8s; animation-delay: -4s; }
.hero-shape-3 { width: 200px; height: 200px; background: #06B6D4; top: 40%; left: 55%; animation-duration: 6s; animation-delay: -2s; opacity: 0.1; }

@keyframes float { from { transform: translateY(0) scale(1); } to { transform: translateY(-30px) scale(1.05); } }

.hero-content { position: relative; z-index: 2; max-width: 820px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.35);
  border-radius: var(--radius-full); padding: 7px 18px;
  font-size: 0.78rem; font-weight: 700; color: var(--primary-light);
  margin-bottom: 26px; letter-spacing: 1px; text-transform: uppercase;
  backdrop-filter: blur(10px);
}
.hero-badge .dot {
  width: 7px; height: 7px; border-radius: 50%; background: #34D399;
  box-shadow: 0 0 8px #34D399; animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot { 0%,100% { opacity:1; transform: scale(1); } 50% { opacity:0.5; transform: scale(1.3); } }

.hero h1 { font-size: clamp(2.2rem, 5.5vw, 4.2rem); font-weight: 800; margin-bottom: 20px; color: var(--white); letter-spacing: -0.025em; line-height: 1.1; }
.hero-sub { font-size: clamp(1rem, 2vw, 1.2rem); color: var(--text); max-width: 620px; margin-bottom: 40px; line-height: 1.8; }
.hero-sub strong { color: var(--text-bright); }

.hero-stats {
  display: flex; flex-wrap: wrap; gap: 36px;
  margin-top: 52px; padding-top: 40px; border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-family: 'Space Grotesk', sans-serif; font-size: 2.2rem; font-weight: 800;
  color: var(--white); line-height: 1; letter-spacing: -0.02em;
}
.hero-stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 5px; font-weight: 500; }

/* ── Section Labels & Headers ── */
.section-label {
  display: inline-block;
  background: rgba(124,58,237,0.1); border: 1px solid rgba(124,58,237,0.2);
  color: var(--primary-light); font-size: 0.74rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px; padding: 5px 16px;
  border-radius: var(--radius-full); margin-bottom: 14px;
}
.section-light .section-label { background: rgba(124,58,237,0.07); border-color: rgba(124,58,237,0.18); color: var(--primary); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { font-size: 1.05rem; color: var(--text); max-width: 640px; margin: 0 auto; line-height: 1.8; }
.section-light .section-header p { color: #453F72; }

/* ── Cards ── */
.card {
  background: var(--grad-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px; transition: var(--transition);
}
.card:hover { border-color: var(--border-purple); box-shadow: var(--shadow-md), var(--shadow-glow-host); transform: translateY(-5px); }
.card-light {
  background: #FFFFFF; border: 1px solid #EDE9FF;
  border-radius: var(--radius-lg); padding: 32px;
  box-shadow: 0 2px 12px rgba(124,58,237,0.06); transition: var(--transition);
}
.card-light:hover { border-color: rgba(124,58,237,0.25); box-shadow: 0 8px 36px rgba(124,58,237,0.12); transform: translateY(-5px); }
.card-icon {
  width: 54px; height: 54px; border-radius: var(--radius); margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
}
.card-icon-host { background: rgba(124,58,237,0.15); }
.card-icon-agency { background: rgba(5,150,105,0.12); }
.card-icon-accent { background: rgba(245,158,11,0.12); }

/* ── Grid ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ── Stats Bar ── */
.stats-bar { background: var(--dark-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 36px 0; }
.stats-bar-inner { display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 28px; }
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Space Grotesk', sans-serif; font-size: 2.4rem; font-weight: 800;
  color: var(--white); line-height: 1; letter-spacing: -0.02em;
}
.stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 7px; font-weight: 500; }

/* ── Program Cards ── */
.program-card {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  padding: 52px 44px; min-height: 460px; display: flex; flex-direction: column; justify-content: space-between;
  transition: var(--transition);
}
.program-card:hover { transform: translateY(-6px); }
.program-card-host {
  background: linear-gradient(145deg, #130A3A 0%, #2D1B69 60%, #130A3A 100%);
  border: 1px solid rgba(124,58,237,0.35);
  box-shadow: var(--shadow-glow-host);
}
.program-card-agency {
  background: linear-gradient(145deg, #041E13 0%, #0D4A2F 60%, #041E13 100%);
  border: 1px solid rgba(5,150,105,0.35);
  box-shadow: var(--shadow-glow-agency);
}
.program-card::before {
  content: ''; position: absolute; top: -120px; right: -120px;
  width: 320px; height: 320px; border-radius: 50%; opacity: 0.15;
}
.program-card-host::before { background: radial-gradient(circle, #A855F7 0%, transparent 70%); }
.program-card-agency::before { background: radial-gradient(circle, #34D399 0%, transparent 70%); }
.program-card-label {
  display: inline-block; padding: 5px 14px; border-radius: var(--radius-full);
  font-size: 0.74rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px;
}
.program-card-host .program-card-label { background: rgba(124,58,237,0.2); color: var(--primary-light); border: 1px solid rgba(124,58,237,0.35); }
.program-card-agency .program-card-label { background: rgba(5,150,105,0.2); color: #34D399; border: 1px solid rgba(5,150,105,0.35); }
.program-card h3 { font-size: 1.9rem; margin-bottom: 12px; }
.program-card p { color: var(--text); margin-bottom: 26px; line-height: 1.75; font-size: 0.97rem; }
.program-card-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 34px; }
.program-card-feature { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text); }
.check {
  width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 0.65rem; flex-shrink: 0; font-weight: 800;
}
.program-card-host .check { background: rgba(124,58,237,0.2); color: var(--primary-light); }
.program-card-agency .check { background: rgba(5,150,105,0.2); color: #34D399; }

/* ── Benefit Cards ── */
.benefit-card {
  display: flex; flex-direction: column; gap: 14px;
  padding: 28px 30px; border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(124,58,237,0.05) 0%, rgba(255,255,255,0.02) 100%);
  transition: var(--transition);
}
.benefit-card:hover { border-color: var(--border-purple); background: rgba(124,58,237,0.08); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.benefit-card-emoji { font-size: 2.2rem; }
.benefit-card h4 { color: var(--text-bright); font-size: 1.05rem; }
.benefit-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; }

/* ── Steps ── */
.steps { display: flex; flex-direction: column; }
.step { display: grid; grid-template-columns: 64px 1fr; gap: 24px; padding-bottom: 40px; position: relative; }
.step:not(:last-child)::after {
  content: ''; position: absolute; left: 31px; top: 64px; bottom: 0;
  width: 2px; background: linear-gradient(180deg, var(--primary) 0%, transparent 100%); opacity: 0.25;
}
.step-num {
  width: 64px; height: 64px; border-radius: var(--radius-full);
  background: var(--grad-host); display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 800; color: var(--white); flex-shrink: 0; box-shadow: var(--shadow-host);
}
.step-agency .step-num { background: var(--grad-agency); box-shadow: var(--shadow-agency); }
.step-content { padding-top: 16px; }
.step-content h4 { color: var(--text-bright); margin-bottom: 6px; font-size: 1.05rem; }
.step-content p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.65; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; background: rgba(255,255,255,0.02); transition: var(--transition); }
.faq-item.open { border-color: var(--border-purple); background: rgba(124,58,237,0.06); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 26px; font-size: 0.97rem; font-weight: 600; color: var(--text-bright);
  cursor: pointer; text-align: left; transition: var(--transition); background: none;
}
.faq-question:hover { color: var(--white); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0; transition: var(--transition); color: var(--primary-light);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(124,58,237,0.18); border-color: var(--border-purple); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-answer-inner { padding: 0 26px 22px; font-size: 0.93rem; color: var(--text); line-height: 1.75; }

.section-light .faq-item { background: #fff; border-color: #EDE9FF; }
.section-light .faq-item.open { background: #F7F4FF; border-color: rgba(124,58,237,0.25); }
.section-light .faq-question { color: var(--text-dark); }
.section-light .faq-answer-inner { color: #453F72; }

/* ── WhatsApp Float ── */
.wa-float {
  position: fixed; bottom: 30px; right: 28px; z-index: 9999;
  width: 62px; height: 62px; border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #1DA851);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.55); transition: var(--transition); cursor: pointer; text-decoration: none;
}
.wa-float:hover { transform: scale(1.12); box-shadow: 0 8px 36px rgba(37,211,102,0.7); }
.wa-float-tooltip {
  position: absolute; right: 76px; background: rgba(8,6,21,0.9);
  color: var(--white); font-size: 0.78rem; font-weight: 700; padding: 7px 14px;
  border-radius: var(--radius-sm); white-space: nowrap; border: 1px solid var(--border);
  opacity: 0; pointer-events: none; transition: opacity 0.25s ease;
}
.wa-float:hover .wa-float-tooltip { opacity: 1; }
.wa-float::after {
  content: ''; position: absolute; width: 100%; height: 100%;
  border-radius: 50%; background: rgba(37,211,102,0.35);
  animation: wa-ring 2.5s ease-out infinite;
}
@keyframes wa-ring { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(1.7); opacity: 0; } }

/* ── Sticky Mobile CTA ── */
.sticky-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 998;
  padding: 10px 14px; background: rgba(8,6,21,0.97); backdrop-filter: blur(20px);
  border-top: 1px solid var(--border); gap: 8px;
}
.sticky-cta .btn { flex: 1; justify-content: center; padding: 13px 14px; font-size: 0.87rem; }

/* ── WhatsApp Channel Card ── */
.wa-channel {
  background: linear-gradient(135deg, #061A0E 0%, #0D3520 100%);
  border: 1px solid rgba(37,211,102,0.25); border-radius: var(--radius-xl); padding: 52px 44px; text-align: center;
  position: relative; overflow: hidden;
}
.wa-channel::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 250px; height: 250px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,211,102,0.12) 0%, transparent 70%);
}
.wa-channel-icon { font-size: 3.2rem; margin-bottom: 18px; }
.wa-channel h3 { font-size: 1.7rem; margin-bottom: 12px; }
.wa-channel p { color: var(--text); margin-bottom: 28px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ── Resources ── */
.resource-card {
  display: flex; align-items: center; gap: 16px; padding: 20px 24px;
  border-radius: var(--radius-lg); border: 1px solid var(--border);
  background: rgba(255,255,255,0.02); transition: var(--transition); text-decoration: none;
}
.resource-card:hover { border-color: var(--border-purple); background: rgba(124,58,237,0.07); transform: translateX(5px); }
.resource-icon { width: 46px; height: 46px; border-radius: var(--radius); background: rgba(124,58,237,0.14); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.resource-text h4 { font-size: 0.95rem; color: var(--text-bright); margin-bottom: 3px; }
.resource-text p { font-size: 0.82rem; color: var(--text-muted); }
.resource-arrow { margin-left: auto; color: var(--text-muted); font-size: 1.1rem; transition: var(--transition); flex-shrink: 0; }
.resource-card:hover .resource-arrow { color: var(--primary-light); transform: translateX(4px); }

/* ── Trust Bar ── */
.trust-bar { padding: 20px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: rgba(255,255,255,0.015); }
.trust-bar-inner { display: flex; justify-content: center; flex-wrap: wrap; gap: 28px; align-items: center; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.83rem; color: var(--text-muted); font-weight: 600; }
.trust-item .trust-icon { font-size: 1rem; }

/* ── Testimonials ── */
.testimonial { padding: 32px; border-radius: var(--radius-lg); border: 1px solid var(--border); background: rgba(255,255,255,0.02); position: relative; transition: var(--transition); }
.testimonial:hover { border-color: var(--border-purple); transform: translateY(-4px); }
.testimonial::before { content: '"'; font-family: Georgia, serif; font-size: 6rem; color: rgba(124,58,237,0.15); position: absolute; top: 6px; left: 18px; line-height: 1; }
.testimonial-text { font-size: 0.95rem; color: var(--text); line-height: 1.75; margin-bottom: 22px; padding-top: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--grad-host); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1rem; color: var(--white); flex-shrink: 0; }
.testimonial-name { font-weight: 700; color: var(--text-bright); font-size: 0.9rem; }
.testimonial-role { font-size: 0.78rem; color: var(--text-muted); }
.stars { color: var(--secondary); font-size: 0.9rem; margin-bottom: 8px; letter-spacing: 2px; }

/* ── Two-Col ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* ── CTA Band ── */
.cta-band {
  background: var(--grad-primary); border-radius: var(--radius-xl); padding: 72px 56px; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='40' cy='40' r='30'/%3E%3C/g%3E%3C/svg%3E"); }
.cta-band::after { content: ''; position: absolute; top: -100px; right: -100px; width: 350px; height: 350px; border-radius: 50%; background: rgba(255,255,255,0.06); }
.cta-band h2 { color: var(--white); position: relative; z-index: 1; margin-bottom: 14px; font-size: clamp(1.6rem,3.5vw,2.5rem); }
.cta-band p { color: rgba(255,255,255,0.88); margin-bottom: 36px; position: relative; z-index: 1; font-size: 1.07rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-band .btn-group { justify-content: center; position: relative; z-index: 1; }

/* ── Feature List ── */
.feature-list { display: flex; flex-direction: column; gap: 18px; }
.feature-item { display: flex; align-items: flex-start; gap: 14px; }
.feature-icon { width: 38px; height: 38px; border-radius: var(--radius-sm); background: rgba(124,58,237,0.14); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.feature-icon-green { background: rgba(5,150,105,0.12); }
.feature-text h5 { color: var(--text-bright); font-size: 0.95rem; margin-bottom: 3px; }
.feature-text p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.65; }

/* ── Checklist ── */
.checklist { display: flex; flex-direction: column; gap: 10px; }
.checklist-item { display: flex; align-items: center; gap: 12px; font-size: 0.93rem; color: var(--text); }
.checklist-check { width: 22px; height: 22px; border-radius: 50%; background: rgba(124,58,237,0.14); border: 1px solid rgba(124,58,237,0.3); display: flex; align-items: center; justify-content: center; font-size: 0.68rem; color: var(--primary-light); flex-shrink: 0; font-weight: 800; }
.checklist-check-green { background: rgba(5,150,105,0.14); border-color: rgba(5,150,105,0.3); color: #34D399; }

/* ── Page Hero (inner) ── */
.page-hero {
  padding: calc(var(--nav-h) + 64px) 0 88px; background: var(--grad-hero);
  position: relative; overflow: hidden; text-align: center;
}
.page-hero::before { content: ''; position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(124,58,237,0.12) 0%, transparent 70%); top: -200px; left: 50%; transform: translateX(-50%); }
.page-hero-content { position: relative; z-index: 2; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.8rem; color: var(--text-muted); margin-bottom: 22px; }
.breadcrumb a { color: var(--text-muted); transition: var(--transition); }
.breadcrumb a:hover { color: var(--primary-light); }
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { font-size: 1.1rem; color: var(--text); max-width: 640px; margin: 0 auto 36px; }

/* ── Earnings Table ── */
.earnings-table { width: 100%; border-collapse: collapse; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
.earnings-table th { background: rgba(124,58,237,0.18); color: var(--text-bright); font-size: 0.83rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; padding: 15px 22px; text-align: left; }
.earnings-table td { padding: 14px 22px; border-top: 1px solid var(--border); color: var(--text); font-size: 0.9rem; }
.earnings-table tr:hover td { background: rgba(124,58,237,0.04); }
.earnings-table .highlight-row td { color: var(--secondary); font-weight: 700; }

/* ── Contact Form ── */
.contact-form { background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 40px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.87rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 13px 16px; color: var(--text-bright);
  font-size: 0.93rem; font-family: inherit; transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary); background: rgba(124,58,237,0.06); box-shadow: 0 0 0 3px rgba(124,58,237,0.12); }
.form-group select option { background: var(--dark-2); color: var(--text-bright); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }

/* ── Blog Cards ── */
.blog-card { background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-5px); border-color: var(--border-purple); box-shadow: var(--shadow-md); }
.blog-card-img { height: 160px; background: var(--grad-dark); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-tag { display: inline-block; background: rgba(124,58,237,0.12); color: var(--primary-light); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; padding: 3px 10px; border-radius: var(--radius-full); margin-bottom: 10px; }
.blog-card h4 { color: var(--text-bright); margin-bottom: 9px; font-size: 0.97rem; line-height: 1.4; }
.blog-card p { color: var(--text-muted); font-size: 0.84rem; flex: 1; line-height: 1.6; }
.blog-card-meta { display: flex; gap: 16px; font-size: 0.77rem; color: var(--text-muted); margin-top: 14px; }

/* ── Footer ── */
.footer { background: var(--dark); border-top: 1px solid var(--border); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 52px; padding-bottom: 52px; }
.footer-brand img { height: 36px; margin-bottom: 16px; }
.footer-brand-name { font-family: 'Space Grotesk', sans-serif; font-size: 1.15rem; font-weight: 800; margin-bottom: 12px; }
.footer-desc { font-size: 0.87rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 22px; max-width: 280px; }
.footer-social { display: flex; gap: 10px; }
.social-btn { width: 38px; height: 38px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.05); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: var(--transition); text-decoration: none; color: var(--text-muted); }
.social-btn:hover { background: rgba(124,58,237,0.2); border-color: var(--border-purple); color: var(--primary-light); transform: translateY(-2px); }
.footer-col h5 { font-size: 0.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-bright); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 0.87rem; color: var(--text-muted); transition: var(--transition); }
.footer-links a:hover { color: var(--primary-light); padding-left: 5px; }
.footer-bottom { border-top: 1px solid var(--border); padding: 22px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.8rem; color: var(--text-muted); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--primary-light); }

/* ── Scroll Reveal & Animations ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.revealed { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal-left.revealed { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal-right.revealed { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; gap: 44px; }
  .two-col.reverse { direction: ltr; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-lg { padding: 72px 0; }
  .container { padding: 0 18px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-bar-inner { justify-content: center; }
  .stat-item { min-width: 130px; }
  .hero-stats { gap: 22px; }
  .hero-stat-num { font-size: 1.8rem; }
  .program-card { padding: 36px 28px; min-height: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 70px; }
  .cta-band { padding: 48px 28px; }
  .contact-form { padding: 28px 20px; }
  .wa-channel { padding: 40px 28px; }
}
@media (max-width: 480px) {
  .btn { padding: 12px 20px; font-size: 0.87rem; }
  .btn-lg { padding: 14px 24px; font-size: 0.95rem; }
  .hero .btn-group { flex-direction: column; }
  .hero .btn-group .btn { width: 100%; justify-content: center; }
  .back-top { display: none; }
}
