@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Color Palette - Crimson & Light Theme */
  --bg-base: #F8FAFC;          /* slate-50 / off-white background */
  --bg-surface: #FFFFFF;       /* pure white cards */
  --bg-surface-hover: #F1F5F9;
  --bg-glass: rgba(248, 250, 252, 0.85);
  
  --primary: #FF3B5C;
  --primary-hover: #E02444;
  --primary-glow: rgba(255, 59, 92, 0.2);
  
  --secondary: #FF6B4A;
  --secondary-glow: rgba(255, 107, 74, 0.15);
  
  --text-primary: #0F172A;     /* slate-900 / dark charcoal text */
  --text-secondary: #475569;   /* slate-600 */
  --text-muted: #64748B;
  
  --border-color: #E2E8F0;     /* slate-200 / light gray borders */
  --border-color-hover: rgba(255, 59, 92, 0.3);
  
  --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.01);
  --glow-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.04), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-base);
  color: var(--text-secondary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.2;
}

/* Background Gradients */
.bg-gradient-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 900px;
  background: 
    radial-gradient(circle at 10% 20%, rgba(255, 59, 92, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 60%, rgba(255, 107, 74, 0.06) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

/* Navigation */
header {
  position: sticky;
  top: 0;
  width: 100%;
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  z-index: 100;
  transition: var(--transition-smooth);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.logo svg {
  color: var(--primary);
  filter: drop-shadow(0 0 8px var(--primary-glow));
  transition: var(--transition-smooth);
}

.logo:hover svg {
  transform: rotate(180deg);
}

.logo span {
  background: linear-gradient(135deg, var(--text-primary) 60%, var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 15px var(--primary-glow);
}

/* Hero Section */
.hero {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 2rem 5rem 2rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 4rem;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 59, 92, 0.1);
  border: 1px solid rgba(255, 59, 92, 0.2);
  color: var(--primary);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  animation: pulse 2s infinite;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #FFF 40%, #FFB2C1 70%, var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.play-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-primary);
  padding: 0.75rem 1.75rem;
  border-radius: 12px;
  text-decoration: none;
  transition: var(--transition-smooth);
  box-shadow: var(--card-shadow);
  cursor: pointer;
}

.play-store-btn:hover {
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(255, 59, 92, 0.25);
  transform: translateY(-2px);
}

.play-store-btn svg {
  width: 24px;
  height: 24px;
}

.btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.btn-text .small {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
}

.btn-text .bold {
  font-size: 1.1rem;
  font-weight: 700;
}

/* Hero Mockup Graphic */
.hero-graphic {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.phone-mockup {
  width: 280px;
  height: 560px;
  background: var(--bg-surface);
  border: 12px solid #2A2F3D;
  border-radius: 40px;
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.7),
    0 0 40px rgba(255, 59, 92, 0.1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-screen {
  flex: 1;
  background: #0B0E14;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
}

/* Inner Mockup UI */
.mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mockup-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: #FFF;
}

.mockup-profile {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.mockup-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 1rem;
  position: relative;
}

.mockup-target {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  border: 6px solid rgba(255, 59, 92, 0.1);
  border-top-color: var(--primary);
  margin: 0.5rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: rotate 4s linear infinite;
}

.mockup-target::after {
  content: '';
  width: 14px;
  height: 14px;
  background: var(--secondary);
  border-radius: var(--radius-full);
  box-shadow: 0 0 10px var(--secondary);
}

.mockup-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.mockup-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 0.6rem 0.8rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
}

.mockup-checkbox {
  width: 14px;
  height: 14px;
  border: 1px solid var(--primary);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-checkbox.checked {
  background: var(--primary);
}

.mockup-checkbox.checked::after {
  content: '✓';
  color: white;
  font-size: 9px;
}

.mockup-bar {
  height: 4px;
  width: 60%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
}

.mockup-bar.fill {
  background: var(--primary);
  width: 80%;
}

/* Features Section */
.features-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

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

.feature-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: var(--card-shadow);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-color-hover);
  box-shadow: var(--glow-shadow), var(--card-shadow);
}

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

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(255, 59, 92, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
  background: var(--primary);
  color: #FFF;
  box-shadow: 0 0 15px var(--primary-glow);
}

.feature-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
}

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

/* Call to Action Banner */
.cta-section {
  max-width: 1200px;
  margin: 4rem auto 8rem auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.cta-banner {
  background: linear-gradient(135deg, #131822 0%, #0E121A 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 4.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 59, 92, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

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

.cta-banner p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer styling */
footer {
  background-color: #080A0F;
  border-top: 1px solid var(--border-color);
  padding: 4rem 2rem 2rem 2rem;
  position: relative;
  z-index: 1;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-info {
  max-width: 320px;
}

.footer-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

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

.footer-col h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.footer-col ul li a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-bottom a:hover {
  color: var(--primary);
}

/* Privacy Policy Layout */
.privacy-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 6rem 2rem;
  position: relative;
  z-index: 1;
}

.privacy-header {
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.5rem;
}

.privacy-header h1 {
  font-size: 2.75rem;
  margin-bottom: 0.5rem;
}

.privacy-content {
  color: var(--text-secondary);
}

.privacy-content h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem 0;
  font-weight: 600;
}

.privacy-content p {
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.7;
}

.privacy-content ul {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.privacy-content ul li {
  margin-bottom: 0.5rem;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.back-btn:hover {
  color: var(--primary);
  transform: translateX(-4px);
}

/* Keyframes */
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

/* Responsive adjustments */
@media (max-width: 968px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 5rem;
    gap: 3rem;
  }
  
  .hero-content {
    align-items: center;
  }
  
  .hero h1 {
    font-size: 2.75rem;
  }
  
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.25rem;
  }
  
  .cta-banner {
    padding: 3rem 1.5rem;
  }
  
  .cta-banner h2 {
    font-size: 2rem;
  }
}

/* Waitlist Elements */
.waitlist-trigger-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #FFF;
  padding: 0.8rem 2.2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px var(--primary-glow);
  border: none;
  cursor: pointer;
}

.waitlist-trigger-btn:hover {
  background: var(--primary-hover);
  box-shadow: 0 6px 20px var(--primary-glow);
  transform: translateY(-2px);
}

.waitlist-form {
  display: flex;
  gap: 0.75rem;
  width: 100%;
  max-width: 500px;
  margin: 2rem auto 0 auto;
}

.waitlist-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  padding: 0.8rem 1.25rem;
  border-radius: var(--radius-full);
  color: #FFF;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-smooth);
}

.waitlist-input:focus {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 10px rgba(255, 59, 92, 0.15);
}

.waitlist-btn {
  background: var(--primary);
  color: #FFF;
  border: none;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 12px var(--primary-glow);
}

.waitlist-btn:hover {
  background: var(--primary-hover);
  box-shadow: 0 6px 18px var(--primary-glow);
  transform: translateY(-1px);
}

.waitlist-success {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 59, 92, 0.08);
  border: 1px solid rgba(255, 59, 92, 0.2);
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-full);
  color: #FFF;
  font-size: 0.95rem;
  margin-top: 2rem;
  gap: 0.5rem;
  justify-content: center;
  animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
  .waitlist-form {
    flex-direction: column;
    gap: 0.75rem;
  }
  .waitlist-input, .waitlist-btn {
    width: 100%;
  }
}

/* Problem Section Styles */
.problem-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem;
  border-top: 1px solid var(--border-color);
}

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

.problem-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  text-align: left;
  position: relative;
  transition: var(--transition-smooth);
  box-shadow: var(--card-shadow);
}

.problem-card:hover {
  border-color: rgba(255, 59, 92, 0.3);
  transform: translateY(-4px);
}

.problem-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 59, 92, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.problem-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

.problem-outro {
  max-width: 800px;
  margin: 3rem auto 0 auto;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.problem-outro strong {
  color: var(--primary);
}

/* How Bullseye Works (Timeline Step Grid) */
.how-it-works-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem;
  border-top: 1px solid var(--border-color);
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.timeline-step {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: left;
  position: relative;
  transition: var(--transition-smooth);
  box-shadow: var(--card-shadow);
}

.timeline-step:hover {
  border-color: rgba(255, 59, 92, 0.3);
  transform: translateY(-2px);
}

.step-num-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 0 10px var(--primary-glow);
}

.timeline-step h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.timeline-step p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Use Cases Section */
.use-cases-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem;
  border-top: 1px solid var(--border-color);
}

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

.use-case-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  text-align: left;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: var(--card-shadow);
}

.use-case-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(255, 59, 92, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}

.use-case-card:hover .use-case-icon {
  background: var(--primary);
  color: #FFF;
  box-shadow: 0 0 15px var(--primary-glow);
}

.use-case-icon svg {
  width: 22px;
  height: 22px;
}

.use-case-card:hover {
  border-color: var(--border-color-hover);
  transform: translateY(-4px);
  box-shadow: var(--glow-shadow), var(--card-shadow);
}

.use-case-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

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

/* Screenshots Section & Mockups */
.screenshots-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem;
  border-top: 1px solid var(--border-color);
}

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

.screen-card {
  background: #181F2E;
  border: 4px solid #2D3748;
  border-radius: 20px;
  padding: 1.25rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
}

.screen-mockup-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-bottom: 0.5rem;
}

.screen-mockup-header .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  margin-right: 4px;
}

.screen-mockup-content {
  background: #0B0E14;
  border-radius: 8px;
  padding: 1rem;
  flex: 1;
  text-align: left;
}

/* FAQ Section */
.faq-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 6rem 2rem;
  border-top: 1px solid var(--border-color);
}

.faq-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.75rem 2rem;
  text-align: left;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: var(--border-color-hover);
}

.faq-question {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.faq-answer {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Responsive grids */
@media (max-width: 992px) {
  .timeline-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

/* Header Navigation Links */
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.nav-links a:hover {
  color: var(--primary);
}

/* Hide header nav links on mobile devices */
@media (max-width: 768px) {
  .nav-links {
    display: none !important;
  }
}

/* Light Theme overrides for CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, #FFFFFF 0%, #F1F5F9 100%) !important;
  border: 1px solid #E2E8F0 !important;
  color: #0F172A !important;
}

.cta-banner h2 {
  color: #0F172A !important;
}

.cta-banner p {
  color: #475569 !important;
}

.waitlist-input {
  background: #FFFFFF !important;
  border: 1px solid #E2E8F0 !important;
  color: #0F172A !important;
}

.waitlist-input::placeholder {
  color: #94A3B8 !important;
}

.waitlist-input:focus {
  background: #FFFFFF !important;
  border-color: var(--primary) !important;
  box-shadow: 0 0 10px rgba(255, 59, 92, 0.1) !important;
}

/* Light Theme overrides for Footer */
footer {
  background: #F1F5F9 !important;
  border-top: 1px solid #E2E8F0 !important;
  color: #475569 !important;
}

footer .logo span {
  background: linear-gradient(135deg, #0F172A 60%, var(--primary)) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

footer .footer-col h4 {
  color: #0F172A !important;
}

footer .footer-col ul li a {
  color: #475569 !important;
}

footer .footer-col ul li a:hover {
  color: var(--primary) !important;
}

footer .footer-bottom {
  border-top: 1px solid #E2E8F0 !important;
  color: #64748B !important;
}

/* App Preview Carousel Styles */
.screenshots-carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 3rem auto 0 auto;
  padding: 0 4rem; /* Leave space for navigation arrows */
  overflow: hidden;
}

.carousel-track-wrapper {
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Hide scrollbar in Firefox */
  display: flex;
}

.carousel-track-wrapper::-webkit-scrollbar {
  display: none; /* Hide scrollbar in Chrome/Safari */
}

.carousel-track {
  display: flex;
  gap: 2rem;
  padding: 1rem 0.5rem;
}

.carousel-slide {
  flex: 0 0 auto;
  width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  transition: var(--transition-smooth);
}

.carousel-slide img:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.12), 0 0 15px var(--primary-glow);
  border-color: var(--primary);
}

.carousel-slide-label {
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
}

/* Nav Buttons */
.carousel-btn {
  position: absolute;
  top: calc(50% - 24px - 1rem); /* Centered relative to the image height */
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-smooth);
  box-shadow: var(--card-shadow);
}

.carousel-btn:hover {
  background: var(--primary);
  color: #FFF;
  border-color: var(--primary);
  box-shadow: 0 4px 12px var(--primary-glow);
}

.carousel-btn.prev {
  left: 0.5rem;
}

.carousel-btn.next {
  right: 0.5rem;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-color);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.carousel-dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
}

/* Mobile responsive carousel styling */
@media (max-width: 768px) {
  .screenshots-carousel-container {
    padding: 0 1rem !important;
  }
  .carousel-btn {
    display: none !important;
  }
  .carousel-track {
    gap: 1.25rem !important;
  }
  .carousel-slide {
    width: 220px !important;
  }
}

/* Nav button text wrapping and mobile header styling */
.nav-btn {
  white-space: nowrap !important;
}

@media (max-width: 768px) {
  #nav-cta-btn {
    display: none !important;
  }
  .nav-container {
    padding: 0.75rem 1rem !important;
  }
  .logo {
    font-size: 1.2rem !important;
  }
  .nav-btn {
    padding: 0.5rem 0.85rem !important;
    font-size: 0.8rem !important;
  }
}

