/* ============================================
   GLIMPSSMIND — STYLES.CSS (COLORFUL REFRESH)
   Vibrant, purposeful multi-color design
============================================ */

:root {
  /* Core Brand */
  --indigo-deep:   #0F0826;
  --indigo-mid:    #2D1B69;
  --indigo-light:  #7C5CBF;
  --violet:        #9B59B6;

  /* Vibrant Accents */
  --electric-blue: #4FC3F7;
  --cyan:          #00E5FF;
  --teal:          #00BFA5;
  --emerald:       #00C853;
  --lime:          #AEEA00;
  --gold:          #FFD54F;
  --amber:         #FF8F00;
  --coral:         #FF6B6B;
  --rose:          #F06292;
  --magenta:       #E040FB;
  --orange:        #FF7043;

  /* Section Backgrounds */
  --bg-hero:       #0F0826;
  --bg-about:      #0A1628;
  --bg-services:   #0D0D1A;
  --bg-process:    #0A1F1A;
  --bg-intel:      #12001A;
  --bg-testi:      #001A2E;
  --bg-contact:    #1A0A2E;
  --bg-footer:     #080810;

  /* Text */
  --white:         #FFFFFF;
  --text-body:     #CBD5E8;
  --text-muted:    #7A8BA8;

  /* Surfaces */
  --surface:       rgba(255,255,255,0.04);
  --surface-2:     rgba(255,255,255,0.07);
  --border:        rgba(255,255,255,0.1);

  --radius:        14px;
  --radius-lg:     22px;
  --transition:    0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Manrope', sans-serif;
  background: var(--bg-hero);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
}
::selection { background: var(--magenta); color: var(--white); }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--white);
  line-height: 1.15;
}
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 600; }
em { font-style: italic; color: var(--gold); }
p { font-size: 1rem; font-weight: 400; }

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

/* ── SECTION ── */
.section { padding: 7rem 0; }

.section-eyebrow {
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1rem;
  display: block;
}

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

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 4rem;
  text-align: center;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover::before { opacity: 1; }

.btn--primary {
  background: linear-gradient(135deg, #7C5CBF, #4FC3F7);
  color: var(--white);
  box-shadow: 0 8px 32px rgba(79,195,247,0.35);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(79,195,247,0.5); }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn--ghost:hover { border-color: var(--cyan); background: rgba(0,229,255,0.08); transform: translateY(-2px); }

.btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: #1A0A00;
  font-weight: 700;
  box-shadow: 0 8px 32px rgba(255,213,79,0.4);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(255,213,79,0.55); }
.btn--full { width: 100%; justify-content: center; }

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── NAVBAR ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: background 0.4s, padding 0.4s;
}
.nav.scrolled {
  background: rgba(10, 4, 30, 0.93);
  backdrop-filter: blur(20px);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(124,92,191,0.3);
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo { display: flex; align-items: center; gap: 0.75rem; }
.logo-mark svg { width: 36px; height: 36px; }
.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
}
.logo-text em { font-style: italic; color: var(--cyan); }

.nav__links { display: flex; align-items: center; gap: 2.5rem; }
.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-body);
  transition: color 0.3s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  transition: width 0.3s;
  border-radius: 2px;
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  background: linear-gradient(135deg, var(--magenta), var(--electric-blue)) !important;
  color: var(--white) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-weight: 600 !important;
  box-shadow: 0 4px 20px rgba(224,64,251,0.35);
}
.nav__cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(224,64,251,0.55) !important; }
.nav__cta::after { display: none !important; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(10,4,30,0.97);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 2rem; text-align: center; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--white);
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--cyan); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
  gap: 4rem;
}

/* Hero background — cosmic gradient */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 15% 25%, rgba(124,92,191,0.5) 0%, transparent 55%),
    radial-gradient(ellipse 50% 70% at 85% 75%, rgba(0,229,255,0.15) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 55% 5%,  rgba(224,64,251,0.12) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 90% 20%, rgba(79,195,247,0.1) 0%, transparent 50%),
    var(--bg-hero);
  z-index: -2;
  pointer-events: none;
}

.hero__canvas { position: fixed; inset: 0; z-index: -1; pointer-events: none; }

.hero__content { display: flex; flex-direction: column; gap: 1.5rem; z-index: 1; }

.hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition-delay: 0.1s;
}

.hero__title { transition-delay: 0.2s; line-height: 1.1; }
.hero__title em { 
  background: linear-gradient(135deg, var(--gold), var(--coral));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

.hero__subtitle {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 480px;
  line-height: 1.8;
  transition-delay: 0.3s;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; transition-delay: 0.4s; }
.hero__stats { display: flex; align-items: center; gap: 2rem; padding-top: 1rem; transition-delay: 0.5s; }

.stat__num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat__label { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; }
.stat__divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }

/* ── HERO VISUAL ── */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 500px;
}

.fingerprint-ring {
  position: absolute;
  border-radius: 50%;
  animation: pulse-ring 4s ease-in-out infinite;
}
.ring-1 { width: 120px; height: 120px; border: 1.5px solid rgba(0,229,255,0.7); animation-delay: 0s; }
.ring-2 { width: 220px; height: 220px; border: 1px solid rgba(224,64,251,0.45); animation-delay: 0.5s; }
.ring-3 { width: 340px; height: 340px; border: 1px solid rgba(79,195,247,0.25); animation-delay: 1s; }
.ring-4 { width: 460px; height: 460px; border: 1px solid rgba(124,92,191,0.15); animation-delay: 1.5s; }

@keyframes pulse-ring {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.04); opacity: 0.35; }
}

.fingerprint-core {
  position: relative;
  z-index: 2;
  animation: rotate-slow 30s linear infinite;
}
.fp-svg {
  width: 200px; height: 200px;
  filter: drop-shadow(0 0 24px rgba(0,229,255,0.6)) drop-shadow(0 0 48px rgba(124,92,191,0.4));
}
@keyframes rotate-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.hero__scroll-hint {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  animation: fade-bob 2s ease-in-out infinite;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
}
@keyframes fade-bob {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(6px); }
}

/* ── ABOUT ── */
.about {
  background: var(--bg-about);
  position: relative;
  overflow: hidden;
}
.about::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,191,165,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about__body { color: var(--text-body); margin-bottom: 1.2rem; line-height: 1.85; }

.about__pillars { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 2rem; }

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.pillar:nth-child(1) { border-left: 3px solid var(--teal); }
.pillar:nth-child(2) { border-left: 3px solid var(--electric-blue); }
.pillar:nth-child(3) { border-left: 3px solid var(--magenta); }

.pillar:hover { transform: translateX(6px); box-shadow: 0 4px 20px rgba(0,229,255,0.1); }
.pillar__icon { font-size: 1.5rem; flex-shrink: 0; }
.pillar strong { display: block; color: var(--white); font-family: 'Manrope', sans-serif; font-size: 0.9rem; font-weight: 700; margin-bottom: 0.2rem; }
.pillar p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* ── BRAIN MAP ── */
.about__visual { display: flex; justify-content: center; }
.brain-map { position: relative; width: 300px; height: 300px; }
.brain-lines { position: absolute; inset: 0; width: 100%; height: 100%; }

.brain-node {
  position: absolute;
  transform: translate(-50%, -50%);
  left: var(--x); top: var(--y);
  background: var(--surface-2);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 0.3rem 0.7rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  animation: node-pulse 3s ease-in-out infinite;
  animation-delay: var(--d);
  transition: all 0.3s;
  z-index: 2;
}
.brain-node:nth-child(1) { border-color: rgba(0,229,255,0.5); color: var(--cyan); }
.brain-node:nth-child(2) { border-color: rgba(174,234,0,0.5); color: var(--lime); }
.brain-node:nth-child(3) { border-color: rgba(240,98,146,0.5); color: var(--rose); }
.brain-node:nth-child(4) { border-color: rgba(255,213,79,0.5); color: var(--gold); }
.brain-node:nth-child(5) { border-color: rgba(255,112,67,0.5); color: var(--orange); }
.brain-node:nth-child(6) { border-color: rgba(0,200,83,0.5); color: var(--emerald); }
.brain-node:nth-child(7) { border-color: rgba(224,64,251,0.5); color: var(--magenta); }
.brain-node:nth-child(8) { border-color: rgba(79,195,247,0.5); color: var(--electric-blue); }

.brain-node:hover { transform: translate(-50%, -50%) scale(1.15); background: var(--surface-2); }

@keyframes node-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,229,255,0); }
  50% { box-shadow: 0 0 0 4px rgba(0,229,255,0.15); }
}

.brain-center {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--magenta), var(--electric-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  z-index: 3;
  box-shadow: 0 0 30px rgba(224,64,251,0.5), 0 0 60px rgba(79,195,247,0.3);
}

/* ── SERVICES ── */
.services {
  background: var(--bg-services);
  position: relative;
  overflow: hidden;
}
.services::before {
  content: '';
  position: absolute;
  bottom: -150px; left: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(124,92,191,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: start; }

.service-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: transform 0.4s, box-shadow 0.4s;
  overflow: hidden;
}

/* Parents card — warm coral/rose */
.service-card[data-service="parents"] {
  border-top: 3px solid var(--coral);
}
.service-card[data-service="parents"]:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(255,107,107,0.2);
  border-color: var(--coral);
}
.service-card[data-service="parents"] .service-card__glow {
  background: radial-gradient(circle at top right, rgba(255,107,107,0.15) 0%, transparent 60%);
}
.service-card[data-service="parents"] .service-card__tag { color: var(--coral); }
.service-card[data-service="parents"] .service-card__link { color: var(--coral); }
.service-card[data-service="parents"] .service-card__features li::before { color: var(--coral); }

/* Corporate card — electric blue/cyan (featured) */
.service-card[data-service="corporate"] {
  border-top: 3px solid var(--cyan);
  background: linear-gradient(160deg, rgba(0,229,255,0.07) 0%, rgba(79,195,247,0.04) 100%);
  box-shadow: 0 0 40px rgba(0,229,255,0.1);
  transform: translateY(-12px);
}
.service-card[data-service="corporate"]:hover {
  transform: translateY(-20px);
  box-shadow: 0 30px 80px rgba(0,229,255,0.25);
  border-color: var(--cyan);
}
.service-card[data-service="corporate"] .service-card__glow {
  background: radial-gradient(circle at top right, rgba(0,229,255,0.18) 0%, transparent 60%);
}
.service-card[data-service="corporate"] .service-card__tag { color: var(--cyan); }
.service-card[data-service="corporate"] .service-card__link { color: var(--cyan); }
.service-card[data-service="corporate"] .service-card__features li::before { color: var(--cyan); }

/* Schools card — vibrant green/lime */
.service-card[data-service="schools"] {
  border-top: 3px solid var(--emerald);
}
.service-card[data-service="schools"]:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,200,83,0.2);
  border-color: var(--emerald);
}
.service-card[data-service="schools"] .service-card__glow {
  background: radial-gradient(circle at top right, rgba(0,200,83,0.15) 0%, transparent 60%);
}
.service-card[data-service="schools"] .service-card__tag { color: var(--emerald); }
.service-card[data-service="schools"] .service-card__link { color: var(--emerald); }
.service-card[data-service="schools"] .service-card__features li::before { color: var(--emerald); }

.service-card__glow {
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  pointer-events: none;
}

.service-card__badge {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  background: linear-gradient(135deg, var(--cyan), var(--electric-blue));
  color: #001A2E;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
}

.service-card__icon { width: 56px; height: 56px; margin-bottom: 1.5rem; }
.service-card__icon svg { width: 100%; height: 100%; }
.service-card__tag { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 0.75rem; }
.service-card__title { font-size: 1.6rem; margin-bottom: 1rem; line-height: 1.2; }
.service-card__desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1.5rem; }

.service-card__features { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem; }
.service-card__features li {
  font-size: 0.85rem;
  color: var(--text-body);
  padding-left: 1.2rem;
  position: relative;
}
.service-card__features li::before {
  content: '◆';
  position: absolute;
  left: 0;
  font-size: 0.4rem;
  top: 0.35rem;
}

.service-card__link {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: gap 0.3s, opacity 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.service-card__link:hover { gap: 0.6rem; opacity: 0.8; }

/* ── PROCESS ── */
.process {
  background: var(--bg-process);
  position: relative;
  overflow: hidden;
}
.process::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(0,191,165,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.process__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 4rem;
  position: relative;
}

.process__step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.2rem;
  padding: 0 1.5rem;
}

/* Each step gets a unique color */
.process__step:nth-child(1) .step__number { background: linear-gradient(135deg, var(--cyan), var(--teal)); box-shadow: 0 0 30px rgba(0,229,255,0.4); }
.process__step:nth-child(3) .step__number { background: linear-gradient(135deg, var(--magenta), var(--violet)); box-shadow: 0 0 30px rgba(224,64,251,0.4); }
.process__step:nth-child(5) .step__number { background: linear-gradient(135deg, var(--gold), var(--amber)); box-shadow: 0 0 30px rgba(255,213,79,0.4); }
.process__step:nth-child(7) .step__number { background: linear-gradient(135deg, var(--emerald), var(--lime)); box-shadow: 0 0 30px rgba(0,200,83,0.4); }

.step__number {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step__content h3 { font-size: 1.2rem; margin-bottom: 0.5rem; color: var(--white); }
.step__content p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

.process__connector {
  flex-shrink: 0;
  width: 60px; height: 2px;
  background: linear-gradient(to right, var(--cyan), var(--magenta));
  margin-top: 31px;
  opacity: 0.35;
}

/* ── INTELLIGENCES ── */
.intelligences {
  background: var(--bg-intel);
  position: relative;
  overflow: hidden;
}
.intelligences::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(224,64,251,0.06) 0%, transparent 70%);
  pointer-events: none;
}

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

.intel-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.2rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: default;
  position: relative;
  overflow: hidden;
}

/* Rainbow spectrum for each card */
.intel-card:nth-child(1) { border-bottom: 2px solid var(--cyan); }
.intel-card:nth-child(1):hover { box-shadow: 0 12px 40px rgba(0,229,255,0.2); transform: translateY(-6px); }
.intel-card:nth-child(2) { border-bottom: 2px solid var(--lime); }
.intel-card:nth-child(2):hover { box-shadow: 0 12px 40px rgba(174,234,0,0.2); transform: translateY(-6px); }
.intel-card:nth-child(3) { border-bottom: 2px solid var(--rose); }
.intel-card:nth-child(3):hover { box-shadow: 0 12px 40px rgba(240,98,146,0.2); transform: translateY(-6px); }
.intel-card:nth-child(4) { border-bottom: 2px solid var(--gold); }
.intel-card:nth-child(4):hover { box-shadow: 0 12px 40px rgba(255,213,79,0.2); transform: translateY(-6px); }
.intel-card:nth-child(5) { border-bottom: 2px solid var(--orange); }
.intel-card:nth-child(5):hover { box-shadow: 0 12px 40px rgba(255,112,67,0.2); transform: translateY(-6px); }
.intel-card:nth-child(6) { border-bottom: 2px solid var(--emerald); }
.intel-card:nth-child(6):hover { box-shadow: 0 12px 40px rgba(0,200,83,0.2); transform: translateY(-6px); }
.intel-card:nth-child(7) { border-bottom: 2px solid var(--magenta); }
.intel-card:nth-child(7):hover { box-shadow: 0 12px 40px rgba(224,64,251,0.2); transform: translateY(-6px); }
.intel-card:nth-child(8) { border-bottom: 2px solid var(--electric-blue); }
.intel-card:nth-child(8):hover { box-shadow: 0 12px 40px rgba(79,195,247,0.2); transform: translateY(-6px); }

.intel-card__emoji { font-size: 2rem; display: block; margin-bottom: 0.75rem; }
.intel-card strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--white); margin-bottom: 0.4rem; }
.intel-card p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; margin: 0; }

/* ── TESTIMONIALS ── */
.testimonials {
  background: var(--bg-testi);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta), var(--gold), var(--emerald));
}

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

.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}
.testimonial:nth-child(1) { border-top: 2px solid var(--rose); }
.testimonial:nth-child(1):hover { transform: translateY(-4px); box-shadow: 0 16px 50px rgba(240,98,146,0.15); }
.testimonial:nth-child(2) { border-top: 2px solid var(--electric-blue); }
.testimonial:nth-child(2):hover { transform: translateY(-4px); box-shadow: 0 16px 50px rgba(79,195,247,0.15); }
.testimonial:nth-child(3) { border-top: 2px solid var(--emerald); }
.testimonial:nth-child(3):hover { transform: translateY(-4px); box-shadow: 0 16px 50px rgba(0,200,83,0.15); }

.testimonial__quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  line-height: 0.5;
  opacity: 0.3;
  margin-bottom: 1rem;
}
.testimonial:nth-child(1) .testimonial__quote { color: var(--rose); }
.testimonial:nth-child(2) .testimonial__quote { color: var(--electric-blue); }
.testimonial:nth-child(3) .testimonial__quote { color: var(--emerald); }

.testimonial p { font-size: 0.9rem; color: var(--text-body); line-height: 1.8; margin-bottom: 1.5rem; font-style: italic; }
.testimonial__author { display: flex; align-items: center; gap: 0.75rem; }

.author__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(var(--hue), 70%, 35%), hsl(var(--hue), 70%, 60%));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial__author strong { display: block; font-family: 'Manrope', sans-serif; font-size: 0.875rem; color: var(--white); font-weight: 600; }
.testimonial__author span { font-size: 0.75rem; color: var(--text-muted); }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, #1A0040 0%, #003040 50%, #1A0040 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 20% 50%, rgba(0,229,255,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 80% 50%, rgba(224,64,251,0.1) 0%, transparent 60%);
}
.cta-band::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--magenta), var(--cyan), var(--gold));
}

.cta-band__inner {
  display: flex;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

.cta-band__fp { position: relative; width: 100px; height: 100px; flex-shrink: 0; }
.fp-mini {
  position: absolute;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-ring 3s ease-in-out infinite;
}
.ring-a { width: 30px; height: 30px; border: 1px solid rgba(0,229,255,0.6); animation-delay: 0s; }
.ring-b { width: 60px; height: 60px; border: 1px solid rgba(224,64,251,0.4); animation-delay: 0.4s; }
.ring-c { width: 90px; height: 90px; border: 1px solid rgba(255,213,79,0.25); animation-delay: 0.8s; }
.fp-mini-core {
  position: absolute;
  width: 10px; height: 10px;
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px rgba(0,229,255,0.8);
}

.cta-band__text { flex: 1; }
.cta-band__text h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); margin-bottom: 0.75rem; }
.cta-band__text h2 em {
  background: linear-gradient(135deg, var(--gold), var(--coral));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-band__text p { color: var(--text-body); font-size: 1rem; }

/* ── CONTACT ── */
.contact {
  background: var(--bg-contact);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(224,64,251,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.contact__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 6rem; align-items: start; }
.contact__info p { color: var(--text-body); line-height: 1.8; margin-bottom: 2rem; }
.contact__details { display: flex; flex-direction: column; gap: 1rem; }
.contact__item { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.9rem; color: var(--text-body); }
.contact__icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 0.1rem; }

/* ── FORM ── */
.contact__form {
  background: var(--surface);
  border: 1px solid rgba(224,64,251,0.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 0 40px rgba(224,64,251,0.08);
}

.form__group { margin-bottom: 1.25rem; }
.form__group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  color: var(--white);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  appearance: none;
}
.form__group input::placeholder,
.form__group textarea::placeholder { color: var(--text-muted); }
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--magenta);
  box-shadow: 0 0 0 3px rgba(224,64,251,0.15);
}
.form__group select option { background: #1A0A2E; }
.form__group textarea { resize: vertical; min-height: 100px; }

/* ── FOOTER ── */
.footer {
  background: var(--bg-footer);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 4rem 0 2rem;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta), var(--gold), var(--emerald), var(--cyan));
}

.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer__brand p { font-size: 0.875rem; color: var(--text-muted); margin-top: 1rem; line-height: 1.7; max-width: 260px; }
.footer__links h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.footer__links:nth-child(2) h4 { color: var(--coral); }
.footer__links:nth-child(3) h4 { color: var(--cyan); }
.footer__links:nth-child(4) h4 { color: var(--emerald); }

.footer__links ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer__links a { font-size: 0.875rem; color: var(--text-muted); transition: color 0.3s; }
.footer__links a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── PARTICLES ── */
#particleCanvas { position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0.5; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .service-card[data-service="corporate"] { transform: none; }
  .intel__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr; max-width: 520px; margin: 2rem auto 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .about__grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact__grid { grid-template-columns: 1fr; gap: 3rem; }
  .process__steps { flex-direction: column; align-items: center; }
  .process__connector { width: 2px; height: 40px; background: linear-gradient(to bottom, var(--cyan), var(--magenta)); margin: 0; }
  .cta-band__inner { flex-direction: column; text-align: center; gap: 2rem; }
}

@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding: 7rem 1.5rem 4rem; gap: 3rem; }
  .hero__subtitle { margin: 0 auto; }
  .hero__actions { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__visual { height: 280px; }
  .ring-4 { width: 260px; height: 260px; }
  .ring-3 { width: 200px; height: 200px; }
  .ring-2 { width: 140px; height: 140px; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .intel__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .section { padding: 5rem 0; }
  .contact__form { padding: 1.5rem; }
}

@media (max-width: 480px) {
  .intel__grid { grid-template-columns: 1fr 1fr; }
  .hero__stats { flex-direction: column; gap: 1rem; }
  .stat__divider { width: 40px; height: 1px; }
  .process__step { padding: 0 0.5rem; }
}