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

/* ============================================
   CSS VARIABLES & ROOT
   ============================================ */
:root {
  --primary: #FF3D8B;
  --accent: #A8E10C;
  --bg: #FBF8FF;
  --surface: #F0E8F5;
  --text: #1A1025;
  --muted: #7A6B85;

  --neon-pink: #FF3D8B;
  --neon-cyan: #00F0FF;
  --neon-purple: #B24BF3;
  --neon-lime: #A8E10C;

  --dark-bg: #0D0221;
  --dark-surface: #1A0A2E;
  --dark-grid: rgba(178, 75, 243, 0.08);

  --corner: 4px;
  --header-height: 72px;
  --container-max: 1200px;
  --container-padding: 1.25rem;

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --font-mono: 'Courier New', monospace;

  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--neon-cyan);
}

ul, ol {
  list-style: none;
}

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

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
}

/* ============================================
   FOCUS & ACCESSIBILITY
   ============================================ */
:focus-visible {
  outline: 2px solid var(--neon-cyan);
  outline-offset: 2px;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--neon-cyan);
  margin-bottom: 0.5rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 600px;
}

/* ============================================
   NEON GRID BACKGROUND
   ============================================ */
.neon-grid-bg {
  background-color: var(--dark-bg);
  background-image:
    linear-gradient(var(--dark-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--dark-grid) 1px, transparent 1px);
  background-size: 40px 40px;
}

.neon-glow-text {
  text-shadow:
    0 0 7px var(--neon-pink),
    0 0 20px rgba(255, 61, 139, 0.4);
}

.neon-glow-cyan {
  text-shadow:
    0 0 7px var(--neon-cyan),
    0 0 20px rgba(0, 240, 255, 0.4);
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--dark-bg);
  border-bottom: 1px solid rgba(178, 75, 243, 0.2);
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: background var(--transition-base), border-color var(--transition-base);
}

.header.scrolled {
  background: rgba(13, 2, 33, 0.95);
  border-bottom-color: var(--neon-pink);
  backdrop-filter: blur(10px);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  text-shadow: 0 0 10px var(--neon-pink);
}

.logo span {
  color: var(--neon-cyan);
  text-shadow: 0 0 10px var(--neon-cyan);
}

.nav-menu {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-menu a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #fff;
  border-bottom-color: var(--neon-pink);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--neon-cyan);
  border-radius: var(--corner);
  color: var(--neon-cyan);
  padding: 0.5rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-toggle .bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--neon-cyan);
  position: relative;
  transition: background var(--transition-fast);
}

.mobile-menu-toggle .bar::before,
.mobile-menu-toggle .bar::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--neon-cyan);
  left: 0;
  transition: transform var(--transition-fast);
}

.mobile-menu-toggle .bar::before { top: -6px; }
.mobile-menu-toggle .bar::after { top: 6px; }

/* ============================================
   MOBILE NAV (CRITICAL RULES)
   ============================================ */
@media (min-width: 768px) {
  .mobile-menu-toggle {
    display: none !important;
  }

  .nav-menu {
    display: flex !important;
    flex-direction: row !important;
    position: static !important;
    background: transparent !important;
    padding: 0 !important;
    border-top: none !important;
  }
}

@media (max-width: 767px) {
  .mobile-menu-toggle {
    display: inline-flex;
  }

  .nav-menu {
    display: none;
  }

  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    padding: 1rem;
    border-top: 1px solid var(--muted);
    gap: 0.5rem;
  }

  .nav-menu.open a {
    padding: 0.75rem 1rem;
    border-bottom: none;
    border-left: 2px solid transparent;
  }

  .nav-menu.open a:hover {
    border-left-color: var(--neon-pink);
    border-bottom-color: transparent;
  }
}

/* ============================================
   PHOTO BACKGROUND OVERLAY (CRITICAL)
   ============================================ */
.has-photo-bg {
  position: relative;
  isolation: isolate;
}

.has-photo-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.85));
  z-index: 0;
}

.has-photo-bg > * {
  position: relative;
  z-index: 1;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  background-color: var(--dark-bg);
  background-image:
    linear-gradient(var(--dark-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--dark-grid) 1px, transparent 1px);
  background-size: 40px 40px;
  padding: 4rem 0;
  overflow: hidden;
}

.hero-section .container {
  display: grid;
  gap: 2rem;
  align-items: center;
}

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

.hero-content h1 {
  color: #fff;
  margin-bottom: 1.5rem;
  text-shadow:
    0 0 10px var(--neon-pink),
    0 0 40px rgba(255, 61, 139, 0.3);
}

.hero-content h1 .highlight {
  color: var(--neon-cyan);
  text-shadow:
    0 0 10px var(--neon-cyan),
    0 0 40px rgba(0, 240, 255, 0.3);
}

.hero-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.15rem;
  max-width: 540px;
  margin: 0 auto 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-image {
  display: none;
}

@media (min-width: 768px) {
  .hero-section .container {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

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

  .hero-content p {
    margin: 0 0 2rem;
  }

  .hero-buttons {
    justify-content: flex-start;
  }

  .hero-image {
    display: block;
  }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary,
.btn-secondary,
.cta-button,
.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--corner);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--neon-pink);
  color: #fff;
  border-color: var(--neon-pink);
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
  background: transparent;
  color: var(--neon-pink);
  text-shadow: 0 0 10px var(--neon-pink);
}

.btn-secondary {
  background: transparent;
  color: var(--neon-cyan);
  border-color: var(--neon-cyan);
}

.btn-secondary:hover {
  background: var(--neon-cyan);
  color: var(--dark-bg);
  text-shadow: none;
}

.cta-button {
  background: var(--neon-lime);
  color: var(--dark-bg);
  border-color: var(--neon-lime);
  font-weight: 700;
}

.cta-button:hover {
  background: transparent;
  color: var(--neon-lime);
  text-shadow: 0 0 10px var(--neon-lime);
}

.form-submit {
  background: var(--neon-pink);
  color: #fff;
  border-color: var(--neon-pink);
  width: 100%;
  padding: 1rem 2rem;
}

.form-submit:hover {
  background: var(--neon-purple);
  border-color: var(--neon-purple);
}

/* ============================================
   SECTIONS - GENERAL
   ============================================ */
.section {
  padding: 4rem 0;
}

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

.section-header .section-subtitle {
  margin: 0 auto;
}

@media (min-width: 768px) {
  .section {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 6rem 0;
  }
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
  background: var(--bg);
}

.features-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.feature-card {
  background: var(--surface);
  border: 1px solid rgba(178, 75, 243, 0.15);
  border-radius: var(--corner);
  padding: 2rem;
  transition: border-color var(--transition-fast);
}

.feature-card:hover {
  border-color: var(--neon-pink);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--neon-cyan);
  border-radius: var(--corner);
  color: var(--neon-cyan);
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.feature-card h3 {
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
  background: var(--dark-bg);
  background-image:
    linear-gradient(var(--dark-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--dark-grid) 1px, transparent 1px);
  background-size: 40px 40px;
}

.services-section .section-title {
  color: #fff;
}

.services-section .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.services-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.service-card {
  background: var(--dark-surface);
  border: 1px solid rgba(178, 75, 243, 0.2);
  border-radius: var(--corner);
  padding: 2rem;
  transition: border-color var(--transition-fast);
}

.service-card:hover {
  border-color: var(--neon-lime);
}

.service-card .service-number {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--neon-lime);
  margin-bottom: 1rem;
}

.service-card h3 {
  color: #fff;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.service-card .service-link {
  color: var(--neon-cyan);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-card .service-link:hover {
  color: var(--neon-pink);
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  background: var(--bg);
}

.about-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--muted);
}

.about-image {
  border: 1px solid rgba(178, 75, 243, 0.2);
  border-radius: var(--corner);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.about-stat {
  padding: 1rem;
  border: 1px solid rgba(178, 75, 243, 0.15);
  border-radius: var(--corner);
  text-align: center;
}

.about-stat .stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--neon-pink);
}

.about-stat .stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .about-grid {
    gap: 4rem;
  }
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
  background: var(--dark-surface);
  border-top: 1px solid rgba(178, 75, 243, 0.2);
  border-bottom: 1px solid rgba(178, 75, 243, 0.2);
  padding: 3rem 0;
}

.stats-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
}

.stat-item .stat-value {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--neon-cyan);
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-item .stat-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonial-section {
  background-color: var(--dark-bg);
  background-image:
    linear-gradient(var(--dark-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--dark-grid) 1px, transparent 1px);
  background-size: 40px 40px;
}

.testimonial-section .section-title {
  color: #fff;
}

.testimonial-section .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.testimonials-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid rgba(178, 75, 243, 0.15);
  border-radius: var(--corner);
  padding: 2rem;
}

.testimonial-card .quote-icon {
  font-size: 2rem;
  color: var(--neon-pink);
  margin-bottom: 1rem;
  line-height: 1;
}

.testimonial-card .quote-text {
  color: var(--text);
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-card .author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--neon-cyan);
  object-fit: cover;
}

.testimonial-card .author-info .author-name {
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}

.testimonial-card .author-info .author-role {
  font-size: 0.8rem;
  color: var(--muted);
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: var(--dark-bg);
  border-top: 2px solid var(--neon-pink);
  border-bottom: 2px solid var(--neon-cyan);
  padding: 4rem 0;
  text-align: center;
}

.cta-section h2 {
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px var(--neon-pink);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 2rem;
}

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

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  background: var(--bg);
}

.contact-grid {
  display: grid;
  gap: 2rem;
}

.contact-info h3 {
  margin-bottom: 1.5rem;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.contact-row .contact-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  color: var(--neon-pink);
  width: 1.4rem;
  text-align: center;
}

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

.contact-row .contact-text strong {
  display: block;
  color: var(--text);
  margin-bottom: 0.15rem;
}

.contact-form {
  background: var(--surface);
  border: 1px solid rgba(178, 75, 243, 0.15);
  border-radius: var(--corner);
  padding: 2rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
  }
}

/* ============================================
   FORMS
   ============================================ */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
  width: 100%;
}

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

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--muted);
  border-radius: var(--corner);
  background: var(--surface);
  color: var(--text);
  font: inherit;
  transition: border-color var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--neon-cyan);
  outline: none;
}

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

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

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

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================
   POLICY PAGES
   ============================================ */
.policy-section {
  padding: 4rem 0;
  background: var(--bg);
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
}

.policy-content h1 {
  margin-bottom: 0.5rem;
}

.policy-content .policy-updated {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(178, 75, 243, 0.15);
}

.policy-content h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--neon-purple);
}

.policy-content h3 {
  font-size: 1.15rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.policy-content p {
  color: var(--muted);
  line-height: 1.8;
}

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

.policy-content ul li {
  color: var(--muted);
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1rem;
  list-style: none;
}

.policy-content ul li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--neon-pink);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark-bg);
  border-top: 2px solid var(--neon-pink);
  padding: 3rem 0 1.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-bottom: 2rem;
}

.footer-brand .logo {
  margin-bottom: 1rem;
  display: inline-block;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 280px;
}

.footer-column h4 {
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-column ul li a:hover {
  color: var(--neon-cyan);
}

.footer-bottom {
  border-top: 1px solid rgba(178, 75, 243, 0.2);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.25rem;
  transition: color var(--transition-fast);
}

.footer-social a:hover {
  color: var(--neon-pink);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

/* ============================================
   COOKIE POPUP
   ============================================ */
.cookie-popup {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  left: 1.5rem;
  max-width: 400px;
  background: var(--dark-surface);
  border: 1px solid var(--neon-purple);
  border-radius: var(--corner);
  padding: 1.5rem;
  z-index: 9999;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.cookie-popup.hidden {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}

.cookie-popup h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.cookie-popup p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.cookie-popup .cookie-buttons {
  display: flex;
  gap: 0.75rem;
}

.cookie-popup .cookie-accept {
  padding: 0.5rem 1.25rem;
  background: var(--neon-pink);
  color: #fff;
  border: 1px solid var(--neon-pink);
  border-radius: var(--corner);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.cookie-popup .cookie-accept:hover {
  background: transparent;
  color: var(--neon-pink);
}

.cookie-popup .cookie-decline {
  padding: 0.5rem 1.25rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--corner);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color var(--transition-fast), color var(--transition-fast);
}

.cookie-popup .cookie-decline:hover {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
}

@media (min-width: 768px) {
  .cookie-popup {
    left: auto;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-glow {
  0%, 100% {
    text-shadow: 0 0 7px var(--neon-pink), 0 0 20px rgba(255, 61, 139, 0.4);
  }
  50% {
    text-shadow: 0 0 15px var(--neon-pink), 0 0 40px rgba(255, 61, 139, 0.6);
  }
}

.animate-fade-in {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-pulse {
  animation: pulse-glow 2s ease-in-out infinite;
}

/* ============================================
   SCROLLBAR STYLING
   ============================================ */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--neon-purple);
  border-radius: var(--corner);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--neon-pink);
}

/* ============================================
   SELECTION STYLING
   ============================================ */
::selection {
  background: var(--neon-pink);
  color: #fff;
}

/* ============================================
   ADDITIONAL RESPONSIVE UTILITIES
   ============================================ */
@media (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hide-tablet {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .hide-desktop {
    display: none !important;
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .header,
  .footer,
  .cookie-popup,
  .mobile-menu-toggle {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section {
    padding: 1rem 0;
  }
}