/* Sweet Road Zone - Candy Wonderland Editorial Design System */

:root {
  /* Sophisticated Candy Palette */
  --candy-pink: #FF1B6D;
  --candy-purple: #9B4DFF;
  --candy-orange: #FF8C42;
  --candy-yellow: #FFD93D;
  --candy-blue: #4DA6FF;

  /* Gradient Foundations */
  --gradient-primary: linear-gradient(135deg, #FF1B6D 0%, #9B4DFF 100%);
  --gradient-secondary: linear-gradient(135deg, #FFD93D 0%, #FF8C42 100%);
  --gradient-hero: linear-gradient(135deg, #FF1B6D 0%, #9B4DFF 50%, #4DA6FF 100%);

  /* Neutral Sophistication */
  --neutral-900: #1A0E2E;
  --neutral-800: #2D1B4E;
  --neutral-700: #4A3069;
  --neutral-100: #F8F5FF;
  --neutral-50: #FEFBFF;

  /* Spacing System */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 8rem;

  /* Typography Scale */
  --font-display: 'DM Serif Display', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Shadows & Effects */
  --shadow-sm: 0 2px 8px rgba(155, 77, 255, 0.1);
  --shadow-md: 0 8px 24px rgba(155, 77, 255, 0.15);
  --shadow-lg: 0 16px 48px rgba(155, 77, 255, 0.2);
  --shadow-candy: 0 8px 32px rgba(255, 27, 109, 0.3);

  /* Animation Timings */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--neutral-900);
  background: var(--neutral-50);
  overflow-x: hidden;
}

/* Animated Background Pattern */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 27, 109, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(155, 77, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 211, 61, 0.03) 0%, transparent 50%);
  animation: breathe 20s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
  margin-bottom: var(--space-sm);
  font-weight: 400;
  font-size: 1.125rem;
  color: var(--neutral-700);
}

/* Navigation */
.nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(155, 77, 255, 0.1);
  transition: all 0.3s var(--ease-smooth);
}

.nav-wrapper.scrolled {
  box-shadow: var(--shadow-md);
}

nav {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  box-shadow: var(--shadow-candy);
  transition: transform 0.3s var(--ease-bounce);
}

.logo:hover .logo-icon {
  transform: scale(1.1) rotate(5deg);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: var(--space-md);
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--neutral-700);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.2s var(--ease-smooth);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s var(--ease-smooth);
}

.nav-links a:hover {
  color: var(--candy-pink);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--neutral-900);
  margin: 5px 0;
  transition: all 0.3s var(--ease-smooth);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(80px + var(--space-lg)) var(--space-md) var(--space-xl);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: var(--gradient-hero);
  opacity: 0.08;
  border-radius: 50%;
  filter: blur(100px);
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(-30px, 50px) rotate(5deg); }
  66% { transform: translate(30px, -50px) rotate(-5deg); }
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  animation: slideInLeft 0.8s var(--ease-smooth) forwards;
  opacity: 0;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-candy);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.hero-badge::before {
  content: '🎁';
  font-size: 1.2rem;
}

.hero h1 {
  margin-bottom: var(--space-sm);
  background: linear-gradient(135deg, var(--neutral-900) 0%, var(--candy-purple) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--neutral-700);
  margin-bottom: var(--space-md);
  max-width: 540px;
}

.hero-stats {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
  padding: var(--space-md) 0;
}

.stat-item {
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  display: block;
  font-size: 0.875rem;
  color: var(--neutral-700);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-cta {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s var(--ease-smooth);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-candy);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255, 27, 109, 0.4);
}

.btn-secondary {
  background: white;
  color: var(--neutral-900);
  border: 2px solid var(--neutral-900);
}

.btn-secondary:hover {
  background: var(--neutral-900);
  color: white;
}

.btn-icon {
  width: 24px;
  height: 24px;
  position: relative;
  z-index: 1;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  animation: slideInRight 0.8s var(--ease-smooth) 0.2s forwards;
  opacity: 0;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.phone-mockup {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
}

.phone-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9/19.5;
  background: linear-gradient(145deg, #2D1B4E 0%, #1A0E2E 100%);
  border-radius: 40px;
  padding: 12px;
  box-shadow:
    0 20px 60px rgba(26, 14, 46, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: black;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-candy {
  position: absolute;
  font-size: 3rem;
  animation: floatCandy 4s ease-in-out infinite;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.candy-1 {
  top: 10%;
  left: -10%;
  animation-delay: 0s;
}

.candy-2 {
  top: 60%;
  right: -10%;
  animation-delay: 1s;
}

.candy-3 {
  bottom: 15%;
  left: -5%;
  animation-delay: 2s;
}

@keyframes floatCandy {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}

/* Section Styles */
.section {
  padding: var(--space-2xl) var(--space-md);
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-xl);
}

.section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--candy-pink);
  margin-bottom: var(--space-sm);
}

.section-title {
  margin-bottom: var(--space-sm);
}

.section-description {
  font-size: 1.25rem;
  color: var(--neutral-700);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.feature-card {
  background: white;
  padding: var(--space-lg);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease-smooth);
  border: 1px solid rgba(155, 77, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease-smooth);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: var(--space-sm);
  display: block;
}

.feature-card h3 {
  color: var(--neutral-900);
  margin-bottom: var(--space-sm);
  font-size: 1.5rem;
}

.feature-card p {
  color: var(--neutral-700);
  font-size: 1rem;
  margin: 0;
}

/* Screenshots Gallery */
.screenshots-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.screenshot-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s var(--ease-smooth);
  aspect-ratio: 9/19.5;
}

.screenshot-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s var(--ease-smooth);
}

.screenshot-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.screenshot-item:hover img {
  transform: scale(1.1);
}

/* Advantages Section */
.advantages-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.advantage-item {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}

.advantage-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  box-shadow: var(--shadow-candy);
}

.advantage-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--neutral-900);
}

.advantage-content p {
  margin: 0;
  color: var(--neutral-700);
}

/* Who Is This For Section */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.audience-card {
  background: linear-gradient(135deg, rgba(255, 27, 109, 0.05) 0%, rgba(155, 77, 255, 0.05) 100%);
  padding: var(--space-lg);
  border-radius: 20px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s var(--ease-smooth);
}

.audience-card:hover {
  border-color: var(--candy-pink);
  transform: translateY(-4px);
}

.audience-emoji {
  font-size: 3rem;
  display: block;
  margin-bottom: var(--space-sm);
}

.audience-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--neutral-900);
}

.audience-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--neutral-700);
}

/* Tips Section */
.tips-container {
  max-width: 900px;
  margin: var(--space-xl) auto 0;
}

.tip-item {
  background: white;
  padding: var(--space-lg);
  border-radius: 20px;
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--candy-pink);
  transition: all 0.3s var(--ease-smooth);
}

.tip-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(8px);
}

.tip-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: white;
  font-weight: 700;
  font-size: 0.875rem;
  margin-right: var(--space-sm);
}

.tip-item h3 {
  display: inline;
  font-size: 1.25rem;
  color: var(--neutral-900);
}

.tip-item p {
  margin: var(--space-sm) 0 0 44px;
  color: var(--neutral-700);
}

/* Business Model Section */
.business-model {
  background: linear-gradient(135deg, #1A0E2E 0%, #2D1B4E 100%);
  color: white;
  border-radius: 32px;
  padding: var(--space-xl);
  margin: var(--space-xl) auto;
  max-width: 1200px;
  position: relative;
  overflow: hidden;
}

.business-model::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(155, 77, 255, 0.2) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.business-model-content {
  position: relative;
  z-index: 1;
}

.business-model h2 {
  color: white;
  margin-bottom: var(--space-md);
}

.business-model p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  line-height: 1.8;
}

.bs-highlight {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-weight: 700;
  color: var(--candy-yellow);
  margin: 0 0.25rem;
}

/* FAQ Section */
.faq-container {
  max-width: 900px;
  margin: var(--space-xl) auto 0;
}

.faq-item {
  background: white;
  border-radius: 16px;
  margin-bottom: var(--space-sm);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid rgba(155, 77, 255, 0.1);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: var(--space-md);
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--neutral-900);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s var(--ease-smooth);
}

.faq-question:hover {
  color: var(--candy-pink);
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s var(--ease-smooth);
  color: var(--candy-pink);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease-smooth);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 var(--space-md) var(--space-md);
  color: var(--neutral-700);
  line-height: 1.8;
}

/* CTA Section */
.cta-section {
  background: var(--gradient-primary);
  color: white;
  text-align: center;
  border-radius: 32px;
  padding: var(--space-2xl);
  margin: var(--space-2xl) auto;
  max-width: 1200px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '🍭';
  position: absolute;
  font-size: 15rem;
  opacity: 0.1;
  top: -20%;
  right: -5%;
  animation: spin 20s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: white;
  margin-bottom: var(--space-sm);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.25rem;
  margin-bottom: var(--space-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn {
  background: white;
  color: var(--candy-pink);
  font-size: 1.25rem;
  padding: 1.25rem 3rem;
}

.cta-section .btn:hover {
  transform: scale(1.05);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
  background: var(--neutral-900);
  color: white;
  padding: var(--space-xl) var(--space-md) var(--space-md);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-brand h3 {
  font-size: 1.5rem;
  color: white;
  margin-bottom: var(--space-sm);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.footer-section h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
  color: white;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s var(--ease-smooth);
}

.footer-links a:hover {
  color: var(--candy-pink);
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.1);
  padding: var(--space-md);
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.3s var(--ease-smooth);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 300px;
  color: var(--neutral-700);
  font-size: 0.95rem;
}

.cookie-actions {
  display: flex;
  gap: var(--space-sm);
}

.cookie-actions .btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  :root {
    --space-lg: 3rem;
    --space-xl: 4rem;
    --space-2xl: 5rem;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .hero-visual {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }

  .hero-content {
    text-align: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-cta {
    justify-content: center;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 1rem var(--space-sm);
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: var(--space-md);
    box-shadow: var(--shadow-md);
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s var(--ease-smooth);
    pointer-events: none;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero {
    padding: calc(80px + var(--space-md)) var(--space-sm) var(--space-lg);
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .section {
    padding: var(--space-xl) var(--space-sm);
  }

  .features-grid,
  .advantages-list,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .screenshots-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-actions {
    width: 100%;
    justify-content: center;
  }
}

/* Animations on Scroll */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease-smooth), transform 0.6s var(--ease-smooth);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Print Styles */
@media print {
  .nav-wrapper,
  .cookie-banner,
  .cta-section {
    display: none;
  }
}
