/* =====================================================
   VIBEPAD LANDING PAGE STYLES
   Dark theme inspired by termius.com
   ===================================================== */

/* CSS Variables */
:root {
  /* Backgrounds */
  --bg-primary: #0a0a0f;
  --bg-secondary: #12121a;
  --bg-tertiary: #1a1a24;
  --bg-card: #16161f;

  /* Accent Colors (from app icon) */
  --accent-blue: #4285f4;
  --accent-green: #34a853;
  --accent-red: #ea4335;
  --accent-orange: #fbbc04;

  /* Darker variants for 3D effect */
  --accent-blue-dark: #2a5db8;
  --accent-green-dark: #236b38;
  --accent-red-dark: #a32d24;
  --accent-orange-dark: #b38a03;

  /* Text */
  --text-primary: #ffffff;
  --text-secondary: #a0a0b0;
  --text-muted: #6b6b7b;

  /* Gradients */
  --gradient-blue: linear-gradient(135deg, #4285f4, #2a5db8);
  --gradient-card: linear-gradient(145deg, #1a1a24, #12121a);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-glow-blue: 0 0 60px rgba(66, 133, 244, 0.2);
  --shadow-glow-green: 0 0 60px rgba(52, 168, 83, 0.2);

  /* Spacing */
  --section-padding: clamp(4rem, 10vw, 8rem);
  --container-max: 1200px;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Section Headlines */
.section-headline {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =====================================================
   NAVIGATION
   ===================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.nav-logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link-cta {
  padding: 0.5rem 1.25rem;
  background: var(--accent-blue);
  color: var(--text-primary);
  border-radius: 8px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.nav-link-cta:hover {
  color: var(--text-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(66, 133, 244, 0.4);
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-mobile-toggle {
    display: flex;
  }
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.6;
}

.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(66, 133, 244, 0.4), transparent 70%);
  top: -200px;
  right: -100px;
  animation: float 20s ease-in-out infinite;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(52, 168, 83, 0.35), transparent 70%);
  bottom: -100px;
  left: -100px;
  animation: float 25s ease-in-out infinite reverse;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(234, 67, 53, 0.25), transparent 70%);
  top: 50%;
  left: 30%;
  animation: float 18s ease-in-out infinite 5s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  max-width: 540px;
}

.hero-headline {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero-subheadline {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-helper-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.helper-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  cursor: pointer;
  border: none;
}

.btn-icon {
  width: 20px;
  height: 20px;
}

.btn-primary {
  background: var(--accent-blue);
  color: white;
  box-shadow: 0 4px 0 var(--accent-blue-dark), 0 6px 20px rgba(66, 133, 244, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 var(--accent-blue-dark), 0 10px 30px rgba(66, 133, 244, 0.4);
}

.btn-primary:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--accent-blue-dark), 0 4px 10px rgba(66, 133, 244, 0.3);
}

.btn-secondary {
  background: var(--bg-tertiary);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.3), 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.3), 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Phone Mockup */
.hero-visual {
  display: flex;
  justify-content: center;
}

.phone-mockup {
  animation: phoneFloat 6s ease-in-out infinite;
}

@keyframes phoneFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-15px) rotate(-2deg); }
}

.phone-frame {
  width: 280px;
  height: 560px;
  background: linear-gradient(145deg, #2a2a35, #1a1a24);
  border-radius: 40px;
  padding: 12px;
  box-shadow:
    0 50px 100px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.05);
}

.phone-notch {
  width: 100px;
  height: 28px;
  background: #0a0a0f;
  border-radius: 20px;
  margin: 0 auto 16px;
}

.phone-screen {
  height: calc(100% - 44px);
  background: var(--bg-primary);
  border-radius: 28px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.mock-button {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast);
  cursor: pointer;
}

.mock-button svg {
  width: 28px;
  height: 28px;
  fill: white;
  opacity: 0.9;
}

.mock-button-blue {
  background: var(--accent-blue);
  box-shadow: 0 6px 0 var(--accent-blue-dark), 0 8px 20px rgba(66, 133, 244, 0.3);
}

.mock-button-green {
  background: var(--accent-green);
  box-shadow: 0 6px 0 var(--accent-green-dark), 0 8px 20px rgba(52, 168, 83, 0.3);
}

.mock-button-red {
  background: var(--accent-red);
  box-shadow: 0 6px 0 var(--accent-red-dark), 0 8px 20px rgba(234, 67, 53, 0.3);
}

.mock-button-orange {
  background: var(--accent-orange);
  box-shadow: 0 6px 0 var(--accent-orange-dark), 0 8px 20px rgba(251, 188, 4, 0.3);
}

.mock-button:hover {
  transform: translateY(-2px);
}

@media (max-width: 968px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

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

  .hero-visual {
    order: -1;
  }

  .phone-frame {
    width: 240px;
    height: 480px;
  }
}

/* =====================================================
   PROBLEM SECTION
   ===================================================== */
.problem {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.problem-card {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.problem-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--bg-tertiary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.problem-icon svg {
  width: 36px;
  height: 36px;
  fill: var(--text-secondary);
}

.problem-icon-crossed {
  position: relative;
}

.crossed-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-red);
  text-decoration: line-through;
  text-decoration-thickness: 3px;
}

.problem-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.problem-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.problem-solution {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 3rem;
  background: linear-gradient(145deg, var(--bg-tertiary), var(--bg-card));
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.solution-intro {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--accent-blue);
}

.solution-text {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.solution-text strong {
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .problem-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   FEATURES SECTION
   ===================================================== */
.features {
  padding: var(--section-padding) 0;
}

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

.feature-card {
  background: var(--bg-secondary);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 255, 255, 0.1);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.feature-icon-blue {
  background: var(--accent-blue);
  box-shadow: 0 4px 0 var(--accent-blue-dark);
}

.feature-icon-green {
  background: var(--accent-green);
  box-shadow: 0 4px 0 var(--accent-green-dark);
}

.feature-icon-red {
  background: var(--accent-red);
  box-shadow: 0 4px 0 var(--accent-red-dark);
}

.feature-icon-orange {
  background: var(--accent-orange);
  box-shadow: 0 4px 0 var(--accent-orange-dark);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (max-width: 968px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   HOW IT WORKS SECTION
   ===================================================== */
.how-it-works {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  max-width: 280px;
  text-align: center;
  padding: 2rem;
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--gradient-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 0 var(--accent-blue-dark);
}

.step-icon {
  width: 80px;
  height: 80px;
  background: var(--bg-card);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.step-icon svg {
  width: 36px;
  height: 36px;
  fill: var(--accent-blue);
}

.step h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

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

.helper-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.helper-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.5rem;
  background: var(--bg-tertiary);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: all var(--transition-fast);
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.3);
}

.helper-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.helper-btn:hover {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 0 var(--accent-blue-dark), 0 8px 20px rgba(66, 133, 244, 0.3);
}

.step-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-blue), transparent);
  margin-top: 5rem;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .steps {
    flex-direction: column;
    align-items: center;
  }

  .step-connector {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, var(--accent-blue), transparent);
    margin: 0;
  }
}

/* =====================================================
   DEMO SECTION
   ===================================================== */
.demo {
  padding: var(--section-padding) 0;
}

.demo-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.25rem;
  margin-bottom: 3rem;
  margin-top: -2rem;
}

.demo-showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.demo-desktop {
  flex-shrink: 0;
}

.demo-desktop-frame {
  width: 400px;
  background: var(--bg-secondary);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.demo-desktop-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--bg-tertiary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.demo-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.demo-dot-red { background: #ff5f57; }
.demo-dot-yellow { background: #ffbd2e; }
.demo-dot-green { background: #28ca41; }

.demo-app-name {
  margin-left: auto;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.demo-desktop-content {
  padding: 2rem;
  min-height: 200px;
}

.demo-code-lines {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.demo-code-line {
  height: 12px;
  background: var(--bg-tertiary);
  border-radius: 4px;
  width: 100%;
}

.demo-code-line.short { width: 40%; }
.demo-code-line.medium { width: 70%; }

.demo-phone {
  flex-shrink: 0;
}

.demo-phone-frame {
  width: 200px;
  height: 400px;
  background: linear-gradient(145deg, #2a2a35, #1a1a24);
  border-radius: 32px;
  padding: 10px;
  box-shadow: var(--shadow-lg);
}

.demo-phone-notch {
  width: 60px;
  height: 20px;
  background: #0a0a0f;
  border-radius: 12px;
  margin: 0 auto 12px;
}

.demo-phone-screen {
  height: calc(100% - 32px);
  background: var(--bg-primary);
  border-radius: 22px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
}

.demo-button-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  align-content: center;
}

.demo-button-grid .mock-button {
  width: 100%;
  height: 48px;
  border-radius: 10px;
}

.demo-button-grid .mock-button svg {
  width: 20px;
  height: 20px;
}

.demo-config-name {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 0.75rem;
}

@media (max-width: 768px) {
  .demo-showcase {
    flex-direction: column;
    gap: 2rem;
  }

  .demo-desktop-frame {
    width: 100%;
    max-width: 400px;
  }
}

/* =====================================================
   BADGE (Soon, New, etc.)
   ===================================================== */
.badge-soon {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.5rem;
  background: var(--accent-orange);
  color: #000;
  border-radius: 6px;
  margin-left: 0.5rem;
  vertical-align: middle;
}

/* =====================================================
   PAD BUILDER SECTION
   ===================================================== */
.pad-builder {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
}

.pad-builder-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.25rem;
  margin-bottom: 3rem;
  margin-top: -2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pad-builder-features {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.pad-builder-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 500;
}

.pad-builder-feature svg {
  width: 24px;
  height: 24px;
  fill: var(--accent-blue);
}

.pad-builder-cta {
  text-align: center;
}

@media (max-width: 640px) {
  .pad-builder-features {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
}

/* =====================================================
   FAQ SECTION
   ===================================================== */
.faq {
  padding: var(--section-padding) 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-secondary);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition: border-color var(--transition-normal);
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.1);
}

.faq-item.active {
  border-color: var(--accent-blue);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: color var(--transition-fast);
}

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

.faq-icon {
  width: 24px;
  height: 24px;
  fill: var(--text-secondary);
  transition: transform var(--transition-normal), fill var(--transition-normal);
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  fill: var(--accent-blue);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal), padding var(--transition-normal);
}

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

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1rem;
}

@media (max-width: 640px) {
  .faq-question {
    font-size: 1rem;
    padding: 1.25rem;
  }

  .faq-answer p {
    padding: 0 1.25rem 1.25rem;
    font-size: 0.95rem;
  }
}

/* =====================================================
   DOWNLOAD SECTION
   ===================================================== */
.download {
  padding: var(--section-padding) 0;
  background: var(--bg-secondary);
}

.download-card {
  background: linear-gradient(145deg, var(--bg-tertiary), var(--bg-card));
  border-radius: 32px;
  padding: 4rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-glow-blue);
  position: relative;
  overflow: hidden;
}

.download-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(66, 133, 244, 0.1), transparent 50%);
  pointer-events: none;
}

.download-headline {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
}

.download-text {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  position: relative;
}

.download-badges {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.store-badge {
  display: block;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.store-badge svg {
  height: 52px;
  width: auto;
}

.store-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.download-helper-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  position: relative;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  padding: 3rem 0;
  background: var(--bg-primary);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.footer-name {
  font-weight: 600;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-link {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--text-primary);
}

.footer-copyright {
  color: var(--text-muted);
  font-size: 0.875rem;
}

@media (max-width: 640px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.animate-on-scroll:nth-child(1) { transition-delay: 0s; }
.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.4s; }
.animate-on-scroll:nth-child(6) { transition-delay: 0.5s; }

/* Button press animation */
@keyframes buttonPress {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

.mock-button.pressing {
  animation: buttonPress 0.2s ease;
}

/* =====================================================
   LEGAL PAGES
   ===================================================== */
.legal-page {
  padding-top: 8rem;
  padding-bottom: var(--section-padding);
  min-height: 100vh;
}

.legal-page h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.legal-page .last-updated {
  color: var(--text-muted);
  margin-bottom: 3rem;
}

.legal-page h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--accent-blue);
}

.legal-page p,
.legal-page li {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.legal-page ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-page a {
  color: var(--accent-blue);
  text-decoration: underline;
}

/* =====================================================
   404 PAGE
   ===================================================== */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.error-code {
  font-size: 8rem;
  font-weight: 800;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1rem;
}

.error-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.error-text {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}
