/* ============================================================
   INTELLECT AUTOMATIONS — MAIN STYLESHEET
   To edit colors: change variables in :root
   To edit fonts: change --font-display and --font-body
   ============================================================ */

:root {
  /* ── Brand Colors (edit here to retheme entire site) ── */
  --bg-dark:      #080d14;
  --bg-card:      #0d1520;
  --bg-surface:   #111c2b;
  --bg-hover:     #162338;
  --border:       #1e2f45;
  --border-glow:  #0ff3;

  --cyan:         #00e5ff;
  --cyan-dim:     #00bcd4;
  --blue:         #2979ff;
  --blue-dark:    #1a4fff;
  --orange:       #ff6d00;
  --green:        #00e676;

  --text-primary:   #e8f4fd;
  --text-secondary: #7a9ab8;
  --text-muted:     #3d5a75;

  /* ── Typography ── */
  --font-display: 'Exo 2', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;
  --font-body:    'Inter', sans-serif;

  /* ── Spacing & Sizing ── */
  --nav-h: 72px;
  --radius: 10px;
  --radius-lg: 18px;
  --max-w: 1240px;
  --section-pad: 100px 24px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--cyan); text-decoration: none; transition: color .2s; }
a:hover { color: #fff; }
ul { list-style: none; }

/* ── Utility ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-pad); }
.text-center { text-align: center; }
.text-cyan { color: var(--cyan); }
.text-mono { font-family: var(--font-mono); }
.tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(0,229,255,.08);
  border: 1px solid rgba(0,229,255,.2);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .5px;
  cursor: pointer;
  border: none;
  transition: all .25s;
}
.btn-primary {
  background: var(--cyan);
  color: var(--bg-dark);
}
.btn-primary:hover {
  background: #fff;
  color: var(--bg-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,229,255,.3);
}
.btn-outline {
  background: transparent;
  color: var(--cyan);
  border: 1.5px solid var(--cyan);
}
.btn-outline:hover {
  background: var(--cyan);
  color: var(--bg-dark);
  transform: translateY(-2px);
}
.btn-ghost {
  background: rgba(255,255,255,.05);
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: var(--bg-hover); color: #fff; }
.section-header { margin-bottom: 60px; }
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-header p {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 600px;
}
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 0 auto; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── Circuit Pattern Background ── */
.circuit-bg {
  position: relative;
  overflow: hidden;
}
.circuit-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: .25;
  pointer-events: none;
}
.circuit-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,229,255,.06) 0%, transparent 70%);
  pointer-events: none;
}

/* ════════════════════════════════════════
   NAVBAR
════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(8,13,20,.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background .3s, box-shadow .3s;
}
.navbar.scrolled {
  background: rgba(8,13,20,.97);
  box-shadow: 0 4px 40px rgba(0,0,0,.5);
}
.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; }
.logo-placeholder { display: flex; align-items: center; gap: 10px; }
.logo-icon { display: flex; align-items: center; flex-shrink: 0; }
.logo-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
}
.logo-accent { color: var(--cyan); }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 12px;
  border-radius: 6px;
  transition: all .2s;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
  background: var(--bg-hover);
}
.nav-link.nav-cta {
  background: var(--cyan);
  color: var(--bg-dark);
  font-weight: 700;
  padding: 8px 18px;
}
.nav-link.nav-cta:hover {
  background: #fff;
  color: var(--bg-dark);
}
.dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  box-shadow: 0 16px 48px rgba(0,0,0,.6);
  z-index: 100;
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li a {
  display: block;
  padding: 9px 14px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-secondary);
  border-radius: 6px;
  transition: all .15s;
}
.dropdown-menu li a:hover { background: var(--bg-hover); color: var(--cyan); }
.arrow { font-size: 10px; opacity: .7; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all .3s;
}

/* ════════════════════════════════════════
   HERO SECTION
════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,229,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,255,.04) 1px, transparent 1px);
  background-size: 50px 50px;
}
.hero-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,229,255,.08) 0%, transparent 65%);
  top: -200px;
  right: -100px;
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(41,121,255,.07) 0%, transparent 65%);
  bottom: 0;
  left: 10%;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--cyan);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero h1 .accent-block {
  color: var(--cyan);
  display: block;
}
.hero-desc {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 480px;
  line-height: 1.8;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.stat-item {}
.stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 4px;
  font-family: var(--font-mono);
  letter-spacing: 1px;
}
/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-board {
  position: relative;
  width: 420px;
  height: 420px;
}
.hero-board-svg {
  width: 100%;
  height: 100%;
  animation: boardFloat 5s ease-in-out infinite;
}
@keyframes boardFloat {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(1deg); }
}
.board-pulse {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(0,229,255,.3);
  animation: pulse 2.5s ease-out infinite;
}
.board-pulse:nth-child(2) { animation-delay: .8s; }
.board-pulse:nth-child(3) { animation-delay: 1.6s; }
@keyframes pulse {
  0% { transform: translate(-50%,-50%) scale(.8); opacity: .8; }
  100% { transform: translate(-50%,-50%) scale(2.5); opacity: 0; }
}

/* ════════════════════════════════════════
   MARQUEE / TECH STRIP
════════════════════════════════════════ */
.tech-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.tech-item {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.tech-item::after {
  content: '◆';
  color: var(--cyan);
  font-size: 6px;
}

/* ════════════════════════════════════════
   SERVICES CARDS
════════════════════════════════════════ */
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: all .3s;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.service-card:hover {
  border-color: rgba(0,229,255,.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.4), 0 0 0 1px rgba(0,229,255,.1);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(0,229,255,.08);
  border: 1px solid rgba(0,229,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
  transition: all .3s;
}
.service-card:hover .service-icon {
  background: rgba(0,229,255,.15);
  border-color: var(--cyan);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
}
.service-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.service-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 3px 9px;
  border-radius: 100px;
  background: rgba(41,121,255,.1);
  color: var(--blue);
  border: 1px solid rgba(41,121,255,.2);
  letter-spacing: 1px;
}
.service-card .card-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1px;
}

/* ════════════════════════════════════════
   STATS / NUMBERS BAR
════════════════════════════════════════ */
.stats-bar {
  background: linear-gradient(135deg, var(--bg-surface), var(--bg-card));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 24px;
}
.stats-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stats-grid .stat-item {
  text-align: center;
  padding: 24px;
  border-right: 1px solid var(--border);
}
.stats-grid .stat-item:last-child { border-right: none; }
.stats-grid .stat-num { font-size: 48px; }
.stats-grid .stat-label { font-size: 13px; text-transform: uppercase; letter-spacing: 2px; }

/* ════════════════════════════════════════
   WHY US / FEATURES
════════════════════════════════════════ */
.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: all .3s;
}
.feature-item:hover { border-color: rgba(0,229,255,.2); background: var(--bg-hover); }
.feature-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
  margin-top: 6px;
  box-shadow: 0 0 8px var(--cyan);
}
.feature-item h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}
.feature-item p { font-size: 14px; color: var(--text-secondary); }

/* ════════════════════════════════════════
   PORTFOLIO / PROJECT CARD
════════════════════════════════════════ */
.project-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all .3s;
}
.project-card:hover { border-color: rgba(0,229,255,.25); transform: translateY(-4px); }
.project-thumb {
  height: 200px;
  background: linear-gradient(135deg, var(--bg-surface), var(--bg-hover));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
  overflow: hidden;
}
.project-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(8,13,20,.8));
}
.project-body { padding: 24px; }
.project-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--cyan);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.project-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.project-card p { font-size: 14px; color: var(--text-secondary); }

/* ════════════════════════════════════════
   TEAM CARD
════════════════════════════════════════ */
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: all .3s;
}
.team-card:hover { border-color: rgba(0,229,255,.25); transform: translateY(-4px); }
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--bg-dark);
  position: relative;
}
.team-avatar::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid rgba(0,229,255,.3);
}
.team-card h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.team-card .role {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--cyan);
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.team-card p { font-size: 13px; color: var(--text-secondary); }

/* ════════════════════════════════════════
   INDUSTRY CARD
════════════════════════════════════════ */
.industry-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: all .3s;
}
.industry-card:hover { border-color: rgba(0,229,255,.2); background: var(--bg-hover); }
.industry-icon {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
}
.industry-card h4 { font-family: var(--font-display); font-weight: 700; font-size: 15px; margin-bottom: 6px; }
.industry-card p { font-size: 13px; color: var(--text-secondary); }

/* ════════════════════════════════════════
   CONTACT
════════════════════════════════════════ */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
}
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--text-secondary);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 16px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color .2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,229,255,.08);
}
.form-group select option { background: var(--bg-card); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.contact-info-card h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin-bottom: 24px; }
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.contact-detail:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.contact-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(0,229,255,.08);
  border: 1px solid rgba(0,229,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-detail strong { display: block; font-family: var(--font-display); font-weight: 600; margin-bottom: 3px; }
.contact-detail span { font-size: 14px; color: var(--text-secondary); }

/* ════════════════════════════════════════
   ABOUT PAGE
════════════════════════════════════════ */
.about-hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 80px;
}
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual {
  position: relative;
  height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.about-visual-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-card) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.tech-circle {
  position: relative;
  width: 280px;
  height: 280px;
}
.tc-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(0,229,255,.3);
  animation: spin linear infinite;
}
.tc-ring:nth-child(1) { inset: 0; animation-duration: 20s; }
.tc-ring:nth-child(2) { inset: 30px; animation-duration: 14s; animation-direction: reverse; border-color: rgba(41,121,255,.3); }
.tc-ring:nth-child(3) { inset: 60px; animation-duration: 8s; border-color: rgba(0,230,118,.2); }
@keyframes spin { to { transform: rotate(360deg); } }
.tc-core {
  position: absolute;
  inset: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,229,255,.12), transparent);
  border: 1px solid var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
}
.tc-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--cyan);
  text-align: center;
  line-height: 1.6;
  letter-spacing: 1px;
}
.dot-on-ring {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 6px var(--cyan);
  top: -4px; left: 50%; transform: translateX(-50%);
}
.about-text .mission-list { margin-top: 32px; display: flex; flex-direction: column; gap: 14px; }
.mission-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.mission-item .mi-icon {
  font-size: 20px;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}
.mission-item strong { display: block; font-family: var(--font-display); font-weight: 600; margin-bottom: 3px; }
.mission-item span { font-size: 13px; color: var(--text-secondary); }

/* ════════════════════════════════════════
   PROCESS TIMELINE
════════════════════════════════════════ */
.process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; }
.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}
.process-step { text-align: center; padding: 0 12px; }
.step-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--cyan);
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  transition: all .3s;
}
.process-step:hover .step-num {
  background: rgba(0,229,255,.1);
  border-color: var(--cyan);
  box-shadow: 0 0 20px rgba(0,229,255,.2);
}
.process-step h4 { font-family: var(--font-display); font-weight: 700; font-size: 15px; margin-bottom: 8px; }
.process-step p { font-size: 13px; color: var(--text-secondary); }

/* ════════════════════════════════════════
   PAGE HERO (sub-pages)
════════════════════════════════════════ */
.page-hero {
  padding-top: calc(var(--nav-h) + 70px);
  padding-bottom: 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 0% 50%, rgba(0,229,255,.05), transparent 60%);
}
.page-hero-content { position: relative; z-index: 1; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  margin-bottom: 16px;
}
.page-hero p { font-size: 18px; color: var(--text-secondary); max-width: 600px; }
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--text-secondary); }
.breadcrumb a:hover { color: var(--cyan); }
.breadcrumb span { color: var(--text-muted); }

/* ════════════════════════════════════════
   CTA BANNER
════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, rgba(0,229,255,.08), rgba(41,121,255,.08));
  border: 1px solid rgba(0,229,255,.15);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,229,255,.06), transparent 70%);
}
.cta-banner h2 { font-family: var(--font-display); font-size: clamp(24px, 3vw, 36px); font-weight: 800; margin-bottom: 14px; }
.cta-banner p { color: var(--text-secondary); font-size: 16px; margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ════════════════════════════════════════
   SOLUTIONS PAGE
════════════════════════════════════════ */
.solution-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
  transition: all .3s;
}
.solution-card:hover { border-color: rgba(0,229,255,.25); transform: translateY(-3px); }
.solution-icon-lg {
  font-size: 42px;
  flex-shrink: 0;
  line-height: 1;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,229,255,.06);
  border-radius: 16px;
  border: 1px solid rgba(0,229,255,.12);
}
.solution-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.solution-card p { color: var(--text-secondary); font-size: 15px; margin-bottom: 20px; }
.solution-card ul { display: flex; flex-direction: column; gap: 8px; }
.solution-card ul li {
  font-size: 14px;
  color: var(--text-secondary);
  padding-left: 18px;
  position: relative;
}
.solution-card ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-size: 11px;
}

/* ════════════════════════════════════════
   PRODUCTS PAGE
════════════════════════════════════════ */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .3s;
}
.product-card:hover { border-color: rgba(0,229,255,.25); transform: translateY(-4px); }
.product-img {
  height: 180px;
  background: linear-gradient(135deg, var(--bg-surface), var(--bg-hover));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  border-bottom: 1px solid var(--border);
}
.product-body { padding: 28px; }
.product-body h3 { font-family: var(--font-display); font-weight: 700; font-size: 17px; margin-bottom: 8px; }
.product-body p { font-size: 14px; color: var(--text-secondary); margin-bottom: 16px; }
.product-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(0,230,118,.1);
  color: var(--green);
  border: 1px solid rgba(0,230,118,.2);
  text-transform: uppercase;
}
.product-badge.coming {
  background: rgba(255,109,0,.1);
  color: var(--orange);
  border-color: rgba(255,109,0,.2);
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 80px 24px 0;
}
.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 64px;
}
.footer-brand .footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-tagline { font-family: var(--font-mono); font-size: 12px; color: var(--text-muted); letter-spacing: 1px; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--text-secondary);
  font-weight: 700;
  transition: all .2s;
}
.social-link:hover { background: rgba(0,229,255,.1); border-color: var(--cyan); color: var(--cyan); }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--text-primary);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--cyan); }
.footer-contact-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--text-secondary);
  padding: 6px 0;
}
.contact-icon { font-size: 15px; flex-shrink: 0; }
.footer-legal-links { display: flex; gap: 16px; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border); }
.footer-legal-links a { font-size: 12px; color: var(--text-muted); }
.footer-legal-links a:hover { color: var(--cyan); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 13px; color: var(--text-muted); }
.footer-mono { font-family: var(--font-mono); font-size: 11px; letter-spacing: 1px; }

/* ════════════════════════════════════════
   SCROLL ANIMATIONS
════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid .stat-item:nth-child(2) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .process-steps::before { display: none; }
}
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; gap: 40px; }
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .solution-card { flex-direction: column; gap: 20px; }
}
@media (max-width: 768px) {
  :root { --section-pad: 72px 20px; }
  .nav-menu {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 16px;
    flex-direction: column;
    gap: 4px;
    align-items: stretch;
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
  }
  .nav-menu.open { display: flex; }
  .nav-toggle { display: flex; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .cta-banner { padding: 40px 24px; }
  .contact-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
}
