/* ═══════════════════════════════════════════
   NEXUS Digital Agency — Stylesheet
   ═══════════════════════════════════════════ */

/* ── Variables ─────────────────────────── */
:root {
  --bg:       #07070d;
  --bg2:      #0d0d1a;
  --bg-card:  rgba(255,255,255,0.04);
  --border:   rgba(255,255,255,0.08);
  --border2:  rgba(255,255,255,0.12);
  --purple:   #7c3aed;
  --cyan:     #06b6d4;
  --pink:     #ec4899;
  --text:     #f1f5f9;
  --dim:      #94a3b8;
  --muted:    #475569;
  --grad:     linear-gradient(135deg, #7c3aed, #06b6d4);
  --nav-h:    76px;
  --r:        16px;
  --r-sm:     10px;
  --ease:     cubic-bezier(.4,0,.2,1);
  --spring:   cubic-bezier(.34,1.56,.64,1);
}

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

/* ── Custom Cursor ─────────────────────── */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 9999;
  width: 40px; height: 40px;
  border: 2px solid rgba(124,58,237,.6);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%,-50%);
  transition: width .3s var(--ease), height .3s var(--ease),
              border-color .3s var(--ease), opacity .3s var(--ease);
  mix-blend-mode: screen;
}
.cursor-dot {
  position: fixed; top: 0; left: 0; z-index: 9999;
  width: 6px; height: 6px;
  background: var(--purple);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%,-50%);
  transition: transform .05s;
}
.cursor.hover { width: 60px; height: 60px; border-color: var(--cyan); }
@media (hover: none) { .cursor, .cursor-dot { display: none; } }

/* ── Utility ───────────────────────────── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section { padding: 120px 0; }
.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .75rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--cyan);
  padding: 6px 14px;
  border: 1px solid rgba(6,182,212,.25);
  border-radius: 999px;
  background: rgba(6,182,212,.05);
  margin-bottom: 20px;
}
.section-head {
  text-align: center; max-width: 640px; margin: 0 auto 72px;
}
.section-head h2 { font-size: clamp(2rem,4vw,2.75rem); font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.section-head p  { color: var(--dim); font-size: 1.0625rem; }

/* ── Buttons ───────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 999px;
  font-size: .9375rem; font-weight: 600;
  transition: all .25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad); color: #fff;
  box-shadow: 0 0 28px rgba(124,58,237,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 40px rgba(124,58,237,.5); }
.btn-ghost {
  border: 1px solid var(--border2); color: var(--text);
  background: rgba(255,255,255,.04);
}
.btn-ghost:hover { border-color: var(--purple); background: rgba(124,58,237,.1); }
.btn-lg { padding: 18px 36px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; border-radius: var(--r); }

/* ── Scroll Reveal ─────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.visible { opacity: 1; transform: none; }

/* ── Navbar ────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  padding: 0 24px;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), transform .35s var(--ease);
}
.navbar.scrolled {
  background: rgba(7,7,13,.88);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}
.navbar.hidden { transform: translateY(-100%); }
.nav-container {
  max-width: 1240px; margin: 0 auto;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.logo {
  font-size: 1.375rem; font-weight: 800; letter-spacing: -.01em;
  color: var(--text);
}
.logo span { color: var(--purple); }
.nav-links {
  display: flex; align-items: center; gap: 8px;
}
.nav-links a {
  padding: 8px 14px; border-radius: 8px;
  font-size: .9rem; font-weight: 500; color: var(--dim);
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,.06); }
.nav-cta {
  padding: 9px 22px !important;
  background: var(--grad) !important;
  color: #fff !important;
  border-radius: 999px !important;
  font-weight: 600 !important;
}
.nav-cta:hover { opacity: .9; transform: translateY(-1px); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; cursor: pointer;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all .3s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ──────────────────────────────── */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden; padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(100px); opacity: .55;
}
.orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, #7c3aed, transparent 70%);
  top: -200px; right: -150px;
  animation: orbDrift 14s ease-in-out infinite alternate;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #06b6d4, transparent 70%);
  bottom: -100px; left: -100px;
  animation: orbDrift 18s ease-in-out infinite alternate-reverse;
}
.orb-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, #ec4899, transparent 70%);
  top: 40%; left: 40%; transform: translate(-50%,-50%);
  opacity: .2;
  animation: orbDrift 22s ease-in-out infinite alternate;
}
@keyframes orbDrift {
  from { transform: translate(0,0); }
  to   { transform: translate(40px, 30px); }
}
.grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}
.hero-inner {
  position: relative; z-index: 1;
  width: 100%; max-width: 1240px; margin: 0 auto;
  padding: 80px 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  background: rgba(255,255,255,.05); border: 1px solid var(--border2);
  border-radius: 999px; font-size: .8125rem; font-weight: 500; color: var(--dim);
  margin-bottom: 28px;
}
.badge-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--cyan);
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(6,182,212,.5); }
  50%      { opacity: .7; box-shadow: 0 0 0 6px transparent; }
}
.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -.02em;
  margin-bottom: 20px;
}
.hero-title .gradient-text { display: inline-block; }
.hero-desc {
  font-size: 1.0625rem; color: var(--dim);
  max-width: 480px; margin-bottom: 36px; line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.arr { transition: transform .2s; }
.btn-ghost:hover .arr { transform: translateX(4px); }
.hero-stats { display: flex; align-items: center; gap: 24px; }
.stat-val { font-size: 1.75rem; font-weight: 800; }
.stat-lbl { font-size: .75rem; color: var(--muted); margin-top: 2px; }
.stat-sep { width: 1px; height: 36px; background: var(--border); }

/* ── Hero Visual ───────────────────────── */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.vis-ring {
  width: 400px; height: 400px; border-radius: 50%;
  background: linear-gradient(var(--bg), var(--bg)) padding-box,
              linear-gradient(135deg, #7c3aed 0%, #06b6d4 50%, #ec4899 100%) border-box;
  border: 2px solid transparent;
  display: flex; align-items: center; justify-content: center;
  animation: ringRotate 20s linear infinite;
}
@keyframes ringRotate {
  to { transform: rotate(360deg); }
}
.vis-ring-inner {
  width: 340px; height: 340px; border-radius: 50%;
  background: linear-gradient(var(--bg), var(--bg)) padding-box,
              linear-gradient(135deg, rgba(6,182,212,.4), rgba(124,58,237,.4)) border-box;
  border: 1px solid transparent;
  display: flex; align-items: center; justify-content: center;
  animation: ringRotate 15s linear infinite reverse;
}
.vis-center {
  position: relative; display: flex; align-items: center; justify-content: center;
}
.pulse-ring {
  position: absolute; border-radius: 50%; border: 1px solid var(--purple);
  animation: pulseRing 3s ease-out infinite;
}
.pr-1 { width: 80px;  height: 80px;  animation-delay: 0s; }
.pr-2 { width: 120px; height: 120px; animation-delay: .8s; }
.pr-3 { width: 160px; height: 160px; animation-delay: 1.6s; }
@keyframes pulseRing {
  0%   { transform: scale(.8); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}
.vis-icon {
  font-size: 2.5rem; z-index: 1;
  animation: ringRotate 20s linear infinite reverse;
}

/* ── Floating Badges ───────────────────── */
.float-badge {
  position: absolute;
  display: flex; align-items: center; gap: 12px;
  background: rgba(13,13,26,.85);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border2);
  border-radius: 14px;
  padding: 12px 18px;
  white-space: nowrap;
  animation: floatBob 4s ease-in-out infinite;
}
.fb-ico   { font-size: 1.375rem; }
.fb-title { font-size: .875rem; font-weight: 700; }
.fb-sub   { font-size: .75rem; color: var(--dim); }
.fb-tr    { top: 8%; right: -8%; animation-delay: 0s; }
.fb-bl    { bottom: 8%; left: -8%; animation-delay: .7s; }
.fb-tl    { top: 8%; left: -8%; animation-delay: 1.4s; }
.fb-br    { bottom: 8%; right: -8%; animation-delay: 2.1s; }
@keyframes floatBob {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-10px); }
}

/* ── Scroll Cue ────────────────────────── */
.scroll-cue {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--muted); font-size: .75rem; letter-spacing: .08em;
  text-transform: uppercase; z-index: 2;
  animation: scrollFade 2s ease-in-out infinite;
}
.scroll-mouse {
  width: 24px; height: 40px; border: 2px solid var(--muted);
  border-radius: 12px; display: flex; justify-content: center; padding-top: 6px;
}
.scroll-wheel {
  width: 3px; height: 8px; background: var(--muted); border-radius: 2px;
  animation: wheelScroll 2s ease-in-out infinite;
}
@keyframes wheelScroll {
  0%  { transform: translateY(0); opacity: 1; }
  80% { transform: translateY(10px); opacity: 0; }
  100%{ transform: translateY(0); opacity: 0; }
}
@keyframes scrollFade {
  0%,100% { opacity: 1; } 50% { opacity: .4; }
}

/* ── Marquee ───────────────────────────── */
.marquee-wrap {
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,.02);
}
.marquee-track {
  display: flex; gap: 40px; width: max-content;
  animation: marqueeScroll 28s linear infinite;
}
.marquee-track span { font-size: .875rem; font-weight: 600; color: var(--dim); white-space: nowrap; }
.marquee-track .sep { color: var(--purple); font-size: .6rem; opacity: .7; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }

/* ── Services ──────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 36px 32px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; inset: -1px; border-radius: calc(var(--r) + 1px);
  background: var(--grad); z-index: -1;
  opacity: 0; transition: opacity .35s;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 24px 64px rgba(0,0,0,.4); }
.service-card:hover::before { opacity: 1; }
.service-card::after {
  content: '';
  position: absolute; inset: 1px; border-radius: calc(var(--r) - 1px);
  background: var(--bg2); z-index: -1;
}
.svc-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--ig);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.svc-icon svg { width: 26px; height: 26px; color: #fff; }
.service-card h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 12px; }
.service-card p  { font-size: .9rem; color: var(--dim); margin-bottom: 20px; line-height: 1.65; }
.svc-list { display: flex; flex-direction: column; gap: 6px; margin-bottom: 24px; }
.svc-list li {
  font-size: .8125rem; color: var(--dim);
  padding-left: 14px; position: relative;
}
.svc-list li::before {
  content: ''; position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 5px; border-radius: 50%; background: var(--purple);
}
.svc-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .875rem; font-weight: 600; color: var(--cyan);
  transition: gap .2s;
}
.svc-link:hover { gap: 10px; }

/* ── Portfolio ─────────────────────────── */
.work-section { background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 50%, var(--bg) 100%); }
.work-filters {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 52px;
}
.wf-btn {
  padding: 9px 20px; border-radius: 999px;
  font-size: .875rem; font-weight: 600; color: var(--dim);
  border: 1px solid var(--border);
  background: transparent; cursor: pointer;
  transition: all .25s;
}
.wf-btn:hover { color: var(--text); border-color: var(--border2); }
.wf-btn.active { background: var(--grad); color: #fff; border-color: transparent; }
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 24px;
}
.work-item:nth-child(1) { grid-area: 1/1/2/2; }
.work-item:nth-child(2) { grid-area: 1/2/2/4; }
.work-item:nth-child(3) { grid-area: 2/1/3/2; }
.work-item:nth-child(4) { grid-area: 2/2/3/3; }
.work-item:nth-child(5) { grid-area: 2/3/3/4; }
.work-item:nth-child(6) { grid-area: 3/1/4/3; }
.work-item:nth-child(7) { grid-area: 3/3/4/4; }

.work-item { border-radius: var(--r); overflow: hidden; }
.work-item.hidden { display: none; }
.work-thumb {
  position: relative; width: 100%; height: 300px;
  background: var(--bg); overflow: hidden;
  border-radius: var(--r);
  cursor: none;
}
.work-featured .work-thumb { height: 300px; }
/* Give the grid visual height interest */
.work-item:nth-child(1) .work-thumb { height: 280px; }
.work-item:nth-child(3) .work-thumb { height: 280px; }
.work-item:nth-child(4) .work-thumb { height: 280px; }
.work-item:nth-child(5) .work-thumb { height: 280px; }
.work-item:nth-child(6) .work-thumb { height: 300px; }

.thumb-art {
  position: absolute; inset: 0;
  background: #1a1a2e;
  display: flex; align-items: center; justify-content: center;
  transition: transform .5s var(--ease);
}
.ta-circle { width: 120px; height: 120px; border-radius: 50%; background: rgba(255,255,255,.15); }
.ta-lines  { position: absolute; bottom: 30px; left: 30px; display: flex; flex-direction: column; gap: 8px; }
.ta-lines span { display: block; height: 3px; border-radius: 2px; background: rgba(255,255,255,.3); }
.ta-lines span:nth-child(1) { width: 80px; }
.ta-lines span:nth-child(2) { width: 60px; }
.ta-lines span:nth-child(3) { width: 40px; }
/* Browser mock */
.ta-browser {
  width: 75%; background: rgba(0,0,0,.4); border-radius: 10px;
  border: 1px solid rgba(255,255,255,.1); overflow: hidden;
}
.tb-bar {
  padding: 10px 12px; background: rgba(0,0,0,.3);
  display: flex; gap: 6px; align-items: center;
}
.tb-bar span { width: 10px; height: 10px; border-radius: 50%; }
.tb-bar span:nth-child(1) { background: #ff5f57; }
.tb-bar span:nth-child(2) { background: #febc2e; }
.tb-bar span:nth-child(3) { background: #28c840; }
.tb-body { padding: 14px; }
.tb-head { height: 24px; background: rgba(255,255,255,.15); border-radius: 4px; margin-bottom: 12px; }
.tb-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; }
.tb-grid div { height: 36px; background: rgba(255,255,255,.1); border-radius: 4px; }
/* Frame mock */
.ta-frame {
  width: 130px; height: 130px;
  border: 3px solid rgba(255,255,255,.4); border-radius: 8px;
}
.ta-frame-inner {
  margin: 12px; height: calc(100% - 24px);
  background: rgba(255,255,255,.15); border-radius: 4px;
}
/* Play button */
.ta-play {
  width: 70px; height: 70px; border-radius: 50%;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(6px);
  border: 2px solid rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center;
}
.ta-play svg { width: 28px; height: 28px; margin-left: 4px; }
/* Logo mock */
.ta-logo { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.tl-circle { width: 70px; height: 70px; border-radius: 50%; border: 3px solid rgba(255,255,255,.5); }
.tl-lines  { display: flex; flex-direction: column; gap: 6px; align-items: center; }
.tl-lines span { display: block; height: 3px; background: rgba(255,255,255,.4); border-radius: 2px; }
.tl-lines span:nth-child(1) { width: 80px; }
.tl-lines span:nth-child(2) { width: 55px; }
/* Phone mock */
.ta-phone {
  width: 80px; height: 140px;
  background: rgba(0,0,0,.4); border-radius: 16px;
  border: 2px solid rgba(255,255,255,.2);
  padding: 10px 8px;
}
.tp-screen { height: 100%; display: flex; flex-direction: column; gap: 6px; }
.tps-bar   { height: 14px; background: rgba(255,255,255,.2); border-radius: 3px; }
.tps-card  { flex: 1; background: rgba(255,255,255,.15); border-radius: 5px; }
.tps-card.sm { flex: none; height: 22px; }
/* Work overlay */
.work-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,7,13,.95) 0%, rgba(7,7,13,.5) 60%, transparent 100%);
  padding: 28px; display: flex; flex-direction: column; justify-content: flex-end;
  opacity: 0; transition: opacity .35s var(--ease);
}
.work-thumb:hover .work-overlay { opacity: 1; }
.work-thumb:hover .thumb-art    { transform: scale(1.05); }

.work-cat {
  font-size: .7rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--cyan);
  background: rgba(6,182,212,.15); border: 1px solid rgba(6,182,212,.3);
  padding: 4px 10px; border-radius: 999px;
  display: inline-block; margin-bottom: 8px;
}
.work-overlay h4 { font-size: 1.25rem; font-weight: 800; margin-bottom: 6px; }
.work-overlay p  { font-size: .875rem; color: var(--dim); margin-bottom: 16px; line-height: 1.5; }
.work-btn {
  display: inline-flex; align-items: center;
  font-size: .875rem; font-weight: 600; color: #fff;
  border: 1px solid rgba(255,255,255,.3); border-radius: 999px;
  padding: 8px 18px;
  transition: background .2s, border-color .2s;
}
.work-btn:hover { background: rgba(255,255,255,.15); border-color: #fff; }
/* CTA Card */
.work-cta-card { display: flex; }
.work-cta-thumb {
  flex: 1; height: auto !important; min-height: 260px;
  background: rgba(124,58,237,.08) !important;
  border: 2px dashed rgba(124,58,237,.3) !important;
  display: flex !important; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 36px 24px;
  border-radius: var(--r);
  transition: background .3s, border-color .3s;
}
.work-cta-thumb:hover { background: rgba(124,58,237,.12) !important; border-color: var(--purple) !important; }
.work-cta-thumb h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 10px; }
.work-cta-thumb p  { color: var(--dim); font-size: .9rem; margin-bottom: 24px; }

/* Apply gradient bg to thumbs */
.work-item:nth-child(1) .thumb-art { background: linear-gradient(135deg,#667eea,#764ba2); }
.work-item:nth-child(2) .thumb-art { background: linear-gradient(135deg,#0f2027,#203a43,#2c5364); }
.work-item:nth-child(3) .thumb-art { background: linear-gradient(135deg,#f6d365,#fda085); }
.work-item:nth-child(4) .thumb-art { background: linear-gradient(135deg,#1a1a2e,#16213e,#0f3460); }
.work-item:nth-child(5) .thumb-art { background: linear-gradient(135deg,#a18cd1,#fbc2eb); }
.work-item:nth-child(6) .thumb-art { background: linear-gradient(135deg,#43e97b,#38f9d7); }

/* ── About ─────────────────────────────── */
.about-section { overflow: hidden; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-text { padding-right: 20px; }
.about-text h2 { font-size: clamp(1.75rem,3.5vw,2.5rem); font-weight: 800; margin-bottom: 20px; }
.about-text p  { color: var(--dim); margin-bottom: 16px; line-height: 1.8; }
.about-values { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }
.av-item {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 20px 24px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--r-sm);
  transition: border-color .3s;
}
.av-item:hover { border-color: var(--purple); }
.av-num {
  font-family: 'DM Mono', monospace; font-size: .75rem;
  color: var(--purple); background: rgba(124,58,237,.1);
  padding: 4px 10px; border-radius: 6px; white-space: nowrap; align-self: flex-start;
}
.av-item h4 { font-size: .9375rem; font-weight: 700; margin-bottom: 4px; }
.av-item p  { font-size: .875rem; color: var(--dim); line-height: 1.6; }
/* About Visual */
.about-visual { position: relative; }
.about-img-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px; gap: 16px;
}
.aig-item {
  background: var(--g); border-radius: var(--r);
  display: flex; align-items: flex-end;
  padding: 16px; position: relative; overflow: hidden;
  transition: transform .35s var(--ease);
}
.aig-item:hover { transform: scale(1.02); }
.aig-item:nth-child(1) { grid-row: 1/3; }
.aig-item span {
  font-size: .75rem; font-weight: 700;
  background: rgba(0,0,0,.4); backdrop-filter: blur(8px);
  padding: 4px 10px; border-radius: 999px; color: rgba(255,255,255,.9);
}
.about-award {
  position: absolute; bottom: -20px; left: -20px;
  display: flex; align-items: center; gap: 14px;
  background: rgba(13,13,26,.9); backdrop-filter: blur(16px);
  border: 1px solid var(--border2); border-radius: 14px;
  padding: 16px 20px;
}
.aa-icon { font-size: 1.75rem; }
.aa-num  { font-size: 1.5rem; font-weight: 800; }
.aa-lbl  { font-size: .75rem; color: var(--dim); }

/* ── Process ───────────────────────────── */
.process-section { background: var(--bg2); }
.process-grid {
  display: grid; grid-template-columns: repeat(5,1fr); gap: 0;
}
.process-step {
  padding: 36px 28px 36px 0;
  border-right: 1px solid var(--border);
  padding-right: 32px; margin-right: -1px;
  position: relative;
}
.process-step:last-child { border-right: none; }
.process-step + .process-step { padding-left: 32px; }
.ps-num {
  font-family: 'DM Mono', monospace; font-size: 2rem; font-weight: 500;
  color: var(--purple); opacity: .3; margin-bottom: 16px;
  transition: opacity .3s;
}
.process-step:hover .ps-num { opacity: 1; }
.process-step h3 { font-size: 1.0625rem; font-weight: 700; margin-bottom: 10px; }
.process-step p  { font-size: .875rem; color: var(--dim); line-height: 1.7; }

/* ── Testimonials ──────────────────────── */
.testi-section { overflow: hidden; }
.testi-slider  { position: relative; overflow: hidden; border-radius: var(--r); }
.testi-track   {
  display: flex; gap: 24px;
  transition: transform .5s var(--ease);
}
.testi-card {
  flex: 0 0 calc(50% - 12px);
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 40px; position: relative;
  transition: border-color .3s;
}
.testi-card:hover { border-color: var(--border2); }
.tq {
  font-size: 5rem; line-height: 1; color: var(--purple); opacity: .3;
  font-family: Georgia, serif; position: absolute; top: 20px; right: 28px;
}
.testi-card > p { font-size: 1rem; color: var(--dim); line-height: 1.8; margin-bottom: 28px; }
.testi-author {
  display: flex; align-items: center; gap: 16px;
}
.testi-av {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--av); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: .8125rem; font-weight: 700; color: #fff;
}
.ta-name { font-size: .9375rem; font-weight: 700; }
.ta-role { font-size: .8125rem; color: var(--muted); }
.testi-stars { margin-left: auto; color: #f59e0b; letter-spacing: 2px; font-size: .875rem; }
.slider-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 40px; }
.sl-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--bg-card);
  color: var(--text); font-size: 1rem; cursor: pointer;
  transition: all .25s; display: flex; align-items: center; justify-content: center;
}
.sl-btn:hover { border-color: var(--purple); background: rgba(124,58,237,.1); }
.sl-dots { display: flex; gap: 8px; }
.sl-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); border: none; cursor: pointer; padding: 0;
  transition: background .25s, transform .25s;
}
.sl-dot.active { background: var(--purple); transform: scale(1.3); }

/* ── CTA Banner ────────────────────────── */
.cta-banner {
  position: relative; padding: 100px 0; overflow: hidden;
  background: linear-gradient(135deg, rgba(124,58,237,.12), rgba(6,182,212,.08));
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.cta-orb {
  position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none;
}
.cta-o1 {
  width: 500px; height: 500px; background: rgba(124,58,237,.18);
  left: -150px; top: -150px;
}
.cta-o2 {
  width: 400px; height: 400px; background: rgba(6,182,212,.12);
  right: -100px; bottom: -100px;
}
.cta-content { text-align: center; max-width: 660px; margin: 0 auto; }
.cta-content h2 { font-size: clamp(2rem,4vw,3rem); font-weight: 800; margin-bottom: 16px; }
.cta-content p  { color: var(--dim); font-size: 1.0625rem; margin-bottom: 36px; }
.cta-actions    { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Contact ───────────────────────────── */
.contact-section { background: var(--bg2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.contact-info h2 { font-size: clamp(1.75rem,3vw,2.25rem); font-weight: 800; margin-bottom: 16px; }
.contact-info > p { color: var(--dim); margin-bottom: 40px; line-height: 1.8; }
.contact-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.ci {
  display: flex; gap: 16px; align-items: center;
  padding: 16px 20px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--r-sm);
}
.ci-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(124,58,237,.12); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.ci-icon svg { width: 18px; height: 18px; color: var(--purple); }
.ci-lbl { font-size: .75rem; color: var(--muted); }
.ci-val { font-size: .9375rem; font-weight: 600; }
.social-links { display: flex; gap: 12px; flex-wrap: wrap; }
.social-link {
  padding: 8px 16px; border: 1px solid var(--border); border-radius: 999px;
  font-size: .8125rem; font-weight: 600; color: var(--dim);
  transition: all .25s;
}
.social-link:hover { border-color: var(--purple); color: var(--purple); background: rgba(124,58,237,.06); }
/* Form */
.contact-form-wrap {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-group label { font-size: .8125rem; font-weight: 600; color: var(--dim); }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,.04); border: 1px solid var(--border);
  border-radius: var(--r-sm); padding: 12px 16px;
  color: var(--text); font-size: .9375rem;
  transition: border-color .25s;
  outline: none; appearance: none;
}
.form-group select { cursor: pointer; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--purple); background: rgba(124,58,237,.04); }
.form-group textarea { resize: vertical; min-height: 120px; }
::placeholder { color: var(--muted); }
.form-success {
  display: none; margin-top: 16px;
  padding: 14px 20px; border-radius: var(--r-sm);
  background: rgba(6,182,212,.08); border: 1px solid rgba(6,182,212,.25);
  color: var(--cyan); font-size: .9rem; font-weight: 600;
  text-align: center;
}
.form-success.show { display: block; }

/* ── Footer ────────────────────────────── */
.footer {
  background: var(--bg); border-top: 1px solid var(--border);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 60px;
}
.footer-brand p { color: var(--dim); font-size: .9rem; line-height: 1.7; margin: 20px 0 28px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 10px;
  border: 1px solid var(--border); background: var(--bg-card);
  display: flex; align-items: center; justify-content: center;
  color: var(--dim); transition: all .25s;
}
.footer-social a svg { width: 16px; height: 16px; }
.footer-social a:hover { border-color: var(--purple); color: var(--purple); background: rgba(124,58,237,.08); }
.footer-col h4 { font-size: .875rem; font-weight: 700; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: .875rem; color: var(--dim); transition: color .2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border); padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { font-size: .8125rem; color: var(--muted); }
.fb-links { display: flex; gap: 24px; }
.fb-links a { font-size: .8125rem; color: var(--muted); transition: color .2s; }
.fb-links a:hover { color: var(--dim); }

/* ── Back to Top ───────────────────────── */
.btt {
  position: fixed; bottom: 32px; right: 32px; z-index: 500;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--grad); color: #fff; font-size: 1.125rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(124,58,237,.4);
  opacity: 0; pointer-events: none;
  transform: translateY(16px);
  transition: opacity .3s, transform .3s;
  cursor: pointer;
}
.btt.show { opacity: 1; pointer-events: all; transform: none; }
.btt:hover { transform: translateY(-3px); }

/* ── Responsive ────────────────────────── */
@media (max-width: 1100px) {
  .hero-inner { gap: 48px; }
  .vis-ring { width: 340px; height: 340px; }
  .vis-ring-inner { width: 290px; height: 290px; }
  .fb-tr, .fb-bl, .fb-tl, .fb-br { font-size: .8rem; padding: 10px 14px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid  { grid-template-columns: repeat(3, 1fr); }
  .process-step:nth-child(4) { border-right: 1px solid var(--border); }
  .process-step:nth-child(3) { border-right: none; }
  .process-step:nth-child(4) { padding-left: 0; border-top: 1px solid var(--border); padding-top: 32px; margin-top: 0; }
  .process-step:nth-child(5) { padding-left: 32px; border-top: 1px solid var(--border); padding-top: 32px; border-right: none; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-content { max-width: 600px; margin: 0 auto; }
  .hero-desc { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-text { padding-right: 0; }
  .about-award { bottom: -16px; right: -16px; left: auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid  { grid-template-columns: 1fr 1fr; gap: 36px; }
  .work-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .work-item:nth-child(1) { grid-area: auto; }
  .work-item:nth-child(2) { grid-area: auto; }
  .work-item:nth-child(3) { grid-area: auto; }
  .work-item:nth-child(4) { grid-area: auto; }
  .work-item:nth-child(5) { grid-area: auto; }
  .work-item:nth-child(6) { grid-area: auto; }
  .work-item:nth-child(7) { grid-area: auto; }
  .work-item .work-thumb { height: 260px !important; }
  .testi-card { flex: 0 0 100%; }
}

@media (max-width: 640px) {
  .section { padding: 80px 0; }
  .navbar { padding: 0 16px; }
  .nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: rgba(7,7,13,.96); backdrop-filter: blur(24px);
    flex-direction: column; gap: 4px; padding: 20px 16px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%); opacity: 0;
    transition: transform .35s var(--ease), opacity .35s var(--ease);
    z-index: 999;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; }
  .nav-links a { display: block; padding: 12px 16px; border-radius: var(--r-sm); }
  .nav-cta { text-align: center; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .form-row  { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: 1; }
  .about-img-grid { grid-template-rows: 160px 160px; }
  .aig-item:nth-child(1) { grid-row: 1; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat-sep  { display: none; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--border); padding: 28px 0; margin: 0; }
  .process-step + .process-step { padding-left: 0; }
  .process-step:last-child { border-bottom: none; }
  .contact-form-wrap { padding: 24px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .section-head { margin-bottom: 48px; }
  .hero-actions { flex-direction: column; align-items: center; }
}
