/* ===== ROOT VARIABLES ===== */
:root {
  --bg-dark: #05050A;
  --bg-deep: #0A0A16;
  --bg-surface: #111128;
  --bg-card: rgba(20, 20, 45, 0.6);
  --primary: #7C3AED;
  --primary-dark: #5B21B6;
  --primary-light: #A78BFA;
  --secondary: #3B82F6;
  --accent: #06B6D4;
  --accent-pink: #EC4899;
  --text: #FFFFFF;
  --text-secondary: #A1A1AA;
  --text-muted: #71717A;
  --border: rgba(124, 58, 237, 0.2);
  --border-light: rgba(255, 255, 255, 0.05);
  --glow-primary: rgba(124, 58, 237, 0.4);
  --glow-secondary: rgba(59, 130, 246, 0.3);
  --success: #10B981;
  --error: #EF4444;
  --warning: #F59E0B;
  --radius: 24px;
  --radius-sm: 16px;
  --transition: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-dark);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  cursor: none;
}

/* ===== КАСТОМНЫЙ КУРСОР ===== */
.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--primary-light);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transition: transform 0.1s;
  transform: translate(-50%, -50%);
}

.cursor-follower {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(124, 58, 237, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transition: transform 0.15s, width 0.2s, height 0.2s;
  transform: translate(-50%, -50%);
}

body:hover .cursor,
body:hover .cursor-follower {
  opacity: 1;
}

/* ===== ШУМОВАЯ ТЕКСТУРА ===== */
.noise {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-radial-gradient(circle at 20% 30%, rgba(0,0,0,0.05) 0px, rgba(0,0,0,0.05) 2px, transparent 2px, transparent 4px);
  pointer-events: none;
  z-index: 1;
  opacity: 0.3;
}

/* ===== ЧАСТИЦЫ CANVAS ===== */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ===== СЕТКА ===== */
.grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(var(--border-light) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-light) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.3;
  mask-image: radial-gradient(ellipse at 50% 0%, black 40%, transparent 80%);
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

section {
  padding: 120px 0;
  position: relative;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, .logo, .btn {
  font-family: 'Space Grotesk', sans-serif;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.gradient-text {
  background: linear-gradient(135deg, #A78BFA 0%, #3B82F6 40%, #06B6D4 70%, #EC4899 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 6s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-light);
  background: rgba(124, 58, 237, 0.1);
  padding: 6px 14px;
  border-radius: 40px;
  margin-bottom: 24px;
  border: 1px solid var(--border);
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  border-radius: 60px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.4s var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  box-shadow: 0 0 20px var(--glow-primary);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 35px var(--glow-primary);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  border-color: var(--border);
}

.btn-glass:hover {
  background: rgba(124, 58, 237, 0.15);
  border-color: var(--primary-light);
  transform: translateY(-3px);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 18px 42px;
  font-size: 1.1rem;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  background: rgba(5, 5, 10, 0.8);
  backdrop-filter: blur(20px);
  z-index: 100;
  border-bottom: 1px solid var(--border-light);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  color: white;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 0 15px var(--glow-primary);
}

.nav {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav a:hover {
  color: white;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid var(--border);
  padding: 8px 20px;
  border-radius: 60px;
  font-size: 0.85rem;
  margin-bottom: 32px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #10B981;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.6;
  min-height: 4em;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-light);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== 3D MOCKUP ===== */
.hero-mockup {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.floating-phone {
  width: 280px;
  height: 560px;
  background: linear-gradient(145deg, #111128, #0A0A16);
  border-radius: 48px;
  padding: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 0 2px rgba(124, 58, 237, 0.1);
  animation: float 5s ease-in-out infinite;
  transform-style: preserve-3d;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotateY(0deg); }
  25% { transform: translateY(-15px) rotateY(2deg); }
  75% { transform: translateY(10px) rotateY(-2deg); }
}

.phone-notch {
  width: 120px;
  height: 28px;
  background: #05050A;
  border-radius: 0 0 20px 20px;
  margin: 0 auto 12px;
}

.phone-screen {
  background: var(--bg-surface);
  border-radius: 36px;
  height: calc(100% - 40px);
  padding: 20px 16px;
  overflow: hidden;
}

/* Recording indicator styles */
.recording-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-bottom: 16px;
}

.recording-dot {
  width: 10px;
  height: 10px;
  background: #EF4444;
  border-radius: 50%;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.recording-time {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  font-family: monospace;
  margin-bottom: 20px;
  color: #EF4444;
}

.recording-wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 20px;
}

.recording-wave span {
  width: 4px;
  height: 30px;
  background: var(--primary-light);
  border-radius: 2px;
  animation: wave 1s ease-in-out infinite;
}

.recording-wave span:nth-child(1) { animation-delay: 0s; height: 20px; }
.recording-wave span:nth-child(2) { animation-delay: 0.2s; height: 40px; }
.recording-wave span:nth-child(3) { animation-delay: 0.4s; height: 50px; }
.recording-wave span:nth-child(4) { animation-delay: 0.6s; height: 35px; }
.recording-wave span:nth-child(5) { animation-delay: 0.8s; height: 25px; }

@keyframes wave {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.5); }
}

.recording-pause-btn {
  background: rgba(255, 255, 255, 0.1);
  padding: 12px;
  border-radius: 40px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  cursor: pointer;
}

.demo-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-weight: 600;
}

.demo-ai-badge {
  background: linear-gradient(135deg, var(--primary), var(--accent-pink));
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
}

.demo-card {
  background: rgba(255,255,255,0.03);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 16px;
}

.demo-word {
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  padding: 16px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 20px;
  margin: 16px 0;
}

.demo-line {
  height: 6px;
  background: rgba(124, 58, 237, 0.15);
  border-radius: 3px;
  margin-bottom: 10px;
}
.demo-line-short { width: 60%; }
.demo-line-long { width: 90%; }
.demo-line-medium { width: 75%; }

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  animation: orbFloat 8s ease-in-out infinite;
}
.orb-1 { width: 300px; height: 300px; background: rgba(124, 58, 237, 0.2); top: -20%; right: -20%; }
.orb-2 { width: 200px; height: 200px; background: rgba(59, 130, 246, 0.15); bottom: 10%; left: -15%; animation-delay: -3s; }
.orb-3 { width: 150px; height: 150px; background: rgba(236, 72, 153, 0.15); top: 50%; left: 50%; animation-delay: -5s; }

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.1); }
}

/* ===== FEATURE CARDS ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all 0.5s var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.1), transparent);
  transition: left 0.6s;
}

.card:hover::before {
  left: 100%;
}

.card:hover {
  border-color: var(--primary-light);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(59, 130, 246, 0.1));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
  color: var(--primary-light);
}

.card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

.card-stat {
  margin-top: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-light);
  letter-spacing: 0.05em;
}

/* ===== PRICING SECTION ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.pricing-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: all 0.5s var(--transition);
  position: relative;
  text-align: center;
}

.pricing-card.popular {
  border-color: var(--primary);
  transform: scale(1.02);
  box-shadow: 0 0 30px rgba(124, 58, 237, 0.2);
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-light);
}

.popular-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--accent-pink));
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.pricing-header h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.price {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-header p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.pricing-features {
  list-style: none;
  margin: 32px 0;
  text-align: left;
}

.pricing-features li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.pricing-features li i {
  width: 20px;
}

.pricing-features li i.fa-check {
  color: var(--success);
}

.pricing-features li i.fa-xmark {
  color: var(--error);
}

.pricing-features li.disabled {
  opacity: 0.5;
}

.pricing-btn {
  width: 100%;
  justify-content: center;
}

/* ===== CAROUSEL ===== */
.demo-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s var(--transition);
}

.carousel-slide {
  min-width: 300px;
}

/* Screenshot styles */
.screenshot {
  width: 300px;
  height: 560px;
  background: linear-gradient(145deg, #111128, #0A0A16);
  border-radius: 36px;
  border: 1px solid var(--border);
  transition: all 0.4s;
  overflow: hidden;
  position: relative;
}

.screenshot-content {
  padding: 20px;
  height: 100%;
  overflow-y: auto;
  font-size: 0.75rem;
}

.screenshot-header {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

/* Library screenshot */
.screenshot-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.screenshot-item {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.75rem;
}

.screenshot-item.subject {
  font-weight: 600;
  color: var(--primary-light);
}

.screenshot-item.date {
  color: var(--text-muted);
  font-size: 0.7rem;
}

.screenshot-item.note {
  padding-left: 12px;
  border-left: 2px solid var(--primary);
}

.ai-tag {
  background: rgba(124, 58, 237, 0.2);
  padding: 2px 6px;
  border-radius: 12px;
  font-size: 0.6rem;
  margin-left: 8px;
}

/* Chat screenshot */
.chat-message {
  margin-bottom: 20px;
}

.chat-message.user {
  background: rgba(124, 58, 237, 0.15);
  padding: 12px;
  border-radius: 16px;
  margin-bottom: 16px;
}

.chat-message.user p {
  font-size: 0.75rem;
  margin-bottom: 6px;
}

.chat-time {
  font-size: 0.6rem;
  color: var(--text-muted);
}

.chat-message.ai {
  background: rgba(255,255,255,0.03);
  padding: 12px;
  border-radius: 16px;
}

.chat-title {
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 8px;
  color: var(--primary-light);
}

.chat-message.ai p {
  font-size: 0.7rem;
  line-height: 1.4;
  margin-bottom: 8px;
}

.chat-step {
  font-size: 0.7rem;
  margin-bottom: 8px;
}

.ai-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--accent-pink));
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.6rem;
  margin-top: 8px;
}

/* Note screenshot */
.note-content h4 {
  font-size: 0.85rem;
  margin-bottom: 12px;
  color: var(--primary-light);
}

.note-step {
  font-size: 0.7rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

/* Calendar screenshot */
.calendar-title {
  font-weight: 600;
  margin-bottom: 12px;
  text-align: center;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 8px;
  text-align: center;
  font-size: 0.6rem;
  color: var(--text-muted);
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 20px;
  text-align: center;
  font-size: 0.7rem;
}

.calendar-days span {
  padding: 4px;
}

.calendar-reminders {
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

.reminder {
  font-size: 0.7rem;
  padding: 8px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.reminder-add {
  color: var(--primary-light);
  font-size: 0.6rem;
  cursor: pointer;
}

.screenshot:hover {
  border-color: var(--primary-light);
  transform: scale(1.02);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: white;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
}

.carousel-btn:hover {
  background: var(--primary);
}

.carousel-prev { left: -60px; }
.carousel-next { right: -60px; }

.carousel-dots, .reviews-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.2);
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: var(--primary-light);
  width: 28px;
  border-radius: 5px;
}

/* ===== REVIEWS ===== */
.reviews-slider {
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 28px;
  transition: transform 0.6s var(--transition);
}

.testimonial {
  min-width: 380px;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.4s;
}

.testimonial:hover {
  border-color: var(--primary-light);
}

.testimonial-stars {
  color: #FBBF24;
  margin-bottom: 16px;
}

.testimonial p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

/* ===== CTA ===== */
.cta-block {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(59, 130, 246, 0.04));
  border: 1px solid var(--border);
  border-radius: 48px;
  padding: 80px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: -30%;
  left: 20%;
  width: 60%;
  height: 160%;
  background: radial-gradient(ellipse, rgba(124, 58, 237, 0.15), transparent);
  animation: ctaPulse 6s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.cta-block p {
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.cta-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.qr-placeholder {
  width: 80px;
  height: 80px;
  background: rgba(124, 58, 237, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}

.qr-placeholder i {
  font-size: 2rem;
  color: var(--primary-light);
}

.cta-qr span {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border-light);
  padding: 40px 0;
}

.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand .logo-icon {
  width: 36px;
  height: 36px;
  font-size: 1rem;
}

.footer-brand span {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
}

.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== NOTIFICATIONS ===== */
.notification {
  position: fixed;
  top: 80px;
  right: 20px;
  background: rgba(16, 185, 129, 0.95);
  backdrop-filter: blur(12px);
  color: white;
  padding: 12px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10000;
  animation: slideIn 0.3s ease forwards;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  font-size: 14px;
}

.notification-error {
  background: rgba(239, 68, 68, 0.95);
}

.notification-info {
  background: rgba(59, 130, 246, 0.95);
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .container {
    padding: 0 24px;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-buttons, .hero-stats {
    justify-content: center;
  }
  
  .hero-mockup {
    order: -1;
  }
  
  .nav {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .carousel-prev, .carousel-next {
    display: none;
  }
  
  .testimonial {
    min-width: 300px;
  }
  
  .footer .container {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .pricing-card.popular {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  section {
    padding: 80px 0;
  }
  
  .section-header {
    margin-bottom: 48px;
  }
  
  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }
  
  .cta-block {
    padding: 48px 24px;
  }
  
  .screenshot {
    width: 260px;
    height: 500px;
  }
  
  .carousel-slide {
    min-width: 260px;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 16px;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .btn-lg {
    padding: 14px 28px;
    font-size: 0.95rem;
  }
  
  .floating-phone {
    width: 240px;
    height: 480px;
  }
  
  .screenshot {
    width: 220px;
    height: 440px;
  }
}
