/* ═══════════════════════════════════════════
   XXL Digital Marketing — style.css
   Pure CSS, no framework required
   cPanel compatible
═══════════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #03030A;
  color: #F0F0F8;
  font-family: 'DM Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ── CSS Variables ── */
:root {
  --purple: #7B2FBE;
  --purple-bright: #9D4EDD;
  --orange: #F5A623;
  --orange-bright: #FFB830;
  --void: #03030A;
  --deep: #060610;
  --surface: #0A0A18;
  --border: #1A1A2E;
  --text-muted: rgba(240,240,248,0.45);
  --text-dim: rgba(240,240,248,0.3);
}

/* ── Typography ── */
h1,h2,h3,h4 { font-family: 'Space Grotesk', sans-serif; }
.font-display { font-family: 'Orbitron', monospace; }

/* ── Container ── */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
@media(min-width:1024px){ .container { padding: 0 2rem; } }

/* ── Gradient helpers ── */
.gradient-text {
  background: linear-gradient(135deg, #9D4EDD 0%, #F5A623 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.gradient-text-rev {
  background: linear-gradient(135deg, #F5A623 0%, #9D4EDD 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.text-orange { color: #F5A623; }
.text-purple { color: #9D4EDD; }

/* ── Section Label ── */
.section-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.35rem 0.875rem; border-radius: 9999px;
  border: 1px solid rgba(157,78,221,0.3); background: rgba(157,78,221,0.08);
  font-family: 'Orbitron', monospace; font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase; color: #9D4EDD;
}
.section-label.label-orange { border-color: rgba(245,166,35,0.3); background: rgba(245,166,35,0.08); color: #F5A623; }
.section-label .dot { width: 6px; height: 6px; border-radius: 50%; background: #F5A623; }
.section-label.pulse .dot { animation: pulse-dot 2s ease-in-out infinite; }

/* ── Buttons ── */
.btn-neon {
  position: relative; display: inline-flex; align-items: center; gap: 0.5rem;
  background: linear-gradient(135deg, #7B2FBE 0%, #F5A623 100%);
  color: #fff; font-family: 'Space Grotesk', sans-serif; font-weight: 600;
  letter-spacing: 0.04em; border-radius: 0.75rem; overflow: hidden;
  transition: all 0.3s cubic-bezier(0.23,1,0.32,1);
}
.btn-neon::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, #9D4EDD 0%, #FFB830 100%);
  opacity: 0; transition: opacity 0.3s ease;
}
.btn-neon:hover::before { opacity: 1; }
.btn-neon:hover { box-shadow: 0 0 30px rgba(157,78,221,0.6), 0 0 60px rgba(245,166,35,0.2); transform: translateY(-2px); }
.btn-neon:active { transform: scale(0.97); }
.btn-neon > * { position: relative; z-index: 1; }
.btn-neon svg { position: relative; z-index: 1; }
.btn-lg { padding: 1rem 2.25rem; font-size: 0.95rem; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; border: 1px solid rgba(157,78,221,0.4);
  color: rgba(255,255,255,0.75); font-family: 'Space Grotesk', sans-serif;
  font-weight: 500; letter-spacing: 0.04em; border-radius: 0.75rem;
  transition: all 0.3s cubic-bezier(0.23,1,0.32,1);
}
.btn-ghost:hover { border-color: #9D4EDD; background: rgba(157,78,221,0.1); color: #fff; box-shadow: 0 0 20px rgba(157,78,221,0.2); }

/* ── Holo Card ── */
.holo-card {
  position: relative;
  background: linear-gradient(135deg, rgba(157,78,221,0.06) 0%, rgba(245,166,35,0.03) 100%);
  border: 1px solid rgba(157,78,221,0.18);
  border-radius: 1rem; overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
}
.holo-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(157,78,221,0.06) 0%, transparent 50%, rgba(245,166,35,0.06) 100%);
  opacity: 0; transition: opacity 0.4s ease;
}
.holo-card:hover::before { opacity: 1; }
.holo-card:hover { border-color: rgba(157,78,221,0.45); transform: translateY(-5px); box-shadow: 0 20px 60px rgba(123,47,190,0.18); }

/* ── Icons ── */
.card-icon {
  width: 40px; height: 40px; border-radius: 0.625rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.icon-purple { background: rgba(157,78,221,0.12); border: 1px solid rgba(157,78,221,0.25); color: #9D4EDD; }
.icon-orange  { background: rgba(245,166,35,0.12);  border: 1px solid rgba(245,166,35,0.25);  color: #F5A623; }

/* ── Tag pills ── */
.tag-pill { font-size: 0.68rem; padding: 0.2rem 0.7rem; border-radius: 9999px; font-family: 'Space Grotesk', sans-serif; }
.tag-pill.purple { background: rgba(157,78,221,0.1); border: 1px solid rgba(157,78,221,0.25); color: #9D4EDD; }
.tag-pill.orange  { background: rgba(245,166,35,0.1);  border: 1px solid rgba(245,166,35,0.25);  color: #F5A623; }

/* ── Section ── */
.section { padding: 6rem 0; position: relative; overflow: hidden; }
.bg-void { background: #03030A; }
.bg-deep { background: #060610; }

/* Grid bg */
.grid-bg {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.025;
  background-image: linear-gradient(rgba(157,78,221,1) 1px, transparent 1px), linear-gradient(90deg, rgba(157,78,221,1) 1px, transparent 1px);
  background-size: 60px 60px;
}
.grid-orange {
  background-image: linear-gradient(rgba(245,166,35,1) 1px, transparent 1px), linear-gradient(90deg, rgba(245,166,35,1) 1px, transparent 1px);
}

/* ── Section Header ── */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header .section-label { margin-bottom: 1.25rem; }
.section-title { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 1rem; }
.section-desc { color: var(--text-muted); max-width: 500px; margin: 0 auto; line-height: 1.7; }
.split-header { text-align: left; display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.5rem; }
.split-header .section-desc { margin: 0; }

/* ── Reveal animation ── */
.reveal { opacity: 0; transform: translateY(35px); transition: opacity 0.8s cubic-bezier(0.23,1,0.32,1), transform 0.8s cubic-bezier(0.23,1,0.32,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════
   NAVBAR
══════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: all 0.4s ease;
}
#navbar.scrolled {
  background: rgba(3,3,10,0.88); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(157,78,221,0.18);
  box-shadow: 0 1px 0 0 rgba(157,78,221,0.1);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; max-width: 1280px; margin: 0 auto; padding: 0 2rem;
}
.nav-logo { display: flex; align-items: center; gap: 0.75rem; }
.nav-logo-img { width: 36px; height: 36px; border-radius: 0.5rem; object-fit: cover; }
.nav-logo-text { display: flex; flex-direction: column; gap: 2px; }
.nav-logo-xxl {
  font-family: 'Orbitron', monospace; font-size: 1.1rem; font-weight: 900;
  letter-spacing: 0.15em; line-height: 1;
  background: linear-gradient(135deg, #9D4EDD 0%, #F5A623 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.nav-logo-sub { font-size: 0.55rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(157,78,221,0.5); font-family: 'Space Grotesk', sans-serif; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-family: 'Space Grotesk', sans-serif; font-size: 0.875rem; font-weight: 500;
  color: rgba(255,255,255,0.45); transition: color 0.2s; position: relative;
}
.nav-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px; background: linear-gradient(90deg, #9D4EDD, #F5A623); transition: width 0.3s ease; }
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }
.nav-cta { padding: 0.6rem 1.25rem; font-size: 0.85rem; }
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: rgba(255,255,255,0.6); border-radius: 2px; transition: all 0.3s; }
.nav-mobile {
  display: none; flex-direction: column; gap: 4px; padding: 1rem 2rem 1.25rem;
  background: rgba(3,3,10,0.96); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(157,78,221,0.18);
}
.nav-mobile a { font-family: 'Space Grotesk', sans-serif; font-size: 0.9rem; color: rgba(255,255,255,0.55); padding: 0.75rem 1rem; border-radius: 0.5rem; transition: all 0.2s; }
.nav-mobile a:hover { color: #fff; background: rgba(157,78,221,0.1); }
@media(max-width:768px){
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav-mobile.open { display: flex; }
}

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; background: #03030A; }
#particleCanvas { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.35; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(3,3,10,0.65) 0%, rgba(3,3,10,0.25) 50%, #03030A 100%); z-index: 2; }
.hero-glow-purple { position: absolute; top: 25%; right: 20%; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(123,47,190,0.18) 0%, transparent 70%); pointer-events: none; z-index: 2; }
.hero-glow-orange  { position: absolute; bottom: 30%; left: 25%; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(245,166,35,0.12) 0%, transparent 70%); pointer-events: none; z-index: 2; }
.hero-content { position: relative; z-index: 3; padding-top: 8rem; padding-bottom: 5rem; }
.hero-h1 { margin: 1.5rem 0 2rem; }
.hero-line1 { font-family: 'Orbitron', monospace; font-size: clamp(2.5rem, 7vw, 5rem); font-weight: 900; color: #fff; letter-spacing: -0.01em; line-height: 1; animation: flicker 8s infinite; }
.hero-line2 { font-family: 'Orbitron', monospace; font-size: clamp(3rem, 8vw, 6rem); font-weight: 900; letter-spacing: -0.02em; line-height: 1; background: linear-gradient(135deg, #9D4EDD 0%, #F5A623 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; position: relative; }
.hero-sub { color: var(--text-muted); font-size: 1.1rem; max-width: 640px; line-height: 1.75; margin-bottom: 2.5rem; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 4rem; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.stat-num { font-family: 'Orbitron', monospace; font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; background: linear-gradient(135deg, #9D4EDD 0%, #F5A623 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 0.35rem; }
.stat-label { font-size: 0.7rem; color: var(--text-dim); letter-spacing: 0.15em; text-transform: uppercase; font-family: 'Space Grotesk', sans-serif; }
.scroll-cue { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 4px; color: rgba(255,255,255,0.25); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; font-family: 'Space Grotesk', sans-serif; animation: float 2.5s ease-in-out infinite; transition: color 0.2s; z-index: 3; }
.scroll-cue:hover { color: rgba(255,255,255,0.55); }

/* Glitch */
.glitch { position: relative; }
.glitch::before, .glitch::after { content: attr(data-text); position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: transparent; }
.glitch::before { left: 2px; text-shadow: -2px 0 #F5A623; clip-path: polygon(0 20%,100% 20%,100% 40%,0 40%); animation: glitch1 3s infinite linear alternate-reverse; }
.glitch::after  { left: -2px; text-shadow: 2px 0 #9D4EDD;  clip-path: polygon(0 60%,100% 60%,100% 80%,0 80%); animation: glitch2 2.5s infinite linear alternate-reverse; }

/* ══════════════════════════════════
   MARQUEE
══════════════════════════════════ */
.marquee-wrap { position: relative; overflow: hidden; padding: 1.1rem 0; border-top: 1px solid rgba(157,78,221,0.12); border-bottom: 1px solid rgba(157,78,221,0.12); background: rgba(157,78,221,0.04); }
.marquee-fade-l { position: absolute; left: 0; top: 0; bottom: 0; width: 6rem; background: linear-gradient(90deg, #03030A, transparent); z-index: 2; pointer-events: none; }
.marquee-fade-r { position: absolute; right: 0; top: 0; bottom: 0; width: 6rem; background: linear-gradient(-90deg, #03030A, transparent); z-index: 2; pointer-events: none; }
.marquee-track { display: flex; width: max-content; animation: marquee 22s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-track span { margin: 0 1.5rem; white-space: nowrap; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.3); font-family: 'Space Grotesk', sans-serif; }
.marquee-track .star { color: #F5A623; }

/* ══════════════════════════════════
   SERVICES
══════════════════════════════════ */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media(min-width:768px){ .services-grid { grid-template-columns: 1fr 1fr; } }
.card-img-wrap { position: relative; height: 180px; overflow: hidden; }
.card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.holo-card:hover .card-img { transform: scale(1.05); }
.card-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, #03030A 0%, rgba(3,3,10,0.35) 100%); }
.card-tag { position: absolute; top: 1rem; left: 1rem; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.25rem 0.75rem; border-radius: 9999px; font-family: 'Space Grotesk', sans-serif; }
.tag-purple { background: rgba(157,78,221,0.2); border: 1px solid rgba(157,78,221,0.35); color: #9D4EDD; }
.tag-orange  { background: rgba(245,166,35,0.2);  border: 1px solid rgba(245,166,35,0.35);  color: #F5A623; }
.card-body { padding: 1.5rem; }
.card-header-row { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1rem; }
.card-title { font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: 0.6rem; font-family: 'Space Grotesk', sans-serif; }
.card-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.25rem; }
.card-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }

/* ══════════════════════════════════
   ABOUT
══════════════════════════════════ */
.about-glow { position: absolute; bottom: 0; right: 0; width: 500px; height: 400px; background: radial-gradient(ellipse, rgba(245,166,35,0.08) 0%, transparent 70%); pointer-events: none; }
.about-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
@media(min-width:1024px){ .about-grid { grid-template-columns: 1fr 1fr; } }
.body-text { color: var(--text-muted); line-height: 1.8; margin-bottom: 1.25rem; }
.check-list { list-style: none; margin-bottom: 2rem; }
.check-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.check-list li svg { flex-shrink: 0; margin-top: 2px; }
.badge-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.badge { display: flex; align-items: center; gap: 0.5rem; padding: 0.6rem 1rem; border-radius: 0.75rem; font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.7); font-family: 'Space Grotesk', sans-serif; background: rgba(255,255,255,0.04); border: 1px solid var(--border); }

/* Globe visual */
.about-visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 360px; }
.ring { position: absolute; border-radius: 50%; pointer-events: none; }
.ring-1 { width: 320px; height: 320px; border: 1px solid rgba(157,78,221,0.12); animation: spin-slow 20s linear infinite; }
.ring-2 { width: 260px; height: 260px; border: 1px dashed rgba(245,166,35,0.08); animation: spin-slow 15s linear infinite reverse; }
.globe-wrap { position: relative; width: 240px; height: 240px; border-radius: 50%; overflow: hidden; box-shadow: 0 0 60px rgba(157,78,221,0.28), 0 0 120px rgba(157,78,221,0.1); animation: float 4s ease-in-out infinite; }
.globe-img { width: 100%; height: 100%; object-fit: cover; }
.float-card { position: absolute; padding: 1rem 1.25rem; border-radius: 1rem; background: linear-gradient(135deg, rgba(157,78,221,0.1), rgba(245,166,35,0.05)); border: 1px solid rgba(157,78,221,0.25); animation: pulse-glow 3s ease-in-out infinite; }
.float-card-left  { bottom: 0; left: 0; }
.float-card-right { top: 0; right: 0; animation-delay: 1.5s; }
.float-num { font-family: 'Orbitron', monospace; font-size: 1.75rem; font-weight: 900; background: linear-gradient(135deg, #9D4EDD, #F5A623); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 0.25rem; }
.float-label { font-size: 0.65rem; color: var(--text-dim); letter-spacing: 0.15em; text-transform: uppercase; font-family: 'Space Grotesk', sans-serif; }

/* ══════════════════════════════════
   PROCESS
══════════════════════════════════ */
.process-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media(min-width:768px){ .process-grid { grid-template-columns: 1fr 1fr; } }
@media(min-width:1024px){ .process-grid { grid-template-columns: repeat(4,1fr); } }
.process-card { padding: 1.75rem; position: relative; }
.process-num { position: absolute; top: 1rem; right: 1rem; font-family: 'Orbitron', monospace; font-size: 3.5rem; font-weight: 900; line-height: 1; pointer-events: none; user-select: none; }
.process-icon { width: 44px; height: 44px; border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.process-step-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 0.5rem; font-family: 'Space Grotesk', sans-serif; }
.process-step-label.purple { color: #9D4EDD; }
.process-step-label.orange  { color: #F5A623; }
.process-title { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 0.75rem; font-family: 'Space Grotesk', sans-serif; }
.process-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }
.card-bottom-line { position: absolute; bottom: 0; left: 0; right: 0; height: 2px; border-radius: 0 0 1rem 1rem; opacity: 0; transition: opacity 0.3s; }
.card-bottom-line.purple { background: linear-gradient(90deg, transparent, #9D4EDD, transparent); }
.card-bottom-line.orange  { background: linear-gradient(90deg, transparent, #F5A623, transparent); }
.holo-card:hover .card-bottom-line { opacity: 1; }

/* ══════════════════════════════════
   WHY US
══════════════════════════════════ */
.why-glow { position: absolute; top: 0; right: 0; width: 400px; height: 350px; background: radial-gradient(ellipse, rgba(157,78,221,0.07) 0%, transparent 70%); pointer-events: none; }
.why-grid { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
@media(min-width:640px){ .why-grid { grid-template-columns: 1fr 1fr; } }
@media(min-width:1024px){ .why-grid { grid-template-columns: repeat(3,1fr); } }
.why-card { padding: 1.5rem; }
.why-title { font-size: 1rem; font-weight: 700; color: #fff; margin: 1rem 0 0.5rem; font-family: 'Space Grotesk', sans-serif; }
.why-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }

/* ══════════════════════════════════
   CTA BANNER
══════════════════════════════════ */
.cta-box { position: relative; border-radius: 1.5rem; overflow: hidden; padding: 4rem 2rem; text-align: center; background: linear-gradient(135deg, rgba(157,78,221,0.08) 0%, rgba(245,166,35,0.05) 100%); border: 1px solid rgba(157,78,221,0.25); }
.cta-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 600px; height: 200px; background: radial-gradient(ellipse, rgba(157,78,221,0.18) 0%, transparent 70%); pointer-events: none; }
.cta-scanlines { position: absolute; inset: 0; background-image: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(0,0,0,0.04) 3px, rgba(0,0,0,0.04) 4px); pointer-events: none; }
.cta-inner { position: relative; z-index: 2; }
.cta-title { font-family: 'Orbitron', monospace; font-size: clamp(2.5rem, 8vw, 5rem); font-weight: 900; color: #fff; line-height: 1; margin-bottom: 1.25rem; letter-spacing: -0.02em; }
.cta-desc { color: var(--text-muted); font-size: 1.05rem; max-width: 520px; margin: 0 auto 2.5rem; line-height: 1.7; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ══════════════════════════════════
   CONTACT
══════════════════════════════════ */
.contact-glow-l { position: absolute; bottom: 0; left: 0; width: 450px; height: 350px; background: radial-gradient(ellipse, rgba(157,78,221,0.08) 0%, transparent 70%); pointer-events: none; }
.contact-glow-r { position: absolute; top: 0; right: 0; width: 350px; height: 280px; background: radial-gradient(ellipse, rgba(245,166,35,0.07) 0%, transparent 70%); pointer-events: none; }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media(min-width:1024px){ .contact-grid { grid-template-columns: 2fr 3fr; } }
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.info-card { display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem; }
.info-label { font-size: 0.65rem; color: var(--text-dim); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 0.25rem; font-family: 'Space Grotesk', sans-serif; }
.info-value { font-size: 0.9rem; color: rgba(255,255,255,0.7); transition: color 0.2s; }
.info-value:hover { color: #9D4EDD; }
.social-row { display: flex; gap: 0.75rem; }
.social-btn { width: 40px; height: 40px; border-radius: 0.625rem; display: flex; align-items: center; justify-content: center; border: 1px solid; transition: all 0.3s ease; }
.social-btn.purple { background: rgba(157,78,221,0.1); border-color: rgba(157,78,221,0.25); color: #9D4EDD; }
.social-btn.orange  { background: rgba(245,166,35,0.1);  border-color: rgba(245,166,35,0.25);  color: #F5A623; }
.social-btn:hover { transform: translateY(-3px); }

/* Form */
.contact-form-wrap { padding: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
@media(min-width:560px){ .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.25rem; }
.form-group label { font-size: 0.65rem; font-weight: 600; color: var(--text-dim); letter-spacing: 0.15em; text-transform: uppercase; font-family: 'Space Grotesk', sans-serif; }
.form-group input,
.form-group select,
.form-group textarea {
  background: #03030A; border: 1px solid var(--border); border-radius: 0.75rem;
  color: #fff; font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  padding: 0.75rem 1rem; outline: none; transition: border-color 0.2s; width: 100%;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: #9D4EDD; }
.form-group select option { background: #03030A; }
.form-group textarea { resize: none; }
.form-success { text-align: center; padding: 3.5rem 1rem; }
.success-icon { width: 64px; height: 64px; border-radius: 50%; background: rgba(157,78,221,0.12); border: 1px solid rgba(157,78,221,0.25); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; animation: pulse-glow 2s ease-in-out infinite; }
.form-success h3 { font-size: 1.25rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; font-family: 'Space Grotesk', sans-serif; }
.form-success p { color: var(--text-muted); }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.footer { background: #03030A; }
.footer-divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(157,78,221,0.35), rgba(245,166,35,0.35), transparent); }
.footer-inner { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding-top: 4rem; padding-bottom: 3rem; }
@media(min-width:768px){ .footer-inner { grid-template-columns: 2fr 1fr 1fr; } }
.footer-tagline { font-size: 0.875rem; color: var(--text-dim); line-height: 1.7; max-width: 280px; }
.footer-col h4.footer-col-title { font-size: 0.7rem; font-weight: 600; color: rgba(255,255,255,0.5); letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 1.25rem; font-family: 'Space Grotesk', sans-serif; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col ul a { font-size: 0.875rem; color: var(--text-dim); transition: color 0.2s; }
.footer-col ul a:hover { color: #fff; }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; padding-bottom: 2rem; font-size: 0.75rem; color: var(--text-dim); border-top: 1px solid var(--border); padding-top: 1.5rem; }
.footer-bottom-links { display: flex; align-items: center; gap: 1.5rem; }
.footer-bottom-links a { color: var(--text-dim); transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }
.back-top { width: 32px; height: 32px; border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); color: var(--text-dim); cursor: pointer; transition: all 0.3s; }
.back-top:hover { border-color: rgba(157,78,221,0.4); background: rgba(157,78,221,0.1); color: rgba(255,255,255,0.6); }

/* ══════════════════════════════════
   KEYFRAMES
══════════════════════════════════ */
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes spin-slow { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
@keyframes pulse-glow { 0%,100%{box-shadow:0 0 20px rgba(157,78,221,0.25)} 50%{box-shadow:0 0 40px rgba(157,78,221,0.55),0 0 80px rgba(245,166,35,0.15)} }
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.7)} }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
@keyframes flicker { 0%,94%,100%{opacity:1} 95%{opacity:0.4} 96%{opacity:1} 97%{opacity:0.6} 98%{opacity:1} }
@keyframes glitch1 { 0%{clip-path:polygon(0 20%,100% 20%,100% 40%,0 40%);transform:translate(-2px,0)} 20%{clip-path:polygon(0 60%,100% 60%,100% 70%,0 70%);transform:translate(2px,0)} 40%{clip-path:polygon(0 5%,100% 5%,100% 15%,0 15%);transform:translate(-1px,0)} 60%{clip-path:polygon(0 80%,100% 80%,100% 90%,0 90%);transform:translate(1px,0)} 80%{clip-path:polygon(0 40%,100% 40%,100% 55%,0 55%);transform:translate(-2px,0)} 100%{clip-path:polygon(0 20%,100% 20%,100% 40%,0 40%);transform:translate(0,0)} }
@keyframes glitch2 { 0%{clip-path:polygon(0 60%,100% 60%,100% 80%,0 80%);transform:translate(2px,0)} 25%{clip-path:polygon(0 10%,100% 10%,100% 25%,0 25%);transform:translate(-2px,0)} 50%{clip-path:polygon(0 70%,100% 70%,100% 85%,0 85%);transform:translate(1px,0)} 75%{clip-path:polygon(0 30%,100% 30%,100% 45%,0 45%);transform:translate(-1px,0)} 100%{clip-path:polygon(0 60%,100% 60%,100% 80%,0 80%);transform:translate(0,0)} }
