/* ===========================
   NAGOVSS TECHSOLUTION CSS
   =========================== */

:root {
  --bg: #04040a;
  --bg2: #080812;
  --surface: #0d0d1e;
  --surface2: #12122a;
  --gold: #f5c842;
  --gold2: #e8a800;
  --teal: #00e5c3;
  --accent: #7b5fff;
  --text: #f0f0f8;
  --text2: #9090b8;
  --border: rgba(123,95,255,0.18);
  --radius: 16px;
  --radius-sm: 8px;
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
  --shadow: 0 20px 60px rgba(0,0,0,0.5);
  --glow: 0 0 40px rgba(123,95,255,0.3);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
img { max-width: 100%; display: block; }
::selection { background: var(--accent); color: #fff; }

/* SCROLLBAR */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 4px; }

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

/* ==================
   CURSOR
   ================== */
.cursor, .cursor-trail {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s;
}
.cursor {
  width: 14px; height: 14px;
  background: var(--gold);
  top: -7px; left: -7px;
  mix-blend-mode: difference;
}
.cursor-trail {
  width: 36px; height: 36px;
  border: 1.5px solid var(--accent);
  top: -18px; left: -18px;
  transition: all 0.18s ease;
}
.cursor.active { transform: scale(2.2); }
.cursor-trail.active { transform: scale(1.5); opacity: 0.5; }

/* ==================
   LOADER
   ================== */
.loader {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 9998;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-logo-svg { width: 240px; height: 50px; margin-bottom: 24px; }
.loader-text-svg {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  fill: none;
  stroke: var(--gold);
  stroke-width: 0.5;
  letter-spacing: 6px;
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  animation: drawText 1.5s ease forwards;
}
@keyframes drawText {
  to { stroke-dashoffset: 0; fill: var(--gold); }
}
.loader-bar {
  width: 200px; height: 2px;
  background: var(--surface2);
  border-radius: 2px;
  margin: 16px auto 8px;
  overflow: hidden;
}
.loader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  width: 0%;
  transition: width 0.05s linear;
}
.loader-pct {
  font-family: var(--font-head);
  font-size: 12px;
  color: var(--text2);
  letter-spacing: 2px;
}

/* ==================
   NAV
   ================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 40px;
  transition: all 0.4s ease;
}
.nav.scrolled {
  background: rgba(4,4,10,0.92);
  backdrop-filter: blur(20px);
  padding: 14px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--text);
}
.logo-n { color: var(--gold); }
.logo-dot { color: var(--accent); }
.nav-links { display: flex; gap: 36px; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text2);
  letter-spacing: 0.5px;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 10px 24px;
  background: var(--gold);
  color: #000;
  border-radius: 40px;
  transition: all var(--transition);
}
.nav-cta:hover { background: var(--gold2); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(245,200,66,0.4); }
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none;
  cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ==================
   HERO
   ================== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 120px 40px 80px;
}
#heroCanvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 640px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(123,95,255,0.15);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.5); }
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
  color: var(--text);
}
.hero-title-accent {
  color: var(--gold);
  display: inline-block;
}
.hero-cursor {
  color: var(--gold);
  animation: blink 0.75s step-end infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }
.hero-sub {
  font-size: 16px;
  color: var(--text2);
  margin-bottom: 36px;
  line-height: 1.6;
  letter-spacing: 0.5px;
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-bottom: 32px;
}
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 14px 28px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  position: relative; overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.btn:hover::before { transform: translateX(0); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #000;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(245,200,66,0.5); }
.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }
.btn svg { width: 18px; height: 18px; }
.hero-gst {
  font-size: 12px;
  color: var(--text2);
  letter-spacing: 1px;
}
.hero-gst span {
  color: var(--text2);
  margin-right: 6px;
  font-size: 10px;
  text-transform: uppercase;
}

/* 3D CUBE */
.hero-3d {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  perspective: 600px;
}
.cube-wrap {
  width: 200px; height: 200px;
  perspective: 600px;
  animation: floatCube 6s ease-in-out infinite;
}
@keyframes floatCube {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}
.cube {
  width: 200px; height: 200px;
  position: relative;
  transform-style: preserve-3d;
  animation: rotateCube 12s linear infinite;
}
@keyframes rotateCube {
  from { transform: rotateX(-20deg) rotateY(0deg); }
  to { transform: rotateX(-20deg) rotateY(360deg); }
}
.face {
  position: absolute;
  width: 200px; height: 200px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(245,200,66,0.3);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold);
  background: rgba(4,4,10,0.7);
  backdrop-filter: blur(4px);
}
.face.front  { transform: translateZ(100px); background: rgba(123,95,255,0.12); }
.face.back   { transform: rotateY(180deg) translateZ(100px); background: rgba(245,200,66,0.08); }
.face.left   { transform: rotateY(-90deg) translateZ(100px); background: rgba(0,229,195,0.08); }
.face.right  { transform: rotateY(90deg) translateZ(100px); background: rgba(123,95,255,0.08); }
.face.top    { transform: rotateX(90deg) translateZ(100px); background: rgba(245,200,66,0.12); }
.face.bottom { transform: rotateX(-90deg) translateZ(100px); background: rgba(0,229,195,0.05); }

/* SCROLL HINT */
.scroll-hint {
  position: absolute; bottom: 40px; left: 40px;
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 2px; color: var(--text2);
  text-transform: uppercase; z-index: 2;
}
.scroll-line {
  width: 40px; height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
  animation: scrollLine 2s ease infinite;
}
@keyframes scrollLine { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

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

/* ==================
   MARQUEE
   ================== */
.marquee-strip {
  background: var(--gold);
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid rgba(0,0,0,0.2);
}
.marquee-track {
  display: flex; gap: 40px;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000;
}
.marquee-track .sep { color: rgba(0,0,0,0.5); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ==================
   SERVICES
   ================== */
.services {
  padding: 120px 0;
}
.section-header {
  text-align: center;
  margin-bottom: 72px;
}
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
  padding: 4px 16px;
  border: 1px solid rgba(0,229,195,0.2);
  border-radius: 40px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 16px;
}
.section-title em {
  font-style: normal;
  color: var(--gold);
  background: linear-gradient(135deg, var(--gold), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-sub {
  font-size: 16px;
  color: var(--text2);
  max-width: 500px;
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(40px);
  cursor: pointer;
}
.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(123,95,255,0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover { border-color: rgba(123,95,255,0.4); transform: translateY(-6px); box-shadow: var(--glow); }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after { opacity: 1; }
.service-icon {
  width: 52px; height: 52px;
  background: rgba(123,95,255,0.1);
  border: 1px solid rgba(123,95,255,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  transition: all var(--transition);
}
.service-card:hover .service-icon {
  background: rgba(245,200,66,0.12);
  border-color: rgba(245,200,66,0.3);
  color: var(--gold);
}
.service-icon svg { width: 24px; height: 24px; stroke: var(--accent); transition: stroke var(--transition); }
.service-card:hover .service-icon svg { stroke: var(--gold); }
.service-card h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}
.service-card p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-card ul { margin-bottom: 24px; }
.service-card ul li {
  font-size: 13px;
  color: var(--text2);
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}
.service-card ul li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--gold);
  font-size: 11px;
}
.service-link {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.5px;
  transition: color var(--transition);
}
.service-link:hover { color: var(--gold); }
.service-number {
  position: absolute;
  bottom: 24px; right: 24px;
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  user-select: none;
}

/* ==================
   STATS
   ================== */
.stats-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.stats-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(123,95,255,0.06) 0%, rgba(245,200,66,0.04) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative; z-index: 1;
}
.stat-item {
  text-align: center;
  padding: 40px 20px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--gold);
  display: inline;
}
.stat-plus {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--accent);
}
.stat-item p {
  font-size: 14px;
  color: var(--text2);
  margin-top: 8px;
  letter-spacing: 0.5px;
}

/* ==================
   ABOUT
   ================== */
.about { padding: 120px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.about-3d-wrap {
  width: 360px; height: 360px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.about-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid transparent;
  animation: spinRing 8s linear infinite;
}
.ring1 { width: 100%; height: 100%; border-top-color: rgba(123,95,255,0.4); border-right-color: rgba(123,95,255,0.1); }
.ring2 { width: 78%; height: 78%; border-bottom-color: rgba(245,200,66,0.4); border-left-color: rgba(245,200,66,0.1); animation-duration: 6s; animation-direction: reverse; }
.ring3 { width: 55%; height: 55%; border-top-color: rgba(0,229,195,0.3); border-right-color: rgba(0,229,195,0.1); animation-duration: 4s; }
@keyframes spinRing { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.about-core {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--surface), var(--surface2));
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  color: var(--gold);
  box-shadow: var(--glow);
  z-index: 2;
}
.about-orbit {
  position: absolute; inset: 0;
}
.orbit-item {
  position: absolute;
  top: 50%; left: 50%;
  transform: rotate(var(--a)) translateX(168px) rotate(calc(-1 * var(--a)));
  width: 64px; height: 24px;
  margin-left: -32px; margin-top: -12px;
  display: flex; align-items: center; justify-content: center;
}
.orbit-item span {
  font-size: 11px;
  font-weight: 600;
  color: var(--text2);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3px 10px;
  white-space: nowrap;
  transition: all var(--transition);
}
.orbit-item:hover span { color: var(--gold); border-color: rgba(245,200,66,0.4); }
.about-text { max-width: 560px; }
.about-text .section-title { text-align: left; margin-top: 12px; }
.about-text p {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-text p strong { color: var(--gold); }
.about-badges {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin: 28px 0;
}
.badge {
  display: flex; align-items: center; gap: 8px;
  background: rgba(123,95,255,0.1);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text2);
}
.badge svg { width: 14px; height: 14px; stroke: var(--teal); }
.gst-box {
  display: inline-flex;
  flex-direction: column;
  background: rgba(245,200,66,0.06);
  border: 1px solid rgba(245,200,66,0.2);
  border-radius: 12px;
  padding: 14px 20px;
}
.gst-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text2);
  margin-bottom: 4px;
}
.gst-value {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
}

/* ==================
   PORTFOLIO
   ================== */
.portfolio { padding: 120px 0; }
.portfolio-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
}
.portfolio-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
}
.portfolio-card:hover { border-color: rgba(245,200,66,0.3); transform: scale(1.01); box-shadow: var(--shadow); }
.portfolio-card.large { grid-row: 1 / 3; }
.portfolio-img {
  height: 260px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.portfolio-card.large .portfolio-img { height: 380px; }
.portfolio-3d-item {
  width: 80px; height: 80px;
  border-radius: 16px;
  animation: floatItem 5s ease-in-out infinite;
}
.p3d1 { background: linear-gradient(135deg, var(--gold), var(--accent)); box-shadow: 0 20px 60px rgba(123,95,255,0.5); width: 120px; height: 120px; transform-style: preserve-3d; }
.p3d2 { background: linear-gradient(135deg, var(--teal), #0066ff); box-shadow: 0 20px 60px rgba(0,229,195,0.4); }
.p3d3 { background: linear-gradient(135deg, #38ef7d, #11998e); box-shadow: 0 20px 60px rgba(56,239,125,0.4); }
.p3d4 { background: linear-gradient(135deg, var(--accent), var(--teal)); box-shadow: 0 20px 60px rgba(123,95,255,0.4); }
@keyframes floatItem {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(5deg); }
}
.portfolio-info { padding: 24px 28px; }
.portfolio-tag {
  font-size: 11px; font-weight: 600; letter-spacing: 2px;
  color: var(--teal); text-transform: uppercase;
}
.portfolio-info h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  margin: 8px 0;
  color: var(--text);
}
.portfolio-info p { font-size: 14px; color: var(--text2); line-height: 1.6; }

/* ==================
   PROCESS
   ================== */
.process {
  padding: 120px 0;
  background: linear-gradient(180deg, transparent, rgba(123,95,255,0.04), transparent);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 16px;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 40px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.process-step {
  padding: 0 32px;
  text-align: center;
  position: relative;
}
.step-num {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--gold);
  background: var(--surface);
  border: 1px solid rgba(245,200,66,0.3);
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
  position: relative; z-index: 2;
}
.process-step h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.process-step p { font-size: 14px; color: var(--text2); line-height: 1.7; }

/* ==================
   TESTIMONIALS
   ================== */
.testimonials { padding: 120px 0; }
.testimonial-track {
  display: flex; gap: 24px;
  overflow: hidden;
  position: relative;
}
.testimonial-card {
  min-width: calc(33.33% - 16px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  flex-shrink: 0;
  transition: all 0.4s ease;
}
.stars { font-size: 16px; color: var(--gold); margin-bottom: 20px; letter-spacing: 3px; }
.testimonial-card p {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: #000;
}
.testimonial-author strong { font-size: 15px; color: var(--text); display: block; margin-bottom: 2px; }
.testimonial-author span { font-size: 12px; color: var(--text2); }
.testimonial-dots {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 32px;
}
.testimonial-dots .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none; cursor: pointer;
  transition: all var(--transition);
}
.testimonial-dots .dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ==================
   CONTACT
   ================== */
.contact {
  padding: 120px 0;
  background: linear-gradient(180deg, transparent, rgba(123,95,255,0.05));
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-info .section-title { text-align: left; margin-top: 12px; }
.contact-info > p { font-size: 15px; color: var(--text2); line-height: 1.8; margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
}
.contact-item svg { width: 20px; height: 20px; stroke: var(--gold); flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; font-size: 12px; font-weight: 600; letter-spacing: 1px; color: var(--text2); text-transform: uppercase; margin-bottom: 2px; }
.contact-item span { font-size: 15px; color: var(--text); }
.gst-contact .contact-item span { font-family: var(--font-head); font-size: 16px; color: var(--gold); letter-spacing: 1px; }

/* FORM */
.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text2);
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  text-align: center;
  color: var(--teal);
  font-size: 14px;
  font-weight: 600;
  padding: 12px;
  background: rgba(0,229,195,0.08);
  border: 1px solid rgba(0,229,195,0.2);
  border-radius: 8px;
  display: none;
}
.form-success.show { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ==================
   FOOTER
   ================== */
.footer {
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
.footer-glow {
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 200px;
  background: radial-gradient(ellipse, rgba(123,95,255,0.1), transparent 70%);
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-brand .nav-logo { font-size: 20px; margin-bottom: 16px; display: block; }
.footer-brand p { font-size: 14px; color: var(--text2); line-height: 1.8; max-width: 280px; margin-bottom: 8px; }
.footer-gst {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gold);
  opacity: 0.7;
}
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text2);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 14px;
  color: var(--text2);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--gold); }
.social-links { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.social-btn {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
  color: var(--text2);
  transition: all var(--transition);
}
.social-btn:hover { background: var(--gold); color: #000; border-color: var(--gold); transform: translateY(-2px); }
.footer-tagline { font-size: 13px; color: var(--text2); line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 40px;
  text-align: center;
}
.footer-bottom p { font-size: 13px; color: var(--text2); }

/* BACK TO TOP */
.back-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: #000;
  border: none;
  font-size: 18px; font-weight: 700;
  cursor: pointer;
  z-index: 500;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(20px);
  transition: all var(--transition);
  box-shadow: 0 8px 24px rgba(245,200,66,0.4);
}
.back-top.show { opacity: 1; transform: translateY(0); }
.back-top:hover { background: var(--gold2); transform: translateY(-3px); }

/* ==================
   MOBILE RESPONSIVE
   ================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { order: -1; }
  .about-3d-wrap { width: 280px; height: 280px; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-card.large { grid-row: auto; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 48px 24px; }
  .process-steps::before { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item { border-bottom: 1px solid var(--border); }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-3d { display: none; }
  .cube-wrap { display: none; }
}
@media (max-width: 768px) {
  .nav { padding: 16px 20px; }
  .nav.scrolled { padding: 12px 20px; }
  .nav-links { display: none; flex-direction: column; gap: 20px; position: fixed; inset: 0; top: 64px; background: rgba(4,4,10,0.98); backdrop-filter: blur(24px); align-items: center; justify-content: center; z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 100px 20px 80px; }
  .hero-content { max-width: 100%; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 36px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-card { min-width: calc(100% - 24px); }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { padding: 20px; }
  .scroll-hint { display: none; }
  .about-orbit { display: none; }
  .about-ring { display: none; }
  .about-core { width: 100px; height: 100px; font-size: 36px; }
  .about-3d-wrap { width: 100px; height: 100px; }
  .section-header { margin-bottom: 48px; }
  .services { padding: 80px 0; }
  .about { padding: 80px 0; }
  .portfolio { padding: 80px 0; }
  .process { padding: 80px 0; }
  .testimonials { padding: 80px 0; }
  .contact { padding: 80px 0; }
  .footer { padding: 60px 0 0; }
}
@media (max-width: 480px) {
  .hero-title { letter-spacing: -1px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .about-badges { flex-direction: column; }
  .stat-item { padding: 28px 12px; }
}
