/* =============================================
   NINJABOT AGENCY — FUTURISTIC ROBOT THEME
   ============================================= */

:root {
  --cyan: #00f5ff;
  --pink: #ff006e;
  --blue-deep: #0a0f1e;
  --blue-mid: #0d1530;
  --blue-light: #111d3e;
  --surface: #0e1628;
  --surface-2: #141f3a;
  --surface-3: #1a2845;
  --text-primary: #e8f4f8;
  --text-secondary: #7a9bb5;
  --text-dim: #445c78;
  --border: rgba(0,245,255,0.12);
  --border-hover: rgba(0,245,255,0.35);
  --glow-cyan: 0 0 20px rgba(0,245,255,0.4), 0 0 60px rgba(0,245,255,0.15);
  --glow-pink: 0 0 20px rgba(255,0,110,0.4), 0 0 60px rgba(255,0,110,0.15);
  --font-display: 'Orbitron', monospace;
  --font-body: 'Rajdhani', sans-serif;
  --font-mono: 'Share Tech Mono', monospace;
  --header-h: 72px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--blue-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── CANVAS PARTICLES ── */
#particle-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.15; letter-spacing: 0.02em; }
a { color: inherit; text-decoration: none; }
.accent { color: var(--cyan); }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ── HEADER ── */
#main-header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  background: rgba(10,15,30,0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
#main-header.scrolled {
  background: rgba(10,15,30,0.97);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.header-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  height: 100%;
  display: flex; align-items: center; gap: 32px;
}

/* LOGO */
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { flex-shrink: 0; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.05em;
}
.logo-text em { color: var(--cyan); font-style: normal; }

/* NAV */
#main-nav { margin-left: auto; }
#main-nav ul { display: flex; list-style: none; gap: 4px; align-items: center; }
#main-nav a {
  display: block;
  padding: 8px 14px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  transition: color 0.25s;
  position: relative;
  text-transform: uppercase;
}
#main-nav a:hover, #main-nav a.active { color: var(--cyan); }
#main-nav a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 1px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}
#main-nav a:hover::after, #main-nav a.active::after { transform: scaleX(1); }

/* DROPDOWN */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--blue-mid);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px;
  min-width: 230px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s;
  z-index: 100;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,245,255,0.05);
}
.has-dropdown:hover .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown li { list-style: none; }
.dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.dropdown a:hover { background: rgba(0,245,255,0.07); color: var(--cyan); }
.dropdown a::after { display: none; }
.dd-icon { font-size: 1rem; color: var(--cyan); }
.arrow { font-size: 0.7rem; }

/* QUOTE BUTTON */
.btn-quote {
  margin-left: 8px;
  flex-shrink: 0;
  padding: 10px 20px;
  background: transparent;
  border: 1px solid var(--cyan);
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s;
  text-transform: uppercase;
  white-space: nowrap;
}
.btn-quote:hover {
  background: var(--cyan);
  color: var(--blue-deep);
  box-shadow: var(--glow-cyan);
}

/* HAMBURGER */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--cyan); border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  background: var(--cyan);
  color: var(--blue-deep);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s;
  text-transform: uppercase;
  border: none;
}
.btn-primary:hover {
  background: #fff;
  box-shadow: var(--glow-cyan);
  transform: translateY(-2px);
}
.btn-arrow { transition: transform 0.25s; }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }
.btn-large { padding: 18px 36px; font-size: 0.88rem; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  border: 1px solid var(--border-hover);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s;
  text-transform: uppercase;
}
.btn-ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: inset 0 0 20px rgba(0,245,255,0.05);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 60px) 24px 80px;
  overflow: hidden;
  z-index: 1;
}
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,245,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,245,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin-left: max(24px, calc(50vw - 590px));
  animation: fadeUp 0.9s ease both;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  border: 1px solid rgba(0,245,255,0.25);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--cyan);
  margin-bottom: 24px;
  background: rgba(0,245,255,0.05);
}
.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--text-primary);
}
.sub-accent {
  font-size: 0.55em;
  color: var(--text-secondary);
  letter-spacing: 0.15em;
  display: block;
  margin-top: 8px;
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: flex; align-items: center; gap: 24px; }
.stat { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--cyan);
}
.stat-label { font-size: 0.78rem; color: var(--text-dim); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 2px; }
.stat-div { width: 1px; height: 40px; background: var(--border); }

/* GLITCH EFFECT */
.glitch {
  position: relative;
  color: var(--cyan);
  display: inline-block;
}
.glitch::before, .glitch::after {
  content: attr(data-text);
  position: absolute; top: 0; left: 0;
  width: 100%;
}
.glitch::before {
  left: 2px;
  text-shadow: -1px 0 var(--pink);
  clip-path: inset(0 0 60% 0);
  animation: glitch1 3s infinite linear;
}
.glitch::after {
  left: -2px;
  text-shadow: 1px 0 var(--cyan);
  clip-path: inset(60% 0 0 0);
  animation: glitch2 3s infinite linear;
}
@keyframes glitch1 {
  0%,94%,100% { clip-path: inset(0 0 60% 0); transform: translateX(0); }
  95% { clip-path: inset(20% 0 40% 0); transform: translateX(-3px); }
  97% { clip-path: inset(50% 0 10% 0); transform: translateX(3px); }
}
@keyframes glitch2 {
  0%,94%,100% { clip-path: inset(60% 0 0 0); transform: translateX(0); }
  95% { clip-path: inset(40% 0 20% 0); transform: translateX(3px); }
  97% { clip-path: inset(10% 0 50% 0); transform: translateX(-3px); }
}

/* ROBOT */
.hero-robot {
  position: absolute;
  right: max(24px, calc(50vw - 590px));
  top: 50%;
  transform: translateY(-48%);
  z-index: 2;
  animation: fadeUp 1.1s 0.3s ease both;
}
.robot-frame {
  position: relative;
  width: 320px;
  height: 420px;
}
.robot-svg {
  width: 100%; height: 100%;
  animation: robotFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(0,245,255,0.3));
}
@keyframes robotFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
.robot-eye { animation: eyeGlow 2s ease-in-out infinite alternate; }
@keyframes eyeGlow {
  from { filter: drop-shadow(0 0 4px #00f5ff); opacity: 0.8; }
  to { filter: drop-shadow(0 0 12px #00f5ff); opacity: 1; }
}
.antenna-blink { animation: antennaBlink 1.5s ease-in-out infinite; }
@keyframes antennaBlink {
  0%,40%,100% { opacity: 1; }
  50% { opacity: 0.2; }
}
.core-pulse { animation: corePulse 2s ease-in-out infinite; }
@keyframes corePulse {
  0%,100% { r: 8; opacity: 0.9; }
  50% { r: 12; opacity: 0.6; }
}
.blink-slow { animation: blinkSlow 3s ease-in-out infinite; }
.blink-fast { animation: blinkFast 1s ease-in-out infinite; }
@keyframes blinkSlow { 0%,100% { opacity: 1; } 50% { opacity: 0.2; } }
@keyframes blinkFast { 0%,100% { opacity: 1; } 50% { opacity: 0.1; } }
.scan-line { animation: scanMove 3s linear infinite; }
@keyframes scanMove {
  0% { transform: translateY(0); opacity: 0.3; }
  50% { opacity: 0.7; }
  100% { transform: translateY(60px); opacity: 0.3; }
}
.robot-glow {
  position: absolute;
  bottom: -40px; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 60px;
  background: radial-gradient(ellipse, rgba(0,245,255,0.25) 0%, transparent 70%);
  filter: blur(10px);
}
.robot-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0,245,255,0.15);
  animation: ringExpand 4s linear infinite;
}
.ring1 { width: 320px; height: 320px; top: 50px; left: 0; }
.ring2 { width: 400px; height: 400px; top: 10px; left: -40px; animation-delay: -2s; }
@keyframes ringExpand {
  0% { opacity: 0.5; transform: scale(0.8); }
  100% { opacity: 0; transform: scale(1.1); }
}

.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-dim); font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
  animation: fadeIn 2s 1s ease both;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, var(--cyan));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }

/* ── TICKER ── */
.ticker-wrap {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 14px 0;
  position: relative; z-index: 1;
}
.ticker {
  display: flex; gap: 0; align-items: center;
  white-space: nowrap;
  animation: ticker 25s linear infinite;
  width: max-content;
}
.ticker span {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 0 20px;
}
.ticker .sep { color: var(--cyan); padding: 0 4px; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTIONS ── */
.section { padding: 100px 0; position: relative; z-index: 1; }
.section-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--cyan);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.section-tag::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--cyan);
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 20px;
}
.section-sub {
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 60px;
  font-size: 1.05rem;
}

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.service-card {
  display: block;
  background: var(--surface);
  padding: 36px 32px;
  position: relative;
  transition: background 0.3s;
  overflow: hidden;
}
.service-card:hover { background: var(--surface-2); }
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  transform: scaleX(0);
  transition: transform 0.4s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card--highlight { background: var(--surface-2); }
.service-card--highlight::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,0,110,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.sc-icon {
  font-size: 1.6rem;
  color: var(--cyan);
  margin-bottom: 12px;
  display: block;
}
.sc-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.service-card h3 {
  font-size: 1.05rem;
  font-family: var(--font-display);
  margin-bottom: 12px;
  color: var(--text-primary);
  letter-spacing: 0.03em;
}
.service-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.65; }
.sc-arrow {
  display: inline-block;
  margin-top: 20px;
  color: var(--cyan);
  font-size: 1.1rem;
  transition: transform 0.25s;
}
.service-card:hover .sc-arrow { transform: translateX(6px); }

/* ── WHY SECTION ── */
.why-section { background: var(--surface); }
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-hexgrid {
  position: relative;
  width: 280px; height: 280px;
  margin: 0 auto;
}
.hex {
  position: absolute;
  width: 80px; height: 80px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.hex:hover { border-color: var(--cyan); box-shadow: var(--glow-cyan); transform: scale(1.1); }
.h1 { top: 0; left: 50%; transform: translateX(-50%); }
.h2 { top: 60px; left: 0; }
.h3 { top: 60px; right: 0; }
.h4 { bottom: 60px; left: 0; }
.h5 { bottom: 60px; right: 0; }
.h6 { bottom: 0; left: 50%; transform: translateX(-50%); }
.hex-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 70px; height: 70px;
  background: var(--cyan);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-deep);
  box-shadow: var(--glow-cyan);
  animation: centerPulse 3s ease-in-out infinite;
}
@keyframes centerPulse {
  0%,100% { box-shadow: var(--glow-cyan); }
  50% { box-shadow: 0 0 40px rgba(0,245,255,0.6), 0 0 80px rgba(0,245,255,0.2); }
}
.why-points { display: flex; flex-direction: column; gap: 28px; margin-top: 40px; }
.why-point {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: all 0.3s;
}
.why-point:hover { border-color: var(--border-hover); background: rgba(0,245,255,0.03); }
.wp-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 8px;
  background: rgba(0,245,255,0.1);
  border: 1px solid rgba(0,245,255,0.25);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--cyan);
}
.why-point h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}
.why-point p { font-size: 0.88rem; color: var(--text-secondary); }

/* ── BLOG PREVIEW ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.blog-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.blog-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.bc-tag {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(0,245,255,0.1);
  border: 1px solid rgba(0,245,255,0.2);
  border-radius: 4px;
  font-size: 0.72rem;
  color: var(--cyan);
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.blog-card h3 {
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.blog-card p { font-size: 0.88rem; color: var(--text-secondary); margin-bottom: 20px; }
.bc-meta { display: flex; justify-content: space-between; align-items: center; }
.bc-date { font-size: 0.78rem; color: var(--text-dim); font-family: var(--font-mono); }
.bc-read { font-size: 0.78rem; color: var(--cyan); font-family: var(--font-mono); }
.center-cta { text-align: center; }

/* ── CTA BAND ── */
.cta-band {
  position: relative;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 24px;
  overflow: hidden;
  z-index: 1;
}
.cta-band-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 200px;
  background: radial-gradient(ellipse, rgba(0,245,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-band h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); margin-bottom: 8px; }
.cta-band p { color: var(--text-secondary); }

/* ── FOOTER ── */
#main-footer {
  background: var(--blue-mid);
  border-top: 1px solid var(--border);
  position: relative; z-index: 1;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  padding: 70px 0 50px;
}
.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 20px;
  max-width: 320px;
}
.social-links { display: flex; gap: 10px; margin-top: 24px; }
.social-link {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-secondary);
  transition: all 0.25s;
}
.social-link:hover { border-color: var(--cyan); color: var(--cyan); background: rgba(0,245,255,0.08); }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.fl-col h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.fl-col ul { list-style: none; }
.fl-col li { margin-bottom: 10px; }
.fl-col a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.fl-col a:hover { color: var(--cyan); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
}
.footer-tagline .accent { color: var(--cyan); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: calc(var(--header-h) + 80px) 24px 70px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,245,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,245,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
.page-hero .container { position: relative; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 16px; }
.page-hero p { color: var(--text-secondary); font-size: 1.1rem; max-width: 550px; }
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}
.breadcrumb a { color: var(--cyan); }
.breadcrumb span { margin: 0 8px; }

/* ── SERVICE DETAIL CARDS ── */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
.sd-visual {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sd-visual::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0,245,255,0.06) 0%, transparent 60%);
}
.sd-icon { font-size: 5rem; display: block; margin-bottom: 16px; }
.sd-title { font-family: var(--font-display); font-size: 1rem; color: var(--cyan); }
.sd-content h2 { font-size: 1.8rem; margin-bottom: 16px; }
.sd-content p { color: var(--text-secondary); margin-bottom: 24px; }
.sd-features { list-style: none; }
.sd-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--text-secondary);
  display: flex; align-items: center; gap: 10px;
}
.sd-features li::before { content: '✓'; color: var(--cyan); font-weight: 700; }

/* ── ABOUT PAGE ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s;
}
.team-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--surface-3);
  border: 2px solid var(--border);
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
}
.team-card h3 { font-size: 1rem; margin-bottom: 4px; }
.team-card .role { color: var(--cyan); font-size: 0.82rem; font-family: var(--font-mono); }
.team-card p { color: var(--text-secondary); font-size: 0.88rem; margin-top: 12px; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}
.value-card h3 { font-size: 1rem; margin-bottom: 10px; color: var(--cyan); }
.value-card p { color: var(--text-secondary); font-size: 0.9rem; }

/* ── BLOG PAGE ── */
.blog-full-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
}
.blog-main-post {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
}
.bmp-thumb {
  width: 100%; height: 220px;
  background: var(--surface-3);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.bmp-body { padding: 32px; }
.bmp-body h2 { font-size: 1.3rem; margin-bottom: 12px; }
.bmp-body p { color: var(--text-secondary); font-size: 0.92rem; margin-bottom: 20px; }
.blog-sidebar { }
.sidebar-widget {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}
.sidebar-widget h3 {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 16px;
  font-family: var(--font-mono);
}
.sidebar-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.sidebar-tag {
  padding: 4px 10px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 0.78rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s;
}
.sidebar-tag:hover { border-color: var(--cyan); color: var(--cyan); }

/* ── CONTACT PAGE ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  padding: 80px 0;
}
.contact-info h2 { font-size: 1.6rem; margin-bottom: 20px; }
.contact-info p { color: var(--text-secondary); margin-bottom: 40px; }
.contact-detail {
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 28px;
}
.cd-icon {
  width: 44px; height: 44px;
  background: rgba(0,245,255,0.08);
  border: 1px solid rgba(0,245,255,0.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.cd-label { font-size: 0.78rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.1em; font-family: var(--font-mono); }
.cd-value { font-size: 0.95rem; color: var(--text-primary); margin-top: 3px; }

/* FORM */
.quote-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
}
.quote-form h2 { font-size: 1.4rem; margin-bottom: 8px; }
.quote-form .form-sub { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  font-family: var(--font-mono);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--blue-mid);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.25s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,245,255,0.08);
}
.form-group select { cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { margin-top: 8px; }
.form-submit .btn-primary { width: 100%; justify-content: center; padding: 16px; }
.form-note { font-size: 0.78rem; color: var(--text-dim); text-align: center; margin-top: 12px; font-family: var(--font-mono); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-robot { display: none; }
  .hero-content { margin-left: 0; max-width: 100%; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-inner { grid-template-columns: 1fr; }
  .why-visual { display: none; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .blog-full-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail.reverse { direction: ltr; }
}
@media (max-width: 768px) {
  :root { --header-h: 64px; }
  #main-nav {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    background: var(--blue-mid);
    border-bottom: 1px solid var(--border);
    padding: 16px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s;
  }
  #main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  #main-nav ul { flex-direction: column; gap: 0; }
  #main-nav a { padding: 12px 16px; }
  .dropdown {
    position: static; opacity: 1; visibility: visible;
    transform: none; background: var(--blue-deep);
    border: none; padding: 0 0 0 16px;
  }
  .hamburger { display: flex; }
  .btn-quote { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .footer-bottom .container { flex-direction: column; gap: 8px; text-align: center; }
}
