/* =====================================================
   MJCoders — Premium Design System v2.0
   Space Grotesk + Inter | Deep Navy | Glassmorphism
   Gold #C9A96E | Violet #8B5CF6 | Dark default
   ===================================================== */

/* ── DESIGN TOKENS — DARK (default) ──────────────── */
:root {
  /* Gold Brand */
  --gold:       #C9A96E;
  --gold-l:     #E2C99A;
  --gold-d:     #9A7840;
  --gold-glow:  rgba(201,169,110,.10);
  --gold-b:     rgba(201,169,110,.14);
  --gold-bh:    rgba(201,169,110,.35);

  /* Violet Accent */
  --violet:     #8B5CF6;
  --violet-l:   #A78BFA;
  --violet-d:   #6D28D9;
  --v-glow:     rgba(139,92,246,.12);
  --v-b:        rgba(139,92,246,.20);

  /* Cyan Accent */
  --cyan:       #22D3EE;
  --cyan-d:     #06B6D4;

  /* Deep Navy Backgrounds */
  --bg:         #05060F;
  --bg2:        #080914;
  --bg3:        #0C0D1A;
  --s1:         #0F1022;
  --s2:         #141630;
  --s3:         #191B38;

  /* Glass Tokens */
  --glass:      rgba(15,16,34,.55);
  --glass-h:    rgba(20,22,48,.70);
  --glass-b:    rgba(255,255,255,.07);
  --glass-bh:   rgba(255,255,255,.13);
  --glass-sh:   inset 0 1px 0 rgba(255,255,255,.05);
  --blur:       blur(24px);
  --blur-sm:    blur(12px);

  /* Text */
  --t1:         #EEF0FF;
  --t2:         #8892B0;
  --t3:         #4A5280;

  /* System */
  --ease:       cubic-bezier(.4,0,.2,1);
  --espring:    cubic-bezier(.34,1.56,.64,1);
  --eout:       cubic-bezier(0,0,.2,1);
  --shg:        0 8px 40px rgba(201,169,110,.25);
  --sh-violet:  0 8px 40px rgba(139,92,246,.25);
  --card-shadow:0 4px 40px rgba(0,0,0,.55);
  --nav-bg:     rgba(5,6,15,.88);
  --ticker-fl:  linear-gradient(90deg,#080914,transparent);
  --ticker-fr:  linear-gradient(-90deg,#080914,transparent);
  --r:          12px;
  --rxl:        20px;
  --rxxl:       28px;
}

/* ── DESIGN TOKENS — LIGHT MODE ────────────────── */
[data-theme="light"] {
  /* Backgrounds — clean warm white */
  --bg:         #FAFBFF;
  --bg2:        #F0F2FA;
  --bg3:        #E6E9F4;
  --s1:         #FFFFFF;
  --s2:         #F5F6FC;
  --s3:         #EAECF6;

  /* Cards — solid white, no blur needed */
  --glass:      rgba(255,255,255,.98);
  --glass-h:    rgba(255,255,255,1);
  --glass-b:    rgba(15,20,60,.08);
  --glass-bh:   rgba(15,20,60,.16);
  --glass-sh:   inset 0 1px 0 rgba(255,255,255,1);
  --blur:       blur(0px);
  --blur-sm:    blur(0px);

  /* Typography — dark navy for premium contrast */
  --t1:         #0F172A;
  --t2:         #334155;
  --t3:         #64748B;

  /* Gold accents */
  --gold-b:     rgba(201,169,110,.30);
  --gold-bh:    rgba(201,169,110,.60);
  --gold-glow:  rgba(201,169,110,.10);

  /* Violet accents */
  --v-glow:     rgba(139,92,246,.06);
  --v-b:        rgba(139,92,246,.15);

  /* Shadows */
  --card-shadow:0 1px 3px rgba(15,20,60,.06), 0 6px 20px rgba(15,20,60,.07);
  --shg:        0 8px 32px rgba(201,169,110,.32);
  --sh-violet:  0 8px 32px rgba(139,92,246,.18);

  /* Nav & UI */
  --nav-bg:     rgba(250,251,255,.97);
  --ticker-fl:  linear-gradient(90deg,#F0F2FA,transparent);
  --ticker-fr:  linear-gradient(-90deg,#F0F2FA,transparent);
}

/* ══════════════════════════════════════════════════
   LIGHT MODE — COMPONENT OVERRIDES
   ══════════════════════════════════════════════════ */

/* ── Logo: same in both themes ── */

/* ── Hero ──────────────────────────────────────── */
[data-theme="light"] .hero {
  background:
    radial-gradient(ellipse 90% 55% at 50% -8%, rgba(139,92,246,.07), transparent),
    radial-gradient(ellipse 55% 75% at -8% 100%, rgba(201,169,110,.06), transparent),
    radial-gradient(ellipse 45% 55% at 108% 55%, rgba(34,211,238,.04), transparent),
    var(--bg);
}
[data-theme="light"] .hero-grid-lines {
  background-image:
    linear-gradient(rgba(15,20,60,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,20,60,.035) 1px, transparent 1px);
}
[data-theme="light"] .scroll-mouse { border-color: rgba(15,20,60,.20); }
[data-theme="light"] .hero-scroll-hint span { color: var(--t3); }

/* ── Navbar ────────────────────────────────────── */
[data-theme="light"] .navbar.scrolled {
  background: var(--nav-bg) !important;
  box-shadow: 0 1px 0 var(--glass-b), 0 8px 32px rgba(15,20,60,.07);
}
[data-theme="light"] .dropdown-menu {
  background: #fff !important;
  border-color: var(--glass-b) !important;
  box-shadow: 0 4px 6px rgba(15,20,60,.04), 0 16px 48px rgba(15,20,60,.10) !important;
}
[data-theme="light"] .navbar-toggler { background: #fff; border-color: var(--glass-b) !important; }

/* ── Cards — solid white with clean borders ────── */
[data-theme="light"] .service-card,
[data-theme="light"] .portfolio-card,
[data-theme="light"] .team-card,
[data-theme="light"] .blog-card,
[data-theme="light"] .testimonial-card,
[data-theme="light"] .career-card,
[data-theme="light"] .value-card,
[data-theme="light"] .why-card,
[data-theme="light"] .tech-item,
[data-theme="light"] .pillar,
[data-theme="light"] .ccard,
[data-theme="light"] .faq-item,
[data-theme="light"] .contact-form-wrap,
[data-theme="light"] .about-card-main {
  background: #fff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-color: rgba(15,20,60,.09);
  box-shadow: 0 1px 3px rgba(15,20,60,.06), 0 6px 20px rgba(15,20,60,.06);
}

/* ── Card hover states ─────────────────────────── */
[data-theme="light"] .service-card:hover {
  box-shadow: 0 2px 6px rgba(15,20,60,.08), 0 20px 56px rgba(15,20,60,.13);
  border-color: var(--gold-b);
}
[data-theme="light"] .portfolio-card:hover {
  box-shadow: 0 2px 6px rgba(15,20,60,.08), 0 24px 60px rgba(15,20,60,.13);
  border-color: var(--glass-bh);
}
[data-theme="light"] .team-card:hover {
  box-shadow: 0 2px 6px rgba(15,20,60,.08), 0 20px 52px rgba(15,20,60,.12);
  border-color: var(--gold-b);
}
[data-theme="light"] .blog-card:hover {
  box-shadow: 0 2px 6px rgba(15,20,60,.07), 0 18px 48px rgba(15,20,60,.11);
  border-color: var(--gold-b);
}
[data-theme="light"] .testimonial-card:hover,
[data-theme="light"] .career-card:hover,
[data-theme="light"] .value-card:hover {
  box-shadow: 0 2px 6px rgba(15,20,60,.07), 0 16px 44px rgba(15,20,60,.11);
}
[data-theme="light"] .why-card:hover,
[data-theme="light"] .tech-item:hover {
  box-shadow: 0 2px 6px rgba(15,20,60,.06), 0 14px 40px rgba(15,20,60,.10);
}
[data-theme="light"] .pillar:hover,
[data-theme="light"] .ccard:hover {
  box-shadow: 0 2px 6px rgba(15,20,60,.05), 0 10px 32px rgba(15,20,60,.09);
}

/* ── Sections ──────────────────────────────────── */
[data-theme="light"] .section-dark { background: var(--bg2) !important; }
[data-theme="light"] .section::before {
  opacity: .4;
}

[data-theme="light"] .stats-banner {
  background: var(--bg3);
  border-color: var(--glass-b);
}
[data-theme="light"] .cta-banner {
  background:
    radial-gradient(ellipse 70% 70% at 50% 50%, rgba(139,92,246,.05), transparent),
    var(--bg3);
  border-color: var(--glass-b);
}
[data-theme="light"] .clients-ticker { background: var(--bg2); border-color: var(--glass-b); }

/* ── Page hero ─────────────────────────────────── */
[data-theme="light"] .page-hero {
  background: linear-gradient(160deg, #fff 0%, var(--bg2) 100%);
}
[data-theme="light"] .page-hero::before {
  background:
    radial-gradient(ellipse 60% 65% at 50% 0%, rgba(139,92,246,.07), transparent),
    radial-gradient(ellipse 40% 40% at 85% 80%, rgba(201,169,110,.05), transparent);
}
[data-theme="light"] .page-hero::after { display: none; }
[data-theme="light"] .member-hero {
  background: linear-gradient(160deg, #fff 0%, var(--bg2) 100%);
}

/* ── Footer ────────────────────────────────────── */
[data-theme="light"] .footer {
  background: linear-gradient(180deg, var(--bg3) 0%, #fff 100%);
  border-color: var(--glass-b);
}

/* ── Portfolio ─────────────────────────────────── */
[data-theme="light"] .portfolio-overlay {
  background: linear-gradient(to top, rgba(10,12,30,.72) 0%, rgba(10,12,30,.20) 55%, transparent 100%);
}

/* ── Team photo overlay ────────────────────────── */
[data-theme="light"] .team-photo-overlay {
  background: linear-gradient(to top, #fff 0%, transparent 55%);
}

/* ── About float cards ─────────────────────────── */
[data-theme="light"] .about-float {
  background: #fff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-color: rgba(15,20,60,.10);
  box-shadow: 0 4px 6px rgba(15,20,60,.06), 0 12px 32px rgba(15,20,60,.09);
}
[data-theme="light"] .about-card-main::before { opacity: .4; }

/* ── FAQ ───────────────────────────────────────── */
[data-theme="light"] .faq-item.open {
  border-color: var(--gold-b);
  box-shadow: 0 2px 6px rgba(15,20,60,.05), 0 8px 24px rgba(15,20,60,.08);
}
[data-theme="light"] .faq-q:hover,
[data-theme="light"] .faq-question:hover { background: rgba(15,20,60,.02); }

/* ── Forms ─────────────────────────────────────── */
[data-theme="light"] .form-group input,
[data-theme="light"] .form-group select,
[data-theme="light"] .form-group textarea {
  background: #fff;
  border-color: rgba(15,20,60,.14);
  color: var(--t1);
  box-shadow: 0 1px 3px rgba(15,20,60,.04);
}
[data-theme="light"] .form-group input::placeholder,
[data-theme="light"] .form-group textarea::placeholder { color: var(--t3); }
[data-theme="light"] .form-group input:focus,
[data-theme="light"] .form-group select:focus,
[data-theme="light"] .form-group textarea:focus {
  background: #fff;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,.12);
}
[data-theme="light"] .form-group select option { background: #fff; color: var(--t1); }
[data-theme="light"] .form-control, [data-theme="light"] .form-select {
  background: #fff !important;
  border-color: rgba(15,20,60,.14) !important;
  color: var(--t1) !important;
  box-shadow: 0 1px 3px rgba(15,20,60,.04) !important;
}
[data-theme="light"] .form-control:focus, [data-theme="light"] .form-select:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(201,169,110,.12) !important;
}
[data-theme="light"] .newsletter-form {
  background: #fff;
  border-color: rgba(15,20,60,.14);
  backdrop-filter: none;
}
[data-theme="light"] .newsletter-form input { color: var(--t1); }

/* ── Hero badge & stats ────────────────────────── */
[data-theme="light"] .hero-badge {
  background: #fff;
  border-color: var(--glass-b);
  box-shadow: 0 1px 3px rgba(15,20,60,.06), 0 4px 14px rgba(15,20,60,.07);
  backdrop-filter: none;
}
[data-theme="light"] .hero-stats {
  background: #fff;
  border-color: var(--glass-b);
  box-shadow: 0 1px 3px rgba(15,20,60,.06), 0 6px 20px rgba(15,20,60,.07);
  backdrop-filter: none;
}

/* ── Buttons ───────────────────────────────────── */
[data-theme="light"] .btn-outline-gold {
  border-color: var(--gold-bh);
  color: var(--t1) !important;
}
[data-theme="light"] .btn-outline-gold:hover { color: var(--gold) !important; }
[data-theme="light"] .btn-ghost { color: var(--t2); }
[data-theme="light"] .play-btn {
  background: #fff;
  border-color: rgba(15,20,60,.14);
  backdrop-filter: none;
  color: var(--t2);
}
[data-theme="light"] .filter-btn {
  background: #fff;
  border-color: rgba(15,20,60,.12);
  backdrop-filter: none;
  color: var(--t2);
}
[data-theme="light"] .filter-btn.active,
[data-theme="light"] .filter-btn:hover { background: var(--gold-glow); border-color: var(--gold-bh); color: var(--gold); }

/* ── Section label ─────────────────────────────── */
[data-theme="light"] .section-label {
  background: linear-gradient(135deg, rgba(139,92,246,.06), rgba(201,169,110,.07));
  border-color: rgba(15,20,60,.10);
  backdrop-filter: none;
}

/* ── Skills, timeline, dividers ────────────────── */
[data-theme="light"] .skill-bar-track { background: rgba(15,20,60,.09); }
[data-theme="light"] .stat-divider,
[data-theme="light"] .hstat-div { background: rgba(15,20,60,.10); }
[data-theme="light"] .timeline-item::before { background: var(--bg2); }
[data-theme="light"] .dept-title { border-color: var(--glass-b); }

/* ── Ticker logos ──────────────────────────────── */
[data-theme="light"] .ticker-item img { filter: grayscale(100%) brightness(.50) contrast(1.15); }
[data-theme="light"] .ticker-item img:hover { filter: none; }

/* ── Back to top ───────────────────────────────── */
[data-theme="light"] .back-to-top {
  background: #fff;
  border-color: rgba(15,20,60,.14);
  backdrop-filter: none;
}
[data-theme="light"] .back-to-top:hover { box-shadow: var(--shg); background: var(--gold-glow); }

/* ── Scrollbar ─────────────────────────────────── */
[data-theme="light"] ::-webkit-scrollbar-track { background: var(--bg2); }

/* ── Portfolio placeholders ────────────────────── */
[data-theme="light"] .pc-1 { background: linear-gradient(145deg,#ddd6fe,#c4b5fd); }
[data-theme="light"] .pc-2 { background: linear-gradient(145deg,#bfdbfe,#93c5fd); }
[data-theme="light"] .pc-3 { background: linear-gradient(145deg,#e9d5ff,#d8b4fe); }
[data-theme="light"] .pc-4 { background: linear-gradient(145deg,#bae6fd,#7dd3fc); }
[data-theme="light"] .pc-5 { background: linear-gradient(145deg,#fde68a,#fcd34d); }
[data-theme="light"] .pc-6 { background: linear-gradient(145deg,#fecaca,#fca5a5); }

/* ── Team skills & social chips ────────────────── */
[data-theme="light"] .team-skills span,
[data-theme="light"] .team-socials span,
[data-theme="light"] .portfolio-tags span {
  background: var(--s2);
  border-color: rgba(15,20,60,.10);
  backdrop-filter: none;
}

/* ── Mobile nav ────────────────────────────────── */
[data-theme="light"] .mobile-nav-link { color: var(--t2); }
[data-theme="light"] .mobile-nav-link:hover { color: var(--gold); background: var(--gold-glow); border-color: var(--gold-b); }

/* ── BASE RESET & TYPOGRAPHY ───────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  transition: background-color .25s var(--ease), border-color .25s var(--ease), color .15s var(--ease);
}
/* Exclude animation-heavy elements from global color transition */
[data-aos],[class*="preloader"],[class*="cursor"],[class*="ticker"],
.hero-title,.hero-subtitle,.hero-actions,.hero-stats,.hero-badge,
.skill-bar-fill,.scroll-wheel,.back-to-top,
.btn-primary,.btn-gold,.btn-outline-gold,.btn-cta,
canvas { transition: unset; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--t1);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color .35s var(--ease), color .25s var(--ease);
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Space Grotesk', 'Syne', sans-serif;
  letter-spacing: -.025em;
  color: var(--t1);
  line-height: 1.1;
}

a { text-decoration: none; color: inherit; }
p { line-height: 1.78; color: var(--t2); }
img { display: block; max-width: 100%; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg,var(--violet-d),var(--gold-d)); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ── SCROLL PROGRESS BAR ─────────────────────── */
#scrollProgress {
  position: fixed; top: 0; left: 0; height: 2px; z-index: 9999;
  background: linear-gradient(90deg,var(--violet),var(--gold),var(--cyan));
  width: 0%; transition: width .1s linear;
}

/* ── UTILITIES ───────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg,var(--gold-l) 0%,var(--gold) 45%,var(--gold-d) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.gradient-text-v {
  background: linear-gradient(135deg,var(--violet-l) 0%,var(--violet) 50%,var(--gold) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section {
  padding: clamp(5rem,9vw,9rem) 0;
  position: relative;
}
.section-dark {
  background: var(--bg2) !important;
}
.section::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 55% 45% at 15% 60%, var(--v-glow), transparent),
    radial-gradient(ellipse 45% 55% at 85% 40%, var(--gold-glow), transparent);
  opacity: .7;
}
.section > .container { position: relative; z-index: 1; }
.text-gold { color: var(--gold) !important; }
.lead-text { font-size: 1.1rem; color: var(--t2); line-height: 1.85; }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg,rgba(139,92,246,.1),rgba(201,169,110,.08));
  border: 1px solid var(--glass-b);
  border-radius: 50px; padding: .3rem 1rem;
  font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.25rem;
  backdrop-filter: var(--blur-sm); -webkit-backdrop-filter: var(--blur-sm);
}
.section-label::before { content: ''; width: 14px; height: 1px; background: var(--gold); }
.section-head.center .section-label { justify-content: center; }
.section-head.center .section-label::before { display: none; }
.section-head h2 { font-size: clamp(1.8rem,4vw,3rem); font-weight: 700; margin-bottom: 1rem; }
.section-head.center { text-align: center; }
.section-head p { color: var(--t2); font-size: 1.05rem; line-height: 1.8; max-width: 600px; }
.section-head.center p { margin: 0 auto; }

/* ── GLASS UTILITY CLASSES ───────────────────── */
.glass {
  background: var(--glass);
  backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-b);
  box-shadow: var(--card-shadow), var(--glass-sh);
}
.glass-sm {
  background: var(--glass);
  backdrop-filter: var(--blur-sm); -webkit-backdrop-filter: var(--blur-sm);
  border: 1px solid var(--glass-b);
}
.glow-gold { box-shadow: 0 0 40px var(--gold-glow), 0 0 80px rgba(201,169,110,.05); }
.glow-violet { box-shadow: 0 0 40px var(--v-glow), 0 0 80px rgba(139,92,246,.05); }

/* ── BUTTONS ─────────────────────────────────── */
.btn-primary, .btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  padding: .9rem 2.25rem;
  background: linear-gradient(135deg,var(--gold-l),var(--gold) 50%,var(--gold-d));
  color: #0A0B14 !important; border-radius: 50px;
  font-family: 'Space Grotesk','Syne',sans-serif; font-size: .82rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  transition: all .35s var(--ease); border: none; cursor: pointer;
  box-shadow: 0 4px 20px rgba(201,169,110,.25); position: relative; overflow: hidden;
}
.btn-primary::after, .btn-gold::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg,transparent,rgba(255,255,255,.15),transparent);
  transform: translateX(-100%); transition: transform .5s var(--ease);
}
.btn-primary:hover::after, .btn-gold:hover::after { transform: translateX(100%); }
.btn-primary:hover, .btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(201,169,110,.45);
  color: #0A0B14 !important;
}
.btn-primary.btn-lg, .btn-gold.btn-lg { padding: 1.1rem 3rem; font-size: .9rem; }
.btn-primary.btn-block, .btn-gold.btn-block { width: 100%; justify-content: center; }

.btn-outline-gold {
  display: inline-flex; align-items: center; gap: 10px;
  padding: .875rem 2.25rem;
  border: 1.5px solid var(--gold-bh);
  color: var(--t1) !important; border-radius: 50px;
  font-family: 'Space Grotesk','Syne',sans-serif; font-size: .82rem; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase;
  transition: all .35s var(--ease); background: transparent; cursor: pointer;
  backdrop-filter: var(--blur-sm); -webkit-backdrop-filter: var(--blur-sm);
}
.btn-outline-gold:hover {
  border-color: var(--gold); color: var(--gold) !important;
  background: var(--gold-glow); transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,169,110,.15);
}
.btn-outline-gold.btn-lg { padding: 1.1rem 3rem; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--t2); font-size: .9rem; font-weight: 500; transition: color .3s;
}
.btn-ghost:hover { color: var(--gold); }
.play-btn {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1.5px solid var(--glass-bh); background: var(--glass);
  backdrop-filter: var(--blur-sm); -webkit-backdrop-filter: var(--blur-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; padding-left: 3px; transition: all .3s; flex-shrink: 0;
}
.btn-ghost:hover .play-btn { border-color: var(--gold); background: var(--gold-glow); color: var(--gold); }

.btn-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: .65rem 1.75rem;
  background: linear-gradient(135deg,var(--gold-l),var(--gold),var(--gold-d));
  color: #0A0B14 !important; border-radius: 50px;
  font-family: 'Space Grotesk','Syne',sans-serif; font-size: .78rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; transition: all .3s;
  box-shadow: 0 4px 16px rgba(201,169,110,.2);
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: var(--shg); }

/* ── PRELOADER ────────────────────────────────── */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .7s var(--ease), visibility .7s; overflow: hidden;
}
#preloader::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(139,92,246,.07), transparent);
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; position: relative; z-index: 1; }
.preloader-logo { margin-bottom: 2.5rem; }
.preloader-logo img { height: 110px; max-width: 280px; object-fit: contain; margin: 0 auto; filter: drop-shadow(0 0 24px rgba(201,169,110,.4)); }
.preloader-text {
  font-family: 'Space Grotesk','Syne',sans-serif; font-size: 1.9rem; font-weight: 700;
  color: var(--t1); letter-spacing: -.03em;
}
.preloader-text span { color: var(--gold); }
.preloader-bar {
  width: 200px; height: 1px; background: var(--glass-b);
  border-radius: 1px; overflow: hidden; margin: 0 auto;
}
.preloader-fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg,var(--violet-d),var(--violet),var(--gold),var(--gold-l));
  border-radius: 1px; animation: preload 2s var(--ease) forwards;
}
@keyframes preload { 0%{width:0} 60%{width:70%} 100%{width:100%} }

/* ── CURSOR (desktop only) ───────────────────── */
.cursor-dot, .cursor-circle { position: fixed; border-radius: 50%; pointer-events: none; z-index: 9997; }
.cursor-dot {
  width: 5px; height: 5px;
  background: var(--gold);
  top: -2.5px; left: -2.5px;
  box-shadow: 0 0 8px rgba(201,169,110,.7);
}
.cursor-circle {
  width: 32px; height: 32px;
  border: 1px solid rgba(201,169,110,.45);
  top: -16px; left: -16px;
  transition: width .25s,height .25s,border-color .25s;
}
@media (hover: none) { .cursor-dot, .cursor-circle { display: none; } }

/* ── NAVBAR ──────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  padding: 0; transition: all .45s var(--ease);
}
.navbar.scrolled {
  background: var(--nav-bg) !important;
  backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
  border-bottom: 1px solid var(--glass-b);
  box-shadow: 0 4px 40px rgba(0,0,0,.35), 0 1px 0 var(--glass-b);
}
.nav-inner { height: 126px; transition: height .45s var(--ease); }
.navbar.scrolled .nav-inner { height: 88px; }
.nav-logo-img { height: 110px; width: auto; max-width: 240px; object-fit: contain; transition: height .3s, opacity .3s; }
.navbar.scrolled .nav-logo-img { height: 72px; }
.nav-logo-text {
  font-family: 'Space Grotesk','Syne',sans-serif; font-size: 1.25rem; font-weight: 700;
  color: var(--t1); letter-spacing: -.02em;
}
.nav-logo-text span { color: var(--gold); }
.nav-link {
  font-size: .78rem; font-weight: 500; letter-spacing: .05em; color: var(--t2) !important;
  text-transform: uppercase; transition: color .3s; padding: .5rem .85rem !important;
  border-radius: 8px; position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 50%; right: 50%; height: 1.5px;
  background: var(--gold); border-radius: 1px; transition: all .3s var(--ease);
}
.nav-link:hover::after, .nav-link.active::after { left: .85rem; right: .85rem; }
.nav-link:hover, .nav-link.active { color: var(--gold) !important; }
.nav-link .fa-chevron-down { font-size: .62rem; transition: transform .3s; }
.nav-item.dropdown:hover .fa-chevron-down { transform: rotate(180deg); }
/* Dropdown */
.dropdown-menu {
  background: var(--glass) !important;
  backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-b) !important;
  border-radius: 16px; padding: .65rem; min-width: 220px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5), var(--glass-sh);
  margin-top: 10px !important;
  animation: dropIn .2s var(--ease) both;
}
.dropdown-item {
  display: flex; align-items: center; gap: 10px; padding: .65rem 1rem;
  font-size: .83rem; color: var(--t2); border-radius: 10px; transition: all .2s;
}
.dropdown-item:hover { background: rgba(201,169,110,.08); color: var(--gold); }
.dropdown-item i { width: 16px; text-align: center; color: var(--gold); font-size: .78rem; }
@keyframes dropIn { from{opacity:0;transform:translateY(-10px) scale(.97)} to{opacity:1;transform:none} }
/* Hamburger */
.navbar-toggler { border: 1px solid var(--glass-b); padding: .45rem .65rem; border-radius: 10px; background: var(--glass); backdrop-filter: var(--blur-sm); -webkit-backdrop-filter: var(--blur-sm); }
.navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(201,169,110,.12); }
/* Mobile offcanvas */
.mobile-nav-link {
  display: flex; align-items: center; padding: .9rem 1rem;
  font-family: 'Space Grotesk','Syne',sans-serif; font-size: .95rem; font-weight: 600;
  color: var(--t2); border-radius: 12px; transition: all .2s; text-decoration: none;
  border: 1px solid transparent;
}
.mobile-nav-link:hover { color: var(--gold); background: var(--gold-glow); border-color: var(--gold-b); }

/* ── HERO ─────────────────────────────────────── */
.hero {
  min-height: 100vh; position: relative; display: flex; align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(139,92,246,.15), transparent),
    radial-gradient(ellipse 60% 80% at -10% 90%, rgba(201,169,110,.07), transparent),
    radial-gradient(ellipse 50% 50% at 110% 50%, rgba(34,211,238,.05), transparent),
    var(--bg);
}
#heroCanvas { position: absolute; inset: 0; z-index: 0; }
.hero-noise {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.02'/%3E%3C/svg%3E");
  background-size: 200px 200px; opacity: .4;
}
.hero-grid-lines {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 85% 85% at 50% 50%,black 30%,transparent 100%);
}
.hero-inner { position: relative; z-index: 2; padding-top: 160px; padding-bottom: 7rem; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--glass); backdrop-filter: var(--blur-sm); -webkit-backdrop-filter: var(--blur-sm);
  border: 1px solid var(--glass-bh); border-radius: 50px;
  padding: .5rem 1.25rem;
  font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 2rem;
  opacity: 0; animation: fsup .7s .3s var(--ease) forwards;
}
.badge-dot { width: 7px; height: 7px; background: var(--gold); border-radius: 50%; box-shadow: 0 0 8px var(--gold); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.5)} }
.hero-title {
  font-size: clamp(2.8rem,8vw,6.5rem); font-weight: 700; line-height: 1.0;
  letter-spacing: -.03em; margin-bottom: 1.75rem;
  opacity: 0; animation: fsup .8s .5s var(--ease) forwards;
}
.hero-title .line { display: block; }
.hero-subtitle {
  font-size: clamp(.95rem,2vw,1.12rem); color: var(--t2); max-width: 560px;
  line-height: 1.85; margin-bottom: 2.75rem;
  opacity: 0; animation: fsup .7s .7s var(--ease) forwards;
}
.hero-actions {
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 4.5rem;
  opacity: 0; animation: fsup .7s .9s var(--ease) forwards;
}
.hero-stats {
  display: flex; flex-wrap: wrap; align-items: center; gap: 2.5rem;
  opacity: 0; animation: fsup .7s 1.1s var(--ease) forwards;
  background: var(--glass); backdrop-filter: var(--blur-sm); -webkit-backdrop-filter: var(--blur-sm);
  border: 1px solid var(--glass-b); border-radius: 20px;
  padding: 1.5rem 2.25rem; width: fit-content;
}
.hstat { text-align: center; }
.hstat-num { font-family: 'Space Grotesk','Syne',sans-serif; font-size: 2.2rem; font-weight: 700; color: var(--gold); display: inline; }
.hstat-sym { font-family: 'Space Grotesk','Syne',sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--gold); }
.hstat-label { display: block; font-size: .68rem; color: var(--t3); text-transform: uppercase; letter-spacing: .1em; margin-top: .2rem; }
.hstat-div { width: 1px; height: 44px; background: var(--glass-b); }
.hero-scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .75rem;
  opacity: 0; animation: fadein 1s 1.7s ease forwards;
}
.scroll-mouse { width: 22px; height: 36px; border: 1.5px solid rgba(255,255,255,.2); border-radius: 11px; display: flex; justify-content: center; padding-top: 6px; }
.scroll-wheel { width: 2px; height: 7px; background: var(--gold); border-radius: 2px; animation: sw 1.8s ease-in-out infinite; }
@keyframes sw { 0%{transform:translateY(0);opacity:1} 100%{transform:translateY(12px);opacity:0} }
.hero-scroll-hint span { font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--t3); }
@keyframes fsup { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadein { from{opacity:0} to{opacity:1} }

/* ── CLIENTS TICKER ──────────────────────────── */
.clients-ticker {
  background: var(--bg2); border-top: 1px solid var(--glass-b); border-bottom: 1px solid var(--glass-b);
  padding: 1.75rem 0; overflow: hidden; position: relative; z-index: 1;
}
.ticker-label { text-align: center; font-size: .66rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--t3); margin-bottom: 1.25rem; }
.ticker-track-wrap { overflow: hidden; position: relative; }
.ticker-track-wrap::before, .ticker-track-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; width: 130px; z-index: 2; pointer-events: none; }
.ticker-track-wrap::before { left: 0; background: var(--ticker-fl); }
.ticker-track-wrap::after { right: 0; background: var(--ticker-fr); }
.ticker-track { display: flex; gap: 3.5rem; align-items: center; animation: ticker 30s linear infinite; width: max-content; }
.ticker-track:hover { animation-play-state: paused; }
.ticker-item img { height: 30px; filter: grayscale(100%) brightness(.4) invert(.2); transition: filter .3s; object-fit: contain; max-width: 120px; }
.ticker-item img:hover { filter: none; }
.ticker-text { font-family: 'Space Grotesk','Syne',sans-serif; font-size: .85rem; font-weight: 700; color: var(--t3); letter-spacing: .06em; text-transform: uppercase; opacity: .4; white-space: nowrap; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── ABOUT PREVIEW ───────────────────────────── */
.about-visual { position: relative; height: 480px; }
.about-card-main {
  position: absolute; inset: 0;
  background: var(--glass); backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-b); border-radius: var(--rxxl);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--card-shadow);
  overflow: hidden;
}
.about-card-main::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(139,92,246,.06), transparent);
}
.about-hexwrap { width: 200px; height: 230px; animation: floaty 6s ease-in-out infinite; position: relative; z-index: 1; }
@keyframes floaty { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
.hex-svg { width: 100%; height: 100%; }
.about-years-badge {
  position: absolute; bottom: 2rem; right: 2rem;
  background: linear-gradient(135deg,var(--gold),var(--gold-d));
  border-radius: 16px; padding: 1rem 1.5rem; text-align: center;
  box-shadow: 0 8px 32px rgba(201,169,110,.35);
}
.years-num { display: block; font-family: 'Space Grotesk','Syne',sans-serif; font-size: 2rem; font-weight: 700; color: #0A0B14; }
.years-text { font-size: .72rem; font-weight: 600; color: rgba(10,11,20,.65); text-transform: uppercase; letter-spacing: .06em; }
.about-float {
  position: absolute; background: var(--glass); backdrop-filter: var(--blur-sm); -webkit-backdrop-filter: var(--blur-sm);
  border: 1px solid var(--glass-bh); border-radius: 16px; padding: 1rem 1.35rem;
  display: flex; align-items: center; gap: 1rem; box-shadow: 0 12px 40px rgba(0,0,0,.4);
}
.about-float i { font-size: 1.4rem; color: var(--gold); }
.about-float strong { font-family: 'Space Grotesk','Syne',sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--gold); display: block; }
.about-float span { font-size: .72rem; color: var(--t3); text-transform: uppercase; letter-spacing: .08em; }
.f1 { bottom: 20px; left: -24px; animation: floaty 5s .5s ease-in-out infinite; }
.f2 { top: 30px; right: -24px; animation: floaty 7s ease-in-out infinite; }
.pillar {
  display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem;
  background: var(--glass); backdrop-filter: var(--blur-sm); -webkit-backdrop-filter: var(--blur-sm);
  border: 1px solid var(--glass-b); border-radius: 16px; transition: all .35s; margin-bottom: .75rem;
}
.pillar:hover { border-color: var(--gold-b); box-shadow: 0 8px 30px rgba(0,0,0,.3); }
.pillar-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--gold-glow); border: 1px solid var(--gold-b); display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; font-size: 1.1rem; }
.pillar div strong { display: block; font-family: 'Space Grotesk','Syne',sans-serif; font-size: .88rem; font-weight: 600; color: var(--t1); margin-bottom: .25rem; }
.pillar div p { font-size: .82rem; color: var(--t3); margin: 0; line-height: 1.55; }

/* ── SERVICES ─────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.service-card {
  background: var(--glass); backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-b); border-radius: var(--rxxl);
  padding: 2.75rem 2.25rem; position: relative; overflow: hidden; cursor: pointer;
  transition: all .45s var(--ease); display: block; color: inherit; text-decoration: none;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg,var(--v-glow),var(--gold-glow));
  opacity: 0; transition: opacity .45s; border-radius: var(--rxxl);
}
.service-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg,transparent,var(--violet),var(--gold),transparent);
  transform: translateX(-100%); transition: transform .7s var(--ease);
}
.service-card:hover::after { transform: translateX(0); }
.service-card:hover {
  border-color: var(--gold-b);
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0,0,0,.5), 0 0 60px var(--gold-glow);
}
.service-card:hover::before { opacity: 1; }
.service-num {
  font-family: 'Space Grotesk','Syne',sans-serif; font-size: .65rem; font-weight: 700;
  color: var(--t3); letter-spacing: .2em; margin-bottom: 2rem;
  background: linear-gradient(135deg,var(--violet-l),var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.service-icon {
  width: 56px; height: 56px; border-radius: 16px; margin-bottom: 1.75rem;
  background: var(--gold-glow); border: 1px solid var(--gold-b);
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--gold);
  transition: all .45s; position: relative; z-index: 1;
}
.service-card:hover .service-icon { border-color: var(--gold-bh); transform: scale(1.08); box-shadow: 0 0 30px var(--gold-glow); }
.service-card h3 { font-size: 1.1rem; margin-bottom: .75rem; color: var(--t1); position: relative; z-index: 1; }
.service-card p { color: var(--t3); font-size: .875rem; line-height: 1.7; position: relative; z-index: 1; }
.service-arrow {
  position: absolute; right: 1.75rem; bottom: 1.75rem; width: 36px; height: 36px;
  border-radius: 50%; border: 1px solid var(--glass-b);
  display: flex; align-items: center; justify-content: center; color: var(--t3); font-size: .75rem;
  transition: all .35s var(--ease); z-index: 1;
}
.service-card:hover .service-arrow { border-color: var(--gold-bh); color: var(--gold); transform: translate(3px,-3px) rotate(0deg); background: var(--gold-glow); }
.service-hover-line {
  position: absolute; bottom: 0; left: 0; right: 0; height: 1.5px;
  background: linear-gradient(90deg,var(--violet-d),var(--gold),var(--gold-l));
  transform: scaleX(0); transform-origin: left; transition: transform .55s var(--ease); z-index: 1;
}
.service-card:hover .service-hover-line { transform: scaleX(1); }

/* ── WHY SECTION ──────────────────────────────── */
.why-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.why-card {
  background: var(--glass); backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-b); border-radius: 22px; padding: 2rem;
  transition: all .4s var(--ease);
}
.why-card.accent {
  background: linear-gradient(145deg,rgba(139,92,246,.06),var(--glass));
  border-color: var(--v-b);
}
.why-card:hover { border-color: var(--gold-b); transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,.4); }
.wc-icon { width: 48px; height: 48px; border-radius: 14px; background: var(--gold-glow); border: 1px solid var(--gold-b); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.2rem; margin-bottom: 1.25rem; }
.why-card h4 { color: var(--t1); margin-bottom: .5rem; font-size: 1rem; }
.why-card p { font-size: .85rem; color: var(--t3); line-height: 1.65; margin: 0; }
.why-hl { display: flex; align-items: center; gap: .75rem; font-size: .9rem; color: var(--t2); margin-bottom: .65rem; }
.why-hl i { color: var(--gold); }

/* ── PORTFOLIO ────────────────────────────────── */
.portfolio-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.portfolio-card {
  position: relative; border-radius: var(--rxxl); overflow: hidden;
  background: var(--glass); backdrop-filter: var(--blur-sm); -webkit-backdrop-filter: var(--blur-sm);
  border: 1px solid var(--glass-b); transition: all .45s var(--ease);
  cursor: pointer; display: block; color: inherit;
}
.portfolio-card.featured { grid-column: span 2; }
.portfolio-card:hover { transform: translateY(-10px); box-shadow: 0 30px 80px rgba(0,0,0,.55), 0 0 60px rgba(139,92,246,.08); border-color: var(--glass-bh); }
.portfolio-img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.portfolio-card.featured .portfolio-img { aspect-ratio: 16/8; }
.portfolio-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.portfolio-card:hover .portfolio-img img { transform: scale(1.06); }
.portfolio-placeholder { width: 100%; height: 100%; min-height: 200px; }
.portfolio-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(5,6,15,.9) 0%,rgba(5,6,15,.3) 50%,transparent 100%); }
.portfolio-info { padding: 1.75rem; }
.portfolio-cat { font-size: .67rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: .4rem; }
.portfolio-info h3 { font-size: 1.1rem; margin-bottom: .4rem; color: var(--t1); }
.portfolio-info p { font-size: .85rem; color: var(--t2); }
.portfolio-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .75rem; }
.portfolio-tags span { font-size: .68rem; padding: .22rem .65rem; border-radius: 50px; background: var(--glass); border: 1px solid var(--glass-b); color: var(--t3); }
.portfolio-link-btn {
  position: absolute; top: 1.25rem; right: 1.25rem; width: 40px; height: 40px;
  border-radius: 50%; background: var(--glass); backdrop-filter: var(--blur-sm); -webkit-backdrop-filter: var(--blur-sm);
  border: 1px solid var(--glass-bh); display: flex; align-items: center; justify-content: center;
  color: var(--gold); opacity: 0; transform: scale(.65); transition: all .35s var(--espring);
}
.portfolio-card:hover .portfolio-link-btn { opacity: 1; transform: scale(1); }
.portfolio-filters { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 3rem; }
.filter-btn {
  padding: .5rem 1.35rem; border-radius: 50px; border: 1.5px solid var(--glass-b);
  background: var(--glass); backdrop-filter: var(--blur-sm); -webkit-backdrop-filter: var(--blur-sm);
  color: var(--t3); font-size: .8rem; font-weight: 600; cursor: pointer; transition: all .3s;
}
.filter-btn.active, .filter-btn:hover { border-color: var(--gold-bh); color: var(--gold); background: var(--gold-glow); }

/* ── STATS BANNER ────────────────────────────── */
.stats-banner {
  background:
    linear-gradient(135deg,rgba(139,92,246,.07),rgba(201,169,110,.05)),
    var(--bg3);
  border-top: 1px solid var(--glass-b); border-bottom: 1px solid var(--glass-b);
}
.stats-inner { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; }
.stat-item { padding: 3.5rem 2rem; text-align: center; }
.stat-num { font-family: 'Space Grotesk','Syne',sans-serif; font-size: clamp(2.2rem,4vw,3.5rem); font-weight: 700; color: var(--gold); display: inline; }
.stat-suf { font-family: 'Space Grotesk','Syne',sans-serif; font-size: 2rem; font-weight: 700; color: var(--gold); }
.stat-lbl { display: block; font-size: .68rem; color: var(--t3); text-transform: uppercase; letter-spacing: .12em; margin-top: .5rem; }
.stat-divider { width: 1px; background: var(--glass-b); align-self: stretch; margin: 2rem 0; }

/* ── TEAM ─────────────────────────────────────── */
.team-card {
  background: var(--glass); backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-b); border-radius: var(--rxxl); overflow: hidden;
  transition: all .45s var(--ease); display: block; color: inherit; height: 100%;
}
.team-card:hover { border-color: var(--gold-b); transform: translateY(-10px); box-shadow: 0 20px 60px rgba(0,0,0,.5), 0 0 50px var(--gold-glow); }
.team-photo { height: 220px; position: relative; overflow: hidden; background: linear-gradient(145deg,var(--s2),var(--s3)); display: flex; align-items: center; justify-content: center; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.team-card:hover .team-photo img { transform: scale(1.07); }
.team-initials { font-family: 'Space Grotesk','Syne',sans-serif; font-size: 3rem; font-weight: 700; background: linear-gradient(135deg,var(--gold-l),var(--gold-d)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.team-photo-overlay { position: absolute; inset: 0; background: linear-gradient(to top,var(--bg) 0%,transparent 55%); }
.team-badge { position: absolute; top: 1rem; left: 1rem; background: linear-gradient(135deg,var(--gold),var(--gold-d)); color: #0A0B14; font-size: .62rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: .3rem .75rem; border-radius: 50px; }
.team-info { padding: 1.5rem; }
.team-dept { font-size: .67rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: .35rem; }
.team-info h3 { font-size: 1rem; margin-bottom: .25rem; color: var(--t1); }
.team-role { font-size: .82rem; color: var(--t3); margin-bottom: 1rem; }
.team-skills { display: flex; flex-wrap: wrap; gap: .35rem; margin-bottom: .85rem; }
.team-skills span { font-size: .66rem; padding: .2rem .6rem; border-radius: 50px; background: var(--glass); border: 1px solid var(--glass-b); color: var(--t3); }
.team-socials { display: flex; gap: .4rem; }
.team-socials span { width: 28px; height: 28px; border-radius: 8px; border: 1px solid var(--glass-b); background: var(--glass); display: flex; align-items: center; justify-content: center; font-size: .72rem; color: var(--t3); transition: all .25s; }
.team-card:hover .team-socials span { border-color: var(--gold-b); color: var(--gold); }
.dept-title {
  font-family: 'Space Grotesk','Syne',sans-serif; font-size: 1rem; font-weight: 700;
  color: var(--t3); text-transform: uppercase; letter-spacing: .14em;
  padding-bottom: 1rem; border-bottom: 1px solid var(--glass-b); margin-bottom: 2rem;
  display: flex; align-items: center; gap: .75rem;
}
.dept-title::before { content: ''; width: 20px; height: 1.5px; background: var(--gold); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(230px,1fr)); gap: 1.5rem; }

/* ── TESTIMONIALS ─────────────────────────────── */
.testimonial-card {
  background: var(--glass); backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-b); border-radius: var(--rxxl); padding: 2.25rem;
  transition: all .45s var(--ease); height: 100%;
}
.testimonial-card:hover { border-color: var(--gold-b); transform: translateY(-6px); box-shadow: 0 16px 60px rgba(0,0,0,.45); }
.t-stars { color: var(--gold); letter-spacing: 2px; font-size: .82rem; margin-bottom: .85rem; }
.t-quote { font-size: 3.5rem; color: var(--gold); opacity: .15; line-height: 1; margin-bottom: .5rem; font-family: Georgia,serif; }
.testimonial-card > p { color: var(--t2); font-size: .9rem; line-height: 1.82; margin-bottom: 1.75rem; font-style: italic; }
.t-author { display: flex; align-items: center; gap: .875rem; }
.t-avatar { width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--gold-b); overflow: hidden; background: var(--s2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.t-avatar img { width: 100%; height: 100%; object-fit: cover; }
.t-avatar span { font-family: 'Space Grotesk','Syne',sans-serif; font-weight: 700; font-size: .82rem; color: var(--gold); }
.t-author strong { display: block; font-size: .9rem; color: var(--t1); }
.t-author span { font-size: .76rem; color: var(--t3); }

/* ── TECH STACK ───────────────────────────────── */
.tech-item {
  background: var(--glass); backdrop-filter: var(--blur-sm); -webkit-backdrop-filter: var(--blur-sm);
  border: 1px solid var(--glass-b); border-radius: 16px; padding: 1.75rem 1rem;
  text-align: center; transition: all .35s var(--ease);
}
.tech-item:hover { border-color: var(--gold-b); background: var(--glass-h); transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,.35); }
.tech-item i { font-size: 2rem; color: var(--gold); display: block; margin-bottom: .75rem; }
.tech-item strong { display: block; font-family: 'Space Grotesk','Syne',sans-serif; font-size: .8rem; font-weight: 600; color: var(--t1); margin-bottom: .2rem; }
.tech-item span { font-size: .68rem; color: var(--t3); }

/* ── CTA BANNER ───────────────────────────────── */
.cta-banner {
  background:
    radial-gradient(ellipse 70% 70% at 50% 50%, rgba(139,92,246,.1), transparent),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(201,169,110,.06), transparent),
    var(--bg3);
  padding: clamp(5rem,10vw,9rem) 0; text-align: center;
  position: relative; overflow: hidden; border-top: 1px solid var(--glass-b); border-bottom: 1px solid var(--glass-b);
}
.cta-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse,rgba(201,169,110,.07) 0%,transparent 65%);
  pointer-events: none;
}
.cta-banner h2 { margin-bottom: 1.25rem; }
.cta-banner p { color: var(--t2); font-size: 1.1rem; max-width: 500px; margin: 0 auto 3rem; }

/* ── CONTACT GRID & CARDS ────────────────────── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 4rem; align-items: start;
}
.contact-cards { display: flex; flex-direction: column; gap: 0; }
.ccard {
  display: flex; align-items: center; gap: 1rem; padding: 1.25rem 1.5rem;
  background: var(--glass); backdrop-filter: var(--blur-sm); -webkit-backdrop-filter: var(--blur-sm);
  border: 1px solid var(--glass-b); border-radius: 16px; transition: all .35s; color: inherit; margin-bottom: 1rem;
}
.ccard:hover { border-color: var(--gold-b); box-shadow: 0 8px 30px rgba(0,0,0,.3); transform: translateX(4px); }
.ccard-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--gold-glow); border: 1px solid var(--gold-b); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.1rem; flex-shrink: 0; }
.ccard span { display: block; font-size: .68rem; color: var(--t3); text-transform: uppercase; letter-spacing: .09em; margin-bottom: .2rem; }
.ccard strong { font-size: .9rem; color: var(--t1); }
.contact-form-wrap {
  background: var(--glass); backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-b); border-radius: var(--rxxl); padding: 3rem;
  box-shadow: var(--card-shadow);
}
/* ── CONTACT FORM FIELDS ──────────────────────── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--t3); margin-bottom: .5rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: rgba(255,255,255,.04);
  backdrop-filter: var(--blur-sm); -webkit-backdrop-filter: var(--blur-sm);
  border: 1.5px solid var(--glass-b); border-radius: 12px;
  padding: .875rem 1.25rem; color: var(--t1); font-size: .9rem; font-family: inherit;
  transition: border-color .3s, box-shadow .3s, background .25s; outline: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--t3); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,169,110,.1); background: rgba(255,255,255,.06); }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A96E' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; cursor: pointer; }
.form-group select option { background: var(--s2); color: var(--t1); }
.form-group textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.btn-block { width: 100%; justify-content: center; }
.form-label { font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--t3); margin-bottom: .5rem; }
.form-control, .form-select {
  background: rgba(255,255,255,.04) !important;
  backdrop-filter: var(--blur-sm); -webkit-backdrop-filter: var(--blur-sm);
  border: 1.5px solid var(--glass-b) !important;
  border-radius: 12px !important; padding: .875rem 1.25rem !important; color: var(--t1) !important;
  font-size: .9rem; font-family: inherit;
  transition: border-color .3s, box-shadow .3s;
}
.form-control::placeholder { color: var(--t3) !important; }
.form-control:focus, .form-select:focus { border-color: var(--gold) !important; box-shadow: 0 0 0 3px rgba(201,169,110,.1) !important; background: rgba(255,255,255,.06) !important; }
.form-select option { background: var(--s2); color: var(--t1); }
.form-error { font-size: .73rem; color: #ef4444; margin-top: .3rem; display: block; }
.alert-gold-success { background: rgba(34,197,94,.08); border: 1px solid rgba(34,197,94,.25); color: #4ade80; border-radius: 12px; padding: 1rem 1.25rem; font-size: .88rem; }
.form-success { text-align: center; padding: 3rem 1rem; }
.form-success i { font-size: 3rem; color: var(--gold); margin-bottom: 1rem; display: block; }
.form-success h3 { color: var(--t1); margin-bottom: .5rem; }
.form-success p { color: var(--t2); }

/* ── FOOTER ───────────────────────────────────── */
.footer {
  background:
    linear-gradient(180deg,var(--bg3),var(--bg2));
  border-top: 1px solid var(--glass-b);
}
.footer-brand p { color: var(--t3); font-size: .88rem; line-height: 1.78; margin: 1.25rem 0; }
.footer-logo-text { font-family: 'Space Grotesk','Syne',sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--t1); }
.footer-logo-text span { color: var(--gold); }
.footer-socials a { width: 36px; height: 36px; border-radius: 10px; background: var(--glass); border: 1px solid var(--glass-b); display: flex; align-items: center; justify-content: center; color: var(--t3); font-size: .82rem; transition: all .3s; }
.footer-socials a:hover { border-color: var(--gold-b); color: var(--gold); background: var(--gold-glow); }
.newsletter-form { display: flex; background: var(--glass); border: 1.5px solid var(--glass-b); border-radius: 12px; overflow: hidden; transition: border-color .3s; backdrop-filter: var(--blur-sm); -webkit-backdrop-filter: var(--blur-sm); }
.newsletter-form:focus-within { border-color: var(--gold-b); }
.newsletter-form input { flex: 1; background: transparent; border: none !important; padding: .75rem 1rem; font-size: .84rem; color: var(--t1); outline: none; box-shadow: none !important; border-radius: 0 !important; }
.newsletter-form input::placeholder { color: var(--t3); }
.newsletter-form button { background: linear-gradient(135deg,var(--gold),var(--gold-d)); border: none; padding: .75rem 1.1rem; color: #0A0B14; cursor: pointer; font-size: .85rem; transition: opacity .2s; }
.newsletter-form button:hover { opacity: .88; }
.footer-col h4 { font-family: 'Space Grotesk','Syne',sans-serif; font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--t1); margin-bottom: 1.35rem; }
.footer-col ul li a { font-size: .86rem; color: var(--t3); transition: color .3s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact li { display: flex; align-items: flex-start; gap: .75rem; font-size: .84rem; color: var(--t3); margin-bottom: .85rem; }
.footer-contact li i { color: var(--gold); font-size: .78rem; margin-top: .18rem; flex-shrink: 0; width: 14px; }
.footer-contact a { color: var(--t3); transition: color .3s; }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--glass-b); padding: 1.5rem 0; }
.footer-bottom p { font-size: .8rem; color: var(--t3); margin: 0; }
.footer-socials-link { width: 36px; height: 36px; border-radius: 10px; border: 1px solid var(--glass-b); background: var(--glass); display: flex; align-items: center; justify-content: center; color: var(--t3); font-size: .82rem; transition: all .3s; text-decoration: none; }
.footer-socials-link:hover { border-color: var(--gold-b); color: var(--gold); background: var(--gold-glow); }

/* ── BACK TO TOP ──────────────────────────────── */
.back-to-top {
  position: fixed; bottom: 7rem; right: 2rem; width: 44px; height: 44px; border-radius: 50%;
  background: var(--glass); backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-bh); color: var(--gold);
  display: flex; align-items: center; justify-content: center; font-size: .8rem;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: all .35s var(--ease); z-index: 500; cursor: pointer;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--gold-glow); border-color: var(--gold-bh); transform: translateY(-3px); box-shadow: var(--shg); }

/* ── FLOATING SOCIAL FAB ──────────────────────── */
.fab-wrap {
  position: fixed;
  bottom: 1.5rem;
  right: 2rem;
  z-index: 1000;
  width: 56px;
  height: 56px;
}
@keyframes fab-ring {
  0%   { box-shadow: 0 0 0 0 rgba(201,169,110,.6), 0 4px 18px rgba(201,169,110,.35); }
  70%  { box-shadow: 0 0 0 13px rgba(201,169,110,0), 0 4px 18px rgba(201,169,110,.35); }
  100% { box-shadow: 0 0 0 0 rgba(201,169,110,0), 0 4px 18px rgba(201,169,110,.35); }
}
/* Main trigger button */
.fab-main {
  position: absolute; inset: 0;
  border-radius: 50%;
  cursor: pointer;
  background: var(--s2);
  border: 2px solid rgba(201,169,110,.55);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), background .25s, border-color .25s;
  animation: fab-ring 2.5s ease-out infinite;
}
.fab-main:hover        { transform: scale(1.12); background: rgba(201,169,110,.10); border-color: var(--gold); animation: none; }
.fab-wrap.open .fab-main { animation: none; background: var(--s2); border-color: var(--gold); transform: scale(1.06); }

/* Chat ↔ Cross swap */
.fab-icon-open,
.fab-icon-close { position: absolute; transition: opacity .25s, transform .28s cubic-bezier(.34,1.56,.64,1); pointer-events: none; }
.fab-icon-close                     { opacity: 0; transform: rotate(-90deg) scale(.3); }
.fab-wrap.open .fab-icon-open       { opacity: 0; transform: rotate(90deg) scale(.3); }
.fab-wrap.open .fab-icon-close      { opacity: 1; transform: rotate(0deg) scale(1); }

/* Social icon circles — position: fixed, placed by JS */
.fab-item {
  position: fixed;          /* JS sets top/left, so no stacking-context issues */
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
  text-decoration: none;
  color: #fff !important;
  border: none;
  box-shadow: 0 4px 16px rgba(0,0,0,.35);
  opacity: 0;
  transform: scale(0.15);
  transition: opacity .3s ease, transform .36s cubic-bezier(.34,1.56,.64,1), box-shadow .2s;
  pointer-events: none;
  z-index: 1000;
}
.fab-item.fab-visible {
  opacity: 1;
  pointer-events: auto;
}
.fab-item:hover { filter: brightness(1.15); }
.fab-wa:hover { box-shadow: 0 8px 24px rgba(37,211,102,.55)  !important; }
.fab-li:hover { box-shadow: 0 8px 24px rgba(10,102,194,.55)  !important; }
.fab-gh:hover { box-shadow: 0 8px 24px rgba(140,140,140,.45) !important; }
.fab-tw:hover { box-shadow: 0 8px 24px rgba(120,120,120,.50) !important; }
.fab-ig:hover { box-shadow: 0 8px 24px rgba(225,48,108,.55)  !important; }
.fab-fb:hover { box-shadow: 0 8px 24px rgba(24,119,242,.55)  !important; }

/* Brand fill colours */
.fab-wa { background: #25D366 !important; }
.fab-li { background: #0A66C2 !important; }
.fab-gh { background: #24292e !important; }
.fab-tw { background: #14171A !important; }
.fab-ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important; }
.fab-fb { background: #1877F2 !important; }

/* Tooltip */
.fab-item::before {
  content: attr(data-label);
  position: absolute; right: calc(100% + 11px); top: 50%;
  transform: translateY(-50%) translateX(5px);
  background: var(--s1); color: var(--t1);
  border: 1px solid var(--glass-b);
  font-size: .71rem; font-weight: 600; font-family: 'Space Grotesk', sans-serif;
  white-space: nowrap; padding: 4px 11px; border-radius: 7px;
  box-shadow: 0 2px 10px rgba(0,0,0,.22);
  opacity: 0; pointer-events: none;
  transition: opacity .18s, transform .18s;
}
.fab-item:hover::before { opacity: 1; transform: translateY(-50%) translateX(0); }

/* Light mode */
[data-theme="light"] .fab-main { background: #fff; }
[data-theme="light"] .fab-wrap.open .fab-main { background: #fffbf4; }
[data-theme="light"] .fab-item::before { background: #fff; border-color: rgba(15,20,60,.12); }

/* ── PAGE HERO ────────────────────────────────── */
.page-hero {
  padding: clamp(8rem,14vw,12rem) 0 clamp(5rem,8vw,8rem);
  background: var(--bg); position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 60% 70% at 50% 0%,rgba(139,92,246,.12),transparent),
    radial-gradient(ellipse 40% 40% at 20% 80%,rgba(201,169,110,.05),transparent);
}
.page-hero::after {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.02) 1px,transparent 1px);
  background-size: 70px 70px;
}
.page-hero-content { position: relative; z-index: 1; text-align: center; max-width: 820px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(2.2rem,5vw,4rem); font-weight: 700; margin-bottom: 1rem; }
.page-hero p { color: var(--t2); font-size: 1.08rem; max-width: 580px; margin: .75rem auto 1.5rem; }
.breadcrumb {
  display: flex; align-items: center; gap: .6rem; justify-content: center;
  font-size: .78rem; color: var(--t3); list-style: none; padding: 0; margin: 0;
}
.breadcrumb a { color: var(--t3); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }
.breadcrumb .fa-chevron-right { font-size: .55rem; color: var(--glass-bh); }
/* Bootstrap breadcrumb overrides */
.breadcrumb-item a { color: var(--t3); }
.breadcrumb-item.active { color: var(--gold); }
.breadcrumb-item + .breadcrumb-item::before { color: var(--glass-bh); }

/* ── BLOG ─────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.blog-card {
  background: var(--glass); backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-b); border-radius: var(--rxxl); overflow: hidden;
  transition: all .45s var(--ease); display: block; color: inherit; height: 100%;
}
.blog-card:hover { border-color: var(--gold-b); transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,.45); }
.blog-thumb { height: 220px; overflow: hidden; background: var(--s2); }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.blog-card:hover .blog-thumb img { transform: scale(1.06); }
.blog-body { padding: 1.75rem; }
.blog-cat { font-size: .67rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: .6rem; display: block; }
.blog-body h3 { font-size: 1.04rem; margin-bottom: .65rem; line-height: 1.3; color: var(--t1); transition: color .25s; }
.blog-card:hover .blog-body h3 { color: var(--gold); }
.blog-body p { font-size: .84rem; color: var(--t3); line-height: 1.65; }
.blog-meta { font-size: .74rem; color: var(--t3); display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-top: 1rem; }
.blog-meta i { color: var(--gold); font-size: .68rem; margin-right: .2rem; }

/* ── VALUES / CAREERS ─────────────────────────── */
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.value-card {
  background: var(--glass); backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-b); border-radius: var(--rxxl); padding: 2.5rem 2rem;
  text-align: center; transition: all .45s var(--ease); height: 100%;
}
.value-card:hover { border-color: var(--gold-b); transform: translateY(-7px); box-shadow: 0 16px 50px rgba(0,0,0,.4); }
.value-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--gold-glow); border: 1px solid var(--gold-b); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.5rem; margin: 0 auto 1.5rem; }
.value-card h3 { color: var(--t1); margin-bottom: .75rem; font-size: 1rem; }
.value-card p { color: var(--t3); font-size: .86rem; line-height: 1.72; }
.careers-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.career-card {
  background: var(--glass); backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-b); border-radius: var(--rxxl); padding: 2.25rem;
  transition: all .45s var(--ease); display: block; color: inherit;
}
.career-card:hover { border-color: var(--gold-b); transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,.45); }
.career-type { display: inline-block; padding: .3rem .9rem; border-radius: 50px; background: var(--v-glow); border: 1px solid var(--v-b); color: var(--violet-l); font-size: .67rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1rem; }
.career-card h3 { color: var(--t1); margin-bottom: 1rem; font-size: 1.1rem; }
.career-meta { display: flex; flex-wrap: wrap; gap: .65rem; margin-bottom: 1rem; }
.career-meta span { display: flex; align-items: center; gap: .4rem; font-size: .78rem; color: var(--t3); }
.career-meta i { color: var(--gold); font-size: .72rem; }

/* ── FAQ ──────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  background: var(--glass); backdrop-filter: var(--blur-sm); -webkit-backdrop-filter: var(--blur-sm);
  border: 1px solid var(--glass-b); border-radius: 16px; overflow: hidden;
  transition: border-color .35s, box-shadow .35s;
}
.faq-item.open { border-color: var(--gold-b); box-shadow: 0 8px 32px rgba(0,0,0,.3); }
.faq-q, .faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 1.5rem; cursor: pointer; gap: 1rem; transition: background .2s;
}
.faq-q:hover, .faq-question:hover { background: rgba(255,255,255,.02); }
.faq-q span, .faq-question { font-size: .93rem; font-weight: 500; color: var(--t1); line-height: 1.5; }
.faq-q .fa-plus, .faq-question i { font-size: .75rem; color: var(--gold); flex-shrink: 0; transition: transform .35s var(--ease); }
.faq-item.open .fa-plus, .faq-item.open .faq-question i { transform: rotate(45deg); }
.faq-a, .faq-answer { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.faq-a-inner { padding: 0 1.5rem 1.5rem; font-size: .88rem; color: var(--t2); line-height: 1.8; }

/* ── TIMELINE ─────────────────────────────────── */
.timeline { position: relative; padding-left: 3rem; }
.timeline::before { content: ''; position: absolute; left: .5rem; top: 0; bottom: 0; width: 1px; background: linear-gradient(to bottom,var(--violet),var(--gold),transparent); }
.timeline-item { position: relative; margin-bottom: 3rem; }
.timeline-item::before { content: ''; position: absolute; left: -2.5rem; top: .35rem; width: 12px; height: 12px; border-radius: 50%; border: 2px solid var(--gold); background: var(--bg); box-shadow: 0 0 10px rgba(201,169,110,.3); }
.timeline-year { font-family: 'Space Grotesk','Syne',sans-serif; font-size: .72rem; font-weight: 700; color: var(--gold); letter-spacing: .12em; margin-bottom: .4rem; }
.timeline-item h3 { color: var(--t1); }
.timeline-item p { color: var(--t2); font-size: .9rem; }

/* ── SKILL BARS ───────────────────────────────── */
.skill-bar-item label { display: flex; justify-content: space-between; font-size: .82rem; margin-bottom: .45rem; color: var(--t2); }
.skill-bar-track { height: 3px; background: var(--glass-b); border-radius: 2px; overflow: hidden; }
.skill-bar-fill { height: 100%; background: linear-gradient(90deg,var(--violet-d),var(--gold)); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform 1.3s var(--ease); }
.skill-bar-fill.animate { transform: scaleX(1); }
.availability-badge { display: inline-block; padding: .4rem 1rem; border-radius: 50px; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.badge-available { background: rgba(34,197,94,.12); border: 1px solid rgba(34,197,94,.3); color: #4ade80; }
.badge { display: inline-block; padding: .3rem .9rem; border-radius: 50px; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.badge-gold { background: rgba(201,169,110,.12); border: 1px solid var(--gold-b); color: var(--gold); }
.dept-section { margin-bottom: 4rem; }
.dept-section:last-child { margin-bottom: 0; }
.badge-busy { background: rgba(251,146,60,.12); border: 1px solid rgba(251,146,60,.3); color: #fb923c; }
.badge-on_leave { background: rgba(148,163,184,.1); border: 1px solid rgba(148,163,184,.25); color: #94a3b8; }
.member-hero {
  padding: clamp(8rem,14vw,12rem) 0 clamp(5rem,8vw,8rem);
  background: var(--bg); position: relative; overflow: hidden;
}
.member-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 0%,rgba(139,92,246,.10),transparent),
              radial-gradient(ellipse 40% 40% at 80% 80%,rgba(201,169,110,.05),transparent);
}
.member-hero-grid {
  display: grid; grid-template-columns: 280px 1fr; gap: 4rem; align-items: start;
  position: relative; z-index: 1; max-width: 960px;
}
.member-photo-wrap { display: flex; flex-direction: column; align-items: center; }
.member-photo { width: 100%; max-width: 280px; aspect-ratio: 3/4; border-radius: var(--rxxl); overflow: hidden; border: 1px solid var(--glass-b); background: var(--glass); display: flex; align-items: center; justify-content: center; }
.member-photo img { width: 100%; height: 100%; object-fit: cover; }
.member-photo-initials { font-family: 'Space Grotesk','Syne',sans-serif; font-size: 5rem; font-weight: 700; background: linear-gradient(135deg,var(--gold-l),var(--gold-d)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ── ABOUT GRID ───────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: center; }

/* ── CTA INNER / ACTIONS ──────────────────────── */
.cta-inner { position: relative; z-index: 1; text-align: center; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2.5rem; }

/* ── PORTFOLIO PLACEHOLDERS ───────────────────── */
.pc-1 { background: linear-gradient(145deg,#1a1040,#0a0520); }
.pc-2 { background: linear-gradient(145deg,#0d2035,#051525); }
.pc-3 { background: linear-gradient(145deg,#1a0d30,#0a051a); }
.pc-4 { background: linear-gradient(145deg,#102030,#050f18); }
.pc-5 { background: linear-gradient(145deg,#1a1a10,#0a0a05); }
.pc-6 { background: linear-gradient(145deg,#201010,#100505); }

/* ── BLOG CONTENT ─────────────────────────────── */
.blog-content { color: var(--t2); line-height: 1.85; font-size: 1rem; }
.blog-content p { margin-bottom: 1.25rem; }
.blog-content h2, .blog-content h3 { color: var(--t1); margin: 2rem 0 1rem; }
.blog-content a { color: var(--gold); }

/* ── AOS ANIMATIONS ───────────────────────────── */
[data-aos] { opacity: 0; transform: translateY(32px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
[data-aos="fade-right"] { transform: translateX(-40px); }
[data-aos="fade-left"]  { transform: translateX(40px); }
[data-aos="zoom-in"]    { transform: scale(.92); }
[data-aos].aos-animate  { opacity: 1; transform: none; }

/* ======================================================
   ADMIN PANEL — Unchanged dark theme
   ====================================================== */
.admin-body { background: #0a0a0a !important; }
.admin-sidebar { width: 260px; background: #111 !important; border-right: 1px solid rgba(201,169,110,.12); min-height: 100vh; position: fixed; top: 0; left: 0; bottom: 0; z-index: 1040; overflow-y: auto; transition: transform .3s; }
.admin-sidebar-logo { padding: 1.75rem 1.5rem; border-bottom: 1px solid rgba(201,169,110,.1); }
.admin-sidebar-logo img { height: 34px; }
.sidebar-brand-text { font-family: 'Space Grotesk','Syne',sans-serif; font-size: 1.1rem; font-weight: 700; color: #fff; }
.sidebar-brand-text b { color: #C9A96E; }
.admin-nav-label { font-size: .62rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: rgba(201,169,110,.4); padding: .25rem .875rem; display: block; margin-top: .75rem; }
.admin-nav-link { display: flex; align-items: center; gap: .75rem; padding: .7rem .875rem; border-radius: 9px; font-size: .85rem; color: rgba(255,255,255,.5) !important; transition: all .2s; margin-bottom: 2px; text-decoration: none !important; }
.admin-nav-link i { width: 16px; text-align: center; font-size: .85rem; color: rgba(201,169,110,.5); flex-shrink: 0; }
.admin-nav-link:hover { background: rgba(201,169,110,.08); color: rgba(255,255,255,.9) !important; }
.admin-nav-link.active { background: linear-gradient(135deg,rgba(201,169,110,.15),rgba(201,169,110,.05)); color: #C9A96E !important; border-left: 2px solid #C9A96E; padding-left: calc(.875rem - 2px); }
.admin-nav-link.active i { color: #C9A96E; }
.sidebar-backdrop { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 1039; backdrop-filter: blur(4px); }
.sidebar-backdrop.show { display: block; }
.admin-main { margin-left: 260px; min-height: 100vh; background: #0e0e0e; }
.admin-topbar { height: 64px; background: #111; border-bottom: 1px solid rgba(201,169,110,.1); display: flex; align-items: center; justify-content: space-between; padding: 0 1.5rem; position: sticky; top: 0; z-index: 50; }
.admin-topbar h1 { font-family: 'Space Grotesk','Syne',sans-serif; font-size: 1rem; font-weight: 700; color: #fff; margin: 0; }
.admin-user-avatar { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg,#C9A96E,#9A7840); display: flex; align-items: center; justify-content: center; font-family: 'Space Grotesk','Syne',sans-serif; font-size: .8rem; font-weight: 700; color: #0D0D0D; flex-shrink: 0; }
.admin-user-name { font-size: .85rem; font-weight: 600; color: #fff; }
.admin-user-role { font-size: .7rem; color: rgba(201,169,110,.6); }
.sidebar-toggle { width: 34px; height: 34px; border-radius: 8px; border: 1px solid rgba(201,169,110,.14); background: transparent; color: rgba(255,255,255,.5); display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: .85rem; transition: all .2s; }
.sidebar-toggle:hover { border-color: rgba(201,169,110,.3); color: #C9A96E; }
.admin-content { padding: 2rem; }
.admin-card { background: #161616; border: 1px solid rgba(201,169,110,.1); border-radius: 14px; padding: 1.75rem; margin-bottom: 1.5rem; }
.admin-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(201,169,110,.08); }
.admin-card-title { font-family: 'Space Grotesk','Syne',sans-serif; font-size: .95rem; font-weight: 700; color: #fff; margin: 0; }
.astat { background: #161616; border: 1px solid rgba(201,169,110,.1); border-radius: 14px; padding: 1.75rem; transition: border-color .3s; height: 100%; }
.astat:hover { border-color: rgba(201,169,110,.25); }
.astat-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(201,169,110,.08); border: 1px solid rgba(201,169,110,.15); display: flex; align-items: center; justify-content: center; color: #C9A96E; font-size: 1rem; margin-bottom: 1.25rem; }
.astat-num { font-family: 'Space Grotesk','Syne',sans-serif; font-size: 2rem; font-weight: 700; color: #fff; display: block; }
.astat-label { font-size: .78rem; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .08em; margin-top: .2rem; display: block; }
.astat-change { font-size: .75rem; margin-top: .5rem; display: block; }
.astat-change.up { color: #4ade80; }
.astat-change.down { color: #ef4444; }
.admin-table-wrap { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { font-family: 'Space Grotesk','Syne',sans-serif; font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(201,169,110,.6); padding: .75rem 1rem; text-align: left; border-bottom: 1px solid rgba(201,169,110,.08); white-space: nowrap; }
.admin-table td { padding: 1rem; border-bottom: 1px solid rgba(201,169,110,.05); font-size: .85rem; color: rgba(255,255,255,.75); vertical-align: middle; }
.admin-table tr:hover td { background: rgba(201,169,110,.02); }
.admin-table tr:last-child td { border-bottom: none; }
.admin-label { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(201,169,110,.6); margin-bottom: .5rem; }
.admin-input, .admin-select, .admin-textarea { width: 100%; background: #0a0a0a; border: 1.5px solid rgba(201,169,110,.12); border-radius: 9px; padding: .8rem 1.1rem; color: #fff; font-size: .88rem; transition: border-color .2s, box-shadow .2s; outline: none; font-family: inherit; display: block; }
.admin-input:focus, .admin-select:focus, .admin-textarea:focus { border-color: #C9A96E; box-shadow: 0 0 0 3px rgba(201,169,110,.08); }
.admin-input::placeholder, .admin-textarea::placeholder { color: rgba(255,255,255,.25); }
.admin-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.admin-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A96E' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; background-color: #0a0a0a; padding-right: 2.5rem; cursor: pointer; }
.admin-select option { background: #1a1a1a; color: #fff; }
.admin-mb { margin-bottom: 1.5rem; }
.admin-check-group { display: flex; align-items: center; gap: .75rem; }
.admin-check-group input[type="checkbox"] { width: 18px; height: 18px; accent-color: #C9A96E; cursor: pointer; flex-shrink: 0; }
.admin-check-group label { font-size: .88rem; color: rgba(255,255,255,.7); cursor: pointer; }
.abadge { display: inline-block; padding: .25rem .7rem; border-radius: 50px; font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.abadge-new { background: rgba(59,130,246,.15); border: 1px solid rgba(59,130,246,.3); color: #60a5fa; }
.abadge-read { background: rgba(148,163,184,.1); border: 1px solid rgba(148,163,184,.2); color: #94a3b8; }
.abadge-progress { background: rgba(251,146,60,.15); border: 1px solid rgba(251,146,60,.3); color: #fb923c; }
.abadge-closed, .abadge-active { background: rgba(34,197,94,.12); border: 1px solid rgba(34,197,94,.25); color: #4ade80; }
.abadge-inactive { background: rgba(239,68,68,.12); border: 1px solid rgba(239,68,68,.25); color: #f87171; }
.abadge-featured { background: rgba(201,169,110,.12); border: 1px solid rgba(201,169,110,.3); color: #C9A96E; }
.btn-admin { display: inline-flex; align-items: center; gap: 8px; font-family: 'Space Grotesk','Syne',sans-serif; font-size: .8rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; border-radius: 9px; border: none; cursor: pointer; transition: all .3s; text-decoration: none; padding: .65rem 1.5rem; }
.btn-admin-primary { background: linear-gradient(135deg,#E2C99A,#C9A96E,#9A7840); color: #0D0D0D; }
.btn-admin-primary:hover { opacity: .9; transform: translateY(-1px); color: #0D0D0D; }
.btn-admin-secondary { background: transparent; border: 1.5px solid rgba(201,169,110,.3) !important; color: rgba(255,255,255,.7); }
.btn-admin-secondary:hover { border-color: #C9A96E !important; color: #C9A96E; }
.btn-admin-danger { background: rgba(239,68,68,.1); border: 1px solid rgba(239,68,68,.3) !important; color: #f87171; padding: .5rem 1rem; font-size: .78rem; }
.btn-admin-danger:hover { background: rgba(239,68,68,.2); color: #f87171; }
.btn-admin-sm { padding: .4rem .85rem !important; font-size: .75rem !important; }
.admin-alert { padding: 1rem 1.25rem; border-radius: 9px; margin-bottom: 1.5rem; font-size: .85rem; display: flex; align-items: center; gap: .75rem; }
.admin-alert-success { background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.25); color: #4ade80; }
.admin-alert-error { background: rgba(239,68,68,.1); border: 1px solid rgba(239,68,68,.25); color: #f87171; }
.toggle-switch { position: relative; width: 42px; height: 22px; display: inline-block; flex-shrink: 0; }
.toggle-switch input { opacity: 0; width: 0; height: 0; position: absolute; }
.toggle-slider { position: absolute; cursor: pointer; inset: 0; background: #2a2a2a; border-radius: 22px; transition: .3s; border: 1px solid rgba(201,169,110,.15); }
.toggle-slider::before { content: ''; position: absolute; width: 16px; height: 16px; left: 3px; bottom: 2px; background: #666; border-radius: 50%; transition: .3s; }
input:checked + .toggle-slider { background: rgba(201,169,110,.2); border-color: rgba(201,169,110,.4); }
input:checked + .toggle-slider::before { transform: translateX(18px); background: #C9A96E; }
.admin-login-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: #0D0D0D; position: relative; overflow: hidden; }
.admin-login-wrap::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(201,169,110,.03) 1px,transparent 1px), linear-gradient(90deg,rgba(201,169,110,.03) 1px,transparent 1px); background-size: 60px 60px; }
.admin-login-card { width: 100%; max-width: 420px; background: #161616; border: 1px solid rgba(201,169,110,.15); border-radius: 20px; padding: 3rem; position: relative; z-index: 1; }
.admin-login-logo { text-align: center; margin-bottom: 2.5rem; }
.admin-login-logo img { height: 52px; margin: 0 auto 1rem; }
.admin-login-logo h1 { font-family: 'Space Grotesk','Syne',sans-serif; font-size: 1.35rem; font-weight: 700; color: #fff; margin-bottom: .25rem; }
.admin-login-logo p { font-size: .82rem; color: rgba(255,255,255,.4); }
.skill-rows { display: flex; flex-direction: column; gap: .75rem; }
.skill-row { display: grid; grid-template-columns: 1fr 110px 36px 28px; gap: .75rem; align-items: center; background: #0a0a0a; border: 1px solid rgba(201,169,110,.1); border-radius: 9px; padding: .75rem 1rem; }
.skill-row input[type="text"] { background: transparent; border: none; color: #fff; font-size: .85rem; outline: none; }
.skill-row input[type="range"] { width: 100%; accent-color: #C9A96E; }
.skill-pct { font-size: .75rem; color: #C9A96E; text-align: right; }
.skill-remove { width: 28px; height: 28px; border-radius: 7px; background: rgba(239,68,68,.1); border: 1px solid rgba(239,68,68,.2); color: #f87171; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .2s; flex-shrink: 0; }
.skill-remove:hover { background: rgba(239,68,68,.2); }
.img-preview { max-height: 140px; max-width: 240px; border-radius: 9px; border: 1px solid rgba(201,169,110,.15); object-fit: cover; margin-top: .75rem; display: none; }
.pagination .page-link { background: #161616; border-color: rgba(201,169,110,.15); color: rgba(255,255,255,.5); transition: all .2s; border-radius: 8px !important; margin: 0 2px; }
.pagination .page-link:hover { background: rgba(201,169,110,.08); border-color: #C9A96E; color: #C9A96E; }
.pagination .page-item.active .page-link { background: linear-gradient(135deg,#C9A96E,#9A7840); border-color: #C9A96E; color: #0D0D0D; }

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 1200px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
  .stats-inner { grid-template-columns: 1fr auto 1fr; }
  .stat-divider:nth-child(4), .stat-divider:nth-child(6) { display: none; }
}
@media (max-width: 991px) {
  .admin-sidebar { transform: translateX(-260px); }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-main { margin-left: 0; }
  .about-visual { height: 360px; }
  .f1 { left: 0; } .f2 { right: 0; }
  .portfolio-card.featured { grid-column: span 1; }
  .why-features { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2,1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 767px) {
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-divider { display: none; }
  .stat-item { border-right: 1px solid var(--glass-b); padding: 2.25rem 1rem; }
  .stat-item:nth-child(even) { border-right: none; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .careers-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; padding: 1.25rem 1.5rem; }
  .hstat-div { display: none; }
  .contact-form-wrap { padding: 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .member-hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .member-photo-wrap { max-width: 240px; margin: 0 auto; }
  .footer-bottom p { text-align: center; }
  .about-visual { height: auto; min-height: 300px; }
  .about-float { display: none; }
  .admin-content { padding: 1rem; }
  .skill-row { grid-template-columns: 1fr auto auto; }
  .blog-thumb { height: 180px; }
  .team-photo { height: 200px; }
  .section { padding: clamp(3.5rem,7vw,6rem) 0; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 575px) {
  .hero-title { font-size: clamp(2.4rem,10vw,3.5rem); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-stats { width: 100%; justify-content: space-around; }
  .cta-banner .d-flex { flex-direction: column; }
  .admin-card { padding: 1.25rem; }
  .contact-form-wrap { padding: 1.5rem; border-radius: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero { padding: clamp(6.5rem,12vw,9rem) 0 clamp(3.5rem,6vw,6rem); }
  .why-features { gap: 1rem; }
  .btn-primary.btn-lg, .btn-gold.btn-lg { padding: .9rem 2rem; font-size: .84rem; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}

/* ── THEME TOGGLE ─────────────────────────────── */
.theme-toggle {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1.5px solid var(--glass-b); background: var(--glass);
  backdrop-filter: var(--blur-sm); -webkit-backdrop-filter: var(--blur-sm);
  color: var(--t2); display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: .85rem;
  transition: border-color .3s, color .3s, background .3s, transform .35s var(--espring);
  flex-shrink: 0; position: relative; overflow: hidden;
}
.theme-toggle:hover { border-color: var(--gold-bh); color: var(--gold); background: var(--gold-glow); transform: rotate(22deg); }
.theme-toggle .icon-sun, .theme-toggle .icon-moon { position: absolute; transition: transform .4s var(--espring), opacity .3s; }
.theme-toggle .icon-sun  { opacity: 1; transform: translateY(0) rotate(0); }
.theme-toggle .icon-moon { opacity: 0; transform: translateY(14px) rotate(-90deg); }
[data-theme="light"] .theme-toggle .icon-sun  { opacity: 0; transform: translateY(-14px) rotate(90deg); }
[data-theme="light"] .theme-toggle .icon-moon { opacity: 1; transform: translateY(0) rotate(0); }

/* ── LIGHT MODE OVERRIDES ─────────────────────── */
[data-theme="light"] ::-webkit-scrollbar-track { background: var(--bg2); }
[data-theme="light"] #preloader { background: var(--bg); }
[data-theme="light"] .hero { background: radial-gradient(ellipse 80% 60% at 50% -10%,rgba(139,92,246,.08),transparent), radial-gradient(ellipse 60% 80% at -10% 90%,rgba(201,169,110,.04),transparent), var(--bg); }
[data-theme="light"] #heroCanvas { opacity: 0.2; mix-blend-mode: multiply; }
[data-theme="light"] .hero-grid-lines { background-image: linear-gradient(rgba(26,27,46,.04) 1px,transparent 1px), linear-gradient(90deg,rgba(26,27,46,.04) 1px,transparent 1px); }
[data-theme="light"] .service-card, [data-theme="light"] .team-card, [data-theme="light"] .testimonial-card, [data-theme="light"] .blog-card, [data-theme="light"] .portfolio-card, [data-theme="light"] .why-card, [data-theme="light"] .value-card, [data-theme="light"] .career-card, [data-theme="light"] .faq-item, [data-theme="light"] .tech-item, [data-theme="light"] .ccard, [data-theme="light"] .contact-form-wrap, [data-theme="light"] .about-card-main, [data-theme="light"] .about-float, [data-theme="light"] .hero-stats, [data-theme="light"] .pillar { background: var(--glass); box-shadow: var(--card-shadow); }
[data-theme="light"] .dropdown-menu { background: rgba(255,255,255,.9) !important; box-shadow: 0 12px 40px rgba(0,0,0,.12), var(--glass-sh); }
[data-theme="light"] .dropdown-item { color: var(--t2); }
[data-theme="light"] .dropdown-item:hover { background: var(--gold-glow); color: var(--gold); }
[data-theme="light"] #mobileMenu { background: rgba(255,255,255,.95) !important; }
[data-theme="light"] .btn-close-white { filter: invert(1) grayscale(1) brightness(.2); }
[data-theme="light"] .form-control, [data-theme="light"] .form-select { background: rgba(255,255,255,.7) !important; color: var(--t1) !important; }
[data-theme="light"] .footer { background: linear-gradient(180deg,var(--bg3),var(--bg2)); }
[data-theme="light"] .clients-ticker { background: var(--bg2); }
[data-theme="light"] .ticker-item img { filter: grayscale(100%) brightness(.6); }
[data-theme="light"] .stats-banner { background: linear-gradient(135deg,rgba(139,92,246,.05),rgba(201,169,110,.03)), var(--bg3); }
[data-theme="light"] .page-hero { background: var(--bg); }
[data-theme="light"] .member-hero { background: var(--bg); }
[data-theme="light"] .member-photo { background: var(--glass); }
[data-theme="light"] .ccard { background: var(--glass); }
[data-theme="light"] .page-hero::before { background: radial-gradient(ellipse 60% 70% at 50% 0%,rgba(139,92,246,.07),transparent), radial-gradient(ellipse 40% 40% at 20% 80%,rgba(201,169,110,.04),transparent); }
[data-theme="light"] .cta-banner { background: radial-gradient(ellipse 70% 70% at 50% 50%,rgba(139,92,246,.06),transparent), radial-gradient(ellipse 40% 40% at 50% 50%,rgba(201,169,110,.04),transparent), var(--bg3); }
[data-theme="light"] .pagination .page-link { background: var(--s1); border-color: var(--glass-b); color: var(--t2); }
[data-theme="light"] .pagination .page-link:hover { background: var(--gold-glow); color: var(--gold); }
[data-theme="light"] .pagination .page-item.active .page-link { background: linear-gradient(135deg,var(--gold-l),var(--gold)); border-color: var(--gold); color: #0A0B14; }
[data-theme="light"] .timeline-item::before { background: var(--bg); }
[data-theme="light"] .hero-badge { background: var(--glass); }
[data-theme="light"] .section::before { opacity: .4; }

/* ── ACCESSIBILITY & UX ───────────────────────── */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
main { animation: pageFadeIn .5s var(--ease) both; }
@keyframes pageFadeIn { from{opacity:0;transform:translateY(6px)} to{opacity:1;transform:none} }
.skip-link { position: absolute; top: -100%; left: 1rem; background: var(--gold); color: #0A0B14; padding: .5rem 1rem; border-radius: 0 0 10px 10px; font-size: .85rem; font-weight: 700; z-index: 9999; transition: top .2s; }
.skip-link:focus { top: 0; }
img { loading: lazy; }
.section + .section { margin-top: 0; }
@media (max-width: 991px) { .mobile-nav-link { min-height: 48px; } }
@media (max-width: 575px) { .footer-bottom .d-flex { gap: .5rem; } }
