/* ============================================================
   B2MIN — Luxury 3D Spatial Design System (Awwwards / Vercel Grade)
   ============================================================ */

/* Local / System Premium Typography Stack (No Google Font API dependency for Wappalyzer) */
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: local('Space Grotesk'), local('SpaceGrotesk-Regular'), system-ui, -apple-system, sans-serif;
}

@font-face {
  font-family: 'Space Mono';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: local('Space Mono'), local('SpaceMono-Regular'), monospace;
}

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

:root {
  --c: #00F0FF;          /* Electric Cyan */
  --v: #8B5CF6;          /* Deep Violet */
  --e: #00FF9D;          /* Mint Emerald */
  --gold: #FFB800;       /* Luxury Amber Gold */
  --bg: #020308;         /* Cosmic Midnight Obsidian */
  --card-bg: rgba(10, 16, 32, 0.5);
  --card-border: rgba(0, 240, 255, 0.16);
}

html { 
  scroll-behavior: auto; 
  overflow-x: hidden; 
  background: var(--bg);
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: #fff;
  overflow-x: hidden;
  width: 100%;
  letter-spacing: -0.01em;
}

/* ── WebGL Canvas ─ */
#cvs {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none;
  width: 100vw; height: 100vh;
}

/* ── Ambient Background Lighting ─ */
.glow-blob {
  position: fixed; border-radius: 50%; pointer-events: none; z-index: 1; filter: blur(160px); opacity: 0.07;
  animation: pulseGlow 10s ease-in-out infinite alternate;
  mix-blend-mode: screen;
}
.glow-1 { top: -10%; left: 20%; width: 650px; height: 650px; background: var(--c); }
.glow-2 { top: 40%; right: -10%; width: 750px; height: 750px; background: var(--v); }
.glow-3 { bottom: -10%; left: 10%; width: 700px; height: 700px; background: var(--e); }

@keyframes pulseGlow {
  0% { transform: scale(1) translate(0, 0); opacity: 0.05; }
  100% { transform: scale(1.15) translate(30px, -20px); opacity: 0.10; }
}

/* ── Nav ─ */
#nav {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
  z-index: 999;
  width: min(94%, 1280px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 24px;
  background: rgba(4, 7, 18, 0.85);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 100px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  gap: 12px;
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; min-width: 0; flex-shrink: 1;
}
.nav-logo-icon {
  width: 36px; height: 38px; position: relative; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.nav-logo-icon svg { width: 100%; height: 100%; filter: drop-shadow(0 0 10px rgba(0,240,255,0.6)); }
.nav-brand { font-size: 1.25rem; font-weight: 800; letter-spacing: 0.08em; color: #fff; line-height: 1; }
.nav-sub { font-size: 0.48rem; letter-spacing: 0.12em; color: var(--c); text-transform: uppercase; margin-top: 3px; font-weight: 700; white-space: nowrap; }

.nav-links { display: flex; gap: 18px; flex-shrink: 0; }
.nav-links a {
  color: rgba(255,255,255,0.65); font-size: 0.82rem; font-weight: 600;
  text-decoration: none; transition: all 0.3s; position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
  background: linear-gradient(90deg, var(--c), var(--v));
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-links a:hover { color: #fff; text-shadow: 0 0 12px rgba(0,240,255,0.5); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  position: relative; overflow: hidden;
  padding: 10px 22px; border-radius: 100px;
  background: linear-gradient(135deg, var(--c) 0%, #3B82F6 50%, var(--v) 100%);
  color: #020308; font-weight: 800; font-size: 0.82rem;
  text-decoration: none; text-transform: uppercase; letter-spacing: 0.06em;
  box-shadow: 0 0 25px rgba(0,240,255,0.4);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap; flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.3);
}
.nav-cta::before {
  content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: rotate(45deg) translateY(-100%);
  transition: transform 0.6s;
}
.nav-cta:hover::before { transform: rotate(45deg) translateY(100%); }
.nav-cta:hover { box-shadow: 0 0 45px rgba(0,240,255,0.8); transform: translateY(-2px) scale(1.02); }

.cta-full { display: inline; }
.cta-short { display: none; }

.status-dot {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.68rem; letter-spacing: 0.12em; color: var(--e);
  font-family: 'Space Mono', monospace; font-weight: 700;
  background: rgba(0,255,157,0.08); padding: 5px 12px; border-radius: 100px;
  border: 1px solid rgba(0,255,157,0.25); flex-shrink: 0;
}
.dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--e);
  box-shadow: 0 0 12px var(--e); animation: blink 1.4s infinite;
  flex-shrink: 0;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

/* ── Scroll wrapper ─ */
#scroll-wrapper {
  position: relative; z-index: 10; width: 100%;
}

/* ── Sections ─ */
.sec {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 48px;
  width: 100%;
  perspective: 1200px;
}

/* ── HERO ─ */
#hero {
  min-height: 100vh; flex-direction: column;
  text-align: center; justify-content: center;
  background: radial-gradient(ellipse 70% 55% at 50% 50%, rgba(0,240,255,0.09) 0%, transparent 80%);
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 20px; border-radius: 100px;
  background: rgba(0,240,255,0.06); border: 1px solid rgba(0,240,255,0.25);
  font-family: 'Space Mono', monospace;
  font-size: clamp(0.65rem, 1.8vw, 0.78rem); 
  letter-spacing: 0.18em; color: var(--c);
  text-transform: uppercase; margin-bottom: 28px;
  opacity: 0; transform: translateY(30px);
  box-shadow: 0 0 20px rgba(0,240,255,0.15);
  max-width: 90%; word-break: break-word; text-align: center;
}

.hero-h1 {
  font-size: clamp(2.4rem, 7vw, 7.5rem);
  font-weight: 800; line-height: 1.02;
  letter-spacing: -0.035em;
  margin-bottom: 32px;
  opacity: 0; transform: translateY(50px) scale(0.96);
  word-break: break-word;
}

.hero-h1 em {
  font-style: normal; position: relative; display: inline-block;
  background: linear-gradient(135deg, var(--c) 0%, #3B82F6 40%, var(--v) 80%, var(--e) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 35px rgba(0,240,255,0.3));
}

.hero-sub {
  font-size: clamp(0.95rem, 1.65vw, 1.3rem);
  color: rgba(255,255,255,0.65); max-width: 720px; margin: 0 auto 44px;
  line-height: 1.75; opacity: 0; transform: translateY(35px);
  padding: 0 10px; font-weight: 400;
}

.hero-btns {
  display: flex; gap: 18px; justify-content: center; align-items: center;
  opacity: 0; transform: translateY(35px);
  flex-wrap: wrap;
}

.btn-p {
  position: relative; overflow: hidden;
  padding: 16px 36px; border-radius: 100px;
  background: linear-gradient(135deg, var(--c), #3B82F6);
  color: #020308; font-weight: 800; font-size: 0.95rem;
  text-decoration: none; box-shadow: 0 0 32px rgba(0,240,255,0.5);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-p:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 0 55px rgba(0,240,255,0.85); }

.btn-s {
  padding: 16px 36px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff; font-weight: 600; font-size: 0.95rem;
  text-decoration: none; backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1); background: rgba(255,255,255,0.06);
}
.btn-s:hover { border-color: var(--v); background: rgba(139,92,246,0.18); transform: translateY(-3px); box-shadow: 0 0 30px rgba(139,92,246,0.3); }

/* STATS ROW IN HERO */
.hero-stats-row {
  display: flex; justify-content: center; gap: 48px; margin-top: 50px;
  padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.08);
  max-width: 900px; width: 100%;
}
.hero-stat-item { text-align: center; }
.hero-stat-num { font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 800; color: var(--c); font-family: 'Space Grotesk', sans-serif; line-height: 1; }
.hero-stat-lbl { font-size: 0.72rem; color: rgba(255,255,255,0.5); font-family: 'Space Mono', monospace; margin-top: 6px; text-transform: uppercase; letter-spacing: 0.1em; }

.hero-scroll-hint {
  position: absolute; bottom: 25px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: 'Space Mono', monospace; font-size: 0.68rem; letter-spacing: 0.18em;
  color: rgba(255,255,255,0.4); text-transform: uppercase;
  animation: floatHint 2.2s ease-in-out infinite alternate;
}
@keyframes floatHint { 0%{transform:translateX(-50%) translateY(0)} 100%{transform:translateX(-50%) translateY(8px)} }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(var(--c), transparent); margin: 0 auto; }

/* ── Section Headings ─ */
.sec-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.74rem; letter-spacing: 0.25em; color: var(--c);
  text-transform: uppercase; margin-bottom: 18px;
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700;
}
.sec-label::before { content: '◈'; color: var(--c); font-size: 0.8rem; }

.sec-title {
  font-size: clamp(2.3rem, 5.2vw, 5.8rem);
  font-weight: 800; line-height: 1.02;
  letter-spacing: -0.03em; margin-bottom: 24px;
  word-break: break-word;
}

.sec-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--c), var(--v));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 25px rgba(0,240,255,0.25));
}

.sec-title.em2 em {
  background: linear-gradient(135deg, var(--e), var(--c));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.sec-title.em3 em {
  background: linear-gradient(135deg, var(--v), #F472B6);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.sec-title.em4 em {
  background: linear-gradient(135deg, var(--gold), var(--v));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 25px rgba(255,184,0,0.3));
}

.sec-body {
  font-size: clamp(0.98rem, 1.4vw, 1.2rem);
  color: rgba(255,255,255,0.62); line-height: 1.75; max-width: 600px;
}

/* ── Horizontal Split Layouts ─ */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 70px; align-items: center; max-width: 1240px; width: 100%;
}

.split.rev { direction: rtl; }
.split.rev > * { direction: ltr; }

/* ── Service Detail Bullet List ─ */
.service-details-list {
  display: flex; flex-direction: column; gap: 14px; margin-top: 24px;
}
.sd-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.94rem; color: rgba(255,255,255,0.8); line-height: 1.5;
}
.sd-icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(0,240,255,0.12); border: 1px solid var(--c);
  display: flex; align-items: center; justify-content: center;
  color: var(--c); font-size: 0.72rem; flex-shrink: 0; margin-top: 2px;
  font-family: 'Space Mono', monospace; font-weight: 700;
}

/* ── Feature Pills ─ */
.feat-pills {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px;
}
.pill {
  padding: 8px 18px; border-radius: 100px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  font-family: 'Space Mono', monospace;
  font-size: 0.78rem; color: rgba(255,255,255,0.75);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.pill:hover { border-color: var(--c); color: var(--c); background: rgba(0,240,255,0.1); transform: translateY(-2px); box-shadow: 0 0 20px rgba(0,240,255,0.25); }

/* ── Interactive Shell (Glassmorphic Metallic) ─ */
.widget-shell {
  background: rgba(10, 16, 32, 0.6);
  border: 1px solid rgba(0, 240, 255, 0.22);
  border-radius: 24px; padding: 30px;
  position: relative; overflow: hidden;
  backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.12);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s;
  transform-style: preserve-3d;
}
.widget-shell:hover {
  border-color: rgba(0, 240, 255, 0.5);
  transform: translateY(-4px) rotateX(2deg) rotateY(-2deg);
}
.widget-shell::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--c), var(--v), transparent);
}

/* ERP Terminal */
.term-tabs { display: flex; gap: 10px; margin-bottom: 16px; flex-wrap: wrap; }
.tab-btn {
  padding: 8px 15px; border-radius: 100px; border: 1px solid transparent;
  font-family: 'Space Mono', monospace; font-size: 0.75rem; cursor: pointer;
  background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.65);
  transition: all 0.25s; touch-action: manipulation; font-weight: 700;
}
.tab-btn.on { background: rgba(0,240,255,0.18); border-color: var(--c); color: var(--c); box-shadow: 0 0 15px rgba(0,240,255,0.25); }
.term-out {
  font-family: 'Space Mono', monospace; font-size: 0.82rem;
  background: rgba(2, 4, 10, 0.92); padding: 18px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.09); color: #a5f3fc;
  min-height: 125px; line-height: 1.75; word-break: break-word;
  box-shadow: inset 0 2px 10px rgba(0,0,0,0.8);
}

/* Design Palette Preview Box */
.design-preview-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 14px;
}
.design-swatch {
  height: 48px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: flex-end; padding: 6px 8px;
  font-family: 'Space Mono', monospace; font-size: 0.65rem; font-weight: 700; color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}

/* Ping Widget */
.ping-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 16px; border-radius: 12px;
  background: rgba(255,255,255,0.04); margin-bottom: 10px;
  font-family: 'Space Mono', monospace; font-size: 0.8rem; gap: 10px;
  border: 1px solid rgba(255,255,255,0.06);
}
.ping-val { color: var(--e); font-size: 0.75rem; flex-shrink: 0; font-weight: 700; }

/* Slider Widget */
.slider-row { display: flex; justify-content: space-between; font-size: 0.9rem; margin-bottom: 12px; }
.range-wrap { margin-bottom: 20px; }
.range-wrap input[type=range] { width: 100%; accent-color: var(--c); height: 6px; cursor: pointer; }
.calc-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.calc-box { padding: 16px; border-radius: 14px; background: rgba(0,240,255,0.07); border: 1px solid rgba(0,240,255,0.25); text-align: center; }
.calc-num { font-size: 1.55rem; font-weight: 800; color: var(--c); }
.calc-lbl { font-size: 0.7rem; color: rgba(255,255,255,0.5); margin-top: 4px; font-family: 'Space Mono', monospace; }

/* SLA Boxes */
.sla-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.sla-box { padding: 22px; border-radius: 16px; background: rgba(139,92,246,0.14); border: 1px solid rgba(139,92,246,0.35); }
.sla-num { font-size: 2rem; font-weight: 800; color: var(--v); }
.sla-txt { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-top: 4px; font-family: 'Space Mono', monospace; }

/* ── TECH MATRIX GRID SECTION ─ */
#capabilities { flex-direction: column; text-align: center; }
.tech-matrix-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px; max-width: 1240px; width: 100%; margin-top: 50px;
}
.tech-card {
  background: rgba(10, 16, 32, 0.45); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 28px 24px; text-align: left;
  backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative; overflow: hidden;
  transform-style: preserve-3d;
}
.tech-card:hover {
  border-color: var(--c); background: rgba(0, 240, 255, 0.06);
  transform: translateY(-6px) rotateY(5deg); box-shadow: 0 20px 40px rgba(0,240,255,0.15);
}
.tech-card-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(0,240,255,0.12); border: 1px solid rgba(0,240,255,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--c); font-size: 1.2rem; margin-bottom: 20px;
}
.tech-card-title { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; color: #fff; }
.tech-card-desc { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.6; margin-bottom: 16px; }
.tech-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tech-tag {
  font-family: 'Space Mono', monospace; font-size: 0.68rem;
  padding: 4px 10px; border-radius: 6px; background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.08);
}

/* ── WORKFLOW / PROCESS ROADMAP ─ */
#process { flex-direction: column; text-align: center; }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
   max-width: 1200px; width: 100%; margin-top: 50px;
}
.process-step {
  background: rgba(10, 16, 32, 0.4); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 26px 20px; text-align: left;
  position: relative; backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
  transition: all 0.3s;
}
.process-step:hover { border-color: var(--e); background: rgba(0,255,157,0.05); transform: translateY(-4px); }
.step-num {
  font-family: 'Space Mono', monospace; font-size: 0.8rem; font-weight: 700;
  color: var(--e); margin-bottom: 14px; display: inline-block;
  padding: 4px 10px; border-radius: 8px; background: rgba(0,255,157,0.1);
  border: 1px solid rgba(0,255,157,0.25);
}
.step-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: #fff; }
.step-desc { font-size: 0.82rem; color: rgba(255,255,255,0.52); line-height: 1.55; }

/* ── CLIENTS & PORTFOLIO MARQUEE ─ */
#portfolio, #clients { flex-direction: column; text-align: center; padding-left: 0; padding-right: 0; }

.clients-marquee-wrap, .marquee-wrapper {
  width: 100vw;
  overflow: hidden;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 40px;
  padding: 16px 0;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.clients-track, .marquee-content {
  display: flex;
  width: max-content;
  animation: marqueeSeamless 30s linear infinite;
  will-change: transform;
}

.clients-track:hover, .marquee-wrapper:hover .marquee-content {
  animation-play-state: paused;
}

.marquee-group {
  display: flex;
  gap: 24px;
  padding-right: 24px;
  flex-shrink: 0;
}

@keyframes marqueeSeamless {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.cl-item {
  width: 320px;
  flex-shrink: 0;
  padding: 26px;
  border-radius: 20px;
  background: rgba(10, 16, 32, 0.45);
  border: 1px solid rgba(255,255,255,0.09);
  text-align: left;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}
.cl-item:hover {
  border-color: var(--c);
  background: rgba(0,240,255,0.09);
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,240,255,0.25);
}
.cl-cat { font-family: 'Space Mono', monospace; font-size: 0.68rem; letter-spacing: 0.14em; color: var(--c); text-transform: uppercase; margin-bottom: 8px; font-weight: 700; }
.cl-name { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.cl-desc { font-size: 0.82rem; color: rgba(255,255,255,0.52); line-height: 1.5; }
.cl-link { font-family: 'Space Mono', monospace; font-size: 0.75rem; color: var(--e); margin-top: 12px; display: block; font-weight: 700; }

/* ── CONTACT ─ */
#contact { flex-direction: column; }
.contact-inner { max-width: 820px; width: 100%; }
.contact-inner .sec-title { text-align: center; margin-bottom: 40px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
label { font-family: 'Space Mono', monospace; font-size: 0.72rem; color: rgba(255,255,255,0.6); letter-spacing: 0.1em; font-weight: 700; }
input, select, textarea {
  width: 100%; padding: 14px 16px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px; color: #fff; font-family: 'Space Grotesk', sans-serif;
  font-size: 0.92rem; transition: all 0.3s; outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--c); box-shadow: 0 0 20px rgba(0,240,255,0.3);
  background: rgba(0,240,255,0.06);
}
select option { background: #070b16; color: #fff; }
.hp { display: none !important; }
.form-submit {
  width: 100%; padding: 17px; border: none; cursor: pointer;
  background: linear-gradient(135deg, var(--c), #3B82F6);
  border-radius: 100px; color: #020308; font-weight: 800; font-size: 1rem;
  letter-spacing: 0.04em; box-shadow: 0 0 30px rgba(0,240,255,0.45);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1); font-family: 'Space Grotesk', sans-serif;
  touch-action: manipulation; border: 1px solid rgba(255,255,255,0.3);
}
.form-submit:hover { box-shadow: 0 0 50px rgba(0,240,255,0.8); transform: translateY(-2px); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.f-msg { margin-top: 16px; font-family: 'Space Mono', monospace; font-size: 0.82rem; border-radius: 12px; }
.f-msg.ok { padding: 14px; background: rgba(0,255,157,0.14); border: 1px solid var(--e); color: var(--e); }
.f-msg.er { padding: 14px; background: rgba(255,107,107,0.14); border: 1px solid #FF6B6B; color: #FF6B6B; }

/* ── LUXURY MULTI-COLUMN ENTERPRISE FOOTER ─ */
.site-footer {
  position: relative; z-index: 20;
  background: rgba(2, 4, 10, 0.96);
  border-top: 1px solid rgba(0, 240, 255, 0.18);
  padding: 80px 48px 36px;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px; max-width: 1240px; margin: 0 auto 60px;
}

.footer-brand-col {
  display: flex; flex-direction: column; gap: 16px;
}

.footer-logo {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
}
.footer-brand-name { font-size: 1.4rem; font-weight: 800; color: #fff; letter-spacing: 0.08em; }
.footer-brand-sub { font-size: 0.55rem; color: var(--c); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-top: 2px; }

.footer-desc {
  font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.65; max-width: 380px;
}

.footer-status-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Space Mono', monospace; font-size: 0.72rem; color: var(--e);
  background: rgba(0,255,157,0.08); border: 1px solid rgba(0,255,157,0.25);
  padding: 6px 14px; border-radius: 100px; width: fit-content; margin-top: 6px;
}

.footer-col-title {
  font-family: 'Space Mono', monospace; font-size: 0.78rem;
  letter-spacing: 0.18em; color: var(--c); text-transform: uppercase;
  font-weight: 700; margin-bottom: 22px;
}

.footer-links-list {
  list-style: none; display: flex; flex-direction: column; gap: 12px;
}

.footer-links-list a {
  color: rgba(255,255,255,0.65); font-size: 0.88rem; text-decoration: none;
  transition: all 0.25s; display: inline-flex; align-items: center; gap: 6px;
}
.footer-links-list a:hover {
  color: #fff; transform: translateX(4px); text-shadow: 0 0 10px rgba(0,240,255,0.4);
}

.footer-contact-info {
  display: flex; flex-direction: column; gap: 14px; font-size: 0.86rem; color: rgba(255,255,255,0.65);
}
.footer-contact-item { display: flex; flex-direction: column; gap: 4px; }
.footer-contact-lbl { font-family: 'Space Mono', monospace; font-size: 0.68rem; color: rgba(255,255,255,0.4); text-transform: uppercase; }
.footer-contact-val { color: #fff; font-weight: 600; text-decoration: none; transition: color 0.2s; }
.footer-contact-val:hover { color: var(--c); }

.footer-bottom-bar {
  max-width: 1240px; margin: 0 auto;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: space-between;
  font-family: 'Space Mono', monospace; font-size: 0.74rem; color: rgba(255,255,255,0.4);
  flex-wrap: wrap; gap: 14px;
}

.footer-legal-links { display: flex;  }
.footer-legal-links a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-legal-links a:hover { color: var(--c); }

/* ── GSAP targets ─ */
.reveal { opacity: 0; }

/* ══════════════════════════════════════════════════════════
   MOBILE & TABLET BREAKPOINTS (100% PERFECT RESPONSIVE)
   ══════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split.rev { direction: ltr; }
  .sec { padding: 100px 24px; }
  .hero-h1 { font-size: clamp(2.3rem, 9.5vw, 4.4rem); margin-bottom: 22px; }
  .sec-title { font-size: clamp(2rem, 7.5vw, 3.6rem); }
  .widget-shell { padding: 22px; }
  .form-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .hero-stats-row { gap: 24px; }
  .footer-top-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 640px) {
  .cta-full { display: none; }
  .cta-short { display: inline; }
}

@media (max-width: 540px) {
  #nav { padding: 8px 14px; top: 10px; width: 95%; gap: 8px; }
  .nav-brand { font-size: 1.05rem; }
  
  /* Stacked 2-line layout for subtitle on mobile so INFRASTRUCTURE is 100% visible */
  .nav-sub { 
    font-size: 0.38rem; 
    letter-spacing: 0.05em; 
    max-width: 125px;
    white-space: normal;
    line-height: 1.25;
    margin-top: 1px;
  }
  
  .status-dot { display: none; }
  .nav-cta { padding: 8px 13px; font-size: 0.72rem; }

  .sec { padding: 85px 16px; }
  .hero-badge { font-size: 0.62rem; padding: 6px 14px; letter-spacing: 0.1em; margin-bottom: 20px; }
  .hero-h1 { font-size: 2.1rem; line-height: 1.08; margin-bottom: 18px; }
  .hero-sub { font-size: 0.88rem; line-height: 1.6; margin-bottom: 26px; }
  
  .hero-btns { flex-direction: column; width: 100%; gap: 10px; }
  .btn-p, .btn-s { width: 100%; text-align: center; padding: 14px 18px; font-size: 0.88rem; }
  .hero-stats-row { flex-direction: column; gap: 16px; margin-top: 36px; padding-top: 24px; }
  .hero-stat-num { font-size: 1.8rem; }

  .sec-title { font-size: 1.85rem; line-height: 1.1; margin-bottom: 14px; }
  .sec-body { font-size: 0.88rem; line-height: 1.6; }

  .pill { font-size: 0.7rem; padding: 6px 12px; }
  .widget-shell { padding: 16px; border-radius: 18px; }
  .term-out { font-size: 0.74rem; padding: 12px; min-height: 95px; }

  .ping-row { font-size: 0.72rem; padding: 10px; }
  .calc-num { font-size: 1.25rem; }
  .sla-num { font-size: 1.5rem; }
  .sla-box { padding: 14px; }
  .process-steps { grid-template-columns: 1fr; }

  .cl-item { width: 240px; padding: 18px; }
  input, select, textarea { font-size: 0.85rem; padding: 11px 12px; }
  .form-submit { padding: 14px; font-size: 0.88rem; }

  .site-footer { padding: 50px 20px 24px; }
  .footer-top-grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 40px; }
  .footer-bottom-bar { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ── Clients Marquee ─ */
.marquee-wrapper {
  width: 100vw;
  overflow: hidden;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  padding: 20px 0;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.marquee-content {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: marquee 25s linear infinite;
}
.marquee-wrapper:hover .marquee-content {
  animation-play-state: paused;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.client-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 24px;
  width: 280px;
  backdrop-filter: blur(15px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.client-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 240, 255, 0.4);
  box-shadow: 0 10px 30px rgba(0, 240, 255, 0.15);
}
.client-logo {
  max-width: 100%;
  height: 50px;
  object-fit: contain;
  margin-bottom: 10px;
  background: rgba(0,0,0,0.5);
  border-radius: 8px;
  padding: 5px;
}
.client-name {
  font-family: 'Space Mono', monospace;
  font-size: 1.1rem;
  color: var(--c);
  margin-bottom: 5px;
}
.client-detail {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  font-family: 'Space Grotesk', sans-serif;
}
.client-detail .c-lbl {
  color: rgba(255,255,255,0.4);
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  margin-right: 5px;
}
.client-detail .c-val {
  color: var(--e);
}


/* ── LEGAL & STATUS MODAL ── */
.legal-btn {
  background: none; border: none; color: rgba(255,255,255,0.65);
  font-family: 'Space Grotesk', sans-serif; font-size: 0.82rem;
  cursor: pointer; transition: color 0.25s; text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.2); text-underline-offset: 3px;
}
.legal-btn:hover {
  color: var(--c); text-decoration-color: var(--c);
}

.modal-backdrop {
  position: fixed; inset: 0; z-index: 99999;
  background: rgba(2, 4, 10, 0.85);
  backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal-backdrop.active {
  opacity: 1; pointer-events: auto;
}
.modal-box {
  background: rgba(10, 16, 32, 0.95);
  border: 1px solid rgba(0, 240, 255, 0.25);
  border-radius: 20px; width: min(92%, 680px);
  max-height: 85vh; display: flex; flex-direction: column;
  box-shadow: 0 0 50px rgba(0, 240, 255, 0.15), 0 30px 80px rgba(0,0,0,0.8);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
.modal-backdrop.active .modal-box {
  transform: scale(1) translateY(0);
}
.modal-header {
  padding: 20px 24px; border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(0, 240, 255, 0.03);
}
.modal-title {
  font-family: 'Space Mono', monospace; font-size: 1rem; font-weight: 700;
  color: var(--c); letter-spacing: 0.08em; text-transform: uppercase;
}
.modal-close {
  background: none; border: none; color: rgba(255,255,255,0.6);
  font-size: 1.4rem; cursor: pointer; padding: 4px 8px; border-radius: 6px;
  transition: all 0.2s; line-height: 1;
}
.modal-close:hover { color: #ff4e6a; background: rgba(255,78,106,0.1); }
.modal-body {
  padding: 28px 24px; overflow-y: auto; color: rgba(255,255,255,0.85);
  line-height: 1.7; font-size: 0.92rem;
}
.modal-body h3 {
  font-family: 'Space Grotesk', sans-serif; font-size: 1.4rem; color: #fff;
  margin-bottom: 16px; font-weight: 800;
}
.modal-body h4 {
  font-family: 'Space Mono', monospace; font-size: 0.9rem; color: var(--c);
  margin: 20px 0 8px; text-transform: uppercase; letter-spacing: 0.06em;
}
.modal-body p { margin-bottom: 14px; }


/* ── REMOTE IT NOC WIDGET ── */
.noc-ticket-list, .noc-server-list {
  display: flex; flex-direction: column; gap: 8px;
}
.noc-t-row, .srv-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 12px; background: rgba(255,255,255,0.035); border-radius: 8px;
  font-family: 'Space Mono', monospace; font-size: 0.76rem; border: 1px solid rgba(255,255,255,0.06);
}
.t-id { color: var(--c); font-weight: bold; }
.t-title { color: rgba(255,255,255,0.85); margin: 0 8px; flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; text-align: left; }
.t-badge { font-size: 0.68rem; padding: 2px 8px; border-radius: 6px; font-weight: bold; flex-shrink: 0; }
.t-badge.ok { background: rgba(0,255,157,0.12); color: #00FF9D; border: 1px solid rgba(0,255,157,0.3); }
.t-badge.live { background: rgba(0,240,255,0.12); color: #00F0FF; border: 1px solid rgba(0,240,255,0.3); }


.nav-logo-icon img, .login-logo-icon img, .sidebar-logo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  display: block !important;
}
