/*
=============================================================
  NETRUN TECHNOLOGIES — Design System
  Cyberpunk aesthetic: dark bg, neon accents, monospace type
=============================================================
*/

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Space+Mono:ital,wght@0,400;0,700;1,400&display=swap');


/* ============================================================
   1. CSS VARIABLES
   ============================================================ */

:root {
  --pink: #E8185C;
  --cyan: #00EEFF;
  --bg:   #07070F;
  --bg2:  #0D0D1A;
  --bg3:  #111122;
  --text: #C8C8E8;
  --dim:  #5A5A7A;
  --pink-glow: 0 0 20px rgba(232, 24, 92, 0.5), 0 0 60px rgba(232, 24, 92, 0.2);
  --cyan-glow: 0 0 20px rgba(0, 238, 255, 0.5), 0 0 60px rgba(0, 238, 255, 0.2);
}


/* ============================================================
   2. RESET & BASE
   ============================================================ */

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Space Mono', monospace;
  overflow-x: hidden;
  cursor: crosshair;
  font-size: 14px;
  line-height: 1.6;
}

::selection { background: var(--pink); color: #fff; }

a { color: inherit; text-decoration: none; transition: color 0.2s; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', monospace;
  line-height: 1.2;
}

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }


/* ============================================================
   3. SCROLLBAR
   ============================================================ */

::-webkit-scrollbar       { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--pink); }


/* ============================================================
   4. GLOBAL EFFECTS
   ============================================================ */

/* Scanlines */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.08) 2px,
    rgba(0, 0, 0, 0.08) 4px
  );
  pointer-events: none;
  z-index: 9999;
}

/* Grid background */
.grid-bg {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 238, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 238, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* Noise overlay */
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.025;
  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)'/%3E%3C/svg%3E");
}


/* ============================================================
   5. NAVIGATION
   ============================================================ */

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(7, 7, 15, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232, 24, 92, 0.2);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  height: 36px;
  width: auto;
}

.nav-logo-text {
  font-family: 'Orbitron', monospace;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 1;
}

.nav-logo-sub {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  color: var(--cyan);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--pink);
  transform: scaleX(0);
  transition: transform 0.2s;
}

.nav-links a:hover           { color: #fff; }
.nav-links a:hover::after    { transform: scaleX(1); }

.nav-cta {
  font-family: 'Orbitron', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 10px 24px;
  background: transparent;
  border: 1px solid var(--pink);
  color: var(--pink);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: var(--pink);
  color: #fff;
  box-shadow: var(--pink-glow);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: crosshair;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s ease;
  display: block;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }


/* ============================================================
   6. HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 48px 80px;
  overflow: hidden;
  z-index: 1;
}

/* Video background */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* Dark overlay — keeps text legible, preserves cyberpunk tint */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg,
      rgba(7, 7, 15, 0.82) 0%,
      rgba(7, 7, 15, 0.55) 55%,
      rgba(7, 7, 15, 0.72) 100%
    );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--cyan);
  box-shadow: var(--cyan-glow);
  flex-shrink: 0;
}

.hero-eyebrow span {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cyan);
}

.hero-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(42px, 6vw, 88px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 32px;
}

.hero-title .accent {
  color: var(--pink);
  text-shadow: var(--pink-glow);
}

.hero-title .line2 {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
}

.hero-sub {
  font-size: 14px;
  line-height: 1.8;
  color: var(--dim);
  max-width: 520px;
  margin-bottom: 48px;
}

.hero-sub strong { color: var(--text); }

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Decorative bg visual */
.hero-visual {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 640px;
  height: 640px;
  z-index: 1;
  opacity: 0.18;
  pointer-events: none;
}

.hero-visual svg { width: 100%; height: 100%; }

/* Stats — bottom-right */
.hero-stats {
  position: absolute;
  bottom: 60px;
  right: 48px;
  display: flex;
  gap: 48px;
  z-index: 3;
}

.stat { text-align: right; }

.stat-num {
  font-family: 'Orbitron', monospace;
  font-size: 28px;
  font-weight: 900;
  color: var(--pink);
  text-shadow: var(--pink-glow);
  line-height: 1;
}

.stat-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--dim);
  margin-top: 4px;
  text-transform: uppercase;
}

/* Scroll indicator — bottom-left */
.scroll-ind {
  position: absolute;
  bottom: 40px;
  left: 48px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.scroll-ind span {
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--dim);
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(var(--pink), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}


/* ============================================================
   7. BUTTONS
   ============================================================ */

.btn-primary {
  font-family: 'Orbitron', monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 36px;
  background: var(--pink);
  border: none;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.btn-primary:hover {
  box-shadow: var(--pink-glow);
  transform: translateY(-2px);
  color: #fff;
}

.btn-secondary {
  font-family: 'Orbitron', monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 36px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: var(--cyan-glow);
}


/* ============================================================
   8. SECTION SHARED STYLES
   ============================================================ */

section { position: relative; z-index: 1; }

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 48px;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.section-label span {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--pink);
}

.section-label::after {
  content: '';
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--pink);
}

.section-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 13px;
  line-height: 1.8;
  color: var(--dim);
  max-width: 560px;
  margin-bottom: 64px;
}


/* ============================================================
   9. SERVICE CARDS
   ============================================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(232, 24, 92, 0.08);
}

.service-card {
  background: var(--bg2);
  padding: 48px 36px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: all 0.3s;
  cursor: crosshair;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232, 24, 92, 0.06) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover::before        { opacity: 1; }
.service-card:hover                { border-color: rgba(232, 24, 92, 0.3); transform: translateY(-4px); }
.service-card:hover .service-icon  { color: var(--pink); text-shadow: var(--pink-glow); }

.service-icon {
  font-size: 28px;
  margin-bottom: 24px;
  color: var(--dim);
  transition: all 0.3s;
  font-family: 'Space Mono', monospace;
  line-height: 1;
}

.service-num {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: 'Orbitron', monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.05);
  font-weight: 900;
}

.service-title {
  font-family: 'Orbitron', monospace;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.service-desc {
  font-size: 12px;
  line-height: 1.8;
  color: var(--dim);
  margin-bottom: 24px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid rgba(0, 238, 255, 0.2);
  color: var(--cyan);
}


/* ============================================================
   10. INDUSTRY PANEL
   ============================================================ */

.industries-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.industry-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.industry-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  cursor: crosshair;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.industry-item.active,
.industry-item:hover {
  background: rgba(232, 24, 92, 0.06);
  border-color: rgba(232, 24, 92, 0.3);
}

.industry-item.active .ind-bar {
  background: var(--pink);
  box-shadow: var(--pink-glow);
}

.ind-bar {
  width: 3px;
  height: 24px;
  background: var(--dim);
  transition: all 0.25s;
  flex-shrink: 0;
}

.ind-name {
  font-family: 'Orbitron', monospace;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

.ind-sub {
  font-size: 11px;
  color: var(--dim);
  margin-top: 2px;
}

.ind-arrow {
  margin-left: auto;
  color: var(--pink);
  font-size: 18px;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.25s;
}

.industry-item.active .ind-arrow,
.industry-item:hover .ind-arrow {
  opacity: 1;
  transform: translateX(0);
}

.industry-display {
  background: var(--bg3);
  border: 1px solid rgba(232, 24, 92, 0.2);
  padding: 48px;
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.industry-display::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--pink);
  box-shadow: var(--pink-glow);
}

.ind-display-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 20px;
}

.ind-display-title {
  font-family: 'Orbitron', monospace;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.ind-display-desc {
  font-size: 13px;
  line-height: 1.8;
  color: var(--dim);
  margin-bottom: 32px;
}

.ind-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ind-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text);
}

.ind-dot {
  width: 6px;
  height: 6px;
  background: var(--cyan);
  flex-shrink: 0;
  box-shadow: var(--cyan-glow);
}


/* ============================================================
   11. AI TERMINAL
   ============================================================ */

.ai-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ai-terminal {
  background: #050508;
  border: 1px solid rgba(0, 238, 255, 0.2);
  position: relative;
  font-family: 'Space Mono', monospace;
  overflow: hidden;
}

.ai-terminal::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 20px,
    rgba(0, 238, 255, 0.015) 20px,
    rgba(0, 238, 255, 0.015) 21px
  );
  pointer-events: none;
  z-index: 0;
}

.terminal-bar {
  padding: 12px 20px;
  background: rgba(0, 238, 255, 0.06);
  border-bottom: 1px solid rgba(0, 238, 255, 0.15);
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.t-dot               { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.t-dot-r             { background: #E8185C; }
.t-dot-y             { background: #FFB800; }
.t-dot-g             { background: #00FF87; }

.terminal-title {
  margin-left: 8px;
  font-size: 11px;
  color: var(--dim);
  letter-spacing: 0.1em;
}

.terminal-body {
  padding: 28px;
  line-height: 2;
  font-size: 12px;
  min-height: 340px;
  max-height: 420px;
  overflow-y: auto;
  position: relative;
  z-index: 1;
}

.t-prompt { color: var(--pink); font-weight: 700; }
.t-cmd    { color: #fff; }
.t-out    { color: var(--cyan); }
.t-dim    { color: var(--dim); font-style: italic; }
.t-green  { color: #00FF87; }

/* Blinking cursor */
.cursor {
  display: inline-block;
  width: 8px;
  height: 14px;
  background: var(--cyan);
  animation: blink 1s step-end infinite;
  vertical-align: middle;
  box-shadow: 0 0 6px var(--cyan);
}

/* AI feature mini-cards */
.ai-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}

.ai-feat {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s;
}

.ai-feat:hover {
  border-color: rgba(0, 238, 255, 0.3);
  background: rgba(0, 238, 255, 0.03);
}

.ai-feat-icon  { font-size: 22px; margin-bottom: 12px; }

.ai-feat-title {
  font-family: 'Orbitron', monospace;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.ai-feat-desc { font-size: 11px; color: var(--dim); line-height: 1.7; }

/* Terminal line layout */
.terminal-line {
  display: flex;
  gap: 8px;
  margin-bottom: 0;
}


/* ============================================================
   12. PROCESS STEPS
   ============================================================ */

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  margin-top: 60px;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--pink), var(--cyan));
  z-index: 0;
}

.process-step {
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 80px;
  height: 80px;
  border: 1px solid rgba(232, 24, 92, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', monospace;
  font-size: 22px;
  font-weight: 900;
  color: var(--pink);
  margin-bottom: 32px;
  background: var(--bg);
  transition: all 0.3s;
}

.process-step:hover .step-num {
  background: var(--pink);
  color: #fff;
  box-shadow: var(--pink-glow);
}

.step-title {
  font-family: 'Orbitron', monospace;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.step-desc { font-size: 12px; color: var(--dim); line-height: 1.7; }


/* ============================================================
   13. CTA / CONTACT
   ============================================================ */

.cta-inner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 120px 48px;
}

.cta-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 24px;
}

.cta-title .glitch {
  color: var(--pink);
  text-shadow: var(--pink-glow);
  display: inline-block;
}

.cta-sub {
  font-size: 14px;
  color: var(--dim);
  line-height: 1.8;
  margin-bottom: 48px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
}

.cta-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-right: none;
  padding: 16px 20px;
  color: #fff;
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  outline: none;
  transition: all 0.2s;
}

.cta-input::placeholder { color: var(--dim); }

.cta-input:focus {
  border-color: var(--pink);
  background: rgba(232, 24, 92, 0.05);
}

.cta-submit {
  font-family: 'Orbitron', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 16px 28px;
  background: var(--pink);
  border: 1px solid var(--pink);
  color: #fff;
  cursor: crosshair;
  transition: all 0.2s;
  white-space: nowrap;
  text-transform: uppercase;
}

.cta-submit:hover { box-shadow: var(--pink-glow); }

.cta-feedback {
  margin-top: 20px;
  font-size: 12px;
  letter-spacing: 0.1em;
  min-height: 20px;
}


/* ============================================================
   14. FOOTER
   ============================================================ */

footer {
  background: var(--bg);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  gap: 20px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-left img  { height: 28px; width: auto; opacity: 0.7; }

.footer-brand {
  font-family: 'Orbitron', monospace;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-copy { font-size: 11px; color: var(--dim); margin-top: 3px; }

.footer-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.footer-links a {
  font-size: 11px;
  color: var(--dim);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--pink); }


/* ============================================================
   15. CORNER DECORATORS
   ============================================================ */

.corner-tl {
  position: absolute;
  top: 24px; left: 24px;
  width: 20px; height: 20px;
  border-top: 2px solid var(--pink);
  border-left: 2px solid var(--pink);
}

.corner-br {
  position: absolute;
  bottom: 24px; right: 24px;
  width: 20px; height: 20px;
  border-bottom: 2px solid var(--cyan);
  border-right: 2px solid var(--cyan);
}


/* ============================================================
   16. ANIMATIONS & KEYFRAMES
   ============================================================ */

@keyframes scrollPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

@keyframes glitch {
  0%, 90%, 100% {
    transform: none;
    clip-path: none;
    text-shadow: var(--pink-glow);
  }
  92% {
    transform: translate(-3px, 1px);
    clip-path: polygon(0 15%, 100% 15%, 100% 40%, 0 40%);
    text-shadow: 3px 0 var(--cyan);
  }
  94% {
    transform: translate(3px, -1px);
    clip-path: polygon(0 60%, 100% 60%, 100% 80%, 0 80%);
    text-shadow: -3px 0 var(--cyan);
  }
  96% { transform: none; clip-path: none; }
  98% {
    transform: translate(2px, 0);
    text-shadow: -2px 0 var(--pink);
  }
}

.glitch-anim { animation: glitch 4s ease-in-out infinite; }


/* ============================================================
   17. REVEAL UTILITY
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   18. PAGE HERO (Inner Pages)
   ============================================================ */

.page-hero {
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 48px 80px;
  background: linear-gradient(180deg, rgba(232, 24, 92, 0.04) 0%, transparent 100%);
  border-bottom: 1px solid rgba(232, 24, 92, 0.15);
}

/* Image banner variant */
.page-hero--image {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 55vh;
  padding: 0;
  background-color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(7, 7, 15, 0.80) 0%,
    rgba(7, 7, 15, 0.55) 50%,
    rgba(7, 7, 15, 0.75) 100%
  );
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 48px 80px;
  width: 100%;
}

.page-hero-card {
  background: rgba(7, 7, 15, 0.60);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(232, 24, 92, 0.18);
  border-radius: 6px;
  padding: 48px 64px;
  max-width: 680px;
  width: 100%;
  text-align: center;
}

.page-hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 20px;
}

.page-hero h1 {
  font-family: 'Orbitron', monospace;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
}

.page-hero-sub {
  font-size: 14px;
  color: var(--dim);
  max-width: 560px;
  line-height: 1.8;
}


/* ============================================================
   19. SERVICES FULL PAGE
   ============================================================ */

.services-full-grid {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(232, 24, 92, 0.08);
}

.service-full-card {
  background: var(--bg2);
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.service-full-card:hover {
  border-color: rgba(232, 24, 92, 0.3);
}

.service-full-card .service-num {
  position: static;
  display: block;
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--pink);
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: 'Orbitron', monospace;
  font-weight: 700;
}

.service-full-card h3 {
  font-family: 'Orbitron', monospace;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.service-full-card p {
  font-size: 13px;
  color: var(--dim);
  line-height: 1.8;
}

.deliverables {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(232, 24, 92, 0.15);
}

.deliverables-title {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 14px;
  font-weight: 700;
}

.deliverables-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}


/* ============================================================
   20. PRICING
   ============================================================ */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(232, 24, 92, 0.08);
}

.pricing-card {
  background: var(--bg2);
  padding: 48px 36px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  text-align: center;
  transition: all 0.3s;
  position: relative;
}

.pricing-card:hover { border-color: rgba(232, 24, 92, 0.3); }

.pricing-card.featured {
  border-color: rgba(232, 24, 92, 0.4);
  background: rgba(232, 24, 92, 0.05);
}

.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--pink);
  box-shadow: var(--pink-glow);
}

.pricing-tier {
  font-family: 'Orbitron', monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
}

.pricing-amount {
  font-family: 'Orbitron', monospace;
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}

.pricing-period {
  font-size: 11px;
  color: var(--dim);
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
  text-align: left;
}

.pricing-features li {
  font-size: 12px;
  color: var(--dim);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.6;
}

.pricing-features li::before {
  content: '→';
  color: var(--cyan);
  flex-shrink: 0;
}

.pricing-cta {
  display: block;
  width: 100%;
  text-align: center;
}


/* ============================================================
   21. BLOG
   ============================================================ */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(232, 24, 92, 0.08);
}

.blog-card {
  background: var(--bg2);
  padding: 40px 32px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  cursor: crosshair;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  border-color: rgba(232, 24, 92, 0.3);
  transform: translateY(-4px);
}

.blog-category {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 700;
  margin-bottom: 14px;
}

.blog-card h3 {
  font-family: 'Orbitron', monospace;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 0;
  flex: 1;
}

.blog-status {
  font-size: 10px;
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}


/* ============================================================
   22. FAQ ACCORDION
   ============================================================ */

.faq-section { margin-bottom: 60px; }

.faq-section-title {
  font-family: 'Orbitron', monospace;
  font-size: 13px;
  font-weight: 700;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(232, 24, 92, 0.2);
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 2px;
  overflow: hidden;
  transition: all 0.3s;
  cursor: crosshair;
  background: var(--bg2);
}

.faq-item:hover { border-color: rgba(232, 24, 92, 0.2); }

.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  gap: 16px;
}

.faq-item.open .faq-question {
  color: var(--pink);
}

.faq-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: rgba(232, 24, 92, 0.15);
  color: var(--pink);
  font-size: 10px;
  font-weight: 700;
  margin-right: 10px;
  flex-shrink: 0;
  font-family: 'Orbitron', monospace;
}

.faq-item.open .faq-number {
  background: var(--pink);
  color: #fff;
}

.faq-question span:last-child {
  font-size: 18px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  color: var(--dim);
}

.faq-item.open .faq-question span:last-child {
  transform: rotate(45deg);
  color: var(--pink);
}

.faq-answer {
  display: none;
  padding: 0 24px 24px 56px;
  font-size: 13px;
  color: var(--dim);
  line-height: 1.8;
}

.faq-item.open .faq-answer { display: block; }


/* ============================================================
   23. CONTACT FORM (Full Page)
   ============================================================ */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 8px;
}

.contact-info-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--dim);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.contact-info-value {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
}

.contact-info-value a {
  color: var(--cyan);
  transition: color 0.2s;
}

.contact-info-value a:hover { color: var(--pink); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group { display: flex; flex-direction: column; }

.form-group label {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--dim);
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 14px 16px;
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  transition: all 0.2s;
  resize: vertical;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--pink);
  background: rgba(232, 24, 92, 0.04);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--dim); }

.form-group select option {
  background: var(--bg2);
  color: #fff;
}


/* ============================================================
   24. BOOKINGS PAGE
   ============================================================ */

.bookings-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.booking-expectations {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(232, 24, 92, 0.08);
}

.booking-item {
  background: var(--bg2);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 28px 32px;
}

.booking-item h3 {
  font-family: 'Orbitron', monospace;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.booking-item p {
  font-size: 12px;
  color: var(--dim);
  line-height: 1.7;
  margin: 0;
}

.booking-calendar {
  background: var(--bg2);
  border: 1px solid rgba(232, 24, 92, 0.2);
  padding: 60px 48px;
  text-align: center;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}

.booking-calendar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--pink);
  box-shadow: var(--pink-glow);
}

.booking-status {
  font-family: 'Orbitron', monospace;
  font-size: 18px;
  font-weight: 700;
  color: var(--dim);
  margin-bottom: 24px;
}

.booking-fallback {
  font-size: 12px;
  color: var(--dim);
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  line-height: 2;
}

.booking-fallback a { color: var(--cyan); }
.booking-fallback a:hover { color: var(--pink); }


/* ============================================================
   25. ABOUT PAGE
   ============================================================ */

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(232, 24, 92, 0.08);
  margin-top: 40px;
}

.capability-pill {
  background: var(--bg2);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 16px 20px;
  text-align: center;
  font-size: 11px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 0.3s;
  cursor: crosshair;
  font-weight: 600;
}

.capability-pill:hover {
  border-color: rgba(0, 238, 255, 0.3);
  color: var(--cyan);
  background: rgba(0, 238, 255, 0.03);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(232, 24, 92, 0.08);
}

.value-card {
  background: var(--bg2);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 40px 32px;
}

.value-card h3 {
  font-family: 'Orbitron', monospace;
  font-size: 14px;
  font-weight: 700;
  color: var(--pink);
  margin-bottom: 14px;
  letter-spacing: 0.05em;
}

.value-card p {
  font-size: 12px;
  color: var(--dim);
  line-height: 1.8;
  margin: 0;
}

/* About CTA */
.contact-cta {
  text-align: center;
  padding: 80px;
  border: 1px solid rgba(232, 24, 92, 0.15);
  background: rgba(232, 24, 92, 0.03);
  position: relative;
}

.contact-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--pink);
}

.contact-cta h2 {
  font-family: 'Orbitron', monospace;
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
}

.contact-cta p {
  font-size: 14px;
  color: var(--dim);
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}


/* ============================================================
   26. RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
  nav { padding: 0 24px; }

  .hamburger { display: flex; }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(7, 7, 15, 0.97);
    padding: 0 24px;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-bottom: 1px solid rgba(232, 24, 92, 0.2);
    justify-content: flex-start;
  }

  .nav-links.open { max-height: 400px; padding: 8px 24px 16px; }

  .nav-links li a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid rgba(232, 24, 92, 0.08);
  }

  .hero { padding: 100px 24px 140px; }
  .hero-visual { display: none; }
  .hero-stats { right: 24px; gap: 24px; bottom: 40px; }
  .scroll-ind { display: none; }

  .section-inner { padding: 80px 24px; }

  .services-grid { grid-template-columns: 1fr; }
  .industries-layout { grid-template-columns: 1fr; gap: 40px; }
  .ai-layout { grid-template-columns: 1fr; gap: 40px; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-steps::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .bookings-layout { grid-template-columns: 1fr; gap: 40px; }
  .capabilities-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .ai-features { grid-template-columns: 1fr; }

  .cta-inner { padding: 80px 24px; }
  .contact-cta { padding: 48px 24px; }

  footer { flex-direction: column; gap: 20px; text-align: center; padding: 32px 24px; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 20px; }

  .page-hero { padding: 120px 24px 60px; }

  .hero-title { font-size: clamp(36px, 10vw, 60px); }

  .cta-form { flex-direction: column; }
  .cta-input { border-right: 1px solid rgba(255, 255, 255, 0.1); border-bottom: none; }
}

@media (max-width: 600px) {
  .hero-stats { flex-direction: column; gap: 12px; bottom: 32px; right: 24px; }
  .stat { text-align: right; }
  .stat-num { font-size: 22px; }
  .blog-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .ai-features { grid-template-columns: 1fr; }
  .capabilities-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { padding: 32px 24px; }
  .section-inner { padding: 60px 20px; }
}
