/* =============================================
   DB Solutions — style.css
   Premium dark IT / MSP aesthetic
   Graphite + Neon Blue + Glassmorphism
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=Figtree:wght@300;400;500;600&family=Share+Tech+Mono&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #0B0F14;
  --bg-2:        #0f1520;
  --bg-3:        #131a25;
  --surface:     #141b27;
  --surface-2:   #192130;
  --border:      rgba(56,189,248,0.12);
  --border-2:    rgba(56,189,248,0.22);
  --blue:        #38bdf8;
  --blue-dim:    rgba(56,189,248,0.15);
  --blue-mid:    rgba(56,189,248,0.3);
  --cyan:        #22d3ee;
  --purple:      #818cf8;
  --green:       #34d399;
  --text:        #e2e8f0;
  --text-2:      #94a3b8;
  --text-3:      #64748b;
  --font-head:   'Syne', sans-serif;
  --font-body:   'Figtree', sans-serif;
  --font-mono:   'Share Tech Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

/* ── CANVAS ─────────────────────────────── */
#netCanvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .45;
}

/* ── CURSOR ─────────────────────────────── */
#cursor {
  position: fixed;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform .1s;
  box-shadow: 0 0 10px var(--blue);
}
#cursor-ring {
  position: fixed;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(56,189,248,.5);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width .25s, height .25s, border-color .25s, transform .12s;
}
body:has([data-hover]:hover) #cursor-ring {
  width: 52px; height: 52px;
  border-color: var(--blue);
}

.mono { font-family: var(--font-mono); }

/* ── CONTAINER ──────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
  position: relative;
  z-index: 2;
}

/* ── NAV ────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  transition: background .4s;
}
#nav.scrolled {
  background: rgba(11,15,20,.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -.01em;
  margin-right: auto;
}
.logo-db { color: var(--blue); }
.logo-sol { color: var(--text); }
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-2);
  text-decoration: none;
  letter-spacing: .01em;
  transition: color .2s;
}
.nav-links a:hover { color: var(--blue); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: var(--blue);
  color: #0B0F14;
  font-weight: 700;
  font-size: .85rem;
  padding: .55rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: .01em;
  transition: box-shadow .3s, transform .2s;
}
.nav-cta:hover {
  box-shadow: 0 0 20px rgba(56,189,248,.5);
  transform: translateY(-1px);
}

/* ── BUTTONS ─────────────────────────────── */
.btn-glow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  background: var(--blue);
  color: #0B0F14;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  padding: .85rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: none;
  overflow: hidden;
  transition: transform .2s, box-shadow .3s;
}
.btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(56,189,248,.45), 0 8px 20px rgba(0,0,0,.4);
}
.btn-glow-ring {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 2px rgba(56,189,248,.4);
  animation: ringPulse 2.5s ease-in-out infinite;
}
@keyframes ringPulse {
  0%, 100% { opacity: .4; transform: scale(1); }
  50%       { opacity: 0;  transform: scale(1.08); }
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: 1px solid var(--border-2);
  color: var(--text-2);
  font-size: .95rem;
  font-weight: 500;
  padding: .85rem 1.75rem;
  border-radius: 8px;
  text-decoration: none;
  transition: border-color .2s, color .2s, background .2s;
}
.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-dim);
}

/* ── SECTION SHARED ──────────────────────── */
section {
  padding: 7rem 0;
  position: relative;
  z-index: 2;
}
.section-header { margin-bottom: 4rem; }
.section-tag {
  font-size: .75rem;
  letter-spacing: .18em;
  color: var(--blue);
  margin-bottom: .75rem;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
}
.section-title em {
  font-style: normal;
  color: var(--blue);
}

/* ── GLASS CARDS ─────────────────────────── */
.glass-card {
  background: rgba(20,27,39,.6);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, transform .3s;
}
.glass-card:hover {
  border-color: var(--border-2);
  transform: translateY(-3px);
}
.glass-card-glow {
  position: absolute;
  top: -60px; left: -60px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(56,189,248,.12) 0%, transparent 70%);
  pointer-events: none;
  transition: opacity .3s;
}
.glass-card:hover .glass-card-glow { opacity: 1.5; }

/* ── REVEAL ANIMATIONS ───────────────────── */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-up    { transform: translateY(28px); }
.reveal-left  { transform: translateX(-28px); }
.reveal-right { transform: translateX(28px); }
.revealed {
  opacity: 1 !important;
  transform: translate(0) !important;
}

/* ── HERO ────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2.5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
  z-index: 2;
}
.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: .6;
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(56,189,248,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56,189,248,.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 860px; }
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-size: .78rem;
  color: var(--text-3);
  margin-bottom: 2rem;
  letter-spacing: .08em;
}
.hero-label-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 8px var(--blue);
  animation: dotBlink 2s ease-in-out infinite;
}
@keyframes dotBlink {
  0%,100% { opacity: 1; } 50% { opacity: .3; }
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.03em;
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.accent-line { color: var(--blue); }
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-2);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-badges {
  display: flex;
  gap: .6rem;
  justify-content: center;
  flex-wrap: wrap;
}
.badge {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  font-family: var(--font-mono);
  color: var(--text-3);
  border: 1px solid var(--border);
  padding: .3rem .8rem;
  border-radius: 100px;
  background: rgba(56,189,248,.04);
}
.badge-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--blue);
  opacity: .6;
}
.hero-visual {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(56,189,248,.07) 0%, transparent 70%);
  top: -100px; left: -150px;
  animation: orbFloat1 12s ease-in-out infinite;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(129,140,248,.06) 0%, transparent 70%);
  bottom: -80px; right: -100px;
  animation: orbFloat2 15s ease-in-out infinite;
}
.orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(34,211,238,.05) 0%, transparent 70%);
  top: 40%; left: 50%;
  transform: translate(-50%,-50%);
  animation: orbFloat1 10s ease-in-out infinite reverse;
}
@keyframes orbFloat1 {
  0%,100% { transform: translate(0,0); }
  50%     { transform: translate(30px, 20px); }
}
@keyframes orbFloat2 {
  0%,100% { transform: translate(0,0); }
  50%     { transform: translate(-20px, 30px); }
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: var(--text-3);
  font-size: .65rem;
  letter-spacing: .2em;
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--blue));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: .3; } 50% { opacity: 1; }
}

/* ── ABOUT ───────────────────────────────── */
#about { background: var(--bg); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-lead {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.about-lead strong { color: var(--blue); font-weight: 600; }
.about-text > p:last-of-type {
  color: var(--text-2);
  margin-bottom: 2rem;
}
.about-pillars { display: flex; flex-direction: column; gap: 1rem; }
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: .9rem;
  color: var(--text-2);
  line-height: 1.5;
}
.pillar strong { display: block; color: var(--text); font-weight: 600; margin-bottom: .15rem; }
.pillar-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  background: var(--blue-dim);
  border: 1px solid var(--border-2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}
.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.about-card.shifted { margin-top: 1.5rem; }
.about-card h4 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.about-card p { font-size: .875rem; color: var(--text-2); }
.card-icon-wrap {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.card-icon-wrap.blue   { background: rgba(56,189,248,.12);  color: var(--blue);   border: 1px solid rgba(56,189,248,.25); }
.card-icon-wrap.cyan   { background: rgba(34,211,238,.12);  color: var(--cyan);   border: 1px solid rgba(34,211,238,.25); }
.card-icon-wrap.purple { background: rgba(129,140,248,.12); color: var(--purple); border: 1px solid rgba(129,140,248,.25); }

/* ── SKILLS ──────────────────────────────── */
#skills { background: var(--bg-2); }
.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.skill-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.skill-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(56,189,248,.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s;
}
.skill-card:hover {
  border-color: rgba(56,189,248,.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(56,189,248,.08), 0 4px 12px rgba(0,0,0,.3);
}
.skill-card:hover .skill-card-bg { opacity: 1; }
.skill-icon {
  color: var(--blue);
  margin-bottom: 1rem;
}
.skill-card h4 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.skill-card p { font-size: .85rem; color: var(--text-2); margin-bottom: 1.25rem; line-height: 1.6; }
.skill-level {
  height: 2px;
  background: rgba(56,189,248,.12);
  border-radius: 2px;
  overflow: hidden;
}
.skill-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  border-radius: 2px;
  transition: width 1.2s cubic-bezier(.16,1,.3,1);
}
.revealed .skill-bar { width: var(--w); }

/* ── SERVICES ────────────────────────────── */
#services { background: var(--bg); }
.services-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.service-col {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color .3s;
}
.service-col:hover { border-color: var(--border-2); }
.service-col.featured {
  border-color: rgba(56,189,248,.35);
  background: linear-gradient(160deg, rgba(56,189,248,.06) 0%, var(--surface) 60%);
}
.service-col-glow {
  position: absolute;
  top: -40px; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 120px;
  background: radial-gradient(ellipse, rgba(56,189,248,.18) 0%, transparent 70%);
  pointer-events: none;
}
.service-featured-badge {
  font-size: .68rem;
  letter-spacing: .15em;
  color: var(--blue);
  border: 1px solid rgba(56,189,248,.4);
  padding: .2rem .6rem;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 1.25rem;
  background: rgba(56,189,248,.08);
}
.service-num {
  font-size: .75rem;
  color: var(--text-3);
  margin-bottom: .5rem;
}
.service-col-icon { color: var(--blue); margin-bottom: .75rem; }
.service-col-header h3 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: .6rem;
}
.service-desc { font-size: .875rem; color: var(--text-2); margin-bottom: 1.5rem; }
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: 1.75rem;
}
.service-list li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .875rem;
  color: var(--text-2);
}
.list-arrow { color: var(--blue); font-size: .8rem; }
.service-link {
  font-size: .875rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: gap .2s;
}
.service-link:hover { gap: .7rem; }

/* ── SECURITY ────────────────────────────── */
#security {
  background: var(--bg-2);
  padding: 7rem 0;
  overflow: hidden;
}
.security-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(56,189,248,.05) 0%, transparent 70%);
}
.security-scanline {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(56,189,248,.5), transparent);
  animation: scanline 4s ease-in-out infinite;
}
@keyframes scanline {
  0%   { top: 0; opacity: .6; }
  100% { top: 100%; opacity: 0; }
}
.security-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.security-left .section-title { margin-bottom: 1.25rem; }
.security-left > p { color: var(--text-2); margin-bottom: 2.5rem; }
.sec-features { display: flex; flex-direction: column; gap: 1.1rem; }
.sec-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.sec-feature-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  margin-top: .45rem;
  box-shadow: 0 0 6px var(--blue);
}
.pulse { animation: featurePulse 2.5s ease-in-out infinite; }
@keyframes featurePulse {
  0%,100% { box-shadow: 0 0 4px var(--blue); }
  50%     { box-shadow: 0 0 14px var(--blue), 0 0 28px rgba(56,189,248,.3); }
}
.sec-feature strong { display: block; font-size: .95rem; font-weight: 600; margin-bottom: .15rem; }
.sec-feature span { font-size: .85rem; color: var(--text-2); }
.security-visual {
  position: relative;
  width: 360px;
  height: 360px;
  margin: 0 auto;
}
.sec-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--border);
  animation: ringRotate 20s linear infinite;
}
.sec-ring-1 { inset: 0; animation-duration: 20s; }
.sec-ring-2 { inset: 30px; animation-duration: 14s; animation-direction: reverse; border-color: rgba(56,189,248,.2); }
.sec-ring-3 { inset: 60px; animation-duration: 9s; }
@keyframes ringRotate { to { transform: rotate(360deg); } }
.sec-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 100px; height: 100px;
  border-radius: 50%;
  background: rgba(56,189,248,.08);
  border: 1px solid rgba(56,189,248,.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .25rem;
  box-shadow: 0 0 30px rgba(56,189,248,.15), inset 0 0 20px rgba(56,189,248,.05);
}
.sec-center-label { font-size: .55rem; color: var(--blue); letter-spacing: .15em; }
.sec-node {
  position: absolute;
  top: 50%; left: 50%;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid rgba(56,189,248,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: .62rem;
  color: var(--blue);
  transform-origin: 0 0;
  animation: nodeOrbit 20s linear infinite;
}
.sec-node:nth-child(5) { animation-delay: -3.3s; }
.sec-node:nth-child(6) { animation-delay: -6.6s; }
.sec-node:nth-child(7) { animation-delay: -10s; }
.sec-node:nth-child(8) { animation-delay: -13.3s; }
.sec-node:nth-child(9) { animation-delay: -16.6s; }
@keyframes nodeOrbit {
  from { transform: rotate(var(--angle)) translateX(150px) rotate(calc(-1 * var(--angle))); }
  to   { transform: rotate(calc(var(--angle) + 360deg)) translateX(150px) rotate(calc(-1 * (var(--angle) + 360deg))); }
}

/* ── EXPERTISE ───────────────────────────── */
#expertise { background: var(--bg); }
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.exp-item {
  background: var(--bg);
  padding: 2rem;
  transition: background .3s;
  position: relative;
}
.exp-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(56,189,248,.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s;
}
.exp-item:hover { background: var(--surface); }
.exp-item:hover::after { opacity: 1; }
.exp-num { font-size: .7rem; color: var(--blue); margin-bottom: .75rem; letter-spacing: .1em; }
.exp-item h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .6rem;
}
.exp-item p { font-size: .85rem; color: var(--text-2); line-height: 1.65; margin-bottom: 1rem; }
.exp-tags { display: flex; gap: .4rem; flex-wrap: wrap; }
.exp-tags span {
  font-size: .7rem;
  font-family: var(--font-mono);
  color: var(--blue);
  border: 1px solid rgba(56,189,248,.25);
  padding: .15rem .5rem;
  border-radius: 100px;
  background: rgba(56,189,248,.06);
}

/* ── STATS ───────────────────────────────── */
#stats { background: var(--bg-2); }
.stats-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(56,189,248,.04) 0%, transparent 70%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.stat-block {
  background: var(--surface);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: background .3s;
}
.stat-block:hover { background: var(--surface-2); }
.stat-value {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: .75rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: .1rem;
}
.stat-plus { font-size: 2rem; margin-top: .5rem; }
.stat-label {
  font-size: .85rem;
  color: var(--text-2);
  margin-bottom: 1.25rem;
}
.stat-bar {
  height: 2px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.stat-bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transition: width 1.5s cubic-bezier(.16,1,.3,1);
  border-radius: 2px;
}
.revealed .stat-bar-fill { width: var(--w); }

/* ── PROCESS TIMELINE ────────────────────── */
#process { background: var(--bg); }
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.timeline-track {
  position: absolute;
  top: 1.5rem;
  left: calc(12.5% + 1.5rem);
  right: calc(12.5% + 1.5rem);
  height: 1px;
  background: linear-gradient(90deg, var(--border), rgba(56,189,248,.3), var(--border));
}
.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.tl-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(56,189,248,.35);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  color: var(--blue);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.tl-content {
  width: 100%;
  padding: 1.5rem;
}
.tl-content h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.tl-content p { font-size: .85rem; color: var(--text-2); margin-bottom: 1rem; line-height: 1.6; }
.tl-duration { font-size: .7rem; color: var(--blue); letter-spacing: .1em; }

/* ── CONTACT ─────────────────────────────── */
#contact {
  background: var(--bg-2);
  overflow: hidden;
}
.contact-glow-1 {
  position: absolute;
  top: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(56,189,248,.05) 0%, transparent 70%);
  pointer-events: none;
}
.contact-glow-2 {
  position: absolute;
  bottom: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(129,140,248,.05) 0%, transparent 70%);
  pointer-events: none;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
}
.contact-left .section-title { margin-bottom: 1rem; }
.contact-left > p { color: var(--text-2); margin-bottom: 2rem; }
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-info-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9rem;
  color: var(--text-2);
}
.ci-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--blue-dim);
  border: 1px solid var(--border-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.contact-form { padding: 2.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-size: .68rem;
  color: var(--blue);
  letter-spacing: .1em;
  margin-bottom: .4rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(11,15,20,.8);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: .75rem 1rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: .9rem;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(56,189,248,.5);
  box-shadow: 0 0 0 3px rgba(56,189,248,.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--bg); }
.contact-submit {
  width: 100%;
  justify-content: center;
  font-family: var(--font-head);
}

/* ── FOOTER ──────────────────────────────── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
  position: relative;
  z-index: 2;
}
.footer-glow {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 120px;
  background: radial-gradient(ellipse, rgba(56,189,248,.06) 0%, transparent 70%);
  pointer-events: none;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  font-size: .875rem;
  color: var(--text-2);
  margin-bottom: 1.25rem;
  max-width: 260px;
}
.footer-badges { display: flex; gap: .4rem; flex-wrap: wrap; }
.f-badge {
  font-size: .68rem;
  font-family: var(--font-mono);
  color: var(--text-3);
  border: 1px solid var(--border);
  padding: .2rem .6rem;
  border-radius: 100px;
}
.footer-links-col { display: flex; flex-direction: column; gap: .65rem; }
.f-col-title {
  font-size: .7rem;
  color: var(--blue);
  letter-spacing: .15em;
  margin-bottom: .25rem;
}
.footer-links-col a {
  font-size: .875rem;
  color: var(--text-3);
  text-decoration: none;
  transition: color .2s;
}
.footer-links-col a:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.footer-separator { flex: 1; height: 1px; background: var(--border); }
.footer-copy { font-size: .72rem; color: var(--text-3); letter-spacing: .05em; }

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 1024px) {
  .skills-grid,
  .services-columns,
  .expertise-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid,
  .security-inner,
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-cards { grid-template-columns: 1fr 1fr; }
  .about-card.shifted { margin-top: 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline-track { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .security-visual { width: 280px; height: 280px; }
}
@media (max-width: 768px) {
  section { padding: 5rem 0; }
  .nav-links { display: none; }
  .skills-grid,
  .services-columns,
  .expertise-grid,
  .stats-grid,
  .timeline { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .section-title { font-size: clamp(1.75rem, 5vw, 2.5rem); }
  .hero-title { font-size: clamp(2rem, 9vw, 4rem); }
  body { cursor: auto; }
  #cursor, #cursor-ring { display: none; }
}
