/* ============================================
   NextLevelGrowth.onl — Design System
   Dark Navy + Cyan/Blue Neon Gradients
   ============================================ */

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

/* ── CSS Variables ── */
:root {
  /* Backgrounds */
  --bg-primary: #060b18;
  --bg-secondary: #0a1128;
  --bg-card: rgba(13, 25, 55, 0.6);
  --bg-glass: rgba(255, 255, 255, 0.04);
  --bg-glass-hover: rgba(255, 255, 255, 0.08);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #00d4ff, #7b2ff7);
  --gradient-hero: linear-gradient(180deg, #060b18 0%, #0a1128 40%, #0d1933 100%);
  --gradient-cta: linear-gradient(135deg, #00d4ff, #0090ff, #7b2ff7);
  --gradient-glow: linear-gradient(135deg, #00d4ff33, #7b2ff733);

  /* Text */
  --text-primary: #ffffff;
  --text-secondary: #a0b4d0;
  --text-muted: #5a6f8f;

  /* Accent Colors */
  --cyan: #00d4ff;
  --blue: #0090ff;
  --purple: #7b2ff7;
  --pink: #e040fb;
  --green: #00e676;

  /* Platform Colors */
  --youtube: #ff0000;
  --instagram: #e1306c;
  --facebook: #1877f2;
  --twitter: #000000;
  --tiktok: #00f2ea;
  --telegram: #0088cc;

  /* Borders */
  --border-glass: 1px solid rgba(255, 255, 255, 0.08);
  --border-glow: 1px solid rgba(0, 212, 255, 0.2);

  /* Shadows */
  --shadow-glow: 0 0 30px rgba(0, 212, 255, 0.15);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);

  /* Misc */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--cyan), var(--purple));
  border-radius: 10px;
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }
h4 { font-size: 1.15rem; }

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

.section-subtitle {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--cyan);
  font-weight: 600;
  margin-bottom: 8px;
}

.section-title {
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 48px;
  font-size: 1.05rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-cta);
  color: #fff;
  border: none;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}

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

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: var(--transition);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-outline {
  background: transparent;
  color: var(--cyan);
  border: 2px solid var(--cyan);
}

.btn-outline:hover {
  background: var(--cyan);
  color: var(--bg-primary);
  box-shadow: 0 0 25px rgba(0, 212, 255, 0.4);
}

.btn-ghost {
  background: var(--bg-glass);
  color: var(--text-primary);
  border: var(--border-glass);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: var(--bg-glass-hover);
  border-color: rgba(0, 212, 255, 0.3);
}

/* ── Glass Card ── */
.glass-card {
  background: var(--bg-glass);
  border: var(--border-glass);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 32px;
  transition: var(--transition);
}

.glass-card:hover {
  background: var(--bg-glass-hover);
  border-color: rgba(0, 212, 255, 0.2);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(6, 11, 24, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: var(--border-glass);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  z-index: 1001;
}

.nav-logo .logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
}

.nav-logo span {
  color: var(--cyan);
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

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

.nav-actions .btn {
  padding: 10px 24px;
  font-size: 0.85rem;
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 40%, rgba(0, 212, 255, 0.06) 0%, transparent 50%),
              radial-gradient(circle at 70% 60%, rgba(123, 47, 247, 0.06) 0%, transparent 50%);
  animation: bgFloat 20s ease-in-out infinite;
}

@keyframes bgFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-2%, -2%); }
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 580px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--cyan);
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out 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, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.15;
}

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

.hero-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: var(--border-glass);
}

.hero-stat h3 {
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Hero Login Form */
.hero-form-wrapper {
  display: flex;
  justify-content: flex-end;
}

.hero-form {
  background: rgba(13, 25, 55, 0.7);
  border: var(--border-glass);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  padding: 40px;
  width: 100%;
  max-width: 420px;
  position: relative;
  overflow: hidden;
}

.hero-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-cta);
}

.hero-form h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.hero-form .form-subtitle {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
  background: rgba(255, 255, 255, 0.07);
}

.form-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  font-size: 0.85rem;
}

.form-row label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  cursor: pointer;
}

.form-row label input[type="checkbox"] {
  accent-color: var(--cyan);
  width: 16px;
  height: 16px;
}

.form-row a {
  color: var(--cyan);
}

.form-row a:hover {
  text-decoration: underline;
}

.hero-form .btn-primary {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  font-weight: 700;
}

.form-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 20px 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.form-divider::before,
.form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.form-footer {
  text-align: center;
  margin-top: 20px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.form-footer a {
  color: var(--cyan);
  font-weight: 600;
}

.form-footer a:hover {
  text-decoration: underline;
}

/* ============================================
   FLOATING ICONS (Hero)
   ============================================ */
.floating-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.floating-icon {
  position: absolute;
  font-size: 2rem;
  opacity: 0.15;
  animation: floatIcon 8s ease-in-out infinite;
}

.floating-icon:nth-child(1) { top: 15%; left: 5%; animation-delay: 0s; }
.floating-icon:nth-child(2) { top: 25%; right: 8%; animation-delay: 1s; }
.floating-icon:nth-child(3) { top: 60%; left: 10%; animation-delay: 2s; }
.floating-icon:nth-child(4) { top: 75%; right: 15%; animation-delay: 0.5s; }
.floating-icon:nth-child(5) { top: 40%; left: 50%; animation-delay: 3s; }
.floating-icon:nth-child(6) { top: 85%; left: 30%; animation-delay: 1.5s; }

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

/* ============================================
   FEATURES BAR
   ============================================ */
.features-bar {
  padding: 40px 0;
  background: var(--bg-secondary);
  border-top: var(--border-glass);
  border-bottom: var(--border-glass);
  position: relative;
}

.features-bar .container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.feature-item {
  text-align: center;
  padding: 24px 16px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  cursor: default;
}

.feature-item:hover {
  background: var(--bg-glass);
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background: var(--gradient-glow);
  border: var(--border-glow);
}

.feature-item h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}

/* ============================================
   PLATFORMS SECTION
   ============================================ */
.platforms {
  padding: 100px 0;
  position: relative;
}

.platforms .container > .section-subtitle,
.platforms .container > .section-title,
.platforms .container > .section-desc {
  text-align: center;
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.platform-card {
  text-align: center;
  padding: 32px 16px;
  background: var(--bg-glass);
  border: var(--border-glass);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  transition: var(--transition);
  cursor: default;
}

.platform-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: var(--shadow-glow);
}

.platform-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: var(--transition);
}

.platform-card:hover .platform-icon {
  transform: scale(1.1);
}

.platform-card.youtube .platform-icon { background: rgba(255, 0, 0, 0.15); color: var(--youtube); }
.platform-card.telegram .platform-icon { background: rgba(0, 136, 204, 0.15); color: var(--telegram); }
.platform-card.instagram .platform-icon { background: rgba(225, 48, 108, 0.15); color: var(--instagram); }
.platform-card.facebook .platform-icon { background: rgba(24, 119, 242, 0.15); color: var(--facebook); }
.platform-card.twitter .platform-icon { background: rgba(255, 255, 255, 0.1); color: var(--text-primary); }
.platform-card.tiktok .platform-icon { background: rgba(0, 242, 234, 0.15); color: var(--tiktok); }

.platform-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.platform-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================
   SERVICES / WHY CHOOSE US
   ============================================ */
.services-section {
  padding: 100px 0;
  background: var(--bg-secondary);
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  align-items: center;
}

.services-content {
  max-width: 520px;
}

.services-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-check {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  color: var(--text-secondary);
}

.service-check i {
  color: var(--cyan);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.services-visual {
  display: flex;
  justify-content: center;
}

.services-visual-card {
  background: var(--bg-glass);
  border: var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 40px;
  width: 100%;
  max-width: 460px;
  position: relative;
  overflow: hidden;
}

.services-visual-card::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.08), transparent);
  pointer-events: none;
}

.service-stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: var(--border-glass);
}

.service-stat-row:last-child {
  border-bottom: none;
}

.service-stat-label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.service-stat-label i {
  font-size: 1.2rem;
}

.service-stat-value {
  font-weight: 700;
  color: var(--cyan);
  font-size: 1.1rem;
}

/* ============================================
   CUSTOMER RESULTS
   ============================================ */
.results {
  padding: 100px 0;
  position: relative;
}

.results .container > .section-subtitle,
.results .container > .section-title,
.results .container > .section-desc {
  text-align: center;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.result-card {
  background: var(--bg-glass);
  border: var(--border-glass);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  padding: 32px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.result-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition);
}

.result-card:hover::before {
  transform: scaleX(1);
}

.result-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.result-platform-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.result-card.instagram .result-platform-icon {
  background: rgba(225, 48, 108, 0.15);
  color: var(--instagram);
}

.result-card.youtube .result-platform-icon {
  background: rgba(255, 0, 0, 0.15);
  color: var(--youtube);
}

.result-card.twitter .result-platform-icon {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}

.result-card h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.result-card .result-handle {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 24px;
}

.result-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.result-col {
  padding: 16px;
  border-radius: var(--radius-md);
}

.result-col.before {
  background: rgba(123, 47, 247, 0.1);
}

.result-col.after {
  background: rgba(0, 230, 118, 0.1);
}

.result-col-badge {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 10px;
}

.result-col.before .result-col-badge { color: var(--purple); }
.result-col.after .result-col-badge { color: var(--green); }

.result-col h5 {
  font-size: 1.5rem;
  font-weight: 800;
}

.result-col p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-us {
  padding: 100px 0;
  background: var(--bg-secondary);
  position: relative;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  align-items: center;
}

.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.why-card {
  background: var(--bg-glass);
  border: var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}

.why-card:hover {
  background: var(--bg-glass-hover);
  border-color: rgba(0, 212, 255, 0.2);
  transform: translateY(-3px);
}

.why-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gradient-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.3rem;
  color: var(--cyan);
}

.why-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

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

/* ============================================
   SOCIAL PLATFORMS TABS
   ============================================ */
.social-tabs {
  padding: 100px 0;
  position: relative;
}

.social-tabs .container > .section-subtitle,
.social-tabs .container > .section-title,
.social-tabs .container > .section-desc {
  text-align: center;
}

.tabs-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  background: var(--bg-glass);
  border: var(--border-glass);
  color: var(--text-secondary);
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition);
}

.tab-btn:hover {
  background: var(--bg-glass-hover);
  color: var(--text-primary);
}

.tab-btn.active {
  background: var(--gradient-cta);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}

.tab-panel {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-panel.active {
  display: block;
}

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

.tab-content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tab-card {
  background: var(--bg-glass);
  border: var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}

.tab-card:hover {
  background: var(--bg-glass-hover);
  border-color: rgba(0, 212, 255, 0.2);
  box-shadow: var(--shadow-glow);
}

.tab-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.tab-card h4 {
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.tab-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0, 212, 255, 0.08), transparent 60%);
  pointer-events: none;
}

.cta-box {
  background: var(--bg-glass);
  border: var(--border-glow);
  border-radius: var(--radius-xl);
  padding: 64px 40px;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(20px);
}

.cta-box h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 16px;
}

.cta-box p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-box .btn {
  font-size: 1.05rem;
  padding: 18px 40px;
}

.cta-tagline {
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.cta-tagline i {
  color: #e53e3e;
  margin: 0 4px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-secondary);
  border-top: var(--border-glass);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: var(--text-secondary);
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-glass);
  border: var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-secondary);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gradient-primary);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.footer-col a {
  display: block;
  color: var(--text-secondary);
  font-size: 0.9rem;
  padding: 6px 0;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--cyan);
  padding-left: 6px;
}

.footer-bottom {
  border-top: var(--border-glass);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

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

.footer-bottom-links a:hover {
  color: var(--cyan);
}

/* ============================================
   AUTH PAGES (Sign In / Sign Up)
   ============================================ */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  background: var(--gradient-hero);
  position: relative;
}

.auth-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.06), transparent 60%);
}

.auth-card {
  background: rgba(13, 25, 55, 0.7);
  border: var(--border-glass);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(30px);
  padding: 48px;
  width: 100%;
  max-width: 460px;
  position: relative;
  z-index: 2;
}

.auth-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-cta);
}

.auth-header {
  text-align: center;
  margin-bottom: 32px;
}

.auth-header .nav-logo {
  justify-content: center;
  margin-bottom: 24px;
}

.auth-header h2 {
  margin-bottom: 8px;
}

.auth-header p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ============================================
   INNER PAGES (FAQ, About, etc.)
   ============================================ */
.page-hero {
  padding: 140px 0 60px;
  text-align: center;
  background: var(--gradient-hero);
  position: relative;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent);
}

.page-content {
  padding: 80px 0;
}

.page-content .container {
  max-width: 800px;
}

.page-content p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.8;
}

.page-content h3 {
  margin: 32px 0 16px;
  color: var(--text-primary);
}

.page-content ul {
  margin: 12px 0 20px 24px;
  list-style: disc;
}

.page-content ul li {
  color: var(--text-secondary);
  padding: 4px 0;
  font-size: 0.95rem;
}

/* FAQ Accordion */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-glass);
  border: var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: rgba(0, 212, 255, 0.2);
  box-shadow: var(--shadow-glow);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

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

.faq-question i {
  transition: var(--transition);
  font-size: 0.9rem;
  color: var(--cyan);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   SERVICES LIST PAGE
   ============================================ */
.services-list-page {
  padding: 80px 0;
}

.services-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-glass);
  border: var(--border-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.services-table th,
.services-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: var(--border-glass);
}

.services-table th {
  background: rgba(0, 212, 255, 0.08);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--cyan);
}

.services-table td {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.services-table tr:hover td {
  background: var(--bg-glass-hover);
}

/* Contact Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--bg-glass);
  border: var(--border-glass);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gradient-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--cyan);
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact-info-text p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.contact-form {
  background: var(--bg-glass);
  border: var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 32px;
}

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

/* ============================================
   REVEAL ANIMATION
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-form-wrapper {
    justify-content: center;
  }

  .hero-content {
    text-align: center;
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

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

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

  .services-content {
    max-width: 100%;
    text-align: center;
  }

  .services-list {
    align-items: center;
  }

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

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

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

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

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

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

  .nav-toggle {
    display: flex;
  }

  /* Mobile nav */
  .nav-links.mobile-open,
  .nav-actions.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(6, 11, 24, 0.98);
    backdrop-filter: blur(20px);
    justify-content: center;
    align-items: center;
    z-index: 999;
    gap: 20px;
  }

  .nav-links.mobile-open a {
    font-size: 1.2rem;
  }

  .nav-actions.mobile-open {
    position: fixed;
    bottom: 40px;
    top: auto;
    height: auto;
    flex-direction: row;
    justify-content: center;
  }

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

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

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

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

  .tab-content-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .hero-form {
    padding: 28px;
  }
}

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

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

  .result-comparison {
    grid-template-columns: 1fr;
  }

  .tabs-nav {
    gap: 6px;
  }

  .tab-btn {
    padding: 10px 16px;
    font-size: 0.8rem;
  }

  .auth-card {
    padding: 32px 24px;
  }

  .cta-box {
    padding: 40px 24px;
  }
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  width: auto;
  padding: 0 20px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0px 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: 0.3s;
}

.whatsapp-float .wa-text {
  font-size: 1.1rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  margin-left: 10px;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0px 6px 20px rgba(37, 211, 102, 0.6);
  color: #fff;
}

/* === Custom Overrides based on User Feedback === */

/* Faded Logo Background on HOME page only */
.home-body {
  background: 
    linear-gradient(rgba(6, 11, 24, 0.85), rgba(10, 17, 40, 0.92)), 
    url('../img/logo.png') no-repeat center center fixed !important;
  background-size: 40% !important;
}

/* Fix Dropdown Font Size & Height (to fit 17-18 items) */
.select2-results__option {
  padding: 4px 10px !important;
  font-size: 0.85rem !important;
}
.select2-container--default .select2-results > .select2-results__options {
  max-height: 500px !important; /* Huge dropdown height */
}

/* Footer Styling Fix */
.footer p, .footer-col a, .footer-bottom p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}
.footer-col a:hover {
  color: var(--cyan);
}
.footer-brand p {
  color: #a0b4d0 !important;
}
.footer-brand .nav-logo {
  text-shadow: 0 0 10px rgba(0,240,255,0.3);
}

/* Make Brand Text NextLevelGrowth attractive across all pages */
.nav-logo {
  background: linear-gradient(135deg, #ffffff 0%, #a0b4d0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}
.nav-logo span {
  background: var(--gradient-cyan, linear-gradient(135deg, #00f2fe 0%, #4facfe 100%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 15px rgba(0, 242, 254, 0.4);
}
