/* ==================== CSS CUSTOM PROPERTIES ==================== */
:root {
  --bg-primary: #050510;
  --bg-secondary: #0a0a1a;
  --bg-card: rgba(15, 15, 30, 0.85);
  
  --primary: #00ff9d;
  --primary-dark: #00cc7d;
  --primary-glow: rgba(0, 255, 157, 0.4);
  --secondary: #00d4ff;
  --accent: #ff00ff;
  --warning: #fdcb6e;
  --error: #ef4444;
  --success: #10b981;
  
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-light: rgba(255, 255, 255, 0.12);
  
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  --font-tech: 'Orbitron', monospace;
  --font-main: 'Vazirmatn', sans-serif;
  
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 50px;
  
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.5);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.7);
  --shadow-glow: 0 0 30px var(--primary-glow);
  
  --transition-smooth: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
  
  --container-width: 1200px;
  --navbar-height: 72px;
}

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

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

body {
  font-family: var(--font-main);
  background: var(--bg-primary);
  background-image: 
    radial-gradient(ellipse at 30% 20%, rgba(0, 255, 157, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
  color: var(--text-primary);
  overflow-x: hidden;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

/* ==================== BACKGROUND ==================== */
.bg-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.2;
  animation: orbFloat 20s infinite alternate ease-in-out;
}

.orb-1 { width: 40vw; height: 40vw; max-width: 500px; max-height: 500px; background: var(--primary); top: -10%; left: -10%; }
.orb-2 { width: 35vw; height: 35vw; max-width: 400px; max-height: 400px; background: var(--secondary); bottom: -10%; right: -10%; animation-delay: 7s; }
.orb-3 { width: 25vw; height: 25vw; max-width: 300px; max-height: 300px; background: var(--accent); top: 50%; left: 50%; transform: translate(-50%, -50%); animation-delay: 14s; }
.orb-4 { width: 20vw; height: 20vw; max-width: 200px; max-height: 200px; background: var(--warning); top: 70%; left: 30%; animation-delay: 10s; opacity: 0.1; }

@keyframes orbFloat {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.1); }
  100% { transform: translate(-20px, 20px) scale(0.95); }
}

.grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.5;
}

/* Particles */
.particle {
  position: absolute;
  background: white;
  border-radius: 50%;
  pointer-events: none;
  animation: particleRise linear infinite;
  opacity: 0;
}

@keyframes particleRise {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  10% { opacity: 0.8; }
  90% { opacity: 0.2; }
  100% { transform: translateY(-100vh) scale(0); opacity: 0; }
}

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

.navbar.scrolled {
  background: rgba(5, 5, 16, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--navbar-height);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-primary);
  font-family: var(--font-tech);
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.logo-icon { font-size: 1.8rem; }
.logo-highlight {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 8px;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-smooth);
}

.nav-link:hover {
  color: var(--primary);
  background: rgba(0, 255, 157, 0.05);
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-family: var(--font-main);
  transition: all var(--transition-smooth);
  text-decoration: none;
  white-space: nowrap;
}

.btn:active { transform: scale(0.95); }

.btn-primary {
  background: var(--primary);
  color: #000;
  box-shadow: 0 4px 15px rgba(0, 255, 157, 0.2);
}

.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
}

.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(0, 255, 157, 0.05);
}

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

.btn-outline:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.btn-white {
  background: white;
  color: #1a1a2e;
}

.btn-white:hover {
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; border-radius: var(--radius-md); }
.btn-block { width: 100%; }

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition-smooth);
  border-radius: 2px;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: rgba(5, 5, 16, 0.98);
  backdrop-filter: blur(30px);
  z-index: 999;
  padding: 100px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: right var(--transition-smooth);
}

.mobile-menu.active {
  right: 0;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
}

.mobile-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-smooth);
}

.mobile-link:hover {
  color: var(--primary);
  background: rgba(0, 255, 157, 0.05);
}

.mobile-actions {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ==================== HERO SECTION ==================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-top: var(--navbar-height);
}

.hero-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 255, 157, 0.08);
  border: 1px solid rgba(0, 255, 157, 0.2);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  color: var(--primary);
  margin-bottom: 24px;
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 20px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.hero-cta {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero-btn {
  min-width: 180px;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.trust-item i {
  color: var(--primary);
}

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

.hero-mockup {
  position: relative;
}

.mockup-screen {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
  width: 320px;
}

.mockup-header {
  background: rgba(0, 0, 0, 0.3);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border-subtle);
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.mockup-title {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-family: var(--font-tech);
}

.mockup-content {
  padding: 16px;
}

/* Mini Calendar */
.mini-calendar {
  margin-bottom: 16px;
}

.mini-cal-header {
  text-align: center;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 8px;
  color: var(--secondary);
}

.mini-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.mini-cal-grid .friday { color: var(--error); }
.mini-cal-grid .exam { color: var(--secondary); font-weight: 700; }
.mini-cal-grid .today {
  background: var(--primary);
  color: #000;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

/* Mini Tasks */
.mini-tasks {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mini-task {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  border-right: 3px solid;
  font-size: 0.7rem;
}

.mini-task.study { border-right-color: var(--study, #3b82f6); }
.mini-task.class { border-right-color: var(--class-color, #d946ef); }

.task-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mini-task.study .task-dot { background: var(--study, #3b82f6); }
.mini-task.class .task-dot { background: var(--class-color, #d946ef); }

.task-check {
  margin-right: auto;
  color: var(--success);
  font-weight: 700;
}

/* Floating Elements */
.float-element {
  position: absolute;
  font-size: 2rem;
  animation: floatAround 6s ease-in-out infinite;
}

.float-1 { top: -20px; right: -30px; animation-delay: 0s; }
.float-2 { bottom: 30px; left: -40px; animation-delay: 2s; }
.float-3 { top: 50%; right: -50px; animation-delay: 4s; }

@keyframes floatAround {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(10px, -15px); }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.8rem;
  animation: bounceDown 2s infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ==================== SECTIONS ==================== */
.section-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 80px 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  background: rgba(0, 255, 157, 0.08);
  border: 1px solid rgba(0, 255, 157, 0.2);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 12px;
}

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

/* ==================== FEATURES ==================== */
.features {
  position: relative;
  z-index: 1;
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 255, 157, 0.03), transparent);
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-light);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(0, 255, 157, 0.08);
  border: 1px solid rgba(0, 255, 157, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.feature-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-desc {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.feature-list li {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.feature-list li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
}

/* ==================== HOW IT WORKS ==================== */
.how-it-works {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.01);
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}

.step-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.step-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.2rem;
  color: #000;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.step-icon {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.step-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-desc {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.7;
}

.steps-cta {
  text-align: center;
  margin-top: 40px;
}

/* ==================== STATS ==================== */
.stats-section {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.2);
}

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

.stat-item {
  text-align: center;
}

.stat-icon-wrapper {
  width: 64px;
  height: 64px;
  background: rgba(0, 255, 157, 0.08);
  border: 1px solid rgba(0, 255, 157, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin: 0 auto 16px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  font-family: var(--font-tech);
  color: var(--primary);
  margin-bottom: 8px;
}

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

/* ==================== TESTIMONIALS ==================== */
.testimonials {
  position: relative;
  z-index: 1;
}

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

.testimonial-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition-smooth);
}

.testimonial-card:hover {
  border-color: var(--border-light);
  transform: translateY(-3px);
}

.testimonial-stars {
  font-size: 1rem;
  margin-bottom: 16px;
}

.testimonial-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

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

.author-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #000;
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  font-size: 0.9rem;
}

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

/* ==================== PRICING ==================== */
.pricing {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.01);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  text-align: center;
  transition: all var(--transition-smooth);
  position: relative;
}

.pricing-card:hover {
  border-color: var(--border-light);
  transform: translateY(-5px);
}

.pricing-card.pro {
  border-color: rgba(253, 203, 110, 0.3);
  background: rgba(253, 203, 110, 0.03);
}

.pricing-badge {
  display: inline-block;
  background: rgba(0, 255, 157, 0.1);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.pro-badge {
  background: rgba(253, 203, 110, 0.1);
  color: var(--warning);
}

.pricing-price {
  margin-bottom: 32px;
}

.price-amount {
  font-size: 3rem;
  font-weight: 900;
  font-family: var(--font-tech);
  color: var(--primary);
}

.price-currency {
  font-size: 1rem;
  color: var(--text-muted);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
  text-align: right;
}

.pricing-features li {
  color: var(--text-secondary);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features i {
  color: var(--success);
}

/* ==================== FAQ ==================== */
.faq {
  position: relative;
  z-index: 1;
}

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

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
}

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

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

.faq-question i {
  transition: transform var(--transition-smooth);
  font-size: 0.8rem;
  color: var(--text-muted);
}

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

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

.faq-item.active .faq-answer {
  max-height: 300px;
}

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

/* ==================== CTA SECTION ==================== */
.cta-section {
  position: relative;
  z-index: 1;
}

.cta-card {
  background: linear-gradient(135deg, rgba(0, 255, 157, 0.05), rgba(0, 212, 255, 0.05));
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  text-align: center;
}

.cta-title {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.cta-text {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 32px;
}

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

/* ==================== FOOTER ==================== */
.footer {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 30px;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-tech);
  font-weight: 900;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 1rem;
  transition: all var(--transition-smooth);
}

.social-link:hover {
  color: var(--primary);
  border-color: var(--primary);
  background: rgba(0, 255, 157, 0.08);
}

.footer-links h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  margin-bottom: 10px;
  transition: all var(--transition-smooth);
}

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

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 8px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-subtitle {
    margin: 0 auto 32px;
  }
  
  .hero-cta, .trust-badges {
    justify-content: center;
  }
  
  .hero-visual {
    display: none;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions {
    display: none;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
}
/* ==================== PRICING 2.0 ==================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card.popular {
  border-color: var(--primary);
  transform: scale(1.05);
  position: relative;
  z-index: 2;
  box-shadow: 0 0 40px rgba(0, 255, 157, 0.2);
}

.popular-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #000;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 900;
}

.pricing-card.ultra {
  border-color: rgba(253, 203, 110, 0.3);
  background: rgba(253, 203, 110, 0.03);
}

.ultra-badge {
  background: linear-gradient(135deg, #fdcb6e, #ff7675) !important;
  color: #000 !important;
}

.pricing-desc {
  color: var(--text-secondary);
  font-size: 0.8rem;
  margin-bottom: 16px;
  text-align: center;
}

.price-period {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.pricing-features .disabled {
  opacity: 0.4;
  color: var(--text-muted);
}

.pricing-features .disabled i {
  color: var(--error) !important;
}

.pricing-durations {
  margin: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.duration {
  font-size: 0.65rem;
  color: var(--primary);
  background: rgba(0, 255, 157, 0.05);
  padding: 3px 8px;
  border-radius: 4px;
  text-align: center;
}

.ultra-btn {
  background: linear-gradient(135deg, #fdcb6e, #ff7675) !important;
  color: #000 !important;
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  
  .pricing-card.popular {
    transform: scale(1);
  }
}
/* ==================== LANDING PRICING V2 ==================== */
.landing-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.lp-card {
  background: rgba(255,255,255,0.02);
  border: 1.5px solid var(--lp-border);
  border-radius: 24px;
  padding: 28px 20px;
  text-align: center;
  position: relative;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.lp-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: var(--lp-bg);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.lp-card:hover {
  transform: translateY(-5px);
  border-color: var(--lp-color);
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

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

.lp-card.lp-popular {
  border-color: var(--lp-color);
  box-shadow: 0 0 30px var(--lp-color)22;
  transform: scale(1.03);
  z-index: 2;
}

.lp-card.lp-popular::before { opacity: 1; }

.lp-popular-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #00ff9d, #00cc7d);
  color: #000;
  font-weight: 800;
  font-size: 0.7rem;
  padding: 5px 16px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0,255,157,0.3);
}

.lp-icon { font-size: 2.4rem; margin-bottom: 6px; }
.lp-name { font-weight: 800; font-size: 1.05rem; margin-bottom: 10px; }
.lp-price { font-family: var(--font-tech); font-size: 1.8rem; font-weight: 900; color: white; line-height: 1.1; }
.lp-unit { font-size: 0.65rem; color: #94a3b8; margin-top: 2px; }
.lp-period { font-size: 0.65rem; color: #64748b; margin-top: 2px; margin-bottom: 10px; }
.lp-desc { color: #94a3b8; font-size: 0.75rem; margin-bottom: 16px; }

.lp-features {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}

.lp-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.73rem;
  color: #b2bec3;
}

.lp-feature i { width: 14px; text-align: center; flex-shrink: 0; font-size: 0.6rem; }

.lp-feature.locked { opacity: 0.4; }
.lp-feature.locked span { text-decoration: line-through; }

.lp-durations {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 16px;
  font-size: 0.65rem;
  color: var(--lp-color);
  opacity: 0.8;
}

.lp-btn {
  display: inline-block;
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  font-family: var(--font-main);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.lp-btn-outline { background: transparent; border: 1px solid rgba(255,255,255,0.15); color: #94a3b8; }
.lp-btn-outline:hover { border-color: rgba(255,255,255,0.3); color: white; }
.lp-btn-primary { background: linear-gradient(135deg, #00ff9d, #00cc7d); color: #000; box-shadow: 0 4px 15px rgba(0,255,157,0.3); }
.lp-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,255,157,0.4); }
.lp-btn-ultra { background: linear-gradient(135deg, #fdcb6e, #ff7675); color: #000; box-shadow: 0 4px 15px rgba(253,203,110,0.3); }
.lp-btn-ultra:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(253,203,110,0.4); }

@media (max-width: 850px) {
  .landing-pricing-grid { grid-template-columns: 1fr; max-width: 380px; }
  .lp-card.lp-popular { transform: scale(1); }
}