:root {
  --bg-primary: #0a0714;
  --bg-secondary: #120d24;
  --bg-card: rgba(26, 19, 48, 0.7);
  --bg-card-hover: rgba(38, 28, 70, 0.85);
  --bg-glass: rgba(255, 255, 255, 0.04);
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(236, 72, 153, 0.35);

  --accent-pink: #ff2a85;
  --accent-purple: #8b5cf6;
  --accent-violet: #6366f1;
  --accent-cyan: #06b6d4;
  --accent-gold: #f59e0b;
  --accent-gradient: linear-gradient(135deg, #ff2a85 0%, #a855f7 50%, #6366f1 100%);
  --accent-gradient-glow: linear-gradient(135deg, rgba(255, 42, 133, 0.6) 0%, rgba(168, 85, 247, 0.6) 100%);
  --gold-gradient: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);

  --text-primary: #ffffff;
  --text-secondary: #c4b5fd;
  --text-muted: #94a3b8;
  --text-dark: #0f172a;

  --font-main: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'Outfit', system-ui, -apple-system, sans-serif;

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 16px 36px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 35px rgba(255, 42, 133, 0.35);
  --shadow-purple-glow: 0 0 35px rgba(139, 92, 246, 0.35);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Background Ambient Glows */
.ambient-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
}

.glow-1 {
  top: -10%;
  left: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #ff2a85, transparent 70%);
}

.glow-2 {
  top: 40%;
  right: -10%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, #7c3aed, transparent 70%);
}

.glow-3 {
  bottom: 5%;
  left: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #db2777, transparent 70%);
}

/* Grid Overlay */
.grid-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: rgba(255, 42, 133, 0.12);
  border: 1px solid rgba(255, 42, 133, 0.3);
  color: #ff65a8;
  margin-bottom: 16px;
  backdrop-filter: blur(8px);
}

.badge-gold {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.35);
  color: #fbbf24;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 18px 0;
  transition: var(--transition-normal);
}

.navbar.scrolled {
  background: rgba(10, 7, 20, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glass);
  padding: 12px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

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

.nav-logo {
  height: 46px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(255, 42, 133, 0.4));
  transition: transform var(--transition-bounce);
}

.logo-link:hover .nav-logo {
  transform: scale(1.05);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

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

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

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition-fast);
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: #ffffff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent-gradient);
  border-radius: 2px;
  transition: width var(--transition-fast);
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition-normal);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent-gradient);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(255, 42, 133, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: 0.5s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 42, 133, 0.6);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-playstore {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 22px;
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  transition: var(--transition-normal);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.btn-playstore:hover {
  border-color: var(--accent-pink);
  box-shadow: 0 0 25px rgba(255, 42, 133, 0.4);
  transform: translateY(-2px);
}

.playstore-icon {
  width: 28px;
  height: 28px;
}

.playstore-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.1;
}

.playstore-sub {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #cbd5e1;
}

.playstore-main {
  font-size: 1.05rem;
  font-weight: 700;
  font-family: var(--font-display);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

/* Hero Section */
.hero {
  padding: 160px 0 100px 0;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: clamp(2.4rem, 5.2vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 580px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border-glass);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
}

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

/* Hero Visual / Phone Mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup-wrapper {
  position: relative;
  width: 100%;
  max-width: 330px;
  margin: 0 auto;
}

.phone-mockup {
  position: relative;
  width: 100%;
  background: #090615;
  border-radius: 46px;
  padding: 10px;
  border: 4px solid rgba(255, 255, 255, 0.18);
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.85),
    0 0 50px rgba(255, 42, 133, 0.4);
  overflow: hidden;
  user-select: none;
}

.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 18px;
  background: #000;
  border-radius: 12px;
  z-index: 25;
}

.phone-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 19.5;
  background: #000;
  border-radius: 36px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.phone-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.phone-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(0.95) translateY(10px);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 1;
}

.phone-slide.active {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
  z-index: 2;
}

.phone-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Phone Nav Overlay Controls */
.phone-control-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10, 7, 20, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  backdrop-filter: blur(8px);
  transition: var(--transition-fast);
  opacity: 0;
}

.phone-mockup:hover .phone-control-btn {
  opacity: 1;
}

.phone-control-btn:hover {
  background: var(--accent-pink);
  border-color: var(--accent-pink);
  transform: translateY(-50%) scale(1.15);
}

.phone-control-prev {
  left: 14px;
}

.phone-control-next {
  right: 14px;
}

/* Phone Bottom Screen Indicator */
.phone-screen-indicators {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

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

.screen-dot.active {
  width: 28px;
  border-radius: var(--radius-full);
  background: var(--accent-gradient);
  box-shadow: 0 0 10px rgba(255, 42, 133, 0.7);
}

.phone-screen-label {
  text-align: center;
  margin-top: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  min-height: 22px;
}

/* Floating Badges on Hero Visual */
.floating-badge {
  position: absolute;
  background: rgba(18, 13, 36, 0.85);
  border: 1px solid var(--border-glow);
  backdrop-filter: blur(16px);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  z-index: 10;
  animation: floatAnimation 4s ease-in-out infinite alternate;
}

.fb-1 {
  top: 12%;
  left: -40px;
}

.fb-2 {
  bottom: 15%;
  right: -35px;
  animation-delay: -2s;
}

.fb-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.fb-text h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
}

.fb-text p {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

@keyframes floatAnimation {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-12px); }
}

/* Features Section */
.features {
  padding: 100px 0;
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition-normal);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-gradient);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.feature-card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  border-color: rgba(255, 42, 133, 0.4);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), 0 0 25px rgba(255, 42, 133, 0.2);
}

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

.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(255, 42, 133, 0.12);
  border: 1px solid rgba(255, 42, 133, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 22px;
  color: var(--accent-pink);
  transition: var(--transition-bounce);
}

.feature-card:hover .feature-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  background: var(--accent-gradient);
  color: #fff;
}

.feature-title {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: #ffffff;
}

.feature-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Banner Highlight / PRO Mode */
.banner-highlight {
  padding: 40px 0;
}

.pro-banner {
  background: linear-gradient(135deg, rgba(30, 20, 60, 0.9) 0%, rgba(20, 10, 45, 0.95) 100%);
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 35px rgba(245, 158, 11, 0.15);
  position: relative;
  overflow: hidden;
}

.pro-banner::after {
  content: '👑';
  position: absolute;
  right: -20px;
  bottom: -40px;
  font-size: 16rem;
  opacity: 0.04;
  pointer-events: none;
}

.pro-content h3 {
  font-size: 2rem;
  margin-bottom: 14px;
}

.pro-content p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.pro-perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pro-perk-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #f1f5f9;
}

.pro-perk-item svg {
  color: #fbbf24;
  flex-shrink: 0;
}

.pro-action {
  text-align: center;
}

/* 25 Categories Showcase */
.categories-section {
  padding: 100px 0;
  position: relative;
}

.categories-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.category-search-input {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  padding: 12px 20px;
  border-radius: var(--radius-full);
  color: #fff;
  font-size: 0.95rem;
  width: 100%;
  max-width: 380px;
  outline: none;
  transition: var(--transition-fast);
}

.category-search-input:focus {
  border-color: var(--accent-pink);
  box-shadow: 0 0 15px rgba(255, 42, 133, 0.3);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}

.category-chip {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  padding: 18px 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition-normal);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.category-chip:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent-pink);
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 42, 133, 0.25);
}

.cat-emoji {
  font-size: 1.7rem;
  line-height: 1;
  transition: transform var(--transition-bounce);
}

.category-chip:hover .cat-emoji {
  transform: scale(1.2) rotate(6deg);
}

.cat-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
}

.cat-info span {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* Experience / How it works */
.experience-section {
  padding: 100px 0;
  position: relative;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  position: relative;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  position: relative;
  backdrop-filter: blur(12px);
  transition: var(--transition-normal);
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-purple);
  box-shadow: var(--shadow-purple-glow);
}

.step-number {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.08);
}

.step-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 24px auto;
  box-shadow: 0 8px 24px rgba(255, 42, 133, 0.4);
}

.step-title {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.step-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Testimonials */
.testimonials-section {
  padding: 100px 0;
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-stars {
  color: #fbbf24;
  margin-bottom: 16px;
  display: flex;
  gap: 4px;
}

.testimonial-text {
  font-size: 1rem;
  color: #f1f5f9;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
}

.author-info h4 {
  font-size: 0.98rem;
  color: #fff;
}

.author-info span {
  font-size: 0.8rem;
  color: var(--accent-pink);
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  position: relative;
}

.faq-container {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item.active {
  border-color: rgba(255, 42, 133, 0.4);
  background: var(--bg-card-hover);
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
}

.faq-toggle-icon {
  width: 24px;
  height: 24px;
  transition: transform var(--transition-bounce);
  color: var(--accent-pink);
  flex-shrink: 0;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 28px 24px 28px;
}

/* CTA Download Banner */
.cta-section {
  padding: 80px 0 120px 0;
}

.cta-box {
  background: linear-gradient(135deg, #1c1038 0%, #2a1147 50%, #15092a 100%);
  border: 1px solid rgba(255, 42, 133, 0.4);
  border-radius: 28px;
  padding: 60px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), var(--shadow-glow);
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 42, 133, 0.15), transparent 60%);
  pointer-events: none;
}

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

.cta-box p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 36px auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background: #06040d;
  border-top: 1px solid var(--border-glass);
  padding: 70px 0 30px 0;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 50px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  height: 48px;
  width: auto;
  align-self: flex-start;
}

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

.footer-col h4 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 20px;
}

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

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-pink);
  transform: translateX(4px);
  display: inline-block;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-legal-links a:hover {
  color: #fff;
}

/* ==========================================================================
   PRIVACY POLICY & LEGAL PAGES SPECIFIC STYLES
   ========================================================================== */
.legal-header {
  padding: 150px 0 60px 0;
  text-align: center;
  background: radial-gradient(circle at center, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
}

.legal-header h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  margin-bottom: 14px;
}

.legal-meta {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  padding-bottom: 100px;
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: 100px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 24px;
  backdrop-filter: blur(12px);
}

.sidebar-title {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-pink);
  margin-bottom: 16px;
  font-weight: 700;
}

.sidebar-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.88rem;
  transition: var(--transition-fast);
  display: block;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
}

.sidebar-nav a:hover, .sidebar-nav a.active {
  color: #fff;
  background: rgba(255, 42, 133, 0.15);
  border-left: 3px solid var(--accent-pink);
}

.legal-content {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 48px;
  backdrop-filter: blur(16px);
}

.legal-section {
  margin-bottom: 40px;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section h2 {
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 10px;
}

.legal-section h3 {
  font-size: 1.2rem;
  color: #f1f5f9;
  margin: 20px 0 10px 0;
}

.legal-section p {
  color: var(--text-secondary);
  margin-bottom: 14px;
  line-height: 1.7;
}

.legal-section ul {
  list-style: none;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-section ul li {
  color: var(--text-secondary);
  position: relative;
  padding-left: 24px;
  line-height: 1.6;
}

.legal-section ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--accent-pink);
  font-size: 0.85rem;
}

.legal-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 20px;
  margin: 20px 0;
}

.legal-box.highlight {
  border-color: rgba(255, 42, 133, 0.3);
  background: rgba(255, 42, 133, 0.05);
}

/* Toast Notification */
.site-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: rgba(18, 13, 36, 0.95);
  color: #fff;
  border: 1px solid var(--accent-pink);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), var(--shadow-glow);
  padding: 14px 24px;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 600;
  z-index: 10000;
  backdrop-filter: blur(16px);
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.4s var(--transition-bounce), opacity 0.4s ease;
  pointer-events: none;
}

.site-toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* Encrypted Email Component */
.email-obfuscated-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px dashed rgba(255, 42, 133, 0.4);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  margin-top: 6px;
}

.email-display-text {
  font-family: monospace;
  font-size: 0.92rem;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
}

.email-display-text.revealed {
  color: #38bdf8;
  font-weight: 700;
}

.btn-reveal-email {
  background: var(--accent-gradient);
  color: #ffffff;
  border: none;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
  box-shadow: 0 2px 10px rgba(255, 42, 133, 0.3);
}

.btn-reveal-email:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(255, 42, 133, 0.5);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .fb-1 { left: -10px; }
  .fb-2 { right: -10px; }

  .pro-banner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .pro-perks {
    align-items: center;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-sidebar {
    display: none;
  }

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

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(10, 7, 20, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 30px 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border-glass);
    transform: translateY(-150%);
    transition: transform var(--transition-normal);
  }

  .nav-menu.open {
    transform: translateY(0);
  }

  .mobile-toggle {
    display: block;
  }

  .nav-actions .btn-primary {
    display: none;
  }

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

  .legal-content {
    padding: 24px;
  }

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

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