/* ============================================
   UNICORN ADMISSIONS - Styles
   Dark space theme with magical unicorn accents
   ============================================ */

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

:root {
  --purple: #8b5cf6;
  --purple-dark: #6d28d9;
  --purple-light: #a78bfa;
  --pink: #ec4899;
  --pink-light: #f472b6;
  --blue: #3b82f6;
  --teal: #14b8a6;
  --gold: #f59e0b;
  --bg-dark: #0a0a0f;
  --bg-card: #111118;
  --bg-card-hover: #1a1a25;
  --text-primary: #f0f0f5;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;
  --border: rgba(139, 92, 246, 0.2);
  --glow-purple: rgba(139, 92, 246, 0.4);
  --glow-pink: rgba(236, 72, 153, 0.3);
  --gradient-rainbow: linear-gradient(135deg, #8b5cf6, #ec4899, #f59e0b, #14b8a6, #3b82f6);
  --gradient-purple: linear-gradient(135deg, #8b5cf6, #6d28d9);
  --font-display: 'Orbitron', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* --- Starfield Canvas --- */
#starfield {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

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

/* --- Typography --- */
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.text-gradient {
  background: var(--gradient-rainbow);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-primary);
}

.brand-icon {
  font-size: 1.8rem;
}

.brand-text {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.3;
  color: var(--text-secondary);
}

.brand-text strong {
  color: var(--purple-light);
  font-weight: 700;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--purple);
  transition: width 0.3s;
}

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

.nav-links a:hover::after {
  width: 100%;
}

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

.nav-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: rgba(10, 10, 15, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 24px;
  border-bottom: 1px solid var(--border);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.mobile-menu a:hover {
  color: var(--purple-light);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 32px 60px;
}

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

.hero-glow {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--glow-purple) 0%, var(--glow-pink) 30%, transparent 70%);
  opacity: 0.3;
  filter: blur(80px);
  animation: glowPulse 6s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.3; transform: translateX(-50%) scale(1); }
  50% { opacity: 0.5; transform: translateX(-50%) scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 32px;
  animation: fadeInDown 0.8s ease-out;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.title-top {
  display: block;
  font-size: clamp(3.5rem, 10vw, 8rem);
  letter-spacing: 0.05em;
  background: linear-gradient(180deg, #ffffff 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-bottom {
  display: block;
  font-size: clamp(1.8rem, 5vw, 4rem);
  letter-spacing: 0.15em;
  color: var(--purple-light);
  background: var(--gradient-rainbow);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 550px;
  margin: 0 auto 40px;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-unicorn {
  position: absolute;
  z-index: 1;
  right: -5%;
  top: 15%;
  width: 400px;
  height: 400px;
  opacity: 0.15;
  pointer-events: none;
}

/* CSS Unicorn Illustration */
.unicorn-3d {
  position: relative;
  width: 100%;
  height: 100%;
  animation: floatUnicorn 6s ease-in-out infinite;
}

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

.unicorn-body {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 160px;
}

.unicorn-head {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 90px;
  background: linear-gradient(135deg, #e8e0f0, #d4c5e8);
  border-radius: 50% 50% 45% 45%;
}

.unicorn-eye {
  position: absolute;
  width: 14px;
  height: 16px;
  background: #2d1b4e;
  border-radius: 50%;
  top: 30px;
}

.unicorn-eye.left { left: 22px; }
.unicorn-eye.right { right: 22px; }

.unicorn-eye::after {
  content: '';
  position: absolute;
  width: 5px;
  height: 5px;
  background: white;
  border-radius: 50%;
  top: 3px;
  left: 3px;
}

.unicorn-muzzle {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 20px;
  background: linear-gradient(135deg, #f0e0f5, #e0d0ea);
  border-radius: 50%;
}

.unicorn-horn {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 60px solid;
  border-bottom-color: var(--purple);
  filter: drop-shadow(0 0 10px var(--glow-purple));
  z-index: 2;
}

.unicorn-horn::before {
  content: '';
  position: absolute;
  top: 15px;
  left: -6px;
  width: 12px;
  height: 3px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
  box-shadow:
    0 10px 0 rgba(255,255,255,0.2),
    0 20px 0 rgba(255,255,255,0.15),
    0 30px 0 rgba(255,255,255,0.1);
}

.unicorn-mane {
  position: absolute;
  top: 10px;
  right: -30px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mane-strand {
  height: 8px;
  border-radius: 4px;
  animation: maneWave 3s ease-in-out infinite;
}

.mane-strand.s1 { width: 60px; background: #8b5cf6; animation-delay: 0s; }
.mane-strand.s2 { width: 70px; background: #ec4899; animation-delay: 0.15s; }
.mane-strand.s3 { width: 65px; background: #f59e0b; animation-delay: 0.3s; }
.mane-strand.s4 { width: 55px; background: #14b8a6; animation-delay: 0.45s; }
.mane-strand.s5 { width: 50px; background: #3b82f6; animation-delay: 0.6s; }

@keyframes maneWave {
  0%, 100% { transform: translateX(0) scaleX(1); }
  50% { transform: translateX(10px) scaleX(1.1); }
}

/* Sparkles */
.sparkle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: white;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  animation: sparkleAnim 2s ease-in-out infinite;
}

.sp1 { top: 10%; left: 20%; animation-delay: 0s; }
.sp2 { top: 30%; right: 15%; animation-delay: 0.4s; }
.sp3 { bottom: 25%; left: 15%; animation-delay: 0.8s; }
.sp4 { top: 15%; right: 30%; animation-delay: 1.2s; }
.sp5 { bottom: 35%; right: 25%; animation-delay: 1.6s; }
.sp6 { top: 50%; left: 10%; animation-delay: 0.6s; }

@keyframes sparkleAnim {
  0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
  50% { opacity: 1; transform: scale(1) rotate(180deg); }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  right: 40px;
  width: 40px;
  height: 40px;
  border: 2px solid var(--text-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.scroll-dot {
  width: 6px;
  height: 6px;
  background: var(--text-primary);
  border-radius: 50%;
  animation: scrollBounce 2s ease-in-out infinite;
}

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

/* --- CTA Button --- */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  border: 1px solid var(--purple);
  border-radius: 8px;
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-purple);
  opacity: 0;
  transition: opacity 0.4s;
}

.cta-button:hover::before {
  opacity: 1;
}

.cta-button span,
.cta-button svg {
  position: relative;
  z-index: 1;
}

.cta-button:hover {
  border-color: var(--purple-light);
  box-shadow: 0 0 30px var(--glow-purple);
  transform: translateY(-2px);
}

.cta-button.secondary {
  border-color: var(--text-muted);
}

.cta-button.secondary:hover {
  border-color: var(--pink);
  box-shadow: 0 0 30px var(--glow-pink);
}

.cta-button.secondary::before {
  background: linear-gradient(135deg, #ec4899, #8b5cf6);
}

.cta-button.large {
  padding: 20px 48px;
  font-size: 1rem;
}

/* --- Feature Cards --- */
.features {
  position: relative;
  z-index: 2;
  padding: 100px 0;
}

.features .section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 28px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 16px 16px 0 0;
  transition: height 0.4s;
}

.feature-card[data-color="purple"]::before { background: var(--purple); }
.feature-card[data-color="pink"]::before { background: var(--pink); }
.feature-card[data-color="blue"]::before { background: var(--blue); }
.feature-card[data-color="teal"]::before { background: var(--teal); }

.feature-card:hover {
  transform: translateY(-8px);
  border-color: transparent;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
  height: 6px;
}

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

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

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

/* --- About Section --- */
.about {
  position: relative;
  z-index: 2;
  padding: 100px 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-lead {
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-text p:last-child {
  color: var(--text-secondary);
  line-height: 1.8;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.stat {
  text-align: center;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.3s;
}

.stat:hover {
  border-color: var(--purple);
  box-shadow: 0 0 20px var(--glow-purple);
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--gradient-rainbow);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}

.stat-label {
  display: block;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 8px;
}

/* --- Advantages Section --- */
.advantages {
  position: relative;
  z-index: 2;
  padding: 100px 0;
}

.advantages-header {
  display: flex;
  gap: 16px;
  align-items: baseline;
  flex-wrap: wrap;
}

.advantage-title {
  margin-bottom: 0;
}

.advantages-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 700px;
  margin-bottom: 60px;
  line-height: 1.8;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.advantage-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  transition: all 0.4s;
}

.advantage-item:hover {
  transform: translateY(-4px);
  border-color: var(--purple);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.advantage-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.advantage-item h3 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.advantage-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* --- Stats Banner --- */
.stats-banner {
  position: relative;
  z-index: 2;
  padding: 100px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(139, 92, 246, 0.05) 50%, transparent 100%);
}

.stats-banner .section-heading {
  text-align: center;
}

.stats-subtitle {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 60px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}

.stat-card {
  text-align: center;
  padding: 32px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.3s;
}

.stat-card:hover {
  border-color: var(--purple);
  transform: translateY(-4px);
}

.stat-big {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--purple-light);
  margin-bottom: 8px;
}

.stat-desc {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* --- Timeline --- */
.timeline {
  position: relative;
  z-index: 2;
  padding: 100px 0;
}

.timeline .section-heading {
  text-align: center;
  margin-bottom: 60px;
}

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

.timeline-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.4s;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--border);
  border-radius: 16px 0 0 16px;
  transition: background 0.4s;
}

.timeline-item:hover::before,
.timeline-item.active::before {
  background: var(--purple);
}

.timeline-item:hover {
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateX(4px);
}

.timeline-item.active {
  border-color: var(--purple);
  background: rgba(139, 92, 246, 0.05);
}

.timeline-date {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 12px;
}

.timeline-item h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}

.timeline-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* --- CTA Section --- */
.cta-section {
  position: relative;
  z-index: 2;
  padding: 100px 0;
  text-align: center;
}

.cta-text {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Crew Section --- */
.crew {
  position: relative;
  z-index: 2;
  padding: 100px 0;
}

.crew .section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.crew-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 24px;
}

.crew-card {
  text-align: center;
  padding: 32px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.4s;
}

.crew-card:hover {
  transform: translateY(-8px);
  border-color: var(--purple);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.crew-avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(var(--hue), 70%, 20%), hsl(var(--hue), 70%, 30%));
  border: 2px solid hsl(var(--hue), 70%, 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.crew-card h3 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
}

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

/* --- Requirements --- */
.requirements {
  position: relative;
  z-index: 2;
  padding: 100px 0;
}

.requirements .section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.requirement-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.4s;
}

.requirement-card:hover {
  border-color: var(--purple);
  transform: translateY(-4px);
}

.req-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

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

/* --- Final CTA --- */
.final-cta {
  position: relative;
  z-index: 2;
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(139, 92, 246, 0.05), transparent);
}

.final-cta p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto 20px;
  line-height: 1.8;
}

.final-cta-bold {
  color: var(--text-primary) !important;
  font-weight: 600;
  margin-bottom: 40px !important;
}

/* --- Contact Section --- */
.contact {
  position: relative;
  z-index: 2;
  padding: 100px 0;
}

.contact .section-heading {
  text-align: center;
}

.contact-sub {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 48px;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="number"],
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 20px var(--glow-purple);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Range input */
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  outline: none;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--purple);
  cursor: pointer;
  box-shadow: 0 0 10px var(--glow-purple);
  transition: all 0.3s;
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 0 20px var(--glow-purple);
}

.range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.submit-btn {
  margin-top: 12px;
  width: 100%;
  justify-content: center;
}

.contact-email {
  text-align: center;
  margin-top: 40px;
}

.contact-email a {
  color: var(--purple-light);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.3s;
}

.contact-email a:hover {
  color: var(--pink);
}

/* --- Footer --- */
.footer {
  position: relative;
  z-index: 2;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--purple-light);
}

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

/* --- Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero {
    padding: 100px 20px 60px;
  }

  .hero-unicorn {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .advantages-header {
    flex-direction: column;
    gap: 0;
  }
}

@media (max-width: 600px) {
  .navbar {
    padding: 12px 16px;
  }

  .hero {
    padding: 80px 16px 40px;
  }

  .title-top {
    font-size: 3rem;
  }

  .title-bottom {
    font-size: 1.5rem;
  }

  .section-heading {
    font-size: 1.8rem;
  }

  .feature-grid,
  .advantages-grid,
  .stats-grid,
  .timeline-grid,
  .crew-grid,
  .requirements-grid {
    grid-template-columns: 1fr;
  }

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

  .scroll-indicator {
    right: 20px;
    bottom: 20px;
  }
}
