/* ============================================================
   WIZARDZ OF WEB — Enhanced Stylesheet v2
   "Casting Spells for Digital Success"
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@700;900&family=Rajdhani:wght@300;400;500;600;700&family=Space+Mono:wght@400;700&display=swap');

:root {
  --gold: #f0c040;
  --gold-bright: #ffe066;
  --gold-dim: #a07820;
  --gold-deep: #7a5200;
  --cyan: #00e5ff;
  --cyan-dim: #007a8a;
  --bg: #03050f;
  --bg2: #060a18;
  --bg3: #0a1228;
  --text: #eceeff;
  --text-dim: #7986cb;
  --purple: #7c4dff;
  --magenta: #e040fb;
  --card-bg: rgba(10,18,40,0.85);
  --border: rgba(240,192,64,0.18);
  --border-bright: rgba(240,192,64,0.45);
  --border-cyan: rgba(0,229,255,0.2);
  --glow-gold: 0 0 30px rgba(240,192,64,0.4), 0 0 80px rgba(240,192,64,0.15);
  --glow-cyan: 0 0 30px rgba(0,229,255,0.3), 0 0 80px rgba(0,229,255,0.1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Rajdhani', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main { flex: 1; }

/* ═══════════════════════════════════════
   CUSTOM CURSOR — Magic Wand Style
═══════════════════════════════════════ */
.cursor {
  width: 20px; height: 20px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 99999;
  transform: translate(-50%,-50%);
  transition: width 0.25s cubic-bezier(.4,0,.2,1),
              height 0.25s cubic-bezier(.4,0,.2,1),
              border-color 0.25s,
              background 0.25s;
  mix-blend-mode: exclusion;
}
.cursor-dot {
  width: 5px; height: 5px;
  background: var(--gold-bright);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 99999;
  transform: translate(-50%,-50%);
  box-shadow: 0 0 8px var(--gold-bright);
  transition: background 0.2s;
}
.cursor.hovering {
  width: 44px; height: 44px;
  border-color: var(--cyan);
  background: rgba(0,229,255,0.06);
}

/* Sparkle trail */
.sparkle {
  position: fixed;
  pointer-events: none;
  z-index: 99998;
  border-radius: 50%;
  animation: sparkle-fade 0.7s ease forwards;
}
@keyframes sparkle-fade {
  0%   { opacity: 1; transform: translate(-50%,-50%) scale(1); }
  100% { opacity: 0; transform: translate(-50%,-50%) scale(0) translateY(-20px); }
}

/* ═══════════════════════════════════════
   ANIMATED BACKGROUND
═══════════════════════════════════════ */
.bg-canvas {
  position: fixed; inset: 0; z-index: 0;
  background: var(--bg);
  pointer-events: none;
  overflow: hidden;
}

/* Nebula blobs */
.bg-canvas::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 700px 500px at 80% 10%, rgba(124,77,255,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 600px 400px at 10% 80%, rgba(0,229,255,0.05) 0%, transparent 70%),
    radial-gradient(ellipse 500px 300px at 50% 50%, rgba(240,192,64,0.04) 0%, transparent 70%);
  animation: nebula-shift 20s ease-in-out infinite alternate;
}
@keyframes nebula-shift {
  0%   { transform: scale(1) rotate(0deg); }
  100% { transform: scale(1.08) rotate(2deg); }
}

/* Grid */
.grid-overlay {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(0,229,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,255,0.025) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

/* ═══════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px; height: 80px;
  background: rgba(3,5,15,0.88);
  backdrop-filter: blur(24px) saturate(1.5);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
nav.scrolled {
  box-shadow: 0 4px 40px rgba(0,0,0,0.6), 0 1px 0 var(--border);
}
.nav-logo {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none;
}
.logo-icon {
  width: 46px; height: 46px; position: relative;
  animation: logo-pulse 4s ease-in-out infinite;
}
@keyframes logo-pulse {
  0%,100% { filter: drop-shadow(0 0 6px rgba(240,192,64,0.4)); }
  50%      { filter: drop-shadow(0 0 16px rgba(240,192,64,0.8)); }
}
.logo-icon svg { width: 100%; height: 100%; }
.logo-text {
  font-family: 'Cinzel Decorative', cursive;
  font-size: 15px; font-weight: 700;
  color: var(--gold); letter-spacing: 1px; line-height: 1.2;
}
.logo-sub {
  font-family: 'Space Mono', monospace;
  font-size: 8px; color: var(--cyan);
  letter-spacing: 3px; display: block; margin-top: 2px;
}

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  font-family: 'Rajdhani', sans-serif; font-weight: 600;
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-dim); text-decoration: none;
  padding: 8px 16px; border: 1px solid transparent;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 0; left: 50%; right: 50%;
  height: 1px; background: var(--gold);
  transition: left 0.3s, right 0.3s;
}
.nav-links a:hover::after, .nav-links a.active::after { left: 10%; right: 10%; }
.nav-links a:hover, .nav-links a.active {
  color: var(--gold); border-color: var(--border);
  background: rgba(240,192,64,0.04);
}
.nav-cta {
  background: linear-gradient(135deg, #f0c040, #c87d00) !important;
  color: #03050f !important; border-color: transparent !important;
  font-weight: 700 !important; padding: 10px 26px !important;
  clip-path: polygon(10px 0%,100% 0%,calc(100% - 10px) 100%,0% 100%);
  position: relative; overflow: hidden;
}
.nav-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s;
}
.nav-cta:hover::before { transform: translateX(100%); }
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(240,192,64,0.4) !important; }

.mobile-menu-btn {
  display: none; background: none; border: 1px solid var(--border);
  color: var(--gold); padding: 8px 14px; cursor: pointer; font-size: 18px;
  transition: all 0.3s;
}
.mobile-menu-btn:hover { background: rgba(240,192,64,0.08); }

.mobile-nav {
  display: none; position: fixed; top: 80px; left: 0; right: 0;
  background: rgba(3,5,15,0.97); border-bottom: 1px solid var(--border);
  padding: 24px 30px; z-index: 999; flex-direction: column; gap: 6px;
  animation: slideDown 0.3s ease; height: auto;
}
@keyframes slideDown { from { opacity:0; transform:translateY(-10px); } to { opacity:1; transform:translateY(0); } }
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 16px; color: var(--text-dim); text-decoration: none;
  font-family: 'Rajdhani',sans-serif; font-weight: 600;
  font-size: 14px; letter-spacing: 2px; text-transform: uppercase;
  border-left: 2px solid transparent; transition: all 0.3s;
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--gold); border-color: var(--gold); padding-left: 24px; }

/* ═══════════════════════════════════════
   PAGE WRAPPER
═══════════════════════════════════════ */
.page-wrap { position: relative; z-index: 1; padding-top: 80px; }

/* ═══════════════════════════════════════
   PAGE HEADER (inner pages)
═══════════════════════════════════════ */
.page-header {
  padding: 90px 60px 70px; text-align: center; position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(240,192,64,0.07) 0%, transparent 70%);
}
.page-header::after {
  content: '';
  position: absolute; bottom: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

/* ═══════════════════════════════════════
   BREADCRUMB
═══════════════════════════════════════ */
.breadcrumb {
  padding: 14px 60px; position: relative; z-index: 1;
  font-family: 'Space Mono',monospace; font-size: 11px; color: var(--text-dim);
  background: rgba(3,5,15,0.6);
  border-bottom: 1px solid rgba(240,192,64,0.06);
  display: flex; align-items: center; gap: 6px;
}
.breadcrumb a { color: var(--gold); text-decoration: none; transition: opacity 0.2s; }
.breadcrumb a:hover { opacity: 0.7; }
.breadcrumb-sep { color: var(--border-bright); }

/* ═══════════════════════════════════════
   SECTION UTILITIES
═══════════════════════════════════════ */
section { padding: 100px 60px; position: relative; }

.section-label {
  font-family: 'Space Mono', monospace; font-size: 11px;
  letter-spacing: 4px; color: var(--cyan); text-transform: uppercase;
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 18px; justify-content: center;
}
.section-label::before,.section-label::after {
  content: ''; flex: 1; max-width: 80px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan-dim));
}
.section-label::after { background: linear-gradient(90deg, var(--cyan-dim), transparent); }

.section-title {
  font-family: 'Cinzel Decorative', cursive;
  font-size: clamp(26px,3.5vw,46px); font-weight: 700;
  text-align: center; margin-bottom: 18px; color: var(--text);
  line-height: 1.2;
}
.section-title .accent { color: var(--gold); }

.section-desc {
  text-align: center; font-size: 17px; color: var(--text-dim);
  max-width: 600px; margin: 0 auto 64px; line-height: 1.8;
}

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Rajdhani',sans-serif; font-size: 14px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 17px 38px;
  background: linear-gradient(135deg, #f0c040 0%, #c87d00 100%);
  color: #03050f; border: none; cursor: pointer; text-decoration: none;
  clip-path: polygon(12px 0%,100% 0%,calc(100% - 12px) 100%,0% 100%);
  position: relative; overflow: hidden; transition: all 0.35s;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg,rgba(255,255,255,0.25),transparent,rgba(255,255,255,0.1));
  transform: translateX(-110%) skewX(-15deg);
  transition: transform 0.5s ease;
}
.btn-primary:hover::before { transform: translateX(110%) skewX(-15deg); }
.btn-primary:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(240,192,64,0.45), var(--glow-gold); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Rajdhani',sans-serif; font-size: 14px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 16px 38px; background: transparent; color: var(--cyan);
  border: 1px solid var(--cyan-dim); cursor: pointer; text-decoration: none;
  clip-path: polygon(12px 0%,100% 0%,calc(100% - 12px) 100%,0% 100%);
  position: relative; overflow: hidden; transition: all 0.35s;
}
.btn-secondary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,229,255,0.1), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.btn-secondary:hover::before { transform: scaleX(1); }
.btn-secondary:hover { border-color: var(--cyan); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,229,255,0.2); }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  min-height: calc(100vh - 80px);
  display: flex; align-items: center;
  padding: 80px 60px; position: relative; overflow: hidden;
}

/* Animated rune rings background */
.hero-rune {
  position: absolute; border-radius: 50%;
  pointer-events: none; animation: rune-spin linear infinite;
  border-style: solid; border-color: transparent;
}
.hero-rune-1 {
  width: 700px; height: 700px;
  border-top-color: rgba(240,192,64,0.08);
  border-right-color: rgba(240,192,64,0.04);
  top: 50%; right: -150px; transform: translateY(-50%);
  animation-duration: 40s;
}
.hero-rune-2 {
  width: 550px; height: 550px;
  border-bottom-color: rgba(0,229,255,0.07);
  border-left-color: rgba(0,229,255,0.04);
  top: 50%; right: -75px; transform: translateY(-50%);
  animation-duration: 28s; animation-direction: reverse;
}
.hero-rune-3 {
  width: 400px; height: 400px;
  border-top-color: rgba(124,77,255,0.09);
  border-right-color: rgba(124,77,255,0.05);
  top: 50%; right: 0px; transform: translateY(-50%);
  animation-duration: 18s;
}
@keyframes rune-spin { from { transform: translateY(-50%) rotate(0deg); } to { transform: translateY(-50%) rotate(360deg); } }

/* floating orbs */
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px); pointer-events: none;
}
.hero-orb-1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(240,192,64,0.13), transparent 70%);
  top: -100px; right: 100px;
  animation: float1 9s ease-in-out infinite;
}
.hero-orb-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(0,229,255,0.1), transparent 70%);
  bottom: -80px; left: -60px;
  animation: float2 11s ease-in-out infinite;
}
.hero-orb-3 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(124,77,255,0.09), transparent 70%);
  top: 30%; left: 35%;
  animation: float3 13s ease-in-out infinite;
}
@keyframes float1{0%,100%{transform:translate(0,0) scale(1)}50%{transform:translate(-40px,30px) scale(1.08)}}
@keyframes float2{0%,100%{transform:translate(0,0) scale(1)}50%{transform:translate(30px,-25px) scale(0.94)}}
@keyframes float3{0%,100%{transform:translate(0,0)}50%{transform:translate(-20px,25px)}}

.hero-content { max-width: 700px; position: relative; z-index: 2; }

/* Animated tagline badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Space Mono', monospace; font-size: 11px;
  letter-spacing: 3px; color: var(--cyan);
  border: 1px solid var(--border-cyan); padding: 9px 20px;
  margin-bottom: 36px;
  background: rgba(0,229,255,0.04);
  clip-path: polygon(8px 0%,100% 0%,calc(100% - 8px) 100%,0% 100%);
  animation: badge-glow 3s ease-in-out infinite alternate;
}
@keyframes badge-glow {
  0%   { border-color: rgba(0,229,255,0.2); box-shadow: none; }
  100% { border-color: rgba(0,229,255,0.5); box-shadow: 0 0 20px rgba(0,229,255,0.15); }
}
.hero-badge .badge-dot {
  width: 6px; height: 6px; background: var(--cyan);
  border-radius: 50%; box-shadow: 0 0 8px var(--cyan);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* Hero title — text reveal animation */
.hero-title {
  font-family: 'Cinzel Decorative', cursive;
  font-size: clamp(38px, 5.5vw, 72px); font-weight: 900;
  line-height: 1.05; margin-bottom: 16px; color: var(--text);
  overflow: hidden;
}
.hero-title .gold {
  color: var(--gold);
  text-shadow: var(--glow-gold);
  display: inline-block;
  animation: title-shimmer 5s ease-in-out infinite;
}
@keyframes title-shimmer {
  0%,100% { text-shadow: 0 0 20px rgba(240,192,64,0.4), 0 0 60px rgba(240,192,64,0.1); }
  50%      { text-shadow: 0 0 40px rgba(240,192,64,0.7), 0 0 100px rgba(240,192,64,0.25); }
}
.hero-title .line2 {
  display: block;
  animation: slide-up 0.8s ease 0.2s both;
}
@keyframes slide-up { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }

/* Typing tagline */
.hero-tagline-wrap {
  font-size: 20px; font-weight: 400; color: var(--text-dim);
  font-family: 'Space Mono', monospace; margin-bottom: 20px;
  letter-spacing: 1px; min-height: 30px;
}
.typed-text { color: var(--cyan); }
.typed-cursor {
  display: inline-block; width: 2px; height: 1.1em;
  background: var(--gold); margin-left: 2px; vertical-align: text-bottom;
  animation: blink 0.9s step-end infinite;
}

/* Tagline */
.hero-spellline {
  font-family: 'Cinzel Decorative', cursive;
  font-size: 17px; color: var(--gold-bright);
  letter-spacing: 2px; margin-bottom: 28px;
  opacity: 0.85;
  display: flex; align-items: center; gap: 12px;
}
.hero-spellline::before, .hero-spellline::after {
  content: '✦'; font-size: 10px; color: var(--gold-dim);
}

.hero-desc {
  font-size: 18px; color: var(--text-dim); line-height: 1.8;
  max-width: 560px; margin-bottom: 48px;
}

/* Stats */
.hero-stats {
  display: flex; gap: 0; margin-bottom: 52px;
  border: 1px solid var(--border);
  background: rgba(10,18,40,0.6);
  overflow: hidden;
  clip-path: polygon(0 0,calc(100% - 12px) 0,100% 12px,100% 100%,12px 100%,0 calc(100% - 12px));
}
.stat-item {
  flex: 1; padding: 20px 24px; text-align: center;
  position: relative; transition: background 0.3s;
}
.stat-item:not(:last-child) { border-right: 1px solid var(--border); }
.stat-item:hover { background: rgba(240,192,64,0.04); }
.stat-num {
  font-family: 'Cinzel Decorative', cursive; font-size: 32px; font-weight: 900;
  color: var(--gold); display: block; line-height: 1;
  animation: count-glow 4s ease-in-out infinite alternate;
}
@keyframes count-glow {
  0%   { text-shadow: 0 0 10px rgba(240,192,64,0.3); }
  100% { text-shadow: 0 0 25px rgba(240,192,64,0.6); }
}
.stat-label {
  font-size: 10px; letter-spacing: 2px; color: var(--text-dim);
  text-transform: uppercase; font-family: 'Space Mono',monospace;
  display: block; margin-top: 6px;
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero visual — Spell Orb */
.hero-visual {
  position: absolute; right: 40px; top: 50%;
  transform: translateY(-50%);
  width: 460px; height: 460px; pointer-events: none;
}
.spell-orb-wrap { width: 100%; height: 100%; position: relative; display: flex; align-items: center; justify-content: center; }

/* Outer glow pulse */
.orb-glow {
  position: absolute; inset: -20px; border-radius: 50%;
  background: radial-gradient(circle, rgba(240,192,64,0.08), transparent 70%);
  animation: orb-pulse 4s ease-in-out infinite;
}
@keyframes orb-pulse {
  0%,100% { transform: scale(1); opacity: 0.7; }
  50%      { transform: scale(1.1); opacity: 1; }
}
.orb-ring {
  position: absolute; border-radius: 50%; border: 1px solid;
}
.orb-ring-1 {
  inset: 0; border-color: rgba(240,192,64,0.25);
  animation: ring-spin 30s linear infinite;
}
.orb-ring-2 {
  inset: 30px; border-color: rgba(0,229,255,0.15);
  border-style: dashed;
  animation: ring-spin 20s linear infinite reverse;
}
.orb-ring-3 {
  inset: 60px; border-color: rgba(124,77,255,0.2);
  animation: ring-spin 15s linear infinite;
}
.orb-ring-4 {
  inset: 90px; border-color: rgba(240,192,64,0.12);
  border-style: dotted;
  animation: ring-spin 10s linear infinite reverse;
}
@keyframes ring-spin { from{transform:rotate(0)} to{transform:rotate(360deg)} }

/* Orbiting planets */
.orbit-planet {
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  transform-origin: center center;
}
.planet-1 {
  top: calc(50% - 7px); left: 0; margin-left: -7px;
  background: var(--gold-bright); box-shadow: 0 0 12px var(--gold-bright), 0 0 24px rgba(240,192,64,0.5);
  animation: planet-orbit-1 8s linear infinite;
}
.planet-2 {
  top: 0; margin-top: -6px; left: calc(50% - 6px);
  width: 12px; height: 12px;
  background: var(--cyan); box-shadow: 0 0 12px var(--cyan);
  animation: planet-orbit-2 12s linear infinite;
}
.planet-3 {
  bottom: 0; margin-bottom: -5px; right: calc(50% - 5px);
  width: 10px; height: 10px;
  background: var(--magenta); box-shadow: 0 0 10px var(--magenta);
  animation: planet-orbit-3 6s linear infinite reverse;
}
@keyframes planet-orbit-1 {
  from { transform: rotate(0deg) translateX(230px) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(230px) rotate(-360deg); }
}
@keyframes planet-orbit-2 {
  from { transform: rotate(0deg) translateX(170px) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(170px) rotate(-360deg); }
}
@keyframes planet-orbit-3 {
  from { transform: rotate(0deg) translateX(115px) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(115px) rotate(-360deg); }
}

/* Center orb */
.orb-center {
  width: 160px; height: 160px; border-radius: 50%; position: relative; z-index: 2;
  background: radial-gradient(circle at 35% 35%, rgba(255,224,102,0.3), rgba(240,192,64,0.1) 40%, rgba(3,5,15,0.9) 70%);
  border: 2px solid rgba(240,192,64,0.4);
  box-shadow: var(--glow-gold), inset 0 0 40px rgba(240,192,64,0.1);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  animation: orb-breathe 5s ease-in-out infinite;
}
@keyframes orb-breathe {
  0%,100% { box-shadow: var(--glow-gold), inset 0 0 40px rgba(240,192,64,0.1); transform: scale(1); }
  50%      { box-shadow: 0 0 50px rgba(240,192,64,0.6), 0 0 100px rgba(240,192,64,0.2), inset 0 0 60px rgba(240,192,64,0.15); transform: scale(1.04); }
}
.orb-symbol {
  font-size: 52px; line-height: 1;
  animation: symbol-spin 20s linear infinite;
  filter: drop-shadow(0 0 12px rgba(240,192,64,0.8));
}
@keyframes symbol-spin { from{transform:rotate(0)} to{transform:rotate(360deg)} }
.orb-text {
  font-family: 'Cinzel Decorative', cursive;
  font-size: 9px; color: var(--gold-dim); letter-spacing: 3px;
  margin-top: 6px; text-align: center;
}

/* Hex particles around orb */
.hex-particle {
  position: absolute; font-size: 14px; color: var(--gold-dim);
  opacity: 0; animation: hex-float linear infinite;
}
@keyframes hex-float {
  0%   { opacity: 0; transform: translateY(0) rotate(0deg) scale(0.5); }
  20%  { opacity: 0.6; }
  80%  { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-200px) rotate(180deg) scale(0.2); }
}

/* ═══════════════════════════════════════
   SERVICE CARDS
═══════════════════════════════════════ */
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px; max-width: 1200px; margin: 0 auto;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 40px 32px; position: relative; overflow: hidden;
  transition: transform 0.4s cubic-bezier(.4,0,.2,1),
              border-color 0.4s, box-shadow 0.4s;
  clip-path: polygon(0 0,calc(100% - 22px) 0,100% 22px,100% 100%,22px 100%,0 calc(100% - 22px));
}
/* Animated top border */
.service-card::before {
  content: '';
  position: absolute; top: 0; left: -100%; right: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: left 0.5s ease, right 0.5s ease;
}
.service-card:hover::before { left: 0; right: 0; }

/* Background glow on hover */
.service-card::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top left, rgba(240,192,64,0.06), transparent 60%);
  opacity: 0; transition: opacity 0.4s;
}
.service-card:hover::after { opacity: 1; }

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(240,192,64,0.4);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 40px rgba(240,192,64,0.08);
}

.service-icon {
  width: 68px; height: 68px; margin-bottom: 24px;
  display: flex; align-items: center; justify-content: center; font-size: 32px;
  background: rgba(240,192,64,0.08); border: 1px solid var(--border);
  position: relative; transition: all 0.4s;
  clip-path: polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
}
.service-card:hover .service-icon {
  background: rgba(240,192,64,0.15);
  box-shadow: 0 0 20px rgba(240,192,64,0.2);
}
.service-num {
  position: absolute; top: 18px; right: 22px;
  font-family: 'Space Mono',monospace; font-size: 11px;
  color: rgba(240,192,64,0.25); letter-spacing: 1px;
}
.service-title {
  font-family: 'Rajdhani',sans-serif; font-size: 21px; font-weight: 700;
  color: var(--text); margin-bottom: 12px; letter-spacing: 0.5px;
  transition: color 0.3s;
}
.service-card:hover .service-title { color: var(--gold); }
.service-desc { font-size: 15px; color: var(--text-dim); line-height: 1.75; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.tag {
  font-family: 'Space Mono',monospace; font-size: 10px; letter-spacing: 1px;
  color: var(--gold); border: 1px solid var(--border); padding: 4px 12px;
  background: rgba(240,192,64,0.04); transition: all 0.3s;
}
.tag:hover { background: rgba(240,192,64,0.1); border-color: var(--gold); }

/* ═══════════════════════════════════════
   PROJECT CARDS
═══════════════════════════════════════ */
.projects-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px; max-width: 1200px; margin: 0 auto;
}
.project-card {
  background: var(--card-bg); border: 1px solid var(--border);
  overflow: hidden; position: relative; transition: all 0.4s;
}
.project-card:first-child { grid-column: span 2; }
.project-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0,229,255,0.35);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), var(--glow-cyan);
}
.project-thumb {
  height: 210px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center; font-size: 64px;
}
.project-card:first-child .project-thumb { height: 270px; }
.project-thumb-bg { position: absolute; inset: 0; transition: transform 0.5s ease; }
.project-card:hover .project-thumb-bg { transform: scale(1.05); }
.project-thumb-icon { position: relative; z-index: 1; filter: drop-shadow(0 4px 16px rgba(0,0,0,0.4)); }
.project-info { padding: 28px; }
.project-cat {
  font-family: 'Space Mono',monospace; font-size: 10px;
  letter-spacing: 3px; color: var(--cyan); margin-bottom: 10px; text-transform: uppercase;
}
.project-name {
  font-family: 'Rajdhani',sans-serif; font-size: 20px; font-weight: 700;
  color: var(--text); margin-bottom: 8px; transition: color 0.3s;
}
.project-card:hover .project-name { color: var(--gold); }
.project-desc { font-size: 14px; color: var(--text-dim); line-height: 1.7; }
.project-footer {
  padding: 16px 28px; border-top: 1px solid var(--border);
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
  gap: 12px;
}
.project-stack { display: flex; gap: 8px; flex-wrap: wrap; flex: 1; min-width: 0; }
.project-stack span {
  font-family: 'Space Mono',monospace; font-size: 10px; color: var(--gold);
  border: 1px solid var(--border); padding: 3px 10px;
  background: rgba(240,192,64,0.05); white-space: nowrap;
}
.project-link {
  font-family: 'Space Mono',monospace; font-size: 11px; color: var(--cyan);
  text-decoration: none; letter-spacing: 1px; transition: all 0.3s;
  display: flex; align-items: center; gap: 6px;
  white-space: nowrap; flex-shrink: 0;
}
.project-link:hover { color: var(--gold); transform: translateX(4px); }

/* ═══════════════════════════════════════
   PROCESS STEPS
═══════════════════════════════════════ */
.process-steps {
  display: grid; grid-template-columns: repeat(5,1fr);
  max-width: 1200px; margin: 0 auto; position: relative;
  list-style: none;
}
.process-steps::before {
  content: '';
  position: absolute; top: 47px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, var(--gold-dim), var(--cyan-dim), var(--gold-dim));
  animation: line-flow 3s linear infinite;
}
@keyframes line-flow {
  0%  { background-position: 0% 0%; }
  100%{ background-position: 100% 0%; }
}
.process-step { text-align: center; padding: 24px 16px; position: relative; z-index: 1; }
.step-num {
  width: 64px; height: 64px; margin: 0 auto 22px;
  border: 2px solid var(--gold); background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Mono',monospace; font-size: 16px; font-weight: 700; color: var(--gold);
  clip-path: polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
  transition: all 0.4s; box-shadow: 0 0 0 rgba(240,192,64,0);
}
.process-step:hover .step-num {
  background: rgba(240,192,64,0.1);
  box-shadow: 0 0 20px rgba(240,192,64,0.3);
  transform: scale(1.1);
}
.step-title {
  font-family: 'Rajdhani',sans-serif; font-size: 16px; font-weight: 700;
  color: var(--text); margin-bottom: 8px;
}
.step-desc { font-size: 13px; color: var(--text-dim); line-height: 1.65; }

/* ═══════════════════════════════════════
   TECH CHIPS
═══════════════════════════════════════ */
.tech-grid {
  display: flex; flex-wrap: wrap; gap: 14px;
  justify-content: center; max-width: 940px; margin: 0 auto;
}
.tech-chip {
  display: flex; align-items: center; gap: 10px;
  background: var(--card-bg); border: 1px solid var(--border);
  padding: 12px 22px; font-family: 'Space Mono',monospace;
  font-size: 12px; color: var(--text); letter-spacing: 1px;
  transition: all 0.35s; position: relative; overflow: hidden;
}
.tech-chip::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  transform: scaleX(0); transition: transform 0.35s;
}
.tech-chip:hover::before { transform: scaleX(1); }
.tech-chip:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
.tech-chip span { font-size: 20px; }

/* ═══════════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════════ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; max-width: 1100px; margin: 0 auto; align-items: center;
}
.about-visual {
  position: relative; display: flex; align-items: center; justify-content: center;
}
.about-ring {
  width: 360px; height: 360px; border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; position: relative;
  animation: spin-slow 25s linear infinite;
}
@keyframes spin-slow { from{transform:rotate(0)} to{transform:rotate(360deg)} }
.about-ring::before {
  content: ''; position: absolute; inset: 22px;
  border: 1px dashed rgba(0,229,255,0.18); border-radius: 50%;
  animation: spin-slow 18s linear infinite reverse;
}
.about-ring::after {
  content: ''; position: absolute; inset: 44px;
  border: 1px solid rgba(240,192,64,0.08); border-radius: 50%;
  animation: spin-slow 12s linear infinite;
}
.about-ring-inner {
  width: 230px; height: 230px; background: var(--card-bg); border-radius: 50%;
  border: 1px solid rgba(240,192,64,0.3);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  animation: spin-slow 25s linear infinite reverse;
  font-family: 'Cinzel Decorative',cursive; text-align: center;
  box-shadow: 0 0 60px rgba(240,192,64,0.08), inset 0 0 40px rgba(240,192,64,0.04);
}
.about-ring-num {
  font-size: 60px; font-weight: 900; color: var(--gold); line-height: 1;
  text-shadow: 0 0 30px rgba(240,192,64,0.5);
}
.about-ring-label { font-size: 10px; color: var(--text-dim); letter-spacing: 2px; margin-top: 6px; }

.orbit-dot {
  position: absolute; border-radius: 50%;
  animation: spin-slow linear infinite;
  transform-origin: 180px 180px;
}
.orbit-dot::after {
  content: '';
  display: block; border-radius: 50%;
}
.orbit-dot-1 { width: 12px; height: 12px; top: 174px; left: -6px; background: var(--gold); box-shadow: 0 0 12px var(--gold), 0 0 24px rgba(240,192,64,0.4); animation-duration: 25s; }
.orbit-dot-2 { width: 10px; height: 10px; top: 175px; left: -5px; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); animation-duration: 18s; animation-direction: reverse; transform-origin: 185px 180px; }
.orbit-dot-3 { width: 8px; height: 8px; top: 176px; left: -4px; background: var(--purple); box-shadow: 0 0 8px var(--purple); animation-duration: 12s; transform-origin: 190px 180px; }
.orbit-dot-4 { width: 8px; height: 8px; top: 176px; left: -4px; background: var(--magenta); box-shadow: 0 0 8px var(--magenta); animation-duration: 8s; animation-direction: reverse; transform-origin: 200px 180px; }

.about-content h2 {
  font-family: 'Cinzel Decorative',cursive; font-size: 34px; font-weight: 700;
  color: var(--text); margin-bottom: 24px; line-height: 1.25;
}
.about-content h2 span { color: var(--gold); }
.about-content p { font-size: 16px; color: var(--text-dim); line-height: 1.85; margin-bottom: 20px; }
.about-list { list-style: none; margin: 24px 0; }
.about-list li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 15px; color: var(--text); margin-bottom: 14px; font-weight: 500;
  padding: 10px 14px; border-left: 2px solid transparent;
  transition: all 0.3s;
}
.about-list li:hover { border-color: var(--gold); background: rgba(240,192,64,0.03); padding-left: 20px; }
.about-list li::before { content: '◆'; color: var(--gold); font-size: 10px; margin-top: 4px; flex-shrink: 0; }
.about-mini-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }
.mini-stat {
  background: var(--card-bg); border: 1px solid var(--border);
  padding: 22px; text-align: center; transition: all 0.3s;
  position: relative; overflow: hidden;
}
.mini-stat::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg, var(--gold-dim), var(--cyan-dim));
  transform: scaleX(0); transition: transform 0.4s;
}
.mini-stat:hover::before { transform: scaleX(1); }
.mini-stat:hover { border-color: rgba(240,192,64,0.35); }
.mini-stat-num {
  font-family: 'Cinzel Decorative',cursive; font-size: 30px; color: var(--gold);
  display: block; text-shadow: 0 0 15px rgba(240,192,64,0.3);
}
.mini-stat-label { font-size: 11px; color: var(--text-dim); letter-spacing: 2px; margin-top: 4px; }

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; max-width: 1100px; margin: 0 auto; align-items: start;
}
.contact-info h3 {
  font-family: 'Cinzel Decorative',cursive; font-size: 28px;
  color: var(--text); margin-bottom: 20px; line-height: 1.3;
}
.contact-info h3 span { color: var(--gold); }
.contact-info p { font-size: 16px; color: var(--text-dim); line-height: 1.85; margin-bottom: 32px; }
.contact-items { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex; align-items: center; gap: 18px;
  background: var(--card-bg); border: 1px solid var(--border);
  padding: 20px 24px; transition: all 0.35s;
  border-left: 2px solid transparent;
}
.contact-item:hover { border-left-color: var(--gold); border-color: rgba(240,192,64,0.25); transform: translateX(4px); }
.contact-item-icon {
  width: 46px; height: 46px; background: rgba(240,192,64,0.08);
  border: 1px solid var(--border); display: flex; align-items: center;
  justify-content: center; font-size: 20px; flex-shrink: 0;
  clip-path: polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
  transition: all 0.3s;
}
.contact-item:hover .contact-item-icon { background: rgba(240,192,64,0.15); box-shadow: 0 0 16px rgba(240,192,64,0.2); }
.contact-item-text { font-size: 14px; color: var(--text-dim); }
.contact-item-text strong { display: block; color: var(--text); font-size: 15px; font-weight: 600; margin-bottom: 3px; }

.contact-form {
  background: var(--card-bg); border: 1px solid var(--border);
  padding: 44px; position: relative; overflow: hidden;
  clip-path: polygon(0 0,calc(100% - 28px) 0,100% 28px,100% 100%,28px 100%,0 calc(100% - 28px));
}
.contact-form::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--cyan), var(--gold));
  background-size: 200% 100%;
  animation: form-border-anim 3s linear infinite;
}
@keyframes form-border-anim { 0%{background-position:0% 0%} 100%{background-position:200% 0%} }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-family: 'Space Mono',monospace; font-size: 10px;
  letter-spacing: 2.5px; color: var(--cyan); margin-bottom: 8px; text-transform: uppercase;
}
.form-group input,.form-group textarea,.form-group select {
  width: 100%; padding: 14px 18px;
  background: rgba(3,5,15,0.8); border: 1px solid var(--border);
  color: var(--text); font-family: 'Rajdhani',sans-serif; font-size: 15px;
  transition: border-color 0.3s, box-shadow 0.3s; outline: none; appearance: none;
}
.form-group input::placeholder,.form-group textarea::placeholder { color: var(--text-dim); opacity: 0.6; }
.form-group input:focus,.form-group textarea:focus,.form-group select:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(240,192,64,0.08);
}
.form-group textarea { height: 140px; resize: vertical; }
.form-group select option { background: var(--bg2); }
.form-success {
  display: none; background: rgba(0,229,255,0.06);
  border: 1px solid rgba(0,229,255,0.4); padding: 18px 20px; margin-top: 16px;
  font-family: 'Space Mono',monospace; font-size: 12px; color: var(--cyan);
  letter-spacing: 1px; text-align: center; animation: fadeIn 0.5s ease;
}

/* ═══════════════════════════════════════
   SPELL CTA SECTION
═══════════════════════════════════════ */
.spell-cta {
  position: relative; overflow: hidden;
  background: rgba(240,192,64,0.03);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.spell-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(240,192,64,0.05), transparent);
  animation: cta-pulse 6s ease-in-out infinite;
}
@keyframes cta-pulse { 0%,100%{opacity:.6} 50%{opacity:1} }
.spell-cta-rune {
  position: absolute; font-size: 200px; opacity: 0.03;
  font-family: serif; color: var(--gold);
  animation: spin-slow 60s linear infinite;
  user-select: none;
}
.spell-cta-rune-1 { top: -40px; left: -40px; }
.spell-cta-rune-2 { bottom: -40px; right: -40px; animation-direction: reverse; }

/* ═══════════════════════════════════════
   FILTER BAR
═══════════════════════════════════════ */
.filter-bar { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.filter-btn {
  font-family: 'Space Mono',monospace; font-size: 11px; letter-spacing: 2px;
  color: var(--text-dim); border: 1px solid var(--border);
  padding: 9px 22px; background: transparent; cursor: pointer;
  transition: all 0.3s; text-transform: uppercase;
  clip-path: polygon(6px 0%,100% 0%,calc(100% - 6px) 100%,0% 100%);
}
.filter-btn.active,.filter-btn:hover {
  color: var(--gold); border-color: var(--gold);
  background: rgba(240,192,64,0.06);
  box-shadow: 0 0 16px rgba(240,192,64,0.1);
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  background: var(--bg2); border-top: 1px solid var(--border);
  padding: 70px 60px 32px; position: relative; z-index: 1; overflow: hidden;
}
footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), var(--cyan-dim), var(--gold-dim), transparent);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 52px; margin-bottom: 52px;
}
.footer-brand p { font-size: 14px; color: var(--text-dim); line-height: 1.8; margin-top: 16px; max-width: 260px; }
.footer-tagline {
  font-family: 'Cinzel Decorative', cursive; font-size: 11px;
  color: var(--gold-dim); letter-spacing: 2px; margin-top: 12px;
  display: flex; align-items: center; gap: 8px;
}
.footer-tagline::before { content: '⚡'; }
.footer-col h4 {
  font-family: 'Space Mono',monospace; font-size: 10px; letter-spacing: 4px;
  color: var(--cyan); text-transform: uppercase; margin-bottom: 22px;
  display: flex; align-items: center; gap: 8px;
}
.footer-col h4::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 14px; color: var(--text-dim); text-decoration: none;
  transition: all 0.3s; display: flex; align-items: center; gap: 6px;
}
.footer-col ul li a::before { content: '›'; color: var(--gold-dim); opacity: 0; transition: opacity 0.3s, transform 0.3s; transform: translateX(-4px); }
.footer-col ul li a:hover { color: var(--gold); padding-left: 8px; }
.footer-col ul li a:hover::before { opacity: 1; transform: translateX(0); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 12px; color: var(--text-dim); font-family: 'Space Mono',monospace; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; cursor: pointer; transition: all 0.35s;
  text-decoration: none; color: var(--text-dim);
  clip-path: polygon(6px 0%,100% 0%,calc(100% - 6px) 100%,0% 100%);
}
.social-btn:hover {
  border-color: var(--gold); color: var(--gold);
  background: rgba(240,192,64,0.08);
  box-shadow: 0 0 16px rgba(240,192,64,0.15);
  transform: translateY(-3px);
}

/* ═══════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════
   MAGIC PARTICLE SYSTEM
═══════════════════════════════════════ */
.particle-container {
  position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden;
}
.magic-particle {
  position: absolute; border-radius: 50%;
  animation: particle-drift linear infinite;
  pointer-events: none;
}
@keyframes particle-drift {
  0%   { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.2; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media(max-width:1200px) {
  .hero-visual { width: 360px; height: 360px; right: 20px; }
  .planet-1 { animation-name: planet-orbit-1-sm; }
  @keyframes planet-orbit-1-sm { from{transform:rotate(0deg) translateX(180px) rotate(0deg)} to{transform:rotate(360deg) translateX(180px) rotate(-360deg)} }
}
@media(max-width:1024px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .hero, .tech-heading, .spell-cta, .process-heading, .services-heading { padding: 30px 20px!important; }
  .hero-visual { display: none; }
  section { padding: 80px 30px; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .project-card:first-child { grid-column: span 2; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  footer { padding: 60px 30px 30px; }
  .page-header { padding: 70px 30px 50px; }
  .breadcrumb { padding: 14px 30px; }
}
@media(max-width:640px) {
  .services-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .project-card:first-child { grid-column: span 1; }
  .hero-stats { flex-direction: column; }
  .hero-stats .stat-item { border-right: none !important; border-bottom: 1px solid var(--border); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .about-mini-stats { grid-template-columns: 1fr; }
  .footer-bottom {
    flex-direction: column;
    gap: 30px;
  }.footer-bottom p {text-align: center;}
}

/* ═══ ANIMATIONS ═══ */
@keyframes fadeIn { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:translateY(0)} }

/* ═══════════════════════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════════════════════ */
.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.faq-item:hover {
  border-color: rgba(240,192,64,0.25);
}
.faq-item.open {
  border-color: rgba(240,192,64,0.4);
  background: rgba(240,192,64,0.03);
  box-shadow: 0 0 30px rgba(240,192,64,0.06), 0 4px 24px rgba(0,0,0,0.3);
}
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 28px;
  text-align: left;
  font-family: 'Rajdhani', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .02em;
  line-height: 1.4;
  transition: color .3s;
}
.faq-question:hover,
.faq-item.open .faq-question { color: var(--gold); }
.faq-question-text { flex: 1; }
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(240,192,64,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  transition: background .3s, border-color .3s, transform .35s cubic-bezier(.34,1.56,.64,1);
  background: rgba(240,192,64,0.05);
  user-select: none;
}
.faq-item.open .faq-icon {
  background: rgba(240,192,64,0.12);
  border-color: rgba(240,192,64,0.6);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s cubic-bezier(.22,1,.36,1);
}
.faq-answer-inner {
  padding: 0 28px 22px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.faq-answer-inner p {
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-dim);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 400;
}
@media(max-width:640px){
  .faq-question { padding: 18px 20px; font-size: 15px; }
  .faq-answer-inner { padding: 0 20px 18px; }
}
