/* ================================================================
   VALTUTE MEDIA — GLOBAL DESIGN SYSTEM
   Cyber-Cinematic Ultra-Dark Theme
================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Space+Grotesk:wght@300;400;500;600;700;800&display=optional');

/* ── FOUT Prevention ─────────────────────────────────────── */
/* Body is invisible while fonts load (added via JS class).
   After fonts are ready the class is removed and page fades in.
   Fallback: auto-reveal after 300ms via JS timeout. */
html.fonts-loading body {
  opacity: 0;
}
html body {
  opacity: 1;
  transition: opacity 0.15s ease;
}

/* ── CSS Custom Properties ─────────────────────────────── */
:root {
  --bg:         #020205;
  --bg2:        #06060c;
  --surface:    #0a0a14;
  --surface2:   #10101e;
  --border:     rgba(0, 229, 255, 0.15);
  --gold:       #00E5FF;
  --gold-light: #B900FF;
  --violet:     #B900FF;
  --violet-dim: #7700AA;
  --text:       #F0F0FF;
  --text-muted: #8A8A9E;
  --white:      #FFFFFF;
  --radius-sm:  0px;
  --radius:     2px;
  --radius-lg:  6px;
  --radius-xl:  12px;
  --transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow:     0 8px 30px rgba(0, 0, 0, 0.8);
  --shadow-lg:  0 15px 50px rgba(0, 0, 0, 0.9);
  --glow-gold:  0 0 25px rgba(0, 229, 255, 0.35);
  --glow-violet:0 0 35px rgba(185, 0, 255, 0.35);
  --max-w:      1280px;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; }

/* ── Typography ─────────────────────────────────────────── */
h1,h2,h3,h4 { font-family: 'Space Grotesk', sans-serif; line-height: 1.15; letter-spacing: -0.03em; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; text-transform: uppercase; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; text-transform: uppercase; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }
p  { color: var(--text-muted); font-size: 1rem; line-height: 1.75; }

.section-label {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(0, 229, 255, 0.05);
  border: 1px solid rgba(0, 229, 255, 0.3);
  padding: 6px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.1);
}

/* ── Layout ─────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 6%; }
section { padding: 100px 0; }

/* ── Gradient Orbs Background ──────────────────────────── */
.orb-bg {
  position: relative;
  overflow: hidden;
}
.orb-bg::before, .orb-bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}
.orb-bg::before {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.15) 0%, transparent 70%);
  top: -200px; left: -200px;
}
.orb-bg::after {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(185, 0, 255, 0.12) 0%, transparent 70%);
  bottom: -150px; right: -100px;
}
.orb-bg > * { position: relative; z-index: 1; }

/* ── Navigation ─────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 6%;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
  display: flex;
  align-items: center;
  height: auto;
  border-bottom: 1px solid transparent;
}
.site-nav.scrolled {
  background: rgba(2, 2, 5, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
  padding: 12px 6%;
}
.nav-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  gap: 16px;
}
.nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.nav-top-left {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-top-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-bottom {
  display: flex;
  justify-content: center;
  width: 100%;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
}
.site-logo-img {
  display: block;
  width: auto;
  height: 44px;
  max-width: 220px;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-item { position: relative; }
.nav-links a,
.nav-dropdown-trigger {
  font-size: 0.85rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
  background: none;
  border: 0;
  padding: 0;
}
.nav-links a::after,
.nav-dropdown-trigger::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
  box-shadow: var(--glow-gold);
}
.nav-links a:hover,
.nav-links a.active,
.nav-dropdown-trigger:hover,
.nav-dropdown-trigger.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after,
.nav-dropdown-trigger:hover::after,
.nav-dropdown-trigger.active::after { width: 100%; }
.nav-dropdown-trigger { display: inline-flex; align-items: center; gap: 8px; }
.nav-dropdown-trigger::before {
  content: '';
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  order: 2;
  transition: transform var(--transition);
}
.nav-dropdown-menu {
  position: absolute;
  left: 50%;
  top: calc(100% + 8px);
  width: 260px;
  padding: 14px;
  background: rgba(6, 6, 12, 0.96);
  border: 1px solid rgba(0, 229, 255, 0.18);
  box-shadow: 0 24px 70px rgba(0,0,0,0.72), inset 0 1px 0 rgba(255,255,255,0.04);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transform: translate(-50%, 10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 1200;
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
}
.nav-dropdown-menu a {
  display: block;
  padding: 11px 12px;
  border: 1px solid transparent;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.nav-dropdown-menu a::after { display: none; }
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
  color: var(--white);
  border-color: rgba(0,229,255,0.22);
  background: rgba(0,229,255,0.07);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.nav-dropdown:hover .nav-dropdown-trigger::before,
.nav-dropdown:focus-within .nav-dropdown-trigger::before {
  transform: rotate(225deg) translate(-1px, -1px);
}
.nav-cta {
  background: transparent !important;
  color: var(--gold) !important;
  border: 1px solid var(--gold);
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: inset 0 0 10px rgba(0,229,255,0.1);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { 
  background: var(--gold) !important; 
  color: #000 !important; 
  box-shadow: var(--glow-gold); 
  transform: translateY(-2px); 
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); background: var(--gold); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); background: var(--gold); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(2,2,5,0.98);
  z-index: 2000;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 22px;
  padding: 110px 24px 28px;
  overflow-y: auto;
  backdrop-filter: blur(24px);
}
.mobile-menu.open { display: flex; }
.mobile-close {
  position: sticky;
  top: 0;
  align-self: flex-end;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0,229,255,0.35);
  background: rgba(6,6,12,0.92);
  color: var(--white);
  font-size: 1.9rem;
  line-height: 1;
  z-index: 2101;
}
.mobile-menu a,
.mobile-menu-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: var(--transition);
  line-height: 1.15;
  text-align: center;
}
.mobile-menu a:hover { color: var(--gold); text-shadow: var(--glow-gold); transform: scale(1.05); }
.mobile-menu-label { color: var(--white); }
.mobile-services-toggle {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  border: 0;
  background: transparent;
  position: relative;
  padding-right: 22px;
}
.mobile-services-toggle::after {
  content: '';
  position: absolute;
  right: 4px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-60%) rotate(45deg);
  transition: transform var(--transition);
}
.mobile-services-toggle[aria-expanded="true"]::after {
  transform: translateY(-30%) rotate(225deg);
}
.mobile-services {
  display: none;
  grid-template-columns: 1fr;
  gap: 10px;
  width: min(90vw, 520px);
  margin-top: -6px;
}
.mobile-services.open { display: grid; }
.mobile-services a {
  font-size: 0.95rem;
  padding: 12px 12px;
  border: 1px solid rgba(0,229,255,0.16);
  color: var(--text-muted);
  text-align: center;
}
.mobile-services a:hover {
  transform: none;
  background: rgba(0,229,255,0.08);
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  box-shadow: inset 0 0 15px rgba(0,229,255,0.15), 0 0 15px rgba(0,229,255,0.1);
}
.btn-gold::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,229,255,0.3), transparent);
  transition: var(--transition);
}
.btn-gold:hover::before { left: 100%; transition: 0.5s; }
.btn-gold:hover { 
  background: var(--gold); 
  color: #000; 
  box-shadow: var(--glow-gold); 
  transform: translateY(-3px); 
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.05);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0,229,255,0.15);
}
.btn-violet {
  background: transparent;
  color: var(--violet);
  border: 1px solid var(--violet);
  box-shadow: inset 0 0 15px rgba(185,0,255,0.15), 0 0 15px rgba(185,0,255,0.1);
}
.btn-violet:hover { 
  background: var(--violet); 
  color: #000; 
  box-shadow: var(--glow-violet); 
  transform: translateY(-3px); 
}

/* ── Glass Card ─────────────────────────────────────────── */
.glass-card {
  background: rgba(10,10,20,0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.glass-card:hover {
  border-color: rgba(0,229,255,0.4);
  box-shadow: var(--shadow-lg), inset 0 0 20px rgba(0,229,255,0.05);
  transform: translateY(-6px);
}

/* ── Section Header ─────────────────────────────────────── */
.section-header { margin-bottom: 60px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 560px; }
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 0 auto; }

/* ── Divider ─────────────────────────────────────────────── */
.gold-line {
  width: 80px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), transparent);
  margin: 24px 0;
  box-shadow: var(--glow-gold);
}
.section-header.centered .gold-line { margin: 24px auto; }

/* ── Client Ticker ──────────────────────────────────────── */
.ticker-section {
  padding: 40px 0;
  background: var(--bg2);
  border-top: 1px solid rgba(0,229,255,0.1);
  border-bottom: 1px solid rgba(0,229,255,0.1);
  overflow: hidden;
  position: relative;
}
.ticker-section::after {
  content:''; position:absolute; inset:0; pointer-events:none;
  background: linear-gradient(90deg, var(--bg2) 0%, transparent 15%, transparent 85%, var(--bg2) 100%);
}
.ticker-track {
  display: flex;
  gap: 80px;
  width: max-content;
  animation: ticker-scroll 30s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.4;
  transition: opacity var(--transition);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--text);
}
.ticker-item:hover { opacity: 1; color: var(--gold); text-shadow: var(--glow-gold); }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Stats Bar ──────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.stat-item {
  background: var(--surface);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.stat-item:hover { background: var(--surface2); }
.stat-item::before {
  content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transition: transform var(--transition);
}
.stat-item:hover::before { transform: scaleX(1); }
.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  text-shadow: 0 0 20px rgba(0,229,255,0.4);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}
.stat-label { font-size: 0.85rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }

/* ── Service Cards (showcase items handle layout now) ────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: rgba(8, 8, 20, 0.55);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(0, 229, 255, 0.1);
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,229,255,0.04) 0%, transparent 60%);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.service-card:hover::after { opacity: 1; }
.service-card:hover {
  border-color: rgba(0, 229, 255, 0.22);
  box-shadow: 0 24px 80px rgba(0,0,0,0.65), 0 0 40px rgba(0,229,255,0.06);
}
.service-icon {
  width: 64px; height: 64px;
  background: rgba(0,229,255,0.06);
  border: 1px solid rgba(0,229,255,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: rgba(0,229,255,0.15);
  box-shadow: var(--glow-gold);
  transform: scale(1.1) translateZ(8px);
}
.service-card h3 { margin-bottom: 12px; color: var(--white); }
.service-card p  { font-size: 0.9rem; }
.service-card .card-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.service-hub-grid,
.service-detail-grid,
.keyword-grid {
  display: grid;
  gap: 20px;
}
.service-hub-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.service-detail-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.keyword-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.service-panel,
.keyword-panel {
  background:
    linear-gradient(rgba(6, 10, 24, 0.82), rgba(6, 10, 24, 0.82)),
    url('Bg4.png') center/cover no-repeat;
  border: 1px solid rgba(0,229,255,0.13);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.service-panel:hover,
.keyword-panel:hover {
  border-color: rgba(0,229,255,0.38);
  box-shadow: 0 18px 60px rgba(0,0,0,0.55), inset 0 0 18px rgba(0,229,255,0.04);
  transform: translateY(-4px);
}
.service-panel h3,
.keyword-panel h3 { margin-bottom: 10px; color: var(--white); }
.service-panel p,
.keyword-panel p { font-size: 0.92rem; }
.service-panel .card-tag,
.keyword-panel .card-tag {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.service-panel .text-link,
.keyword-panel .text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--gold);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.service-feature-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.service-feature-list li {
  color: var(--text-muted);
  border-left: 2px solid rgba(0,229,255,0.35);
  padding-left: 14px;
}
.service-band { padding: 90px 0; background: var(--bg); }
.service-band.alt { background: var(--bg2); }

/* Showcase image transition */
#showcase-img {
  transition: opacity 0.3s ease, transform 0.8s cubic-bezier(0.16,1,0.3,1);
}

/* ── Portfolio Grid ──────────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.portfolio-grid .featured { grid-column: span 2; }
.portfolio-thumb {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--surface2);
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
}
.portfolio-thumb:hover { border-color: var(--gold); box-shadow: var(--glow-gold); }
.portfolio-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.portfolio-thumb:hover img { transform: scale(1.1); }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2,2,5,0.95) 0%, rgba(2,2,5,0.4) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  opacity: 0;
  transition: var(--transition);
}
.portfolio-thumb:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 8px; text-transform: uppercase; }
.portfolio-overlay span, .portfolio-overlay .tag { font-size: 0.75rem; color: var(--gold); font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; }

/* ── Testimonials ───────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover {
  border-color: rgba(185,0,255,0.4);
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.8), inset 0 0 20px rgba(185,0,255,0.05);
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
}
.star { color: var(--gold-light); font-size: 1.1rem; text-shadow: var(--glow-violet); }
.testimonial-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--white);
  line-height: 1.8;
  margin-bottom: 32px;
}
.testimonial-author { display: flex; align-items: center; gap: 16px; border-top: 1px solid var(--border); padding-top: 24px; }
.author-avatar {
  width: 50px; height: 50px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #000;
  flex-shrink: 0;
}
.author-info .name { font-weight: 700; font-size: 1rem; color: var(--white); margin-bottom: 4px; text-transform: uppercase; }
.author-info .role { font-size: 0.8rem; color: var(--text-muted); font-family: 'Space Grotesk', sans-serif; letter-spacing: 0.05em; }

/* ── FAQ Accordion ──────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 16px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.active { border-color: var(--gold); box-shadow: inset 0 0 15px rgba(0,229,255,0.05); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--white);
  transition: var(--transition);
  user-select: none;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  width: 32px; height: 32px;
  border-radius: var(--radius-sm);
  background: rgba(0,229,255,0.05);
  border: 1px solid rgba(0,229,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item.active .faq-icon { transform: rotate(45deg); background: rgba(0,229,255,0.2); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 32px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 32px 28px;
}

/* ── Hero CTA Section ───────────────────────────────────── */
.cta-section {
  /* Background image with multi-layer dark overlay */
  background:
    linear-gradient(135deg, rgba(0,229,255,0.12) 0%, rgba(2,2,5,0.75) 40%, rgba(185,0,255,0.10) 100%),
    linear-gradient(to bottom, rgba(2,2,5,0.55) 0%, rgba(2,2,5,0.85) 100%),
    url('background2.png') no-repeat center center / cover;
  border: 1px solid rgba(0,229,255,0.25);
  border-radius: var(--radius-lg);
  padding: 100px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0,229,255,0.08), 0 40px 120px rgba(0,0,0,0.8), inset 0 1px 0 rgba(0,229,255,0.15);
}
/* Cyan orb — top right */
.cta-section::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,229,255,0.18) 0%, rgba(0,229,255,0.06) 40%, transparent 70%);
  top: -300px; right: -200px;
  border-radius: 50%;
  pointer-events: none;
  animation: cta-orb-pulse 6s ease-in-out infinite;
}
/* Violet orb — bottom left */
.cta-section::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(185,0,255,0.16) 0%, rgba(185,0,255,0.05) 40%, transparent 70%);
  bottom: -250px; left: -150px;
  border-radius: 50%;
  pointer-events: none;
  animation: cta-orb-pulse 8s ease-in-out infinite reverse;
}
@keyframes cta-orb-pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.65; transform: scale(1.08); }
}
.cta-section h2 { margin-bottom: 20px; color: var(--white); position: relative; z-index: 1; }
.cta-section p  { margin-bottom: 40px; font-size: 1.1rem; position: relative; z-index: 1; }
.cta-section .section-label { position: relative; z-index: 1; }
.cta-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: #010103;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand .logo { margin-bottom: 20px; }
.footer-logo-img {
  display: block;
  width: auto;
  height: 52px;
  max-width: 240px;
  object-fit: contain;
}
.footer-brand p { font-size: 0.9rem; max-width: 300px; }
.footer-socials { display: flex; gap: 16px; margin-top: 28px; flex-wrap: wrap; }
.social-link {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
  color: var(--text-muted);
}
.social-link svg {
  width: 20px;
  height: 20px;
  display: block;
  fill: currentColor;
}
.social-link.brand-facebook { color: #1877f2; }
.social-link.brand-x { color: #f0f0ff; }
.social-link.brand-instagram { color: #e4405f; }
.social-link.brand-whatsapp { color: #25d366; }
.social-link:hover { background: rgba(255,255,255,0.06); border-color: currentColor; box-shadow: 0 0 22px color-mix(in srgb, currentColor 35%, transparent); transform: translateY(-3px); }
.footer-col h4 { font-family: 'Space Grotesk', sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); margin-bottom: 24px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a { font-size: 0.95rem; color: var(--text-muted); transition: var(--transition); }
.footer-col ul a:hover { color: var(--gold); padding-left: 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 32px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: 0.85rem; color: var(--text-muted); }
.footer-bottom a { color: var(--gold); }

/* ── Contact Form ───────────────────────────────────────── */
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; font-family: 'Space Grotesk', sans-serif; color: var(--white); margin-bottom: 10px; letter-spacing: 0.05em; text-transform: uppercase; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  transition: var(--transition);
  outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--gold);
  background: rgba(0,229,255,0.02);
  box-shadow: 0 0 0 1px var(--gold), inset 0 0 10px rgba(0,229,255,0.05);
}
.form-group textarea { resize: vertical; min-height: 160px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

/* ── Scroll Animations ──────────────────────────────────── */
.animate-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.animate-in.in-view {
  opacity: 1;
  transform: translateY(0);
}
.animate-delay-1 { transition-delay: 0.1s !important; }
.animate-delay-2 { transition-delay: 0.2s !important; }
.animate-delay-3 { transition-delay: 0.3s !important; }
.animate-delay-4 { transition-delay: 0.4s !important; }
.animate-delay-5 { transition-delay: 0.5s !important; }

/* ── Process Steps ──────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px; left: 10%;
  width: 80%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,229,255,0.5), transparent);
}
.process-step { text-align: center; padding: 0 24px 48px; position: relative; }
.step-num {
  width: 72px; height: 72px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid rgba(0,229,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--gold);
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  box-shadow: inset 0 0 15px rgba(0,229,255,0.1), var(--glow-gold);
  transform: rotate(45deg);
}
.step-num span { transform: rotate(-45deg); } /* Keep text straight */
.process-step h3 { font-size: 1.1rem; margin-bottom: 12px; color: var(--white); }

/* ── Pricing Cards ──────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  transition: var(--transition);
  position: relative;
}
.pricing-card.featured {
  border-color: rgba(0,229,255,0.5);
  background: linear-gradient(160deg, rgba(0,229,255,0.05), var(--surface));
  box-shadow: var(--glow-gold);
  transform: scale(1.02);
}
.pricing-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #000;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 24px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  box-shadow: var(--glow-gold);
}
.pricing-name { font-family: 'Space Grotesk', sans-serif; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 16px; }
.pricing-price { font-family: 'Space Grotesk', sans-serif; font-size: 3.2rem; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 12px; text-shadow: 0 0 10px rgba(255,255,255,0.2); }
.pricing-price span { font-size: 1rem; font-weight: 500; color: var(--text-muted); }
.pricing-desc { font-size: 0.95rem; margin-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 28px; }
.pricing-features { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
.pricing-features li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.95rem; color: var(--text-muted); }
.pricing-features li .check { color: var(--gold); font-weight: bold; flex-shrink: 0; margin-top: 2px; }

/* ── Blog Cards ─────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-8px); border-color: rgba(185,0,255,0.4); box-shadow: var(--shadow-lg), var(--glow-violet); }
.blog-thumb {
  height: 240px;
  background: var(--surface2);
  overflow: hidden;
}
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.16,1,0.3,1); }
.blog-card:hover .blog-thumb img { transform: scale(1.08); filter: saturate(1.2); }
.blog-body { padding: 32px; }
.blog-category { font-family: 'Space Grotesk', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 12px; }
.blog-body h3 { margin-bottom: 12px; font-size: 1.2rem; color: var(--white); }
.blog-body p { font-size: 0.9rem; margin-bottom: 24px; }
.blog-meta { display: flex; align-items: center; gap: 12px; font-size: 0.85rem; color: var(--text-muted); font-family: 'Space Grotesk', sans-serif; }
.blog-meta .dot { width: 4px; height: 4px; background: var(--text-muted); border-radius: 50%; }

/* ── Career Cards ───────────────────────────────────────── */
.job-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: var(--transition);
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.job-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--gold);
  transform: scaleY(0); transition: transform var(--transition); transform-origin: center;
}
.job-card:hover { border-color: rgba(0,229,255,0.3); background: var(--surface2); transform: translateX(8px); box-shadow: var(--shadow-lg); }
.job-card:hover::before { transform: scaleY(1); }
.job-info h3 { font-size: 1.2rem; margin-bottom: 10px; color: var(--white); }
.job-tags { display: flex; gap: 12px; flex-wrap: wrap; }
.job-tag { font-family: 'Space Grotesk', sans-serif; font-size: 0.75rem; padding: 6px 16px; border-radius: var(--radius-sm); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.tag-dept { background: rgba(185,0,255,0.1); color: var(--violet); border: 1px solid rgba(185,0,255,0.3); }
.tag-type { background: rgba(0,229,255,0.1); color: var(--gold); border: 1px solid rgba(0,229,255,0.3); }
.tag-loc  { background: rgba(255,255,255,0.05); color: var(--text-muted); border: 1px solid rgba(255,255,255,0.15); }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1150px) {
  .nav-bottom { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid .featured { grid-column: span 2; }
  .process-steps::before { display: none; }
}
@media (max-width: 768px) {
  section { padding: 70px 0; }
  .site-nav { padding: 8px 5%; }
  .nav-top { gap: 10px; }
  .nav-top-right { gap: 10px; }
  .nav-cta { display: none; }
  .site-logo-img { height: 36px; max-width: 180px; }
  .footer-logo-img { height: 46px; max-width: 210px; }
  .mobile-menu { gap: 18px; padding-top: 96px; }
  .mobile-menu a { font-size: 1.18rem; }
  .mobile-services-toggle { font-size: 1.18rem; }
  .mobile-services { max-height: 40vh; overflow-y: auto; }
  .mobile-services a { font-size: 0.86rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-grid .featured { grid-column: span 1; }
  .pricing-card.featured { transform: none; }
  .cta-section { padding: 48px 32px; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .site-logo-img { height: 30px; max-width: 150px; }
  .hamburger span { width: 22px; }
  .mobile-menu { padding: 86px 16px 24px; gap: 16px; }
  .mobile-menu a { font-size: 1.08rem; }
  .mobile-services-toggle { font-size: 1.08rem; }
  .mobile-services { width: 100%; }
  .mobile-services a { font-size: 0.82rem; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .stats-grid { grid-template-columns: 1fr; }
  h1 { font-size: 2rem; }
}

/* ── Hero Page-Specific ─────────────────────────────────── */
.page-hero {
  padding: 160px 0 100px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,229,255,0.08) 0%, transparent 70%);
  top: -400px; right: -300px;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero .breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 24px; font-family: 'Space Grotesk', sans-serif; text-transform: uppercase; letter-spacing: 0.1em; }
.page-hero .breadcrumb a { color: var(--text-muted); transition: var(--transition); }
.page-hero .breadcrumb a:hover { color: var(--white); }
.page-hero .breadcrumb span { color: var(--gold); }

/* ── Highlight Span ─────────────────────────────────────── */
.highlight {
  color: var(--gold);
  text-shadow: var(--glow-gold);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  padding: 0 6%;
}
.hero-bg-image {
  position: absolute;
  inset: -60px;
  background: linear-gradient(to right, rgba(2,2,5,0.92) 35%, rgba(2,2,5,0.15) 100%), url('background2.png') no-repeat center right / cover;
  z-index: 0;
  opacity: 0.85;
  pointer-events: none;
  transition: opacity 1s ease;
}
.about-bg-image {
  position: absolute;
  inset: -60px;
  background: linear-gradient(to right, rgba(2,2,5,0.6) 0%, rgba(2,2,5,0.93) 100%), url('background2.png') no-repeat center center / cover;
  z-index: 0;
  opacity: 0.85;
  pointer-events: none;
  transition: opacity 1s ease;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  padding-top: 76px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(0,229,255,0.05);
  border: 1px solid rgba(0,229,255,0.3);
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 28px;
  box-shadow: inset 0 0 10px rgba(0,229,255,0.1);
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
  box-shadow: 0 0 10px var(--gold);
}
@keyframes pulse-dot {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.5; transform:scale(1.5); }
}
.hero h1 {
  font-size: clamp(2.6rem,4.5vw,4.2rem);
  margin-bottom: 24px;
  line-height: 1.1;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
  text-shadow: var(--glow-gold);
}
.hero-desc { font-size: 1.1rem; margin-bottom: 40px; max-width: 480px; line-height: 1.8; color: var(--text-muted); }
.hero-actions { display: flex; gap: 20px; flex-wrap: wrap; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.trust-avatars { display: flex; }
.trust-avatar {
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--bg);
  margin-left: -12px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}
.trust-avatars .a1 { background: var(--gold); margin-left:0; }
.trust-avatars .a2 { background: var(--violet); }
.trust-avatars .a3 { background: #FF0055; }
.trust-avatars .a4 { background: #00FF88; }
.trust-text { font-size: 0.85rem; font-family: 'Space Grotesk', sans-serif; }
.trust-text strong { color: var(--white); display: block; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
.trust-text span { color: var(--text-muted); }

/* Hero visual */
.hero-visual {
  position: relative;
  z-index: 2;
  aspect-ratio: 4/3;
  width: 100%;
}
.hero-reel {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(0,0,0,0.8), var(--glow-gold);
}
.hero-reel img { width:100%; height:100%; object-fit:cover; transform: scale(1.15); transform-origin: center; will-change: transform; }
.reel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,rgba(0,229,255,0.1),rgba(185,0,255,0.1));
}

/* Floating badges */
.hero-badge {
  position: absolute;
  background: rgba(2,2,5,0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(0,229,255,0.3);
  border-radius: var(--radius-sm);
  padding: 16px 24px;
  font-family: 'Space Grotesk', sans-serif;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.badge-top-right {
  top: -30px; right: -30px;
  text-align: center;
}
.badge-top-right .badge-num { font-size:2.2rem;font-weight:800;color:var(--gold);line-height:1; text-shadow: var(--glow-gold); }
.badge-top-right .badge-txt { font-size:0.75rem;color:var(--text-muted);font-weight:600; text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }
.badge-bottom-left {
  bottom: -24px; left: -24px;
  display:flex;
  align-items:center;
  gap:16px;
}
.badge-icon { font-size:1.8rem; }
.badge-info .b-num { font-size:1.15rem;font-weight:700;color:var(--white); }
.badge-info .b-txt { font-size:0.75rem;color:var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }

/* Background orbs */
.hero-orb-1, .hero-orb-2, .hero-orb-3 {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.hero-orb-1 {
  width:700px;height:700px;
  background:radial-gradient(circle,rgba(0,229,255,0.15) 0%,transparent 70%);
  top:-300px;left:-200px;
  transition:transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.hero-orb-2 {
  width:500px;height:500px;
  background:radial-gradient(circle,rgba(185,0,255,0.12) 0%,transparent 70%);
  bottom:-200px;right:-100px;
  transition:transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.hero-orb-3 {
  width:300px;height:300px;
  background:radial-gradient(circle,rgba(0,229,255,0.08) 0%,transparent 70%);
  top:50%;right:30%;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: float-up 2s ease-in-out infinite;
  z-index: 2;
}
.scroll-indicator span { font-size:0.75rem;letter-spacing:0.2em;text-transform:uppercase;color:var(--text-muted); font-family: 'Space Grotesk', sans-serif; font-weight: 600; }
.scroll-mouse {
  width:24px;height:40px;
  border:2px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  display:flex;
  justify-content:center;
  padding-top:6px;
}
.scroll-mouse::after {
  content:'';
  width:4px;height:8px;
  background:var(--gold);
  border-radius: 2px;
  animation:scroll-dot 2s ease-in-out infinite;
  box-shadow: 0 0 10px var(--gold);
}
@keyframes scroll-dot { 0%{transform:translateY(0);opacity:1}100%{transform:translateY(16px);opacity:0} }
@keyframes float-up { 0%,100%{transform:translateX(-50%) translateY(0)}50%{transform:translateX(-50%) translateY(-10px)} }

/* ── About Preview ──────────────────────────────────────── */
.about-preview { background: var(--bg2); padding: 120px 0; }
.about-grid { display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center; }
.about-image {
  position:relative;
  aspect-ratio:4/3;
  width:100%;
}
.exp-badge {
  position:absolute;
  bottom:32px;right:32px;
  z-index:2;
  background:rgba(2,2,5,0.9);
  backdrop-filter:blur(16px);
  border:1px solid rgba(0,229,255,0.3);
  border-radius:var(--radius-sm);
  padding:24px 32px;
  text-align:center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}
.exp-badge .num { font-family:'Space Grotesk',sans-serif;font-size:2.8rem;font-weight:800;color:var(--gold);line-height:1; text-shadow: var(--glow-gold); }
.exp-badge .txt { font-size:0.75rem;color:var(--text-muted);margin-top:8px; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }
.about-bullets { display:flex;flex-direction:column;gap:16px;margin-bottom:40px; }
.about-bullet {
  display:flex;
  align-items:flex-start;
  gap:16px;
  padding:20px 24px;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius-sm);
  transition:var(--transition);
}
.about-bullet:hover { border-color:rgba(0,229,255,0.3); box-shadow: inset 0 0 15px rgba(0,229,255,0.05); transform: translateX(4px); }
.bullet-icon { font-size:1.4rem;flex-shrink:0;margin-top:2px; }
.bullet-text strong { display:block;font-size:1rem;color:var(--white);margin-bottom:4px; font-family: 'Space Grotesk', sans-serif; }
.bullet-text span { font-size:0.85rem;color:var(--text-muted); }

/* ── Sections ────────────────────────────────────────────── */
.clients-section { padding:60px 0; border-top: 1px solid rgba(255,255,255,0.05); }
.services-section { padding:120px 0; background:var(--bg); }
.process-section { padding:120px 0; background:var(--bg2); }
.works-section { padding:60px 0; background:var(--bg); }
.works-thumb {
  position:relative;border-radius:var(--radius-lg);overflow:hidden;
  background:var(--surface);cursor:pointer; border: 1px solid transparent;
  transition: var(--transition);
}
.works-thumb img { width:100%;height:100%;object-fit:cover;transition:transform 0.8s cubic-bezier(0.16,1,0.3,1); }
.works-thumb:hover { border-color: var(--gold); box-shadow: var(--glow-gold); }
.works-thumb:hover img { transform:scale(1.1); }
.works-overlay {
  position:absolute;inset:0;
  background:linear-gradient(to top,rgba(2,2,5,0.95) 0%, transparent 60%);
  display:flex;flex-direction:column;justify-content:flex-end;padding:32px;
  opacity:0;transition:var(--transition);
}
.works-thumb:hover .works-overlay { opacity:1; }
.works-overlay h3 { color:var(--white);font-size:1.15rem;margin-bottom:6px; font-family: 'Space Grotesk', sans-serif; text-transform: uppercase; }
.works-overlay .tag { font-size:0.75rem;color:var(--gold);font-weight:700;letter-spacing:0.15em;text-transform:uppercase; }
.works-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  grid-template-rows:auto auto;
  gap:20px;
}
.works-grid .w1 { grid-column:span 2;aspect-ratio:16/9; }
.works-grid .w2 { aspect-ratio:4/5; }
.works-grid .w3,.works-grid .w4,.works-grid .w5 { aspect-ratio:4/3; }

.testimonials-section { padding:120px 0; background:var(--bg2); }
.stats-section { padding:0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.cta-wrap { padding:120px 0; }

@media(max-width:900px) {
  .hero-inner { grid-template-columns:1fr;gap:60px;padding-top:120px; }
  .hero-visual { display:none; }
  .about-grid { grid-template-columns:1fr; }
  .about-image { display:none; }
  .works-grid { grid-template-columns:1fr 1fr; }
  .works-grid .w1 { grid-column:span 2; }
}
@media(max-width:600px) {
  .works-grid { grid-template-columns:1fr; }
  .works-grid .w1 { grid-column:span 1; }
}
