/* ============================================
   THE PROGRAM QUEEN — Stylesheet
   Roku City x Powerpuff Girls energy
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --bg-deep: #0d001a;
  --bg-primary: #1a0030;
  --bg-card: rgba(40, 10, 70, 0.45);
  --neon-purple: #b44fff;
  --neon-violet: #9b30ff;
  --neon-light: #cc66ff;
  --neon-soft: #dda0ff;
  --lavender: #e6d0ff;
  --lilac: #c8a2e8;
  --hot-pink: #ff44cc;
  --white: #f5f0ff;
  --text-body: #e0d4f0;
  --text-muted: #b09dd0;
  --glow-purple: 0 0 30px rgba(180, 79, 255, 0.4), 0 0 60px rgba(180, 79, 255, 0.15);
  --glow-pink: 0 0 30px rgba(255, 68, 204, 0.4), 0 0 60px rgba(255, 68, 204, 0.15);
  --glass-border: rgba(180, 79, 255, 0.2);
  --glass-bg: rgba(30, 5, 55, 0.5);
  --font-display: 'Lilita One', cursive;
  --font-body: 'Nunito', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

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

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb {
  background: var(--neon-purple);
  border-radius: 4px;
}

/* ---------- Animations Keyframes ---------- */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

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

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- NAVBAR ---------- */
.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(13, 0, 26, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 10px 32px;
  background: rgba(13, 0, 26, 0.92);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: 0.5px;
}

.crown-icon {
  width: 32px;
  height: 20px;
  color: var(--neon-light);
  filter: drop-shadow(0 0 6px rgba(204, 102, 255, 0.6));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition);
  letter-spacing: 0.3px;
}

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

.nav-cta {
  background: linear-gradient(135deg, var(--neon-purple), var(--hot-pink));
  padding: 10px 22px !important;
  border-radius: 50px;
  color: var(--white) !important;
  font-weight: 800 !important;
  box-shadow: var(--glow-purple);
  transition: var(--transition);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-pink);
}

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

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--neon-light);
  border-radius: 2px;
  transition: var(--transition);
}

.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);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-deep);
}

#particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(155, 48, 255, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 30% 70%, rgba(255, 68, 204, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 70% 30%, rgba(180, 79, 255, 0.1) 0%, transparent 60%);
  z-index: 2;
  animation: glow-pulse 6s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 24px;
  max-width: 820px;
  animation: slide-up 1s ease-out 0.2s both;
}

.hero-crown {
  margin: 0 auto 24px;
  width: 100px;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(204, 102, 255, 0.5));
}

.hero-crown svg {
  width: 100%;
  height: auto;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.text-glow {
  background: linear-gradient(135deg, var(--neon-light), var(--hot-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(255, 68, 204, 0.4));
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: var(--lavender);
  max-width: 600px;
  margin: 0 auto 36px;
  font-weight: 600;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn span {
  position: relative;
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--neon-purple), var(--hot-pink));
  color: var(--white);
  box-shadow: var(--glow-purple);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(180, 79, 255, 0.6), 0 0 80px rgba(255, 68, 204, 0.3);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--hot-pink), var(--neon-purple));
  opacity: 0;
  transition: opacity 0.4s;
  border-radius: inherit;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-secondary {
  background: transparent;
  color: var(--neon-light);
  border: 2px solid var(--neon-purple);
  box-shadow: inset 0 0 20px rgba(180, 79, 255, 0.1);
}

.btn-secondary:hover {
  background: rgba(180, 79, 255, 0.1);
  border-color: var(--neon-light);
  transform: translateY(-3px);
  box-shadow: var(--glow-purple);
}

.btn-large {
  padding: 20px 44px;
  font-size: 1.15rem;
}

button.btn {
  font-family: var(--font-body);
}

/* ---------- Scroll Hint ---------- */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fade-in 1s ease-out 1.5s both;
}

.hero-scroll-hint span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--neon-purple);
  animation: scroll-line 2s ease-in-out infinite;
}

/* ---------- Section Common ---------- */
.section-eyebrow {
  font-family: var(--font-display);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--hot-pink);
  margin-bottom: 12px;
  text-align: center;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-description {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
  color: var(--lavender);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* ---------- Glassmorphism Cards ---------- */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}

.card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(180, 79, 255, 0.06), transparent 50%);
  pointer-events: none;
  transition: opacity 0.6s;
}

.glass-card:hover .card-glow {
  opacity: 1;
  background: radial-gradient(circle at 50% 50%, rgba(180, 79, 255, 0.1), transparent 50%);
}

/* ---------- Animate on Scroll ---------- */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- SERVICES ---------- */
.services {
  padding: 120px 0;
  background:
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-primary) 30%, var(--bg-primary) 70%, var(--bg-deep) 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.service-card {
  padding: 40px 36px;
  transition: transform 0.4s, box-shadow 0.4s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--glow-purple);
}

.card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(180, 79, 255, 0.2), rgba(255, 68, 204, 0.1));
  border: 1px solid rgba(180, 79, 255, 0.3);
  margin-bottom: 24px;
  color: var(--neon-light);
}

.card-icon svg {
  width: 32px;
  height: 32px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 16px;
}

.service-card p {
  color: var(--text-body);
  margin-bottom: 12px;
  line-height: 1.75;
}

.service-card em {
  color: var(--neon-soft);
  font-style: italic;
}

.service-list {
  margin: 16px 0;
  padding-left: 4px;
}

.service-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  color: var(--lavender);
  font-weight: 600;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hot-pink);
  box-shadow: 0 0 8px rgba(255, 68, 204, 0.5);
}

/* ---------- CLIENT LOGOS CAROUSEL ---------- */
@keyframes logo-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.logos-section {
  padding: 80px 0;
  background: var(--bg-deep);
  overflow: hidden;
  position: relative;
}

.logos-section::before,
.logos-section::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.logos-section::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-deep), transparent);
}

.logos-section::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-deep), transparent);
}

.logos-carousel {
  margin-top: 48px;
  overflow: hidden;
  width: 100%;
}

.logos-track {
  display: flex;
  align-items: center;
  gap: 80px;
  width: max-content;
  animation: logo-scroll 20s linear infinite;
}

.logos-track:hover {
  animation-play-state: paused;
}

.logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  padding: 0 16px;
  filter: none;
  opacity: 1;
  transition: all 0.4s ease;
}

.logo-item:hover {
  filter: drop-shadow(0 0 12px rgba(180, 79, 255, 0.4));
  transform: scale(1.08);
}

.logo-item img {
  max-height: 80px;
  max-width: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* ---------- WHY ME ---------- */
.why {
  padding: 120px 0;
  background: var(--bg-deep);
  position: relative;
}

.why::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(155, 48, 255, 0.08), transparent 70%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.stat-card {
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.4s, box-shadow 0.4s;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--glow-purple);
}

.stat-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 20px;
  color: var(--neon-light);
  filter: drop-shadow(0 0 8px rgba(204, 102, 255, 0.5));
}

.stat-icon svg {
  width: 100%;
  height: 100%;
}

.stat-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 12px;
}

.stat-card p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.65;
}

.stat-card em {
  color: var(--neon-soft);
}

/* ---------- ABOUT / MEET THE QUEEN ---------- */
.about {
  padding: 120px 0;
  background:
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-primary) 30%, var(--bg-primary) 70%, var(--bg-deep) 100%);
  position: relative;
  overflow: hidden;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 48px;
}

/* Photo Grid */
.photo-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.photo-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--glass-border);
  box-shadow: 0 0 24px rgba(180, 79, 255, 0.15);
  transition: transform 0.4s, box-shadow 0.4s;
}

.photo-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 36px rgba(180, 79, 255, 0.3), 0 0 60px rgba(255, 68, 204, 0.1);
  border-color: var(--neon-purple);
}

.photo-main {
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-main img {
  max-height: 420px;
  object-position: top center;
}

.photo-secondary img {
  height: 220px;
  object-position: center;
}

.photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 0, 48, 0.3) 0%,
    rgba(180, 79, 255, 0.08) 50%,
    rgba(255, 68, 204, 0.12) 100%
  );
  pointer-events: none;
  mix-blend-mode: multiply;
}

.photo-frame:hover .photo-overlay {
  background: linear-gradient(
    135deg,
    rgba(26, 0, 48, 0.15) 0%,
    rgba(180, 79, 255, 0.05) 50%,
    rgba(255, 68, 204, 0.08) 100%
  );
}

/* About Content */
.about-content h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--white), var(--neon-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-lead {
  font-size: 1.15rem;
  color: var(--lavender);
  line-height: 1.7;
  margin-bottom: 28px;
  font-weight: 700;
}

.about-credentials {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.credential {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.55;
}

.credential strong {
  color: var(--white);
}

.credential-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(180, 79, 255, 0.2), rgba(255, 68, 204, 0.1));
  border: 1px solid rgba(180, 79, 255, 0.25);
  color: var(--neon-light);
  padding: 4px;
}

.credential-icon svg {
  width: 16px;
  height: 16px;
}

.about-close {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--glass-border);
  padding-top: 20px;
}

.about-personal {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-top: 16px;
}

.about-personal a {
  color: var(--neon-light);
  font-weight: 700;
  border-bottom: 1px solid rgba(204, 102, 255, 0.3);
  transition: var(--transition);
}

.about-personal a:hover {
  color: var(--hot-pink);
  border-bottom-color: var(--hot-pink);
}

@media (max-width: 768px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .photo-main img {
    max-height: 300px;
  }

  .photo-secondary img {
    height: 180px;
  }

  .about {
    padding: 80px 0;
  }
}

/* ---------- CONSULTATION ---------- */
.consultation {
  padding: 120px 0;
  background:
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-primary) 30%, var(--bg-primary) 70%, var(--bg-deep) 100%);
}

.consultation-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 48px auto;
  max-width: 900px;
}

.flow-step {
  flex: 1;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.4s, box-shadow 0.4s;
}

.flow-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--glow-purple);
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-purple), var(--hot-pink));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: var(--glow-purple);
}

.flow-step h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 10px;
}

.flow-step p {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.6;
}

.flow-connector {
  width: 40px;
  flex-shrink: 0;
  color: var(--neon-purple);
  opacity: 0.5;
}

.flow-connector svg {
  width: 100%;
  height: auto;
}

.consultation-cta {
  max-width: 640px;
  margin: 48px auto 0;
  padding: 48px 40px;
  text-align: center;
  border: 1px solid rgba(255, 68, 204, 0.3);
  box-shadow: 0 0 40px rgba(180, 79, 255, 0.1);
}

.consultation-cta h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 12px;
}

.consultation-cta > .cta-content > p:first-of-type {
  color: var(--lavender);
  margin-bottom: 28px;
  font-size: 1.05rem;
}

.cta-note {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ---------- DISCOVERY CALL ---------- */
.discovery {
  padding: 120px 0;
  background: var(--bg-deep);
  position: relative;
}

.discovery-content {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.discovery-crown {
  width: 80px;
  margin: 0 auto 24px;
  filter: drop-shadow(0 0 16px rgba(180, 79, 255, 0.4));
  animation: float 5s ease-in-out infinite;
}

.discovery h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--white);
  margin-bottom: 16px;
}

.discovery p {
  color: var(--lavender);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

/* ---------- FOOTER ---------- */
.footer {
  padding: 64px 0 32px;
  background: var(--bg-deep);
  border-top: 1px solid var(--glass-border);
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 12px;
}

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

.footer-nav h4,
.footer-social h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--neon-light);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.footer-nav li {
  margin-bottom: 10px;
}

.footer-nav a {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-nav a:hover {
  color: var(--white);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-light);
  transition: var(--transition);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.social-link:hover {
  border-color: var(--neon-purple);
  background: rgba(180, 79, 255, 0.15);
  box-shadow: var(--glow-purple);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(180, 79, 255, 0.1);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    background: rgba(13, 0, 26, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid var(--glass-border);
    padding: 24px;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .nav-cta {
    margin-top: 8px;
    justify-content: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .consultation-flow {
    flex-direction: column;
    gap: 16px;
  }

  .flow-connector {
    transform: rotate(90deg);
    width: 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 320px;
    min-height: 48px;
  }

  .services,
  .why,
  .consultation,
  .discovery {
    padding: 80px 0;
  }

  .consultation-cta {
    padding: 36px 24px;
  }

  .logos-track {
    gap: 40px;
  }

  .logo-item img {
    max-height: 60px;
    max-width: 140px;
  }

  .logos-section::before,
  .logos-section::after {
    width: 60px;
  }

  .section-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 3px;
  }

  .section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .section-description {
    font-size: 1rem;
    margin-bottom: 36px;
  }

  .discovery-crown {
    width: 60px;
  }

  .hero-scroll-hint {
    bottom: 20px;
  }
}

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

  .nav-logo {
    font-size: 1.05rem;
  }

  .crown-icon {
    width: 26px;
    height: 16px;
  }

  .service-card {
    padding: 28px 20px;
  }

  .hero-crown {
    width: 70px;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-content {
    padding: 0 16px;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 28px;
  }

  .btn {
    padding: 14px 24px;
    font-size: 0.95rem;
  }

  .btn-large {
    padding: 16px 28px;
    font-size: 1.05rem;
  }

  .about-content h3 {
    font-size: 1.6rem;
  }

  .about-lead {
    font-size: 1.05rem;
  }

  .credential {
    font-size: 0.9rem;
  }

  .credential-icon {
    width: 24px;
    height: 24px;
  }

  .credential-icon svg {
    width: 14px;
    height: 14px;
  }

  .stat-card {
    padding: 24px 20px;
  }

  .flow-step {
    padding: 24px 20px;
  }

  .consultation-cta {
    padding: 28px 20px;
  }

  .consultation-cta h3 {
    font-size: 1.3rem;
  }

  .footer {
    padding: 48px 0 24px;
  }

  .container {
    padding: 0 16px;
  }
}
