/* ============================================================
   SPOT & OPTIONS — MOBILE DRAWER & NAVIGATION POLISH
   Dedicated Mobile Drawer Header, Close Button, Safe Area Margins
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=JetBrains+Mono:wght@500;700&display=swap');

:root {
  /* Colors */
  --bg-black:        #040508;
  --bg-surface:      #0a0c12;
  --bg-card:         #11141e;
  --bg-card-hover:   #171b29;
  --bg-subtle:       #1b2030;

  --accent-green:    #00FF66;
  --accent-green-hover: #00E055;
  --accent-green-glow: rgba(0, 255, 102, 0.28);
  
  --accent-telegram: #29AEF5;
  --accent-whatsapp: #25D366;
  --accent-instagram:#E1306C;

  --text-white:      #FFFFFF;
  --text-secondary:  #94A3B8;
  --text-muted:      #64748B;
  --text-dark:       #04060A;

  --border-subtle:   rgba(255, 255, 255, 0.08);
  --border-strong:   rgba(255, 255, 255, 0.16);
  --border-green:    rgba(0, 255, 102, 0.35);

  /* Typography */
  --font-sans:       'Plus Jakarta Sans', sans-serif;
  --font-heading:    'Outfit', sans-serif;
  --font-mono:       'JetBrains Mono', monospace;

  /* Radius */
  --radius-pill:     100px;
  --radius-xl:       32px;
  --radius-lg:       24px;
  --radius-md:       16px;
  --radius-sm:       10px;

  /* Transitions */
  --transition:      all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Strict Overflow Prevention */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden !important;
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  background-color: var(--bg-black);
  color: var(--text-white);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background-image: 
    radial-gradient(ellipse at 50% 0%, rgba(0, 255, 102, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 100% 60%, rgba(41, 174, 245, 0.04) 0%, transparent 50%);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-black);
}
::-webkit-scrollbar-thumb {
  background: #202536;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-green);
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: none;
  background: none;
  font-family: inherit;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

/* Layout Container */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
}

/* Typography Helpers */
.text-green { color: var(--accent-green); }
.text-gradient {
  background: linear-gradient(135deg, #00FF66 0%, #00E5FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   BUTTON SYSTEM
   ============================================================ */
.btn-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--accent-green);
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  box-shadow: 0 4px 20px var(--accent-green-glow);
  white-space: nowrap;
  text-align: center;
  max-width: 100%;
  min-height: 52px;
  box-sizing: border-box;
}

.btn-green i {
  font-size: 18px;
  flex-shrink: 0;
}

.btn-green:hover {
  background: var(--accent-green-hover);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px var(--accent-green-glow);
}

.btn-telegram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--accent-telegram);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(41, 174, 245, 0.3);
  white-space: nowrap;
  text-align: center;
  max-width: 100%;
  min-height: 52px;
  box-sizing: border-box;
}

.btn-telegram i {
  font-size: 18px;
  flex-shrink: 0;
}

.btn-telegram:hover {
  background: #1a96dc;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(41, 174, 245, 0.4);
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--bg-card);
  color: var(--text-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-strong);
  transition: var(--transition);
  white-space: nowrap;
  text-align: center;
  max-width: 100%;
  min-height: 52px;
  box-sizing: border-box;
}

.btn-dark i {
  font-size: 18px;
  flex-shrink: 0;
}

.btn-dark:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 13px;
  min-height: 40px;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
  min-height: 56px;
}

@media (max-width: 500px) {
  .btn-green, .btn-telegram, .btn-dark {
    width: 100%;
    font-size: 15px;
    padding: 14px 24px;
    white-space: normal;
    border-radius: var(--radius-pill);
  }

  .btn-lg {
    padding: 14px 24px;
    font-size: 15px;
    min-height: 52px;
  }
}

/* ============================================================
   NAVBAR & POLISHED MOBILE DRAWER
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(4, 5, 8, 0.94);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo-box {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(0, 255, 102, 0.1);
  border: 1px solid var(--border-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-green);
  font-size: 15px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
  }
}

.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--text-white);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-white);
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

@media (max-width: 860px) {
  .mobile-toggle {
    display: flex;
  }

  .nav-actions .btn-green,
  .nav-actions .btn-dark {
    display: none;
  }
}

/* Polished Fullscreen Mobile Menu Overlay Drawer */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(4, 5, 8, 0.98);
  backdrop-filter: blur(30px);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 20px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-top: env(safe-area-inset-top);
}

.mobile-close-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: var(--transition);
}

.mobile-close-btn:hover {
  background: var(--bg-card-hover);
  color: var(--accent-green);
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin: auto 0;
}

.mobile-menu-links a {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--text-white);
  transition: var(--transition);
}

.mobile-menu-links a:hover {
  color: var(--accent-green);
}

.mobile-menu-footer {
  width: 100%;
  padding-bottom: max(16px, env(safe-area-inset-bottom));
}

.mobile-floating-bar {
  display: none;
  position: fixed;
  bottom: 14px;
  left: 14px;
  right: 14px;
  z-index: 900;
  background: rgba(17, 20, 30, 0.94);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  padding: 8px 14px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0,0,0,0.8), 0 0 20px var(--accent-green-glow);
}

@media (max-width: 768px) {
  .mobile-floating-bar {
    display: flex;
  }
}

.m-bar-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
}

.m-bar-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 10px var(--accent-green);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  padding-top: 130px;
  padding-bottom: 60px;
  text-align: center;
}

@media (max-width: 768px) {
  .hero-section {
    padding-top: 100px;
    padding-bottom: 40px;
  }
}

.hero-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 20px;
  max-width: 100%;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(30px, 6.5vw, 72px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1.5px;
  max-width: 900px;
  margin: 0 auto 20px;
  word-wrap: break-word;
}

.hero-subtitle {
  font-size: clamp(14px, 2vw, 18px);
  color: var(--text-secondary);
  max-width: 660px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

@media (max-width: 500px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
}

.hero-badges-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
}

.hero-badge-item i {
  color: var(--accent-green);
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-padding {
  padding: 70px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 45px 0;
  }
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

@media (max-width: 768px) {
  .section-header {
    margin-bottom: 32px;
  }
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 4.5vw, 48px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1px;
  margin-bottom: 12px;
  word-wrap: break-word;
}

.section-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================================
   MASTERY & ABOUT SECTION
   ============================================================ */
.mastery-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 44px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  align-items: center;
}

@media (max-width: 900px) {
  .mastery-card {
    grid-template-columns: 1fr;
    padding: 24px 16px;
    border-radius: var(--radius-lg);
  }
}

.mastery-title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.mastery-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 24px;
}

.mastery-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}

.mastery-bullet {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
}

.mastery-bullet i {
  color: var(--accent-green);
  font-size: 15px;
  margin-top: 3px;
}

/* 4-Pillars Grid */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (max-width: 480px) {
  .pillars-grid {
    grid-template-columns: 1fr;
  }
}

.pillar-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px;
  transition: var(--transition);
}

.pillar-icon {
  font-size: 20px;
  margin-bottom: 8px;
}

.pillar-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.pillar-desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.45;
}

/* ============================================================
   AUTOPLAY & SCROLLABLE REELS CAROUSEL
   ============================================================ */
.reels-carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(17, 20, 30, 0.9);
  border: 1px solid var(--border-strong);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  z-index: 10;
  box-shadow: 0 8px 24px rgba(0,0,0,0.8);
  transition: var(--transition);
  cursor: pointer;
}

.carousel-arrow:hover {
  background: var(--accent-green);
  color: var(--text-dark);
}

.carousel-arrow.left { left: 4px; }
.carousel-arrow.right { right: 4px; }

@media (max-width: 860px) {
  .carousel-arrow {
    display: none;
  }
}

.reels-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 10px 4px 18px;
  width: 100%;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 600px) {
  .reels-track {
    gap: 12px;
    padding: 6px 0 14px;
  }
}

.reels-track::-webkit-scrollbar {
  height: 4px;
}
.reels-track::-webkit-scrollbar-thumb {
  background: var(--border-strong);
  border-radius: 4px;
}

/* Vertical 9:16 Reel Card */
.reel-card-v {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  width: 240px;
  min-width: 240px;
  max-width: 240px;
  aspect-ratio: 9 / 16;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  scroll-snap-align: start;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .reel-card-v {
    width: 210px;
    min-width: 210px;
    max-width: 210px;
    border-radius: var(--radius-md);
  }
}

.reel-card-v:hover {
  border-color: var(--border-green);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.8), 0 0 24px var(--accent-green-glow);
}

.reel-card-canvas {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0;
}

.reel-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, transparent 40%, rgba(0,0,0,0.85) 75%, rgba(0,0,0,0.95) 100%);
  pointer-events: none;
}

.reel-top-tags {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}

.reel-views-badge {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-pill);
  padding: 3px 8px;
  font-size: 10px;
  font-weight: 700;
  font-family: var(--font-mono);
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 4px;
}

.reel-ig-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(225, 48, 108, 0.2);
  border: 1px solid rgba(225, 48, 108, 0.4);
  color: var(--accent-instagram);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.reel-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 255, 102, 0.9);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 0 20px rgba(0, 255, 102, 0.6);
  z-index: 2;
}

.reel-info-bottom {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  z-index: 2;
}

.reel-handle {
  font-size: 10px;
  font-weight: 700;
  color: var(--accent-green);
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.reel-caption-title {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  color: var(--text-white);
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.reel-stats-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-secondary);
}

/* ============================================================
   INTERACTIVE REEL PREVIEW MODAL PLAYER
   ============================================================ */
.reel-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(30px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.reel-modal.active {
  opacity: 1;
  pointer-events: all;
}

.reel-modal-container {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 85vh;
  max-height: 720px;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0,0,0,0.9);
  display: flex;
  flex-direction: column;
}

@media (max-width: 480px) {
  .reel-modal-container {
    height: 100vh;
    max-height: 100vh;
    border-radius: 0;
    border: none;
  }
}

.reel-modal-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(0,0,0,0.85) 0%, transparent 100%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.reel-modal-user {
  display: flex;
  align-items: center;
  gap: 8px;
}

.reel-modal-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent-green);
  color: var(--text-dark);
  font-weight: 900;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reel-modal-name {
  font-weight: 700;
  font-size: 12px;
}

.reel-modal-sub {
  font-size: 10px;
  color: var(--text-secondary);
}

.reel-modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
}

.reel-modal-video-area {
  flex: 1;
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
}

#reelModalCanvas {
  width: 100%;
  height: 100%;
  display: block;
}

.reel-modal-actions {
  position: absolute;
  right: 14px;
  bottom: 70px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}

.reel-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--text-white);
  font-size: 20px;
  cursor: pointer;
}

.reel-action-btn.liked {
  color: #FF2E63;
}

.reel-action-count {
  font-size: 10px;
  font-weight: 700;
  font-family: var(--font-mono);
}

.reel-modal-caption {
  position: absolute;
  bottom: 16px;
  left: 14px;
  right: 60px;
  z-index: 10;
}

.modal-caption-text {
  font-size: 12px;
  line-height: 1.4;
  color: var(--text-white);
  margin-bottom: 6px;
}

.modal-audio-tag {
  font-size: 10px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 4px;
}

.reel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-strong);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  z-index: 2001;
}

.reel-nav-btn.prev { left: 16px; }
.reel-nav-btn.next { right: 16px; }

/* ============================================================
   ADVANTAGE & COMMUNITY GRIDS
   ============================================================ */
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .advantage-grid {
    grid-template-columns: 1fr;
  }
}

.adv-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}

@media (max-width: 600px) {
  .adv-card {
    padding: 24px 18px;
  }
}

.adv-card.span-2 {
  grid-column: span 2;
}

@media (max-width: 900px) {
  .adv-card.span-2 {
    grid-column: span 1;
  }
}

.adv-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(0, 255, 102, 0.1);
  border: 1px solid var(--border-green);
  color: var(--accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}

.adv-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
}

.adv-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

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

@media (max-width: 900px) {
  .community-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .community-grid {
    grid-template-columns: 1fr;
  }
}

.social-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.social-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}

.social-card.ig .social-icon-box { background: rgba(225, 48, 108, 0.1); color: var(--accent-instagram); }
.social-card.tg .social-icon-box { background: rgba(41, 174, 245, 0.1); color: var(--accent-telegram); }
.social-card.wa .social-icon-box { background: rgba(37, 211, 102, 0.1); color: var(--accent-whatsapp); }
.social-card.yt .social-icon-box { background: rgba(255, 0, 0, 0.1); color: #FF0000; }

.social-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 4px;
}

.social-count {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

/* ============================================================
   CONVERSION CTA BANNER
   ============================================================ */
.cta-banner {
  background: radial-gradient(ellipse at center, rgba(0, 255, 102, 0.1) 0%, rgba(13, 16, 26, 0.95) 70%);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-xl);
  padding: 64px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .cta-banner {
    padding: 40px 16px;
    border-radius: var(--radius-lg);
  }
}

.cta-banner-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 4.5vw, 48px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.cta-banner-sub {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto 28px;
}

.cta-banner-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 500px) {
  .cta-banner-btns {
    flex-direction: column;
    width: 100%;
  }
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}

.faq-item:first-child {
  border-top: 1px solid var(--border-subtle);
}

.faq-trigger {
  width: 100%;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-white);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

@media (max-width: 600px) {
  .faq-trigger {
    font-size: 15px;
    padding: 16px 0;
  }
}

.faq-trigger i {
  font-size: 15px;
  color: var(--text-secondary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-trigger i {
  transform: rotate(180deg);
  color: var(--accent-green);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-body {
  max-height: 240px;
  padding-bottom: 20px;
}

.faq-body p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--border-subtle);
  padding: 50px 0 24px;
  font-size: 13px;
  color: var(--text-secondary);
}

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

@media (max-width: 600px) {
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 14px;
  }
}

.footer-nav {
  display: flex;
  gap: 20px;
  list-style: none;
}

.footer-nav a:hover {
  color: var(--accent-green);
}

.footer-legal {
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-size: 11px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
  flex-wrap: wrap;
  gap: 10px;
}
