/* ============================================
   PSYCHE AI Tracker — Landing Page V2
   3D, animated, alive — inspired by wisprflow
   ============================================ */

/* === PAGE PRELOADER === */
.page-preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--bg-primary, #0a0a14);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  text-align: center;
}

.preloader-logo {
  font-family: var(--font-heading, 'Space Grotesk', sans-serif);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary, #f0f0f8);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.preloader-logo span {
  background: linear-gradient(135deg, #06b6d4, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.preloader-bar {
  width: 120px;
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  overflow: hidden;
  margin: 0 auto;
}

.preloader-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #06b6d4, #a855f7);
  border-radius: 3px;
  animation: preloaderFill 1.5s ease-in-out infinite;
}

@keyframes preloaderFill {
  0% { width: 0%; margin-left: 0; }
  50% { width: 60%; }
  100% { width: 0%; margin-left: 100%; }
}

/* === NAVIGATION === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  padding: var(--space-4) 0;
  transition: all var(--transition-slow);
}

.navbar.scrolled {
  background: var(--nav-bg);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid var(--nav-border);
  padding: var(--space-3) 0;
}

.nav-container {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: 0 var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  z-index: 10;
}

.nav-logo-img {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.nav-logo-text .accent {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  list-style: none;
}

.nav-link {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  position: relative;
}

.nav-link:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 1px;
  transition: all var(--transition-base);
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 24px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  background: var(--bg-glass);
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  backdrop-filter: blur(10px);
}

.theme-toggle:hover {
  border-color: var(--border-hover);
  color: var(--text-primary);
  transform: rotate(15deg);
}

[data-theme="dark"] .theme-icon-light { display: none; }
[data-theme="light"] .theme-icon-dark { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* === HERO SECTION === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: calc(var(--nav-height) + var(--space-16)) var(--space-6) var(--space-16);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(6, 182, 212, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 70% 60%, rgba(168, 85, 247, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 40% 30% at 30% 70%, rgba(236, 72, 153, 0.04) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-5);
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.15);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--cyan-400);
  margin-bottom: var(--space-8);
  backdrop-filter: blur(10px);
}

.hero-badge svg,
.hero-badge i {
  width: 16px;
  height: 16px;
  color: var(--cyan-400);
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: var(--space-8);
  color: var(--text-primary);
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title .line-inner {
  display: block;
  transform: translateY(100%);
  animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-title .line-inner:nth-child(2) {
  animation-delay: 0.1s;
}

@keyframes slideUp {
  to { transform: translateY(0); }
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto var(--space-10);
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.hero-stat-icon {
  font-size: 1.2rem;
}

.hero-stat-label {
  font-size: var(--text-sm);
  color: var(--text-tertiary);
  font-weight: 500;
}

.hero-stat-divider {
  width: 1px;
  height: 24px;
  background: var(--border-color);
}

/* Floating Cards */
.hero-floating-elements {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-5);
  background: var(--bg-glass-strong);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
  pointer-events: auto;
  will-change: transform, opacity;
}

.floating-card-1 {
  top: 25%;
  left: 5%;
}

.floating-card-2 {
  top: 35%;
  right: 5%;
}

.floating-card-3 {
  bottom: 25%;
  left: 10%;
}

/* Ambient float after GSAP reveals them */
.floating-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(6,182,212,0.1), rgba(168,85,247,0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: -1;
}

.floating-card:hover::after {
  opacity: 1;
}

.floating-card-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.floating-card-icon svg,
.floating-card-icon i {
  width: 18px;
  height: 18px;
}

.floating-card-text {
  display: flex;
  flex-direction: column;
}

.floating-card-title {
  font-size: var(--text-xs);
  color: var(--text-tertiary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.floating-card-value {
  font-size: var(--text-sm);
  color: var(--text-primary);
  font-weight: 600;
}

/* Ambient Float for cards */
@keyframes ambientFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  z-index: 2;
}

.scroll-mouse {
  width: 26px;
  height: 40px;
  border: 2px solid var(--border-hover);
  border-radius: 13px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background: var(--cyan-400);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0% { opacity: 1; transform: translateY(0); }
  50% { opacity: 0.3; transform: translateY(6px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero-scroll-indicator span {
  font-size: var(--text-xs);
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translate(-50%, 20px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

/* === MARQUEE / TECH STRIP === */
.social-proof {
  padding: var(--space-16) 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
  position: relative;
}

.social-proof-label {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-8);
}

.social-proof-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-12);
  flex-wrap: wrap;
}

.proof-logo {
  font-size: var(--text-base);
  color: var(--text-tertiary);
  font-weight: 500;
  transition: all var(--transition-base);
  white-space: nowrap;
  opacity: 0.6;
}

.proof-logo:hover {
  color: var(--text-primary);
  opacity: 1;
  transform: scale(1.05);
}

/* === FEATURES SECTION === */
.features {
  padding: var(--space-32) 0;
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.feature-card {
  position: relative;
  padding: var(--space-8);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  transition: all var(--transition-slow);
  cursor: default;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(6,182,212,0.3), rgba(168,85,247,0.3), transparent);
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(6, 182, 212, 0.05);
}

.feature-card-large {
  grid-column: 1 / -1;
  text-align: center;
  padding: var(--space-12);
}

.feature-card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    400px circle at var(--spotlight-x, 50%) var(--spotlight-y, 50%),
    rgba(6, 182, 212, 0.06),
    transparent 50%
  );
  opacity: 0;
  transition: opacity var(--transition-slow);
  pointer-events: none;
  z-index: 0;
}

.feature-card:hover .feature-card-glow {
  opacity: 1;
}

.feature-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-xl);
  background: var(--gradient-glass);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
  transition: all var(--transition-base);
}

.feature-card-large .feature-icon-wrap {
  margin: 0 auto var(--space-6);
}

.feature-card:hover .feature-icon-wrap {
  border-color: rgba(6, 182, 212, 0.3);
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.1);
}

.feature-icon {
  width: 24px;
  height: 24px;
  color: var(--cyan-400);
}

.feature-card h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-3);
}

.feature-card p {
  font-size: var(--text-sm);
  color: var(--text-tertiary);
  line-height: 1.7;
}

.feature-tag {
  display: inline-flex;
  margin-top: var(--space-4);
  padding: var(--space-1) var(--space-3);
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.15);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  color: var(--cyan-400);
  font-weight: 500;
}

/* === HOW IT WORKS === */
.how-it-works {
  padding: var(--space-32) 0;
  position: relative;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  position: relative;
}

.steps-container::before {
  content: '';
  position: absolute;
  top: 50px;
  left: calc(16.67% + 20px);
  right: calc(16.67% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--cyan-400), var(--purple-400));
  opacity: 0.2;
}

.step-card {
  text-align: center;
  position: relative;
}

.step-number {
  font-size: var(--text-7xl);
  font-weight: 800;
  font-family: var(--font-heading);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.15;
  line-height: 1;
  margin-bottom: var(--space-4);
}

.step-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: var(--space-6);
}

.step-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gradient-glass);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: all var(--transition-base);
}

.step-card:hover .step-icon-circle {
  border-color: rgba(6, 182, 212, 0.3);
  box-shadow: 0 0 30px rgba(6, 182, 212, 0.15);
  transform: scale(1.1);
}

.step-icon {
  width: 24px;
  height: 24px;
  color: var(--cyan-400);
}

.step-line {
  display: none;
}

.step-content h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-3);
}

.step-content p {
  font-size: var(--text-sm);
  color: var(--text-tertiary);
  line-height: 1.7;
  max-width: 280px;
  margin: 0 auto;
}

/* === DASHBOARD PREVIEW === */
.dashboard-preview {
  padding: var(--space-32) 0;
  position: relative;
}

.dashboard-mockup {
  perspective: 1200px;
}

.mockup-window {
  background: var(--surface-1);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 
    0 40px 80px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  transform: rotateX(2deg) scale(0.98);
  transition: all var(--transition-slow);
}

.mockup-window:hover {
  transform: rotateX(0deg) scale(1);
  box-shadow: 
    0 60px 120px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(6, 182, 212, 0.05),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-3) var(--space-5);
  background: var(--surface-2);
  border-bottom: 1px solid var(--border-color);
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }

.mockup-title {
  font-size: var(--text-xs);
  color: var(--text-tertiary);
  font-weight: 500;
}

.mockup-body {
  display: flex;
  min-height: 350px;
}

.mockup-sidebar {
  width: 180px;
  padding: var(--space-4);
  border-right: 1px solid var(--border-color);
  flex-shrink: 0;
}

.mockup-nav-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  font-size: var(--text-xs);
  color: var(--text-tertiary);
  margin-bottom: var(--space-1);
  transition: all var(--transition-fast);
}

.mockup-nav-item.active {
  background: rgba(6, 182, 212, 0.1);
  color: var(--cyan-400);
}

.mockup-nav-item svg,
.mockup-nav-item i {
  width: 14px;
  height: 14px;
}

.mockup-content {
  flex: 1;
  padding: var(--space-5);
  overflow: hidden;
}

.mockup-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}

.mockup-stat-card {
  padding: var(--space-4);
  background: var(--surface-2);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  text-align: center;
}

.mockup-stat-icon {
  margin-bottom: var(--space-2);
}

.mockup-stat-icon svg,
.mockup-stat-icon i {
  width: 18px;
  height: 18px;
}

.mockup-stat-value {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-primary);
  font-family: var(--font-heading);
}

.mockup-stat-label {
  font-size: 10px;
  color: var(--text-tertiary);
  margin-top: var(--space-1);
}

.mockup-charts {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-3);
}

.mockup-chart-card {
  padding: var(--space-4);
  background: var(--surface-2);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
}

.mockup-chart-card h4 {
  font-size: var(--text-xs);
  font-weight: 600;
  margin-bottom: var(--space-3);
  color: var(--text-secondary);
}

.mini-heatmap {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}

.mini-heatmap-cell {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 3px;
  background: var(--surface-3);
}

/* === GAMIFICATION === */
.gamification-section {
  padding: var(--space-32) 0;
  position: relative;
}

.gamification-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.gamification-card {
  padding: var(--space-8);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-2xl);
  transition: all var(--transition-slow);
  overflow: hidden;
  position: relative;
}

.gamification-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168,85,247,0.3), transparent);
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.gamification-card:hover::before {
  opacity: 1;
}

.gamification-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.gamification-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-6);
}

/* XP Meter */
.xp-meter {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.xp-circle {
  position: relative;
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}

.xp-circle svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.xp-progress-ring {
  transition: stroke-dashoffset 1s ease;
}

.xp-level {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.xp-level-number {
  font-size: var(--text-2xl);
  font-weight: 800;
  font-family: var(--font-heading);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.xp-level-label {
  font-size: var(--text-xs);
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.xp-info {
  flex: 1;
}

.xp-bar-wrap {
  margin-bottom: var(--space-2);
}

.xp-bar {
  height: 8px;
  background: var(--surface-3);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: var(--space-2);
}

.xp-bar-fill {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 4px;
  transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.xp-text {
  font-size: var(--text-xs);
  color: var(--text-tertiary);
  font-weight: 500;
}

.xp-next {
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

/* Badges */
.badges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}

.badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3);
  background: var(--surface-2);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.badge-item:hover {
  transform: scale(1.05);
  border-color: var(--border-hover);
}

.badge-item.locked {
  opacity: 0.35;
  filter: grayscale(1);
}

.badge-icon {
  font-size: 1.5rem;
}

.badge-item span {
  font-size: 10px;
  color: var(--text-tertiary);
  text-align: center;
  font-weight: 500;
}

/* Streak Calendar */
.streak-calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: var(--space-4);
}

.streak-day {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  background: var(--surface-3);
  transition: all var(--transition-fast);
}

.streak-day.active {
  background: var(--gradient-primary);
  box-shadow: 0 0 8px rgba(6, 182, 212, 0.3);
}

.streak-day.today {
  border: 2px solid var(--cyan-400);
}

.streak-info {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.streak-flame {
  font-size: 1.5rem;
  animation: flamePulse 1s ease-in-out infinite;
}

@keyframes flamePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.streak-count {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text-primary);
}

.streak-sub {
  font-size: var(--text-xs);
  color: var(--text-tertiary);
}

/* === PRICING === */
.pricing {
  padding: var(--space-32) 0;
  position: relative;
}

.pricing::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
}

.pricing-toggle-label {
  font-size: var(--text-sm);
  color: var(--text-tertiary);
  font-weight: 500;
  cursor: pointer;
  transition: color var(--transition-base);
}

.pricing-toggle-label.active {
  color: var(--text-primary);
}

.save-badge {
  background: rgba(16, 185, 129, 0.1);
  color: var(--emerald-400);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
}

.pricing-switch {
  position: relative;
  width: 44px;
  height: 24px;
  cursor: pointer;
}

.pricing-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.pricing-slider {
  position: absolute;
  inset: 0;
  background: var(--surface-3);
  border-radius: 12px;
  transition: var(--transition-base);
}

.pricing-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  bottom: 3px;
  background: var(--text-primary);
  border-radius: 50%;
  transition: var(--transition-base);
}

.pricing-switch input:checked + .pricing-slider {
  background: var(--gradient-primary);
}

.pricing-switch input:checked + .pricing-slider::before {
  transform: translateX(20px);
  background: white;
}

.pricing-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  padding: var(--space-8);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-2xl);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-slow);
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.pricing-card-featured {
  border-color: rgba(6, 182, 212, 0.2);
  background: linear-gradient(135deg, rgba(6,182,212,0.05), rgba(168,85,247,0.05));
}

.pricing-card-featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
}

.pricing-popular {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  padding: 4px 12px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  color: white;
}

.pricing-card-header h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-1);
}

.pricing-desc {
  font-size: var(--text-sm) !important;
  color: var(--text-tertiary);
}

.pricing-amount {
  padding: var(--space-6) 0;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: var(--space-6);
}

.price {
  font-size: var(--text-4xl);
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--text-primary);
}

.period {
  font-size: var(--text-sm);
  color: var(--text-tertiary);
}

.pricing-features {
  list-style: none;
  margin-bottom: var(--space-8);
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.pricing-features li svg,
.pricing-features li i {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.pricing-features li.included svg,
.pricing-features li.included i {
  color: var(--emerald-400);
}

.pricing-features li.excluded {
  opacity: 0.4;
}

.pricing-features li.excluded svg,
.pricing-features li.excluded i {
  color: var(--text-tertiary);
}

.pricing-features li.note {
  font-size: var(--text-xs);
  color: var(--text-tertiary);
  font-style: italic;
  padding-top: var(--space-3);
}

.pricing-note {
  text-align: center;
  font-size: var(--text-xs) !important;
  color: var(--text-tertiary);
  margin-top: var(--space-3);
}

/* === WHAT YOU GET / TESTIMONIALS === */
.testimonials {
  padding: var(--space-32) 0;
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.testimonial-card {
  padding: var(--space-8);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-2xl);
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(6,182,212,0.2), transparent);
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
}

.testimonial-stars {
  font-size: 1.5rem;
  margin-bottom: var(--space-4);
}

.testimonial-card p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: var(--text-xs);
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: var(--text-sm);
  color: var(--text-primary);
}

.testimonial-author span {
  font-size: var(--text-xs);
  color: var(--text-tertiary);
}

/* === CTA SECTION === */
.final-cta {
  padding: var(--space-32) 0;
}

.cta-card {
  position: relative;
  padding: var(--space-16) var(--space-8);
  text-align: center;
  background: linear-gradient(135deg, rgba(6,182,212,0.05), rgba(168,85,247,0.05));
  border: 1px solid var(--border-color);
  border-radius: var(--radius-3xl);
  overflow: hidden;
}

.cta-bg-effects {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: orbFloat 8s ease-in-out infinite;
}

.cta-orb-1 {
  width: 300px;
  height: 300px;
  background: rgba(6, 182, 212, 0.15);
  top: -100px;
  left: -50px;
}

.cta-orb-2 {
  width: 250px;
  height: 250px;
  background: rgba(168, 85, 247, 0.15);
  bottom: -80px;
  right: -30px;
  animation-delay: 4s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -15px) scale(1.05); }
  66% { transform: translate(-10px, 10px) scale(0.95); }
}

.cta-card h2 {
  font-size: clamp(1.8rem, 4vw, var(--text-4xl));
  margin-bottom: var(--space-4);
  position: relative;
}

.cta-card p {
  max-width: 500px;
  margin: 0 auto var(--space-8);
  position: relative;
}

.cta-buttons {
  position: relative;
}

/* === FOOTER === */
.footer {
  padding: var(--space-16) 0 var(--space-8);
  border-top: 1px solid var(--border-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-10);
  padding-bottom: var(--space-10);
  border-bottom: 1px solid var(--border-color);
  margin-bottom: var(--space-6);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  text-decoration: none;
}

.footer-logo-img {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-md);
}

.footer-logo span {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-primary);
}

.footer-logo .accent {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand p {
  font-size: var(--text-sm);
  color: var(--text-tertiary);
  line-height: 1.7;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-tertiary);
  transition: all var(--transition-base);
}

.footer-social a:hover {
  border-color: var(--cyan-400);
  color: var(--cyan-400);
  transform: translateY(-2px);
}

.footer-social a svg,
.footer-social a i {
  width: 16px;
  height: 16px;
}

.footer-links-group h4 {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links-group ul {
  list-style: none;
}

.footer-links-group a {
  display: block;
  padding: var(--space-1) 0;
  font-size: var(--text-sm);
  color: var(--text-tertiary);
  transition: all var(--transition-base);
}

.footer-links-group a:hover {
  color: var(--text-primary);
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: var(--text-xs);
  color: var(--text-tertiary);
}

/* ==============================
   ILLUSTRATED DEVICE — PHONE
   ============================== */
.hero-device-float {
  position: absolute;
  z-index: 3;
  pointer-events: none;
}

.device-phone-hero {
  bottom: 12%;
  right: 8%;
}

.device-phone {
  width: 130px;
  height: 260px;
  background: var(--surface-1);
  border-radius: 24px;
  border: 2px solid var(--border-color);
  box-shadow:
    0 20px 50px rgba(0,0,0,0.4),
    0 0 30px rgba(6,182,212,0.08),
    inset 0 1px 0 rgba(255,255,255,0.06);
  overflow: hidden;
  position: relative;
  transform: rotate(-6deg);
}

.device-phone-notch {
  width: 50px;
  height: 6px;
  background: var(--surface-3);
  border-radius: 3px;
  margin: 8px auto 0;
}

.device-phone-screen {
  padding: 8px 10px;
}

.phone-screen-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.phone-screen-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan-400);
}

.phone-screen-title {
  font-size: 8px;
  font-weight: 700;
  color: var(--text-primary);
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
}

.phone-screen-focus {
  text-align: center;
  margin-bottom: 12px;
}

.phone-focus-circle {
  width: 70px;
  height: 70px;
  margin: 0 auto 6px;
  position: relative;
}

.phone-focus-circle svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.phone-focus-ring {
  animation: focusRingSpin 3s linear infinite;
}

@keyframes focusRingSpin {
  from { stroke-dashoffset: 220; }
  to { stroke-dashoffset: 0; }
}

.phone-focus-score {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  font-weight: 800;
  color: var(--cyan-400);
  font-family: var(--font-heading);
}

.phone-focus-label {
  font-size: 7px;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.phone-screen-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 60px;
  padding: 4px 6px;
  background: rgba(255,255,255,0.02);
  border-radius: 8px;
}

.phone-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  min-height: 8px;
  animation: barGrow 2s ease-out forwards;
  transform-origin: bottom;
  transform: scaleY(0);
}

@keyframes barGrow {
  to { transform: scaleY(1); }
}

.phone-bar:nth-child(1) { animation-delay: 1.5s; }
.phone-bar:nth-child(2) { animation-delay: 1.7s; }
.phone-bar:nth-child(3) { animation-delay: 1.9s; }
.phone-bar:nth-child(4) { animation-delay: 2.1s; }
.phone-bar:nth-child(5) { animation-delay: 2.3s; }

/* ==============================
   ILLUSTRATED CHARACTER
   ============================== */
.character-illustration {
  position: absolute;
  z-index: 3;
  pointer-events: none;
}

.char-studying {
  top: 8%;
  right: 14%;
}

.char-body {
  position: relative;
  width: 80px;
  text-align: center;
}

.char-head {
  width: 40px;
  height: 40px;
  margin: 0 auto 2px;
  position: relative;
}

.char-face {
  font-size: 32px;
  line-height: 1;
  animation: charBounce 3s ease-in-out infinite;
}

@keyframes charBounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-3px) rotate(-3deg); }
  75% { transform: translateY(-3px) rotate(3deg); }
}

.char-torso {
  width: 36px;
  height: 28px;
  margin: 0 auto;
  background: linear-gradient(135deg, #a855f7, #7c3aed);
  border-radius: 8px 8px 4px 4px;
  position: relative;
}

.char-laptop {
  width: 50px;
  height: 32px;
  margin: 3px auto 0;
  background: var(--surface-2);
  border-radius: 4px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  position: relative;
}

.char-laptop-screen {
  padding: 5px 6px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.char-screen-line {
  height: 2px;
  background: var(--cyan-400);
  border-radius: 1px;
  opacity: 0.5;
  animation: typeLine 2s ease-in-out infinite;
}

.char-screen-line.short {
  width: 60%;
}

@keyframes typeLine {
  0%, 100% { opacity: 0.3; width: 0%; }
  50% { opacity: 0.7; width: 100%; }
}

.char-screen-line:nth-child(2) { animation-delay: 0.3s; }
.char-screen-line:nth-child(3) { animation-delay: 0.6s; }

.char-sparkles {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 90px;
}

.char-sparkle {
  position: absolute;
  font-size: 12px;
  animation: sparkleOrbit 4s ease-in-out infinite;
}

.char-sparkle:nth-child(1) {
  top: 0;
  left: 10%;
  animation-delay: 0s;
}

.char-sparkle:nth-child(2) {
  top: 20%;
  right: 0;
  animation-delay: 1.3s;
}

.char-sparkle:nth-child(3) {
  bottom: 10%;
  left: 0;
  animation-delay: 2.6s;
}

.char-sparkle:nth-child(4) {
  top: 50%;
  right: -10px;
  animation-delay: 0.8s;
}

.char-sparkle:nth-child(5) {
  bottom: 30%;
  left: -5px;
  animation-delay: 2s;
}

@keyframes sparkleOrbit {
  0%, 100% { transform: translateY(0) scale(0.8); opacity: 0.4; }
  50% { transform: translateY(-10px) scale(1.2); opacity: 1; }
}

/* ==============================
   DEVICE SHOWCASE
   ============================== */
.device-showcase {
  position: relative;
  margin-top: var(--space-16);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-12);
  min-height: 300px;
}

/* Laptop Illustration */
.device-laptop {
  perspective: 800px;
  width: 320px;
}

.laptop-lid {
  background: var(--surface-1);
  border-radius: 12px 12px 0 0;
  border: 2px solid var(--border-color);
  border-bottom: none;
  overflow: hidden;
  box-shadow:
    0 -10px 40px rgba(0,0,0,0.3),
    0 0 20px rgba(6,182,212,0.05);
  transform: rotateX(3deg);
  transform-origin: bottom center;
  transition: transform 0.4s ease;
}

.device-showcase:hover .laptop-lid {
  transform: rotateX(0deg);
}

.laptop-screen {
  overflow: hidden;
}

.laptop-screen-header {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border-color);
}

.laptop-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.laptop-title {
  font-size: 9px;
  color: var(--text-tertiary);
  font-weight: 500;
  margin-left: 8px;
}

.laptop-screen-content {
  padding: 12px 14px;
  min-height: 160px;
}

.laptop-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 90px;
  margin-bottom: 12px;
}

.laptop-bar {
  flex: 1;
  background: linear-gradient(to top, #06b6d4, #a855f7);
  border-radius: 3px 3px 0 0;
  min-height: 6px;
  transform-origin: bottom;
  transform: scaleY(0);
  animation: barGrow 1.5s ease-out forwards;
}

.laptop-bar:nth-child(1) { animation-delay: 0.1s; }
.laptop-bar:nth-child(2) { animation-delay: 0.2s; }
.laptop-bar:nth-child(3) { animation-delay: 0.3s; }
.laptop-bar:nth-child(4) { animation-delay: 0.4s; }
.laptop-bar:nth-child(5) { animation-delay: 0.5s; }
.laptop-bar:nth-child(6) { animation-delay: 0.6s; }
.laptop-bar:nth-child(7) { animation-delay: 0.7s; }

.laptop-stat-row {
  display: flex;
  gap: 8px;
}

.laptop-mini-stat {
  flex: 1;
  text-align: center;
  padding: 6px 4px;
  background: rgba(6,182,212,0.05);
  border-radius: 6px;
  border: 1px solid rgba(6,182,212,0.1);
}

.laptop-stat-num {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: var(--cyan-400);
  font-family: var(--font-heading);
}

.laptop-stat-label {
  font-size: 7px;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.laptop-base {
  height: 10px;
  background: var(--surface-2);
  border-radius: 0 0 4px 4px;
  border: 2px solid var(--border-color);
  border-top: 1px solid var(--border-color);
  margin: 0 20px;
}

/* Floating Study Images */
.floating-study-img {
  position: absolute;
  width: 140px;
  height: auto;
  filter: drop-shadow(0 10px 25px rgba(0,0,0,0.15));
  z-index: 2;
  animation: studyFloat 4s ease-in-out infinite;
}

.floating-girl {
  left: 5%;
  top: 15%;
  animation-delay: 0s;
}

.floating-boy {
  right: 5%;
  top: 20%;
  animation-delay: 1.5s;
}

@keyframes studyFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
}

/* Showcase Floating Emojis */
.showcase-emoji {
  position: absolute;
  font-size: 22px;
  pointer-events: none;
  animation: emojiFloat 5s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.emoji-1 { left: 2%; top: 60%; animation-delay: 0s; }
.emoji-2 { right: 3%; top: 65%; animation-delay: 0.7s; }
.emoji-3 { left: 18%; bottom: 5%; animation-delay: 1.4s; }
.emoji-4 { right: 18%; bottom: 8%; animation-delay: 2.1s; }
.emoji-5 { left: 35%; top: 5%; animation-delay: 0.4s; }
.emoji-6 { right: 35%; top: 8%; animation-delay: 1s; }
.emoji-7 { left: 8%; top: 30%; animation-delay: 1.8s; }
.emoji-8 { right: 8%; top: 35%; animation-delay: 2.5s; }

@keyframes emojiFloat {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); opacity: 0.7; }
  25% { transform: translateY(-8px) rotate(-5deg) scale(1.1); opacity: 1; }
  75% { transform: translateY(-4px) rotate(5deg) scale(0.95); opacity: 0.8; }
}

/* Typing Cycle Effect */
.typing-cycle {
  display: inline-block;
  position: relative;
  border-right: 2px solid currentColor;
  padding-right: 4px;
  animation: typingBlink 0.7s step-end infinite;
}

@keyframes typingBlink {
  50% { border-color: transparent; }
}

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card-large {
    grid-column: 1 / -1;
  }

  .gamification-grid {
    grid-template-columns: 1fr;
  }

  .device-showcase {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }

  .mockup-body {
    flex-direction: column;
  }

  .mockup-sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    overflow-x: auto;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-3);
  }

  .mockup-nav-item {
    white-space: nowrap;
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-4);
    z-index: 5;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-link {
    font-size: var(--text-xl);
  }

  .hamburger {
    display: flex;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero-title {
    font-size: clamp(2.2rem, 9vw, 3.5rem);
  }

  .hero-floating-elements {
    display: none;
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--space-4);
  }

  .hero-stat-divider {
    display: none;
  }

  .hero-cta {
    flex-direction: column;
    gap: var(--space-3);
  }

  .hero-cta .btn {
    width: 100%;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .steps-container {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .steps-container::before {
    display: none;
  }

  .mockup-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .mockup-charts {
    grid-template-columns: 1fr;
  }

  .pricing-grid-2 {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: var(--space-2);
  }

  .social-proof-logos {
    gap: var(--space-6);
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: calc(var(--nav-height) + var(--space-8));
    padding-bottom: var(--space-8);
  }

  .mockup-sidebar {
    display: none;
  }

  .mockup-stats {
    grid-template-columns: 1fr 1fr;
  }
}
