/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #2563eb;
  --primary-dark: #1d4ed8;
  --secondary-color: #10b981;
  --accent-color: #f59e0b;
  --text-primary: #1f2937;
  --text-secondary: #6b7280;
  --background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  --background-alt: rgba(255, 255, 255, 0.1);
  --border: rgba(255, 255, 255, 0.2);
  --border-light: rgba(255, 255, 255, 0.1);
  --success: #10b981;
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --glass-bg: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.3);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  --glass-inset: inset 0 1px 0 rgba(255, 255, 255, 0.5);
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: transparent;
  background-attachment: fixed;
  font-size: 16px;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Ensure main content doesn't get hidden behind fixed header */
main {
  padding-top: 6rem;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  border-radius: 0 0 20px 20px;
  z-index: 1000;
  transition: all 0.3s ease;
  min-height: 70px;
  box-shadow: var(--glass-shadow);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  text-decoration: none;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

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

.nav-links a {
  color: #1f2937;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.nav-links a:hover {
  color: #374151;
  transform: translateY(-1px);
}

.cta-button {
  background: #1f2937;
  color: white !important;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid #374151;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-button:hover {
  background: #374151;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Hero Section */
.hero {
  padding: 8rem 2rem 4rem;
  background: transparent;
  color: white;
  overflow: hidden;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
  opacity: 0.6;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #1f2937;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

.brand-highlight {
  background: linear-gradient(45deg, #f093fb, #f5576c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #374151;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.hero-story {
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-story p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  opacity: 0.95;
  color: rgba(255, 255, 255, 0.95);
}

.hero-story .story-intro {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: white;
}

.hero-story .story-problem {
  margin-bottom: 1.2rem;
}

.hero-story .story-solution {
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.hero-story .story-motivation {
  margin-bottom: 1.2rem;
}

.hero-story .story-goal {
  font-style: italic;
  margin-bottom: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-story .story-journey {
  font-weight: 500;
  margin-bottom: 0;
  color: white;
}

/* Story Section */
.story-section {
  padding: 4rem 0;
  background: transparent;
}

.story-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: var(--glass-shadow);
  border: 1px solid var(--glass-border);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.story-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
}

.story-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.8),
    transparent,
    rgba(255, 255, 255, 0.3)
  );
}

.story-card h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.story-content {
  text-align: left;
}

.story-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.story-content .story-intro {
  font-size: 1.3rem;
  font-weight: 600;
  color: white;
  margin-bottom: 2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.story-content .story-problem {
  margin-bottom: 1.5rem;
}

.story-content .story-solution {
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.story-content .story-motivation {
  margin-bottom: 1.5rem;
}

.story-content .story-goal {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.story-content .story-journey {
  font-weight: 500;
  margin-bottom: 0;
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.primary-button {
  background: #1f2937;
  color: white;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.primary-button:hover {
  background: #374151;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.primary-button.large {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

.secondary-button {
  background: transparent;
  color: #1f2937;
  border: 2px solid #1f2937;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.secondary-button:hover {
  background: #1f2937;
  color: white;
  border-color: #1f2937;
}

.hero-stats {
  display: flex;
  gap: 2rem;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  opacity: 0.8;
}

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

.app-mockup {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-icon-hero {
  width: 120px;
  height: 120px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}

.mockup-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

/* Features Section */
.features {
  padding: 5rem 0;
  background: transparent;
}

.features h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-subtitle {
  text-align: center;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--glass-shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.8),
    transparent,
    rgba(255, 255, 255, 0.3)
  );
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.2);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.feature-card p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Benefits Section */
.benefits {
  padding: 5rem 0;
  background: transparent;
}

.benefits-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.benefits-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.benefits-text p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.benefits-list {
  list-style: none;
  margin-bottom: 2rem;
}

.benefits-list li {
  padding: 0.75rem 0;
  font-size: 1.125rem;
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Phone Mockup */
.phone-mockup {
  width: 280px;
  height: 560px;
  background: #1f2937;
  border-radius: 2rem;
  padding: 1rem;
  margin: 0 auto;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 1.5rem;
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.app-interface {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 1rem;
  padding: 1.5rem;
  height: 200px;
  color: var(--text-primary);
  backdrop-filter: blur(10px);
}

.interface-header {
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.scan-indicator {
  width: 60px;
  height: 60px;
  border: 3px solid var(--primary-color);
  border-top: 3px solid transparent;
  border-radius: 50%;
  margin: 1rem auto;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.interface-content {
  text-align: center;
}

.stats-mini {
  margin-top: 1rem;
  padding: 0.5rem;
  background: var(--background-alt);
  border-radius: 0.5rem;
  font-size: 0.875rem;
}

/* Testimonials Section */
.testimonials {
  padding: 5rem 0;
  background: var(--background-alt);
}

.testimonials h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--text-primary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.testimonial-stars {
  color: var(--accent-color);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.testimonial p {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.testimonial cite {
  color: var(--text-secondary);
  font-style: normal;
  font-weight: 500;
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background: transparent;
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.cta-note {
  margin-top: 1rem !important;
  font-size: 0.875rem !important;
  opacity: 0.7 !important;
}

/* Footer */
footer {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: white;
  padding: 0.8rem 0 0.5rem;
  border-top: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.footer-section h4 {
  margin-bottom: 0.5rem;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.footer-section a:hover {
  color: white;
  transform: translateX(4px);
}

.footer-bottom {
  text-align: center;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  .nav-links {
    gap: 1rem;
  }

  .hero {
    padding: 8rem 1rem 3rem;
    min-height: 80vh;
  }

  /* Fix mobile header overlap */
  main {
    padding-top: 8rem !important;
  }
  
  /* Mobile glassmorphism adjustments */
  .feature-card,
  .story-card,
  .version-card {
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

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

  .benefits-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .container {
    padding: 0 1rem;
  }

  .features h2,
  .testimonials h2,
  .cta-content h2 {
    font-size: 2rem;
  }

  .benefits-text h2 {
    font-size: 2rem;
  }
  
  .story-card {
    padding: 2rem;
    margin: 0 1rem;
  }
  
  .story-card h2 {
    font-size: 2rem;
  }
  
  .story-content p {
    font-size: 1rem;
  }
  
  .story-content .story-intro {
    font-size: 1.2rem;
  }
}

/* About Page Specific Styles */
.features-hero {
  padding: 6rem 0 4rem;
  background: transparent;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.features-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
  opacity: 0.6;
}

.features-hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.features-detailed {
  padding: 5rem 0;
  background: transparent;
}

.features-grid-detailed {
  display: grid;
  gap: 4rem;
}

.feature-detailed {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 3rem;
  align-items: start;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--glass-shadow);
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
}

.feature-detailed::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
}

.feature-detailed::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.8),
    transparent,
    rgba(255, 255, 255, 0.3)
  );
}

.feature-detailed:nth-child(even) {
  grid-template-columns: 1fr 200px;
}

.feature-detailed:nth-child(even) .feature-visual {
  order: 2;
}

.feature-detailed:nth-child(even) .feature-content {
  order: 1;
}

.feature-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-icon-large {
  font-size: 4rem;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 2rem;
  box-shadow: var(--shadow-xl);
}

.feature-content h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.feature-content p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.feature-benefits {
  list-style: none;
  margin: 0;
  padding: 0;
}

.feature-benefits li {
  padding: 0.5rem 0;
  font-size: 1rem;
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.category-card {
  background: var(--background-alt);
  padding: 1.5rem;
  border-radius: 0.75rem;
  text-align: center;
  border: 1px solid var(--border);
}

.category-card h4 {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-primary);
}

.category-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0;
}

.settings-showcase {
  background: var(--background-alt);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.setting-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.setting-item:last-child {
  border-bottom: none;
}

.setting-label {
  font-weight: 500;
  color: var(--text-primary);
}

.setting-value {
  font-weight: 600;
  color: var(--primary-color);
}

.benefits-section {
  padding: 5rem 0;
  background: white;
}

.benefits-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--text-primary);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background: var(--background-alt);
  padding: 2.5rem;
  border-radius: 1.5rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

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

.benefit-stat {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
  margin-bottom: 1rem;
}

.benefit-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.benefit-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.integration-section {
  padding: 5rem 0;
  background: var(--background-alt);
}

.integration-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.integration-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.integration-text p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.integration-features {
  display: grid;
  gap: 1.5rem;
}

.integration-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.integration-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.integration-item h4 {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-primary);
}

.integration-item p {
  color: var(--text-secondary);
  margin: 0;
}

.app-ecosystem {
  position: relative;
  width: 400px;
  height: 400px;
  margin: 0 auto;
}

.central-app {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  box-shadow: var(--shadow-xl);
}

.connected-app {
  position: absolute;
  width: 80px;
  height: 80px;
  background: white;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  color: var(--primary-color);
  box-shadow: var(--shadow-md);
}

.connected-app:nth-child(2) {
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.connected-app:nth-child(3) {
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.connected-app:nth-child(4) {
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.connected-app:nth-child(5) {
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .hero-story {
    max-width: 100%;
  }
  
  .hero-story p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
  }
  
  .hero-story .story-intro {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
  }

  .primary-button,
  .secondary-button {
    padding: 0.875rem 1.5rem;
    width: 100%;
    text-align: center;
  }

  .phone-mockup {
    width: 200px;
    height: 400px;
  }
  
  /* Small screen glassmorphism adjustments */
  .feature-card,
  .story-card,
  .version-card {
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .features-hero-content h1 {
    font-size: 2rem;
  }

  .feature-detailed {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .feature-detailed:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .feature-detailed:nth-child(even) .feature-visual,
  .feature-detailed:nth-child(even) .feature-content {
    order: initial;
  }

  .integration-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .app-ecosystem {
    width: 300px;
    height: 300px;
  }

  .central-app {
    width: 100px;
    height: 100px;
    font-size: 0.875rem;
  }

  .connected-app {
    width: 60px;
    height: 60px;
    font-size: 0.625rem;
  }
}

/* Contact Page Specific Styles */
.contact-hero {
  padding: 6rem 0 4rem;
  background: transparent;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
  opacity: 0.6;
}

.contact-hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.contact-methods {
  padding: 5rem 0;
  background: transparent;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.contact-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--glass-shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
}

.contact-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.8),
    transparent,
    rgba(255, 255, 255, 0.3)
  );
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.2);
}

.contact-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.contact-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-card p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.contact-link {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 0.25rem;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.coming-soon {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--accent-color);
  font-weight: 500;
}

.faq-section {
  padding: 5rem 0;
  background: white;
}

.faq-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--text-primary);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.faq-item {
  background: var(--background-alt);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
}

.faq-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.faq-item p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.feedback-section {
  padding: 5rem 0;
  background: var(--background-alt);
}

.feedback-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.feedback-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.feedback-text p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.feedback-benefits {
  list-style: none;
  margin: 0;
  padding: 0;
}

.feedback-benefits li {
  padding: 0.75rem 0;
  font-size: 1rem;
  color: var(--text-primary);
}

.feedback-form {
  background: white;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-lg);
}

.feedback-form h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  text-align: center;
}

.feedback-form iframe {
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  width: 100%;
  min-height: 600px;
}

.contact-cta {
  padding: 5rem 0;
  background: var(--gradient-primary);
  color: white;
  text-align: center;
}

.contact-cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-cta p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.cta-buttons .secondary-button {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-buttons .secondary-button:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Additional responsive styles for contact page */
@media (max-width: 768px) {
  .contact-hero-content h1 {
    font-size: 2.5rem;
  }

  .feedback-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .primary-button,
  .cta-buttons .secondary-button {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .contact-hero-content h1 {
    font-size: 2rem;
  }

  .contact-card {
    padding: 2rem;
  }

  .feedback-form {
    padding: 1.5rem;
  }

  .feedback-form iframe {
    min-height: 500px;
  }
} 

/* Privacy Page Enhancements */
.privacy-hero {
  background: #f0f4f8;
  padding: 2.5em 1em 2em 1em;
  text-align: center;
  border-radius: 12px;
  margin-bottom: 2.5em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.privacy-hero h1 {
  font-size: 2.5em;
  margin-bottom: 0.5em;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.privacy-hero p {
  font-size: 1.25em;
  color: #333;
  margin: 0;
}
.privacy-content {
  background: #fff;
  padding: 2.5em 2em 2em 2em;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  margin-bottom: 2em;
}
.privacy-content h2 {
  font-size: 2em;
  margin-top: 2em;
  margin-bottom: 0.5em;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.privacy-content h3 {
  font-size: 1.25em;
  margin-top: 1.5em;
  margin-bottom: 0.3em;
  font-weight: 500;
}
.privacy-content ul {
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}
.privacy-content li {
  margin-bottom: 0.5em;
  font-size: 1.1em;
}
.privacy-date {
  font-size: 1.1em;
  color: #666;
  margin-bottom: 1.5em;
}
.highlight {
  background: #e6f7ff;
  color: #0077cc;
  font-weight: 600;
  padding: 0.1em 0.4em;
  border-radius: 4px;
}
.privacy-contact-box {
  background: #f7fafc;
  border: 1.5px solid #e0e7ef;
  border-radius: 10px;
  padding: 2em 1.5em 1.5em 1.5em;
  margin-top: 2.5em;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.privacy-contact-box h2 {
  font-size: 1.5em;
  margin-bottom: 0.5em;
}
.privacy-contact-box a {
  color: #0077cc;
  font-weight: 600;
  text-decoration: none;
}
.privacy-contact-box a:hover {
  text-decoration: underline;
}
.contact-friendly {
  color: #2e7d32;
  font-weight: 500;
  margin-top: 1em;
  font-size: 1.1em;
}
@media (max-width: 600px) {
  .privacy-content {
    padding: 1.2em 0.5em;
  }
  .privacy-hero {
    padding: 1.5em 0.5em 1em 0.5em;
  }
  
  /* Additional mobile header fix for smaller screens */
  main {
    padding-top: 9rem !important;
  }
} 

/* Terms and Conditions Page Enhancements */
.emergency-notice {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 8px;
  padding: 1.5em;
  margin: 2em 0;
  color: #856404;
}
.emergency-notice p {
  margin: 0;
  font-weight: 500;
}
.terms-agreement {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  border-radius: 8px;
  padding: 1.5em;
  margin: 2em 0;
  text-align: center;
  color: #155724;
}
.terms-agreement p {
  margin: 0;
  font-size: 1.1em;
  font-weight: 600;
} 

/* App Version Comparison Styles */
.version-comparison {
  padding: 5rem 0;
  background: var(--background-alt);
}

.version-comparison h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.comparison-card {
  background: white;
  padding: 2.5rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  position: relative;
}

.comparison-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.comparison-card.full-version {
  border: 2px solid var(--primary-color);
}

.comparison-card.lite-version {
  border: 2px solid var(--secondary-color);
}

.version-header {
  text-align: center;
  margin-bottom: 2rem;
}

.version-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.version-subtitle {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.price-tag {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  font-weight: 700;
  font-size: 1.125rem;
}

.price-tag.free {
  background: var(--secondary-color);
}

.price-note {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
  font-style: italic;
}

.cta-note-small {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
  font-style: italic;
}

.feature-list {
  list-style: none;
  margin: 0 0 2rem 0;
  padding: 0;
}

.feature-list li {
  padding: 0.75rem 0;
  font-size: 1rem;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-light);
}

.feature-list li:last-child {
  border-bottom: none;
}

/* Feature status styling */
.feature-list li:has(span:contains("❌")) {
  color: var(--text-secondary);
  opacity: 0.7;
}

.feature-list li:has(span:contains("⚠️")) {
  color: #f59e0b;
  font-weight: 500;
}

/* Alternative approach for feature status styling */
.feature-list li[data-status="limited"] {
  color: var(--text-secondary);
  opacity: 0.8;
}

.feature-list li[data-status="warning"] {
  color: #f59e0b;
  font-weight: 500;
}

.feature-list li[data-status="disabled"] {
  color: var(--text-secondary);
  opacity: 0.6;
  text-decoration: line-through;
}

.comparison-card .primary-button,
.comparison-card .secondary-button {
  width: 100%;
  text-align: center;
  margin-top: 1rem;
}

/* App Versions CTA Styles */
.app-versions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.version-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--glass-shadow);
  border: 1px solid var(--glass-border);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.version-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
}

.version-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.8),
    transparent,
    rgba(255, 255, 255, 0.3)
  );
}

.version-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.2);
}

.version-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.version-card p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.version-card ul {
  list-style: none;
  margin: 0 0 1.5rem 0;
  padding: 0;
  text-align: left;
}

.version-card li {
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Version card feature status styling */
.version-card li:contains("❌") {
  color: var(--text-secondary);
  opacity: 0.6;
  text-decoration: line-through;
}

.version-card li:contains("⚠️") {
  color: #f59e0b;
  font-weight: 500;
}

.version-card li:contains("✅") {
  color: var(--text-primary);
  font-weight: 500;
}

.version-card .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin: 1rem 0 0 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.version-card .secondary-button {
  background: var(--primary-color);
  color: white;
  border: 2px solid var(--primary-color);
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 1rem;
}

.version-card .secondary-button:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Feature status indicators */
.feature-disabled {
  color: var(--text-secondary) !important;
  opacity: 0.6 !important;
  text-decoration: line-through !important;
}

.feature-warning {
  color: #f59e0b !important;
  font-weight: 500 !important;
}

.feature-available {
  color: var(--text-primary) !important;
  font-weight: 500 !important;
}

/* Download Options Styles */
.download-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
}

.download-options .contact-link {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--background-alt);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.download-options .contact-link:hover {
  background: var(--primary-color);
  color: white;
}

/* Responsive adjustments for version comparison */
@media (max-width: 768px) {
  .comparison-grid {
    grid-template-columns: 1fr;
  }
  
  .app-versions {
    grid-template-columns: 1fr;
  }
  
  .comparison-card {
    padding: 2rem;
  }
  
  .version-card {
    padding: 1.5rem;
  }
} 

/* Social Media Page Styles */
.socials-hero {
  padding: 6rem 0 4rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
}

.socials-hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.socials-links {
  padding: 5rem 0;
  background: var(--background-alt);
}

.socials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.social-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}

.social-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  text-decoration: none;
  color: var(--text-primary);
}

.social-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-color);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.social-card:hover::before {
  transform: scaleX(1);
}

.social-card.facebook::before {
  background: #1877f2;
}

.social-card.instagram::before {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-card.youtube::before {
  background: #ff0000;
}

.social-card.tiktok::before {
  background: #000000;
}

.social-card.twitter::before {
  background: #1da1f2;
}

.social-card.reddit::before {
  background: #ff4500;
}

.social-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--background-alt);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-card:hover .social-icon {
  transform: scale(1.1);
}

.social-content {
  flex: 1;
}

.social-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.social-content p {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.social-handle {
  color: var(--primary-color);
  font-weight: 500;
  font-size: 0.875rem;
}

.social-arrow {
  font-size: 1.5rem;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.social-card:hover .social-arrow {
  color: var(--primary-color);
  transform: translateX(4px);
}

/* Community Section */
.community-section {
  padding: 5rem 0;
  background: white;
  text-align: center;
}

.community-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.community-content p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.community-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

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

.community-stat .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.community-stat .stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Responsive adjustments for social media page */
@media (max-width: 768px) {
  .socials-hero-content h1 {
    font-size: 2.5rem;
  }

  .socials-grid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }

  .social-card {
    padding: 1.5rem;
    gap: 1rem;
  }

  .social-icon {
    width: 50px;
    height: 50px;
    font-size: 2rem;
  }

  .community-stats {
    gap: 2rem;
  }

  .community-stat .stat-number {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .socials-hero-content h1 {
    font-size: 2rem;
  }

  .social-card {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .social-arrow {
    display: none;
  }

  .community-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
} 

/* Hide header on scroll */
.header-hidden {
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  header {
    min-height: 48px;
  }
  .navbar {
    padding: 0.5rem 0.5rem;
    gap: 0.25rem;
  }
  .nav-brand {
    font-size: 1.1rem;
    padding: 0.25rem 0;
  }
  .nav-links {
    gap: 0.25rem;
  }
  .nav-links a {
    padding: 0.25rem 0;
    font-size: 0.95rem;
  }
  .cta-button {
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
    margin-top: 0.25rem;
  }
} 

/* Blog Page Styles */
.blog-hero {
  padding: 6rem 0 3rem;
  background: transparent;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* DarkVeil full-screen canvas */
.darkveil-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  display: block;
}

.blog-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
  opacity: 0.6;
}
.blog-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}
.blog-hero p {
  font-size: 1.125rem;
  opacity: 0.9;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}
.blog-posts {
  padding: 3rem 0;
}
.blog-post {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--glass-shadow);
  max-width: 800px;
  margin: 0 auto 1.5rem;
  position: relative;
  overflow: hidden;
}

.blog-post::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
}

.blog-post::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.8),
    transparent,
    rgba(255, 255, 255, 0.3)
  );
}
.blog-post h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.blog-post em {
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .blog-hero h1 { font-size: 2rem; }
  .blog-hero p { font-size: 1rem; }
  .blog-post { padding: 1.5rem; }
} 

@media (max-width: 768px) {
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 0.75rem;
    row-gap: 0.25rem;
    width: 100%;
  }
  .nav-links a {
    white-space: nowrap;
  }
  .nav-brand {
    margin-bottom: 0.25rem;
  }
} 