/* ===== CSS Variables for Theming ===== */
:root {
  /* Enhanced Colors */
  --color-primary: #FF0076;
  --color-secondary: #FFAA00;
  --color-success: #00ffcc;
  --color-bg-dark: #0f0f0f;
  --color-bg-medium: #1a1a1a;
  --color-bg-light: #252525;
  --color-text-primary: #ffffff;
  --color-text-secondary: #e0e0e0;
  --color-text-muted: #a0a0a0;
  --color-input-bg: #2a2a2a;
  
  /* Social Media Colors */
  --color-twitter: #1DA1F2;
  --color-instagram: #E1306C;
  --color-tiktok: #ff0050;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 5rem;
  
  /* Typography - Updated to Inter */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-size-base: 16px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  
  /* Enhanced Shadows */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 6px 25px rgba(0, 0, 0, 0.4);
  --shadow-xl: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* ===== CSS Reset / Normalize ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* ===== Enhanced Base Styles ===== */
body, html {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  background-color: var(--color-bg-dark);
  color: var(--color-text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-width: 320px;
}

/* Prevent horizontal scroll on all devices */
* {
  max-width: 100vw;
}

/* Enhanced Focus styles for accessibility */
:focus {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== Accessibility Utilities ===== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: var(--spacing-sm);
  background-color: var(--color-bg-dark);
  color: var(--color-text-primary);
  text-decoration: none;
  border-radius: 5px;
}

.skip-link:focus {
  left: 50%;
  transform: translateX(-50%);
  top: var(--spacing-sm);
}

/* ===== Enhanced Header ===== */
.header {
  background-color: rgba(15, 15, 15, 0.95);
  padding: var(--spacing-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-normal);
}

.header.scrolled {
  padding: var(--spacing-sm) var(--spacing-md);
  background-color: rgba(15, 15, 15, 0.98);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

body {
  padding-top: 80px;
}

.logo-container {
  display: flex;
  align-items: center;
  transition: transform var(--transition-fast);
}

.logo-container:hover {
  transform: scale(1.05);
}

.logo {
  width: 31px;
  height: 40px;
  margin-right: var(--spacing-xs);
}

.logo-text {
  font-size: 1.8em;
  font-weight: 800;
  color: var(--color-text-primary);
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: var(--spacing-md);
}

.nav-links a {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-weight: 500;
  display: block;
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: 8px;
  transition: all var(--transition-fast);
  font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--color-text-primary);
  background-color: rgba(255, 170, 0, 0.1);
  transform: translateY(-1px);
}

.nav-links a[aria-current="page"] {
  color: var(--color-secondary);
  background-color: rgba(255, 170, 0, 0.1);
}

.burger {
  display: none;
  font-size: 2rem;
  background: none;
  color: var(--color-text-primary);
  border: none;
  cursor: pointer;
  padding: var(--spacing-xs);
  transition: color var(--transition-fast);
}

.burger:hover,
.burger:focus-visible {
  color: var(--color-secondary);
}

/* ===== Enhanced Typography ===== */
.section-heading {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--color-text-primary);
  text-align: center;
  margin-bottom: var(--spacing-md);
  word-wrap: break-word;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.section-heading.gradient {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subheading {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  font-weight: 400;
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto var(--spacing-xl);
  line-height: 1.6em;
  text-align: center;
  padding: 0 var(--spacing-md);
  word-wrap: break-word;
}

.section-label {
  font-size: 1.1em;
  margin-bottom: var(--spacing-sm);
  font-weight: 600;
  text-align: center;
}

.section-label span {
  color: var(--color-secondary);
  font-weight: 700;
}

/* ===== Enhanced Hero Section ===== */
.hero-split {
  display: flex;
  min-height: calc(100vh - 80px);
  width: 100%;
  align-items: stretch;
  background: none;
  padding: 0;
  margin-top: -80px;
  padding-top: 80px;
  position: relative;
}

.hero-split::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at top left, rgba(255, 0, 118, 0.1) 0%, transparent 50%),
              radial-gradient(ellipse at bottom right, rgba(255, 170, 0, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 768px), (max-device-width: 768px) {
  .hero-split {
    flex-direction: column !important;
    min-height: auto;
  }
  
  .hero-content {
    order: 2;
    min-height: 500px;
    width: 100% !important;
    flex: none !important;
  }
  
  .hero-image {
    order: 1;
    min-height: 60vh;
    width: 100% !important;
    flex: none !important;
  }
}

.hero-content {
  flex: 1;
  background: linear-gradient(135deg, var(--color-bg-medium) 0%, var(--color-bg-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-width: 0;
  z-index: 1;
}

.hero-content::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -100px;
  width: 300px;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 0, 118, 0.15), transparent);
  transform: rotate(45deg);
  animation: shimmer 10s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%) rotate(45deg); }
  100% { transform: translateX(200%) rotate(45deg); }
}

.hero-content-inner {
  padding: var(--spacing-xl) var(--spacing-xxl);
  max-width: 650px;
  width: 100%;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}

@media (max-width: 480px) {
  .hero-content-inner {
    padding: var(--spacing-lg) var(--spacing-md);
  }
}

.hero-split h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  margin-bottom: var(--spacing-sm);
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

/* New Hero Typography Styles */
.hero-tagline {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-xs);
  font-weight: 400;
  line-height: 1.3;
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--color-text-muted);
  margin-bottom: var(--spacing-xl);
  font-weight: 300;
  line-height: 1.5;
  max-width: 500px;
}

/* New Hero Stats Styles */
.hero-stats {
  display: flex;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
  flex-wrap: wrap;
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-secondary);
  display: block;
  line-height: 1;
}

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

.hero-image {
  flex: 1.2;
  background-image: url('img/hero.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  min-height: 500px;
  background-color: var(--color-bg-dark);
}

.hero-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.3) 0%, transparent 30%);
  pointer-events: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .visitor-counter {
        padding: 1.5rem;
        margin: 2rem 1rem;
    }
    
    .visitor-counter h3 {
        font-size: 1.3rem;
    }
    
    .visitor-number {
        font-size: 2.5rem;
    }
}
/* Enhanced CTA Button */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  margin-top: var(--spacing-sm);
  padding: 18px 48px;
  background: linear-gradient(135deg, var(--color-primary), #ff1a85);
  color: var(--color-text-primary);
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all var(--transition-normal);
  box-shadow: 0 8px 32px rgba(255, 0, 118, 0.4);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover,
.cta-button:focus-visible {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 0, 118, 0.6);
}

.cta-button:active {
  transform: translateY(-1px);
}

/* ===== NEW: Enhanced Social Proof Section with Momentum Framing ===== */
.social-proof {
  background: linear-gradient(135deg, var(--color-bg-medium) 0%, var(--color-bg-light) 100%);
  padding: var(--spacing-xl) var(--spacing-md);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.social-proof::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 25% 25%, rgba(255, 0, 118, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 75% 75%, rgba(255, 170, 0, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.social-proof-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.social-proof h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-sm);
}

.momentum-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-xl);
  font-weight: 400;
  font-style: italic;
}

/* Momentum Stats Grid */
.momentum-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xxl);
}

.momentum-stat {
  background: rgba(255, 255, 255, 0.03);
  padding: var(--spacing-lg);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.momentum-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 0, 118, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-normal);
  pointer-events: none;
}

.momentum-stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.momentum-stat:hover::before {
  opacity: 1;
}

.momentum-icon {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-sm);
  display: block;
  position: relative;
  z-index: 1;
}

.momentum-label {
  font-size: 1.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
				 
  margin-bottom: var(--spacing-xs);
  position: relative;
  z-index: 1;
}

.momentum-description {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  font-weight: 400;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}
/* ===== FAQ SECTION STYLES ===== */

.faq-section {
  padding: var(--spacing-xxl) 5vw;
  background: linear-gradient(135deg, var(--color-bg-dark) 0%, var(--color-bg-medium) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* FAQ Background Animation */
.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 30%, rgba(255, 0, 118, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 75% 70%, rgba(255, 170, 0, 0.06) 0%, transparent 50%);
  animation: faqGlow 8s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes faqGlow {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}

.faq-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* FAQ Grid */
.faq-grid {
  display: grid;
  gap: var(--spacing-md);
  margin-top: var(--spacing-xl);
  text-align: left;
}

/* FAQ Items */
.faq-item {
  background: linear-gradient(145deg, 
    rgba(255, 255, 255, 0.03) 0%, 
    rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all var(--transition-normal);
  position: relative;
}

.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(255, 0, 118, 0.08) 0%, 
    rgba(255, 170, 0, 0.08) 100%);
  opacity: 0;
  transition: opacity var(--transition-normal);
  pointer-events: none;
  border-radius: 16px;
}

.faq-item:hover::before {
  opacity: 1;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 170, 0, 0.2);
}

/* FAQ Questions (Buttons) */
.faq-question {
  width: 100%;
  padding: var(--spacing-lg);
  background: none;
  border: none;
  color: var(--color-text-primary);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-md);
  transition: all var(--transition-fast);
  font-family: var(--font-primary);
  position: relative;
  z-index: 2;
}

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

.faq-question:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

/* FAQ Icons */
.faq-icon {
  flex-shrink: 0;
  color: var(--color-secondary);
  transition: transform var(--transition-normal);
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

/* FAQ Answers */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
}

.faq-answer p {
  padding: 0 var(--spacing-lg) var(--spacing-lg);
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}

.faq-answer strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

/* Open State Styling */
.faq-question[aria-expanded="true"] {
  color: var(--color-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .faq-section {
    padding: var(--spacing-xl) var(--spacing-sm);
  }
  
  .faq-content {
    max-width: 100%;
  }
  
  .faq-question {
    padding: var(--spacing-md);
    font-size: 1rem;
  }
  
  .faq-answer p {
    padding: 0 var(--spacing-md) var(--spacing-md);
    font-size: 0.95rem;
  }
  
  .faq-icon {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .faq-question {
    padding: var(--spacing-sm) var(--spacing-md);
    gap: var(--spacing-sm);
  }
  
  .faq-answer p {
    padding: 0 var(--spacing-md) var(--spacing-sm);
    line-height: 1.5;
  }
  
  .faq-item {
    border-radius: 12px;
  }
}

/* Enhanced Focus States for Accessibility */
.faq-question:focus-within {
  background-color: rgba(255, 170, 0, 0.05);
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .faq-section::before,
  .faq-item,
  .faq-answer,
  .faq-icon {
    animation: none !important;
    transition: none !important;
  }
  
  .faq-item:hover {
    transform: none;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .faq-item {
    border: 2px solid var(--color-secondary);
    background: var(--color-bg-dark);
  }
  
  .faq-question {
    color: var(--color-text-primary);
  }
  
  .faq-question:hover,
  .faq-question[aria-expanded="true"] {
    color: var(--color-secondary);
  }
}
/* Creator Feedback Section */
.creator-feedback {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.feedback-item {
  background: rgba(255, 255, 255, 0.02);
  padding: var(--spacing-lg);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.feedback-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.feedback-quote {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
  font-style: italic;
  position: relative;
}

.feedback-quote::before {
  content: '"';
  font-size: 2.5rem;
  color: var(--color-primary);
  position: absolute;
  top: -8px;
  left: -8px;
  line-height: 1;
  opacity: 0.3;
}

.feedback-author {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: white;
  font-size: 0.85rem;
}

.author-info {
  text-align: left;
}

.author-name {
  font-weight: 600;
  color: var(--color-text-primary);
  font-size: 0.9rem;
}

.author-role {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* Momentum CTA Section */
.momentum-cta {
  background: rgba(255, 255, 255, 0.03);
  padding: var(--spacing-xl);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.momentum-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 0, 118, 0.05) 0%, rgba(255, 170, 0, 0.05) 100%);
  pointer-events: none;
}

.momentum-cta h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: var(--spacing-sm);
  position: relative;
  z-index: 1;
}

.momentum-cta p {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ===== ENHANCED FEATURES SECTION - KEY DIFFERENTIATORS ===== */

.features {
  padding: var(--spacing-xxl) 5vw;
  background: linear-gradient(135deg, var(--color-bg-dark) 0%, var(--color-bg-medium) 50%, var(--color-bg-dark) 100%);
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

/* Enhanced Background with Moving Gradient */
.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 0, 118, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 170, 0, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(0, 255, 204, 0.03) 0%, transparent 40%);
  animation: backgroundPulse 8s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes backgroundPulse {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.1); }
}

.features-content {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}

/* Enhanced Section Headers for Key Differentiators */
.features .section-heading {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary), var(--color-success));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--spacing-sm);
  text-shadow: 0 4px 20px rgba(255, 0, 118, 0.3);
  position: relative;
}

.features .section-heading::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  border-radius: 2px;
  animation: underlineGlow 3s ease-in-out infinite;
}

@keyframes underlineGlow {
  0%, 100% { box-shadow: 0 0 10px rgba(255, 0, 118, 0.5); }
  50% { box-shadow: 0 0 20px rgba(255, 170, 0, 0.8); }
}

.features .section-subheading {
  font-size: clamp(1.2rem, 2.8vw, 1.5rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-xxl);
  max-width: 800px;
  font-weight: 500;
  line-height: 1.5;
}

/* Enhanced Feature Grid for Key Differentiators */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl);
  padding: 0 var(--spacing-sm);
  position: relative;
}

/* Individual Feature Items - Enhanced for Differentiators */
.feature-item {
  background: linear-gradient(145deg, 
    rgba(255, 255, 255, 0.02) 0%, 
    rgba(255, 255, 255, 0.05) 50%, 
    rgba(255, 255, 255, 0.02) 100%);
  backdrop-filter: blur(20px);
  padding: var(--spacing-xl) var(--spacing-lg);
  border-radius: 24px;
  text-align: center;
  color: var(--color-text-primary);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* Animated Border Effect */
.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(255, 0, 118, 0.15) 0%, 
    rgba(255, 170, 0, 0.15) 50%,
    rgba(0, 255, 204, 0.15) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  border-radius: 24px;
}

/* Glowing Orb Effect */
.feature-item::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 0, 118, 0.1) 0%, transparent 70%);
  transform: scale(0);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.feature-item:hover::before {
  opacity: 1;
}

.feature-item:hover::after {
  transform: scale(1.5);
}

.feature-item:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 
    0 25px 50px rgba(255, 0, 118, 0.25),
    0 15px 30px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 0, 118, 0.3);
}

/* Enhanced Feature Titles */
.feature-item h3 {
  color: var(--color-secondary);
  margin-bottom: var(--spacing-md);
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  font-weight: 800;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 10px rgba(255, 170, 0, 0.3);
  letter-spacing: -0.5px;
}

/* Differentiator Badge */
.feature-item h3::before {
  content: '★';
  position: absolute;
  top: -8px;
  right: -8px;
  color: var(--color-primary);
  font-size: 1.2rem;
  opacity: 0;
  transform: scale(0) rotate(180deg);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.feature-item:hover h3::before {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* Enhanced Feature Descriptions */
.feature-item p {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-lg);
  line-height: 1.7;
  position: relative;
  z-index: 2;
  font-weight: 400;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

/* Enhanced Feature Images */
.feature-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 16px;
  box-shadow: 
    0 12px 30px rgba(0, 0, 0, 0.4),
    0 4px 15px rgba(255, 0, 118, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.feature-image:hover {
  transform: scale(1.05) rotate(1deg);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.5),
    0 8px 25px rgba(255, 170, 0, 0.3);
  border-color: rgba(255, 170, 0, 0.4);
}

/* Specific Styling for Each Differentiator */
.feature-item:nth-child(1) {
  background: linear-gradient(145deg, 
    rgba(255, 0, 118, 0.03) 0%, 
    rgba(255, 255, 255, 0.02) 100%);
}

.feature-item:nth-child(1):hover {
  box-shadow: 
    0 25px 50px rgba(255, 0, 118, 0.3),
    0 15px 30px rgba(0, 0, 0, 0.5);
}

.feature-item:nth-child(2) {
  background: linear-gradient(145deg, 
    rgba(255, 170, 0, 0.03) 0%, 
    rgba(255, 255, 255, 0.02) 100%);
}

.feature-item:nth-child(2):hover {
  box-shadow: 
    0 25px 50px rgba(255, 170, 0, 0.3),
    0 15px 30px rgba(0, 0, 0, 0.5);
}

.feature-item:nth-child(3) {
  background: linear-gradient(145deg, 
    rgba(0, 255, 204, 0.03) 0%, 
    rgba(255, 255, 255, 0.02) 100%);
}

.feature-item:nth-child(3):hover {
  box-shadow: 
    0 25px 50px rgba(0, 255, 204, 0.3),
    0 15px 30px rgba(0, 0, 0, 0.5);
}

/* Feature Number Indicators */
.feature-item:nth-child(1)::before {
  background: linear-gradient(135deg, rgba(255, 0, 118, 0.15), rgba(255, 0, 118, 0.05));
}

.feature-item:nth-child(2)::before {
  background: linear-gradient(135deg, rgba(255, 170, 0, 0.15), rgba(255, 170, 0, 0.05));
}

.feature-item:nth-child(3)::before {
  background: linear-gradient(135deg, rgba(0, 255, 204, 0.15), rgba(0, 255, 204, 0.05));
}

/* Responsive Enhancements for Features */
@media (max-width: 768px) {
  .features {
    padding: var(--spacing-xl) var(--spacing-sm);
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    max-width: 420px;
    margin: var(--spacing-xl) auto 0;
  }
  
  .feature-item {
    padding: var(--spacing-lg);
    margin: 0;
  }
  
  .feature-item:hover {
    transform: translateY(-8px) scale(1.01);
  }
  
  .features .section-heading::after {
    width: 60px;
    height: 3px;
  }
}

@media (max-width: 480px) {
  .feature-grid {
    max-width: 350px;
  }
  
  .feature-item {
    padding: var(--spacing-md) var(--spacing-sm);
    border-radius: 20px;
  }
  
  .feature-image {
    max-width: 250px;
    border-radius: 12px;
  }
  
  .feature-item h3 {
    font-size: 1.3rem;
  }
  
  .feature-item p {
    font-size: 0.95rem;
    max-width: 280px;
  }
}

/* Medium Screens */
@media (max-width: 1024px) and (min-width: 769px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    max-width: 900px;
    margin: var(--spacing-xl) auto 0;
  }
  
  .feature-item:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 420px;
    margin: 0 auto;
  }
}

/* Large Screens */
@media (min-width: 1200px) {
  .feature-grid {
    max-width: 1200px;
    margin: var(--spacing-xl) auto 0;
  }
  
  .feature-item {
    padding: var(--spacing-xxl) var(--spacing-xl);
  }
  
  .feature-image {
    max-width: 320px;
  }
}

/* Enhanced Focus States for Accessibility */
.feature-item:focus-within {
  outline: 3px solid var(--color-secondary);
  outline-offset: 4px;
  transform: translateY(-8px) scale(1.01);
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .feature-item,
  .feature-image,
  .features::before {
    transition: none !important;
    animation: none !important;
  }
  
  .feature-item:hover {
    transform: none;
  }
  
  .feature-image:hover {
    transform: none;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .feature-item {
    border: 2px solid var(--color-secondary);
    background: var(--color-bg-dark);
  }
  
  .feature-item:hover {
    border-color: var(--color-primary);
    box-shadow: 0 0 20px var(--color-primary);
  }
  
  .feature-item h3 {
    color: var(--color-secondary);
    text-shadow: none;
  }
}
/* ===== ENHANCED PROBLEM SECTION - "TIRED OF THE SAME OLD REACTION CONTENT?" ===== */

.problem-section {
  padding: var(--spacing-xxl) 5vw;
  background: linear-gradient(135deg, 
    var(--color-bg-medium) 0%, 
    var(--color-bg-dark) 30%,
    var(--color-bg-medium) 70%,
    var(--color-bg-dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Dynamic Background Animation */
.problem-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 15% 25%, rgba(220, 53, 69, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 85% 75%, rgba(255, 0, 118, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 170, 0, 0.06) 0%, transparent 60%);
  animation: problemPulse 6s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes problemPulse {
  0% { 
    opacity: 0.7; 
    transform: scale(1) rotate(0deg); 
  }
  100% { 
    opacity: 1; 
    transform: scale(1.1) rotate(2deg); 
  }
}

/* Floating Frustration Icons */
.problem-section::after {
  content: '😤💔🙄😴';
  position: absolute;
  top: 10%;
  right: 5%;
  font-size: 1.5rem;
  opacity: 0.1;
  animation: floatFrustration 8s ease-in-out infinite;
  pointer-events: none;
  letter-spacing: 1rem;
}

@keyframes floatFrustration {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg); 
    opacity: 0.1; 
  }
  50% { 
    transform: translateY(-20px) rotate(5deg); 
    opacity: 0.2; 
  }
}

.problem-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Enhanced Problem Section Heading */
.problem-section .section-heading {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-xl);
  text-shadow: 0 4px 20px rgba(255, 0, 118, 0.3);
  position: relative;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* Frustrated Emphasis Effect */
.problem-section .section-heading::before {
  content: '😡';
  position: absolute;
  top: -20px;
  left: -40px;
  font-size: 2rem;
  opacity: 0;
  animation: frustrationPop 4s ease-in-out infinite;
  transform: scale(0) rotate(180deg);
}

@keyframes frustrationPop {
  0%, 90%, 100% { 
    opacity: 0; 
    transform: scale(0) rotate(180deg); 
  }
  5%, 15% { 
    opacity: 0.6; 
    transform: scale(1.2) rotate(0deg); 
  }
  10% { 
    transform: scale(0.9) rotate(-10deg); 
  }
}

/* Problem Grid - Enhanced Layout */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xxl);
  position: relative;
}

/* Individual Problem Items */
.problem-item {
  background: linear-gradient(145deg, 
    rgba(220, 53, 69, 0.05) 0%, 
    rgba(255, 255, 255, 0.02) 50%,
    rgba(0, 0, 0, 0.1) 100%);
  backdrop-filter: blur(15px);
  padding: var(--spacing-xl) var(--spacing-lg);
  border-radius: 20px;
  border: 1px solid rgba(220, 53, 69, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-align: center;
}

/* Frustrated Glow Effect */
.problem-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(220, 53, 69, 0.1) 0%, 
    rgba(255, 0, 118, 0.08) 50%,
    transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  border-radius: 20px;
}

/* Shake Animation on Hover */
.problem-item:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 15px 35px rgba(220, 53, 69, 0.2),
    0 8px 20px rgba(0, 0, 0, 0.4);
  border-color: rgba(220, 53, 69, 0.3);
  animation: frustrationShake 0.6s ease-in-out;
}

@keyframes frustrationShake {
  0%, 100% { transform: translateY(-8px) translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateY(-8px) translateX(-2px); }
  20%, 40%, 60%, 80% { transform: translateY(-8px) translateX(2px); }
}

.problem-item:hover::before {
  opacity: 1;
}

/* Enhanced Problem Titles with Emoji */
.problem-item h3 {
  color: #dc3545;
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  font-weight: 800;
  margin-bottom: var(--spacing-md);
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 10px rgba(220, 53, 69, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  line-height: 1.2;
}

/* Problem Descriptions */
.problem-item p {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  line-height: 1.6;
  position: relative;
  z-index: 2;
  font-weight: 400;
  opacity: 0.9;
}

/* Specific Problem Item Styling */
.problem-item:nth-child(1) {
  background: linear-gradient(145deg, 
    rgba(220, 53, 69, 0.08) 0%, 
    rgba(255, 255, 255, 0.02) 100%);
}

.problem-item:nth-child(1):hover {
  box-shadow: 
    0 15px 35px rgba(220, 53, 69, 0.25),
    0 8px 20px rgba(0, 0, 0, 0.4);
}

.problem-item:nth-child(2) {
  background: linear-gradient(145deg, 
    rgba(255, 0, 118, 0.06) 0%, 
    rgba(255, 255, 255, 0.02) 100%);
}

.problem-item:nth-child(2):hover {
  box-shadow: 
    0 15px 35px rgba(255, 0, 118, 0.2),
    0 8px 20px rgba(0, 0, 0, 0.4);
}

.problem-item:nth-child(3) {
  background: linear-gradient(145deg, 
    rgba(255, 170, 0, 0.06) 0%, 
    rgba(255, 255, 255, 0.02) 100%);
}

.problem-item:nth-child(3):hover {
  box-shadow: 
    0 15px 35px rgba(255, 170, 0, 0.2),
    0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Enhanced Solution Callout */
.solution-callout {
  background: linear-gradient(135deg, 
    var(--color-bg-light) 0%, 
    var(--color-bg-medium) 50%,
    var(--color-bg-light) 100%);
  padding: var(--spacing-xxl);
  border-radius: 24px;
  border: 2px solid rgba(255, 170, 0, 0.2);
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}

/* Solution Glow Effect */
.solution-callout::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(255, 170, 0, 0.1) 0%, 
    rgba(0, 255, 204, 0.05) 50%,
    rgba(255, 0, 118, 0.08) 100%);
  opacity: 0.8;
  animation: solutionGlow 4s ease-in-out infinite alternate;
  pointer-events: none;
  border-radius: 24px;
}

@keyframes solutionGlow {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.02); }
}

/* Success Icon Animation */
.solution-callout::after {
  content: '✨✨✨';
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  opacity: 0.6;
  animation: successFloat 3s ease-in-out infinite;
  pointer-events: none;
  letter-spacing: 0.5rem;
}

@keyframes successFloat {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg); 
    opacity: 0.6; 
  }
  50% { 
    transform: translateY(-10px) rotate(5deg); 
    opacity: 0.9; 
  }
}

.solution-callout:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 25px 50px rgba(255, 170, 0, 0.2),
    0 15px 30px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 170, 0, 0.4);
}

/* Solution Callout Typography */
.solution-callout h3 {
  color: var(--color-secondary);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: var(--spacing-md);
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 15px rgba(255, 170, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
}

.solution-callout h3::before {
  content: '✨';
  font-size: 1.2em;
  animation: rocketBounce 2s ease-in-out infinite;
}

@keyframes rocketBounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(10deg); }
}

.solution-callout p {
  color: var(--color-text-primary);
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  line-height: 1.6;
  position: relative;
  z-index: 2;
  font-weight: 500;
  max-width: 800px;
  margin: 0 auto;
}

/* Responsive Design for Problem Section */
@media (max-width: 768px) {
  .problem-section {
    padding: var(--spacing-xl) var(--spacing-sm);
  }
  
  .problem-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
  }
  
  .problem-item {
    padding: var(--spacing-lg);
  }
  
  .solution-callout {
    padding: var(--spacing-xl) var(--spacing-lg);
    border-radius: 20px;
  }
  
  .problem-section::after {
    font-size: 1.2rem;
    top: 5%;
    right: 2%;
    letter-spacing: 0.5rem;
  }
  
  .solution-callout::after {
    font-size: 1.2rem;
    top: 15px;
    right: 15px;
    letter-spacing: 0.3rem;
  }
}

@media (max-width: 480px) {
  .problem-item {
    padding: var(--spacing-md);
    border-radius: 16px;
  }
  
  .solution-callout {
    padding: var(--spacing-lg) var(--spacing-md);
    border-radius: 16px;
  }
  
  .problem-item h3 {
    font-size: 1.2rem;
    flex-direction: column;
    gap: var(--spacing-xs);
  }
  
  .solution-callout h3 {
    font-size: 1.4rem;
    flex-direction: column;
    gap: var(--spacing-xs);
  }
}

/* Medium Screens */
@media (max-width: 1024px) and (min-width: 769px) {
  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
  }
  
  .problem-item:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 0 auto;
  }
}

/* Enhanced Focus States for Accessibility */
.problem-item:focus-within,
.solution-callout:focus-within {
  outline: 3px solid var(--color-secondary);
  outline-offset: 4px;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .problem-section::before,
  .problem-section::after,
  .solution-callout::before,
  .solution-callout::after,
  .problem-item,
  .solution-callout {
    animation: none !important;
    transition: none !important;
  }
  
  .problem-item:hover {
    animation: none !important;
    transform: translateY(-4px);
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .problem-item {
    border: 2px solid #dc3545;
    background: var(--color-bg-dark);
  }
  
  .solution-callout {
    border: 3px solid var(--color-secondary);
    background: var(--color-bg-dark);
  }
  
  .problem-item h3 {
    color: #dc3545;
    text-shadow: none;
  }
  
  .solution-callout h3 {
    color: var(--color-secondary);
    text-shadow: none;
  }
}
/* ===== Enhanced Email Collection ===== */
.email-collection {
  background: linear-gradient(135deg, var(--color-bg-light) 0%, var(--color-bg-medium) 100%);
  padding: var(--spacing-xxl) var(--spacing-md) var(--spacing-xl);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.email-collection::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 0, 118, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.email-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
  max-width: 450px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.form-group {
  width: 100%;
  text-align: left;
}

.email-form input[type="email"],
.email-form input[type="text"] {
  padding: 16px 20px;
  width: 100%;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  outline: none;
  background-color: var(--color-input-bg);
  color: var(--color-text-primary);
  transition: all var(--transition-fast);
  font-size: 1rem;
  font-family: var(--font-primary);
}

.email-form input:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(255, 170, 0, 0.1);
}

.email-form input::placeholder {
  color: var(--color-text-muted);
}

.email-form input:invalid:not(:placeholder-shown) {
  border-color: #dc3545;
}

.help-text {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: block;
}

.error-message {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: none;
}

.error-message.show {
  display: block;
}

.email-form button {
  padding: 16px 40px;
  border: none;
  background: linear-gradient(135deg, var(--color-primary), #ff1a85);
  color: var(--color-text-primary);
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: 0 6px 24px rgba(255, 0, 118, 0.4);
  margin-top: var(--spacing-sm);
  font-size: 1.1rem;
  font-family: var(--font-primary);
}

.email-form button:hover,
.email-form button:focus-visible {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  box-shadow: 0 8px 32px rgba(255, 170, 0, 0.5);
  transform: translateY(-2px);
}

.email-form button:active {
  transform: translateY(0);
}

.email-form button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.email-message {
  margin-top: var(--spacing-sm);
  font-weight: 500;
  color: var(--color-success);
}

/* ===== Enhanced How It Works ===== */
.how-it-works {
  background-color: var(--color-bg-medium);
  padding: var(--spacing-xxl) 5vw;
  text-align: center;
  position: relative;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(255, 0, 118, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(255, 170, 0, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.how-it-works h2 {
  font-size: clamp(2.2rem, 5vw, 3rem);
  margin-bottom: var(--spacing-xl);
  color: var(--color-text-primary);
  font-weight: 800;
  position: relative;
  z-index: 1;
}

.steps {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-lg);
  max-width: 800px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
  position: relative;
  z-index: 1;
}

.step {
  background: linear-gradient(135deg, var(--color-bg-light), var(--color-bg-dark));
  border-radius: 20px;
  padding: var(--spacing-xl) var(--spacing-lg);
  width: 100%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all var(--transition-normal);
  color: var(--color-text-primary);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 0, 118, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-normal);
  pointer-events: none;
}

.step:hover::before {
  opacity: 1;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(255, 0, 118, 0.3);
}

.step-number {
  font-size: 1.8em;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--color-text-primary);
  width: 56px;
  height: 56px;
  line-height: 56px;
  margin: 0 auto var(--spacing-md);
  border-radius: 50%;
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(255, 0, 118, 0.4);
  position: relative;
  z-index: 1;
}

.step h3 {
  font-size: 1.4em;
  color: var(--color-secondary);
  margin-bottom: var(--spacing-sm);
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.step p {
  font-size: 1rem;
  line-height: 1.6em;
  color: var(--color-text-secondary);
  position: relative;
  z-index: 1;
}

/* ===== Enhanced Founders Section ===== */
.founders-section {
  background-color: var(--color-bg-dark);
  padding: var(--spacing-xxl) var(--spacing-md);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.founders-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(255, 0, 118, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 170, 0, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.founders-section .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl);
  padding: 0 var(--spacing-md);
}

.founder-card {
  background: linear-gradient(135deg, var(--color-bg-medium) 0%, var(--color-bg-light) 100%);
  border-radius: 24px;
  padding: var(--spacing-xl);
  text-align: center;
  transition: all var(--transition-normal);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.founder-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 0, 118, 0.1) 0%, transparent 60%);
  border-radius: 24px;
  opacity: 0;
  transition: opacity var(--transition-normal);
  pointer-events: none;
}

.founder-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

.founder-card:hover::before {
  opacity: 1;
}

.founder-image-wrapper {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto var(--spacing-lg);
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  transition: border-color var(--transition-normal);
}

.founder-card:hover .founder-image-wrapper {
  border-color: var(--color-primary);
}

.founder-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.founder-card:hover .founder-image {
  transform: scale(1.1);
}

.founder-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-md);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.founder-image-wrapper:hover .founder-overlay {
  opacity: 1;
}

.founder-info {
  position: relative;
  z-index: 1;
}

.founder-name {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-secondary);
  margin-bottom: var(--spacing-xs);
}

.founder-role {
  font-size: 1.1rem;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: var(--spacing-md);
}

.founder-bio {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 350px;
  margin: 0 auto;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* ===== Enhanced Footer ===== */
.footer {
  text-align: center;
  padding: var(--spacing-xl) var(--spacing-md);
  background: linear-gradient(135deg, var(--color-bg-light) 0%, var(--color-bg-medium) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .social-icons {
  display: flex;
  justify-content: center;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.footer .social-icons a {
  text-decoration: none;
  font-size: 1.3em;
  padding: var(--spacing-sm);
  border-radius: 12px;
  transition: all var(--transition-fast);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 500;
}

.footer .social-icons a:hover,
.footer .social-icons a:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.footer .twitter { color: var(--color-twitter); }
.footer .instagram { color: var(--color-instagram); }
.footer .tiktok { color: var(--color-tiktok); }

.footer .twitter:hover { 
  background: rgba(29, 161, 242, 0.1);
  border-color: var(--color-twitter);
}
.footer .instagram:hover { 
  background: rgba(225, 48, 108, 0.1);
  border-color: var(--color-instagram);
}
.footer .tiktok:hover { 
  background: rgba(255, 0, 80, 0.1);
  border-color: var(--color-tiktok);
}

.footer p {
  color: var(--color-text-muted);
  font-size: 0.95em;
  line-height: 1.6;
}

.footer a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.footer a:hover,
.footer a:focus-visible {
  opacity: 0.8;
}

/* ===== Enhanced Scroll to Top Button ===== */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--color-text-primary);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-normal);
  z-index: 1000;
  box-shadow: 0 8px 32px rgba(255, 0, 118, 0.4);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(255, 0, 118, 0.6);
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
}

.scroll-to-top:active {
  transform: translateY(-2px);
}

.scroll-to-top svg {
  width: 24px;
  height: 24px;
  stroke-width: 3;
}

/* ===== Enhanced Responsive Design ===== */
@media (max-width: 768px) {
  .hero-split {
    flex-direction: column;
    min-height: auto;
  }
  
  .hero-content {
    order: 2;
    min-height: auto;
  }
  
  .hero-content::before {
    display: none;
  }
  
  .hero-content-inner {
    padding: var(--spacing-xl) var(--spacing-md);
    text-align: center;
  }
  
  .hero-image {
    order: 1;
    min-height: 400px;
    flex: none;
    background-size: contain;
    background-position: center;
  }
  
  .hero-stats {
    justify-content: center;
    text-align: center;
    gap: var(--spacing-md);
  }
  
  .stat-item {
    text-align: center;
  }
  
  .features {
    padding: var(--spacing-xl) var(--spacing-sm);
  }
  
  .feature-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
  }
  
  .feature-item {
    width: 100%;
    max-width: 400px;
    padding: var(--spacing-lg);
  }

  .burger {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: rgba(15, 15, 15, 0.98);
    position: absolute;
    top: 70px;
    right: 20px;
    width: 200px;
    padding: var(--spacing-md);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    z-index: 999;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links.nav-open {
    display: flex;
  }

  .social-proof {
    padding: var(--spacing-xl) var(--spacing-sm);
  }

  .momentum-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
  }

  .creator-feedback {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .momentum-cta {
    padding: var(--spacing-lg);
  }

  .email-collection {
    padding: var(--spacing-xl) var(--spacing-sm) var(--spacing-lg);
  }

  .founders-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    padding: 0;
  }
  
  .founder-card {
    max-width: 400px;
    margin: 0 auto;
    padding: var(--spacing-lg);
  }
  
  .founder-image-wrapper {
    width: 160px;
    height: 160px;
  }

  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  
  .scroll-to-top svg {
    width: 20px;
    height: 20px;
  }

  .footer .social-icons {
    gap: var(--spacing-md);
  }
}

@media (max-width: 480px) {
  .hero-content-inner {
    padding: var(--spacing-lg) var(--spacing-sm);
  }
  
  .hero-image {
    min-height: 350px;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: var(--spacing-md);
    align-items: center;
  }

  .cta-button {
    font-size: 1rem;
    padding: 16px 32px;
  }

  .momentum-stats {
    grid-template-columns: 1fr;
  }

  .nav-links {
    width: 180px;
    right: 10px;
  }

  .section-heading {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .section-subheading {
    font-size: 1rem;
    padding: 0 var(--spacing-sm);
  }

  .testimonial {
    padding: var(--spacing-md);
  }
}

/* ===== Enhanced Medium Screens ===== */
@media (max-width: 1024px) and (min-width: 769px) {
  .hero-split h1 {
    font-size: 4rem;
  }
  
  .hero-content-inner {
    padding: var(--spacing-lg) var(--spacing-xl);
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
  }

  .momentum-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .creator-feedback {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== Mobile Desktop Mode Fixes ===== */
@media (max-device-width: 812px) and (min-width: 768px) {
  .feature-grid,
  .founders-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  
  .feature-item,
  .founder-card {
    width: calc(100% - 2rem) !important;
    max-width: 500px !important;
    margin: 0 auto !important;
  }
  
  p, .feature-item p, .founder-bio {
    font-size: 1rem !important;
    line-height: 1.7 !important;
  }
  
  h3 {
    font-size: 1.4rem !important;
  }
  
  section {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .momentum-stats {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .creator-feedback {
    grid-template-columns: 1fr !important;
  }
}

/* ===== Dark Mode Enhancement ===== */
@media (prefers-color-scheme: dark) {
  :root {
    --color-bg-dark: #0a0a0a;
    --color-bg-medium: #151515;
    --color-bg-light: #202020;
    --color-text-primary: #ffffff;
    --color-text-secondary: #e5e5e5;
    --color-text-muted: #b0b0b0;
  }
}

/* ===== Reduced Motion Support ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .hero-content::before {
    animation: none !important;
  }
}

/* ===== Print Styles ===== */
@media print {
  body {
    background: white;
    color: black;
    font-size: 12pt;
  }
  
  .header,
  .footer,
  .burger,
  .email-form,
  .cta-button,
  .scroll-to-top {
    display: none;
  }
  
  .hero-split,
  .social-proof,
  .features,
  .how-it-works,
  .founders-section {
    border: 1px solid #ccc;
    page-break-inside: avoid;
    margin-bottom: 1rem;
    padding: 1rem;
  }
  
  .section-heading,
  .feature-item h3,
  .founder-name {
    color: black;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
}

/* ===== High Contrast Mode Support ===== */
@media (prefers-contrast: high) {
  :root {
    --color-bg-dark: #000000;
    --color-bg-medium: #1a1a1a;
    --color-bg-light: #333333;
    --color-text-primary: #ffffff;
    --color-text-secondary: #ffffff;
    --color-text-muted: #cccccc;
  }
  
  .feature-item,
  .step,
  .founder-card,
  .testimonial,
  .proof-stat {
    border: 2px solid var(--color-secondary);
  }
}

/* ===== Animation Performance Optimization ===== */
.feature-item,
.step,
.founder-card,
.testimonial,
.proof-stat,
.cta-button {
  will-change: transform;
}

.feature-item:hover,
.step:hover,
.founder-card:hover,
.testimonial:hover,
.proof-stat:hover,
.cta-button:hover {
  will-change: auto;
}
/* Override existing mobile nav styles with working burger menu */
@media (max-width: 768px) {
  .burger {
    display: block;
    z-index: 1001;
  }

  /* Override the existing nav-links styles for mobile */
  .nav-links {
    display: none !important; /* Force hide by default */
    flex-direction: column;
    background-color: rgba(15, 15, 15, 0.98);
    position: absolute;
    top: 100%; /* Position below header */
    right: 0;
    left: 0;
    width: 100%;
    padding: var(--spacing-lg) var(--spacing-md);
    border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: none;
    gap: var(--spacing-sm);
    animation: slideDown 0.3s ease-out;
  }

  /* Show navigation when nav-open class is added */
  .nav-links.nav-open {
    display: flex !important; /* Force show when open */
  }

  /* Mobile nav link styling */
  .nav-links a {
    width: 100%;
    text-align: center;
    padding: var(--spacing-md);
    border-radius: 8px;
    font-size: 1.1rem;
    transition: all var(--transition-fast);
    transform: none; /* Remove translateY on mobile */
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    background-color: rgba(255, 170, 0, 0.15);
    transform: none; /* Remove translateY on mobile */
  }

  /* Burger animation */
  .burger {
    transition: transform var(--transition-fast);
  }

  .burger:hover {
    transform: scale(1.1);
  }

  /* Burger active state */
  .burger[aria-expanded="true"] span {
    color: var(--color-secondary);
  }

  /* Adjust header padding for mobile */
  .header {
    padding: var(--spacing-sm) var(--spacing-md);
  }

  /* Ensure body has proper top padding on mobile */
  body {
    padding-top: 70px;
  }
}

/* Animation for menu slide down */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Enhanced burger menu for smaller screens */
@media (max-width: 480px) {
  .nav-links {
    padding: var(--spacing-md);
    gap: var(--spacing-xs);
  }

  .nav-links a {
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 1rem;
  }

  .header {
    padding: var(--spacing-xs) var(--spacing-sm);
  }

  body {
    padding-top: 60px;
  }
}
/* ===== CONTENT GUIDELINES SECTION ===== */
.content-guidelines {
  padding: var(--spacing-xxl) 5vw;
  background: linear-gradient(135deg, var(--color-bg-medium) 0%, var(--color-bg-light) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Background Animation */
.content-guidelines::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(0, 255, 204, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255, 170, 0, 0.08) 0%, transparent 50%);
  animation: guidelinesGlow 8s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes guidelinesGlow {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}

.content-guidelines h2 {
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-xl);
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, var(--color-success), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Content Types Grid */
.allowed-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.content-type {
  background: linear-gradient(145deg, 
    rgba(255, 255, 255, 0.03) 0%, 
    rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: var(--spacing-xl);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.content-type::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-normal);
  pointer-events: none;
  border-radius: 16px;
}

.content-type:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
}

.content-type:hover::before {
  opacity: 1;
}

/* Allowed Content Styling (Green theme) */
.content-type:nth-child(1),
.content-type:nth-child(2),
.content-type:nth-child(3),
.content-type:nth-child(4) {
  border-color: rgba(0, 255, 204, 0.2);
}

.content-type:nth-child(1):hover,
.content-type:nth-child(2):hover,
.content-type:nth-child(3):hover,
.content-type:nth-child(4):hover {
  box-shadow: 0 16px 32px rgba(0, 255, 204, 0.2);
  border-color: rgba(0, 255, 204, 0.4);
}

/* Not Allowed Content Styling (Red theme) */
.content-type:nth-child(5) {
  border-color: rgba(255, 0, 118, 0.2);
  background: linear-gradient(145deg, 
    rgba(255, 0, 118, 0.03) 0%, 
    rgba(255, 255, 255, 0.01) 100%);
}

.content-type:nth-child(5):hover {
  box-shadow: 0 16px 32px rgba(255, 0, 118, 0.2);
  border-color: rgba(255, 0, 118, 0.4);
}

.content-type h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  position: relative;
  z-index: 2;
}

/* Allowed content titles (Green) */
.content-type:nth-child(1) h3,
.content-type:nth-child(2) h3,
.content-type:nth-child(3) h3,
.content-type:nth-child(4) h3 {
  color: var(--color-success);
}

/* Not allowed content title (Red) */
.content-type:nth-child(5) h3 {
  color: var(--color-primary);
}

.content-type p {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  line-height: 1.6;
  position: relative;
  z-index: 2;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .content-guidelines {
    padding: var(--spacing-xl) var(--spacing-sm);
  }
  
  .allowed-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  
  .content-type {
    padding: var(--spacing-lg);
  }
}

@media (max-width: 480px) {
  .content-type {
    padding: var(--spacing-md);
    border-radius: 12px;
  }
  
  .content-type h3 {
    font-size: 1.2rem;
  }
  
  .content-type p {
    font-size: 0.95rem;
  }
}

/* Enhanced Focus States for Accessibility */
.content-type:focus-within {
  outline: 3px solid var(--color-secondary);
  outline-offset: 4px;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .content-guidelines::before,
  .content-type {
    animation: none !important;
    transition: none !important;
  }
  
  .content-type:hover {
    transform: none;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .content-type {
    border: 2px solid var(--color-secondary);
    background: var(--color-bg-dark);
  }
  
  .content-type:nth-child(4) {
    border-color: var(--color-primary);
  }
}
/* ===== FUNDING SECTION STYLES ===== */
.funding-section {
  padding: var(--spacing-xxl) 5vw;
  background: linear-gradient(135deg, 
    var(--color-bg-dark) 0%, 
    var(--color-bg-medium) 50%,
    var(--color-bg-dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Enhanced Background Animation */
.funding-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 0, 118, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 170, 0, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(0, 255, 204, 0.06) 0%, transparent 40%);
  animation: fundingPulse 8s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes fundingPulse {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.1); }
}

/* Floating Support Icons */
.funding-section::after {
  content: '🚀💡🤝✨';
  position: absolute;
  top: 10%;
  right: 5%;
  font-size: 1.8rem;
  opacity: 0.15;
  animation: floatSupport 10s ease-in-out infinite;
  pointer-events: none;
  letter-spacing: 1.5rem;
}

@keyframes floatSupport {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg); 
    opacity: 0.15; 
  }
  33% { 
    transform: translateY(-15px) rotate(3deg); 
    opacity: 0.25; 
  }
  66% { 
    transform: translateY(-5px) rotate(-2deg); 
    opacity: 0.2; 
  }
}

.funding-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Enhanced Funding Section Heading */
.funding-section h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary), var(--color-success));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--spacing-sm);
  text-shadow: 0 4px 20px rgba(255, 0, 118, 0.3);
  position: relative;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* Mission Emphasis Effect */
.funding-section h2::before {
  content: '🚀';
  position: absolute;
  top: -15px;
  left: -45px;
  font-size: 2.2rem;
  opacity: 0;
  animation: missionLaunch 6s ease-in-out infinite;
  transform: scale(0) rotate(180deg);
}

@keyframes missionLaunch {
  0%, 85%, 100% { 
    opacity: 0; 
    transform: scale(0) rotate(180deg) translateY(0px); 
  }
  5%, 15% { 
    opacity: 0.8; 
    transform: scale(1.3) rotate(0deg) translateY(-10px); 
  }
  10% { 
    transform: scale(1) rotate(-5deg) translateY(-15px); 
  }
}

.funding-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-xl);
  font-weight: 500;
  font-style: italic;
  position: relative;
}

/* Funding Grid */
.funding-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xxl);
  position: relative;
}

/* Individual Funding Items */
.funding-item {
  background: linear-gradient(145deg, 
    rgba(255, 255, 255, 0.04) 0%, 
    rgba(255, 255, 255, 0.01) 50%,
    rgba(0, 0, 0, 0.1) 100%);
  backdrop-filter: blur(15px);
  padding: var(--spacing-xl) var(--spacing-lg);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-align: center;
}

/* Support Glow Effect */
.funding-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(255, 0, 118, 0.08) 0%, 
    rgba(255, 170, 0, 0.06) 50%,
    rgba(0, 255, 204, 0.04) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  border-radius: 20px;
}

/* Gentle Rise Animation on Hover */
.funding-item:hover {
  transform: translateY(-12px);
  box-shadow: 
    0 20px 40px rgba(255, 0, 118, 0.15),
    0 10px 25px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 170, 0, 0.3);
}

.funding-item:hover::before {
  opacity: 1;
}

/* Enhanced Funding Titles with Emoji */
.funding-item h3 {
  color: var(--color-secondary);
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  font-weight: 800;
  margin-bottom: var(--spacing-md);
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 10px rgba(255, 170, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  line-height: 1.2;
}

/* Funding Descriptions */
.funding-item p {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  line-height: 1.6;
  position: relative;
  z-index: 2;
  font-weight: 400;
  opacity: 0.9;
  margin: 0;
}

/* Specific Funding Item Styling */
.funding-item:nth-child(1) {
  background: linear-gradient(145deg, 
    rgba(255, 0, 118, 0.06) 0%, 
    rgba(255, 255, 255, 0.02) 100%);
}

.funding-item:nth-child(1):hover {
  box-shadow: 
    0 20px 40px rgba(255, 0, 118, 0.2),
    0 10px 25px rgba(0, 0, 0, 0.3);
}

.funding-item:nth-child(2) {
  background: linear-gradient(145deg, 
    rgba(0, 255, 204, 0.06) 0%, 
    rgba(255, 255, 255, 0.02) 100%);
}

.funding-item:nth-child(2):hover {
  box-shadow: 
    0 20px 40px rgba(0, 255, 204, 0.15),
    0 10px 25px rgba(0, 0, 0, 0.3);
}

.funding-item:nth-child(3) {
  background: linear-gradient(145deg, 
    rgba(255, 170, 0, 0.06) 0%, 
    rgba(255, 255, 255, 0.02) 100%);
}

.funding-item:nth-child(3):hover {
  box-shadow: 
    0 20px 40px rgba(255, 170, 0, 0.15),
    0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Enhanced Funding CTA */
.funding-cta {
  background: linear-gradient(135deg, 
    var(--color-bg-light) 0%, 
    var(--color-bg-medium) 50%,
    var(--color-bg-light) 100%);
  padding: var(--spacing-xxl);
  border-radius: 24px;
  border: 2px solid rgba(255, 170, 0, 0.2);
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}

/* CTA Glow Effect */
.funding-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(255, 170, 0, 0.12) 0%, 
    rgba(255, 0, 118, 0.08) 50%,
    rgba(0, 255, 204, 0.06) 100%);
  opacity: 0.8;
  animation: ctaGlow 5s ease-in-out infinite alternate;
  pointer-events: none;
  border-radius: 24px;
}

@keyframes ctaGlow {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.02); }
}

/* Support Icon Animation */
.funding-cta::after {
  content: '💫🙌💫';
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 1.8rem;
  opacity: 0.7;
  animation: supportFloat 4s ease-in-out infinite;
  pointer-events: none;
  letter-spacing: 0.8rem;
}

@keyframes supportFloat {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg); 
    opacity: 0.7; 
  }
  50% { 
    transform: translateY(-12px) rotate(3deg); 
    opacity: 1; 
  }
}

.funding-cta:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 30px 60px rgba(255, 170, 0, 0.2),
    0 20px 40px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 170, 0, 0.4);
}

/* CTA Typography */
.funding-cta p:first-child {
  color: var(--color-text-primary);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
  position: relative;
  z-index: 2;
}

.funding-cta strong {
  color: var(--color-secondary);
  font-weight: 800;
}

/* Enhanced Funding Button */
.funding-button {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: 18px 48px;
  background: linear-gradient(135deg, var(--color-secondary), #ffcc33);
  color: var(--color-bg-dark);
  border-radius: 50px;
  font-weight: 800;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all var(--transition-normal);
  box-shadow: 0 8px 32px rgba(255, 170, 0, 0.4);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  font-family: var(--font-primary);
  margin: var(--spacing-md) 0;
  z-index: 2;
}

.funding-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
}

.funding-button:hover::before {
  left: 100%;
}

.funding-button:hover,
.funding-button:focus-visible {
  background: linear-gradient(135deg, #ffcc33, var(--color-primary));
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 170, 0, 0.6);
  color: var(--color-text-primary);
}

.funding-button:active {
  transform: translateY(-1px);
}

/* Funding Note */
.funding-note {
  color: var(--color-text-muted);
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  font-style: italic;
  margin-top: var(--spacing-sm);
  position: relative;
  z-index: 2;
  margin-bottom: 0;
}

/* Responsive Design for Funding Section */
@media (max-width: 768px) {
  .funding-section {
    padding: var(--spacing-xl) var(--spacing-sm);
  }
  
  .funding-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
  }
  
  .funding-item {
    padding: var(--spacing-lg);
  }
  
  .funding-cta {
    padding: var(--spacing-xl) var(--spacing-lg);
    border-radius: 20px;
  }
  
  .funding-section::after {
    font-size: 1.4rem;
    top: 5%;
    right: 2%;
    letter-spacing: 1rem;
  }
  
  .funding-cta::after {
    font-size: 1.4rem;
    top: 20px;
    right: 20px;
    letter-spacing: 0.5rem;
  }
}

@media (max-width: 480px) {
  .funding-item {
    padding: var(--spacing-md);
    border-radius: 16px;
  }
  
  .funding-cta {
    padding: var(--spacing-lg) var(--spacing-md);
    border-radius: 16px;
  }
  
  .funding-item h3 {
    font-size: 1.2rem;
    flex-direction: column;
    gap: var(--spacing-xs);
  }
  
  .funding-button {
    padding: 16px 32px;
    font-size: 1rem;
  }
  
  .funding-section::after {
    font-size: 1.2rem;
    letter-spacing: 0.8rem;
  }
  
  .funding-cta::after {
    font-size: 1.2rem;
    letter-spacing: 0.3rem;
  }
}

/* Medium Screens */
@media (max-width: 1024px) and (min-width: 769px) {
  .funding-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
  }
  
  .funding-item:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 0 auto;
  }
}

/* Enhanced Focus States for Accessibility */
.funding-item:focus-within,
.funding-cta:focus-within,
.funding-button:focus-visible {
  outline: 3px solid var(--color-secondary);
  outline-offset: 4px;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .funding-section::before,
  .funding-section::after,
  .funding-cta::before,
  .funding-cta::after,
  .funding-item,
  .funding-cta,
  .funding-button {
    animation: none !important;
    transition: none !important;
  }
  
  .funding-item:hover {
    transform: translateY(-6px);
  }
  
  .funding-cta:hover {
    transform: translateY(-4px);
  }
  
  .funding-button:hover {
    transform: translateY(-2px);
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .funding-item {
    border: 2px solid var(--color-secondary);
    background: var(--color-bg-dark);
  }
  
  .funding-cta {
    border: 3px solid var(--color-secondary);
    background: var(--color-bg-dark);
  }
  
  .funding-item h3 {
    color: var(--color-secondary);
    text-shadow: none;
  }
  
  .funding-button {
    background: var(--color-secondary);
    color: var(--color-bg-dark);
    border: 2px solid var(--color-secondary);
  }
  
  .funding-button:hover {
    background: var(--color-bg-dark);
    color: var(--color-secondary);
  }
}
/* ===== ENHANCED CHECKBOX STYLING FOR FUNDING INTEREST ===== */

.checkbox-group {
  width: 100%;
  margin: var(--spacing-md) 0;
  transition: all var(--transition-normal);
  border-radius: 12px;
  padding: var(--spacing-sm);
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  cursor: pointer;
  font-size: 1rem;
  color: var(--color-text-secondary);
  font-weight: 500;
  line-height: 1.5;
  transition: color var(--transition-fast);
  user-select: none;
  position: relative;
}

.checkbox-label:hover {
  color: var(--color-text-primary);
}

/* Hide the default checkbox */
.checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Custom checkbox design */
.checkmark {
  position: relative;
  height: 24px;
  width: 24px;
  background: var(--color-input-bg);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  transition: all var(--transition-normal);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hover effect on checkmark */
.checkbox-label:hover .checkmark {
  border-color: var(--color-secondary);
  background: rgba(255, 170, 0, 0.1);
  transform: scale(1.05);
}

/* When checkbox is checked */
.checkbox-label input:checked ~ .checkmark {
  background: linear-gradient(135deg, var(--color-secondary), #ffcc33);
  border-color: var(--color-secondary);
  box-shadow: 0 4px 15px rgba(255, 170, 0, 0.4);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 7px;
  top: 3px;
  width: 6px;
  height: 12px;
  border: solid var(--color-bg-dark);
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
  transition: all var(--transition-fast);
}

/* Show the checkmark when checked */
.checkbox-label input:checked ~ .checkmark:after {
  display: block;
}

/* Enhanced focus states for accessibility */
.checkbox-label input:focus + .checkmark {
  outline: 3px solid var(--color-secondary);
  outline-offset: 2px;
}

.checkbox-label input:focus:not(:focus-visible) + .checkmark {
  outline: none;
}

/* Checked state text color */
.checkbox-label:has(input:checked) {
  color: var(--color-secondary);
  font-weight: 600;
}

/* Animation when checkbox becomes checked */
.checkbox-label input:checked ~ .checkmark {
  animation: checkboxPop 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes checkboxPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* Funding interest highlight animation */
.checkbox-group.highlight {
  background: rgba(255, 170, 0, 0.1) !important;
  border: 1px solid rgba(255, 170, 0, 0.3);
  animation: fundingHighlight 2s ease-out;
}

@keyframes fundingHighlight {
  0% { 
    background: rgba(255, 170, 0, 0.2);
    transform: scale(1.02);
  }
  100% { 
    background: rgba(255, 170, 0, 0.1);
    transform: scale(1);
  }
}

/* Mobile responsiveness */
@media (max-width: 480px) {
  .checkbox-label {
    font-size: 0.95rem;
    gap: var(--spacing-xs);
  }
  
  .checkmark {
    height: 22px;
    width: 22px;
  }
  
  .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 11px;
    border-width: 0 2.5px 2.5px 0;
  }
  
  .checkbox-group {
    padding: var(--spacing-xs);
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .checkmark {
    border: 2px solid var(--color-text-primary);
    background: var(--color-bg-dark);
  }
  
  .checkbox-label:hover .checkmark {
    border-color: var(--color-secondary);
    background: var(--color-bg-dark);
  }
  
  .checkbox-label input:checked ~ .checkmark {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
  }
  
  .checkmark:after {
    border-color: var(--color-bg-dark);
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .checkmark,
  .checkbox-label,
  .checkbox-group {
    transition: none !important;
    animation: none !important;
  }
  
  .checkbox-label:hover .checkmark {
    transform: none;
  }
}