/* Template 3 - Bold Dark / Neon Accents */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Roboto:wght@300;400;500&display=swap');

:root {
  --gradient-1: linear-gradient(90deg, #ff006e 0%, #8338ec 100%);
  --gradient-2: linear-gradient(90deg, #06ffa5 0%, #00d4ff 100%);
  --gradient-3: linear-gradient(90deg, #ffbe0b 0%, #fb5607 100%);
  --gradient-4: linear-gradient(90deg, #3a86ff 0%, #8338ec 100%);
  --gradient-5: linear-gradient(90deg, #ff006e 0%, #fb5607 100%);

  --bg-primary: #0a0a0a;
  --bg-secondary: #1a1a1a;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);

  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --text-muted: #707070;
  
  --neon-pink: #ff006e;
  --neon-cyan: #06ffa5;
  --neon-blue: #3a86ff;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-primary);
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 10% 20%, rgba(255, 0, 110, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(6, 255, 165, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(58, 134, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

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

/* Header - Bold Top Bar */
.site-header {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--neon-cyan);
  padding: 1.75rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(6, 255, 165, 0.1);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo a {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--neon-cyan);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 20px rgba(6, 255, 165, 0.5);
  transition: all 0.3s ease;
}

.site-logo a:hover {
  text-shadow: 0 0 30px rgba(6, 255, 165, 0.8);
  transform: scale(1.05);
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.site-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
}

.site-nav a:hover {
  color: var(--neon-cyan);
  text-shadow: 0 0 10px rgba(6, 255, 165, 0.5);
}

/* Hero Section - Center Aligned */
.section.head {
  padding: 8rem 0;
  text-align: center;
  position: relative;
}

.section.head h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 5rem;
  font-weight: 900;
  margin-bottom: 2rem;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: -1px;
  text-shadow: 0 0 40px rgba(6, 255, 165, 0.3);
  animation: neonPulse 2s ease-in-out infinite;
}

@keyframes neonPulse {
  0%, 100% {
    text-shadow: 0 0 40px rgba(6, 255, 165, 0.3);
  }
  50% {
    text-shadow: 0 0 60px rgba(6, 255, 165, 0.6), 0 0 80px rgba(255, 0, 110, 0.3);
  }
}

.section.head p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
}

/* Section Styling */
.section {
  padding: 6rem 0;
}

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

.section header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

/* Footer - Neon Border */
.footer {
  background: var(--bg-secondary);
  padding: 4rem 0 2rem;
  border-top: 3px solid var(--neon-pink);
  margin-top: 6rem;
  box-shadow: 0 -4px 30px rgba(255, 0, 110, 0.1);
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.footer-about {
  flex: 1;
  max-width: 400px;
}

.footer-tagline {
  color: var(--text-secondary);
  line-height: 1.8;
}

.footer-links ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--neon-cyan);
  text-shadow: 0 0 10px rgba(6, 255, 165, 0.5);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
}

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

/* Animations */
@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.fade-in {
  opacity: 0;
  animation: floatIn 1s ease forwards;
}

.fade-in:nth-child(1) {
  animation-delay: 0.15s;
}
.fade-in:nth-child(2) {
  animation-delay: 0.3s;
}
.fade-in:nth-child(3) {
  animation-delay: 0.45s;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

body:not(.faq) h3,
:not(section.faq) h3 {
  font-size: 1.85rem;
  color: var(--neon-cyan);
  margin-top: 2rem;
  margin-bottom: 1rem;
  text-align: left;
  font-weight: 700;
  text-transform: uppercase;
}
