/* ============================================================
   GREY SHIELD SECURITY — Global Stylesheet
   ============================================================ */

/* ── Global overflow fix ────────────────────────────────────── */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}
section, header, footer, nav, main, div {
  max-width: 100%;
}

@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400;500;600;700&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --bg:          #030507;
  --bg-2:        #080c10;
  --bg-3:        #0d1117;
  --cyan:        #00e5ff;
  --cyan-dim:    #00b8cc;
  --cyan-glow:   rgba(0, 229, 255, 0.15);
  --cyan-glow-s: rgba(0, 229, 255, 0.06);
  --white:       #f0f4f8;
  --grey-l:      #8fa3b1;
  --grey-m:      #4a5568;
  --grey-d:      #1e2530;
  --red:         #ff3b55;
  --green:       #00ff88;
  --mono:        'JetBrains Mono', monospace;
  --sans:        'Space Grotesk', sans-serif;
  --nav-h:       72px;
  --radius:      6px;
  --transition:  0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Grid background ────────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(0,229,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,255,0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* ── Navbar ──────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0 clamp(1.5rem, 5vw, 3.5rem);
  background: rgba(3, 5, 7, 0.75);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(0,229,255,0.08);
  transition: background var(--transition);
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}
.navbar.scrolled { background: rgba(3, 5, 7, 0.95); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--mono);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 36px; height: 36px;
  background: var(--cyan-glow);
  border: 1px solid rgba(0,229,255,0.35);
  border-radius: 8px;
  display: grid;
  place-items: center;
}
.nav-logo-icon svg { width: 18px; height: 18px; fill: var(--cyan); }
.nav-logo span.accent { color: var(--cyan); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--grey-l);
  padding: 0.45rem 1rem;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  text-transform: uppercase;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--cyan);
  background: var(--cyan-glow-s);
}

.nav-cta {
  margin-left: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--cyan);
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius);
  transition: box-shadow var(--transition), transform var(--transition);
}
.nav-cta:hover {
  box-shadow: 0 0 20px rgba(0,229,255,0.5);
  transform: translateY(-1px);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 8px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--grey-l);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(3, 5, 7, 0.98);
  border-bottom: 1px solid rgba(0,229,255,0.1);
  padding: 1.5rem clamp(1.5rem, 5vw, 3.5rem);
  flex-direction: column;
  gap: 0.5rem;
  z-index: 999;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--mono);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-l);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--grey-d);
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--cyan); }
.nav-mobile .nav-cta {
  margin-left: 0;
  margin-top: 0.5rem;
  justify-content: center;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--cyan);
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--cyan);
  transition: box-shadow var(--transition), transform var(--transition);
}
.btn-primary:hover {
  box-shadow: 0 0 30px rgba(0,229,255,0.5), 0 0 60px rgba(0,229,255,0.15);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  background: transparent;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(0,229,255,0.4);
  transition: all var(--transition);
}
.btn-outline:hover {
  background: var(--cyan-glow);
  border-color: var(--cyan);
  box-shadow: 0 0 20px rgba(0,229,255,0.2);
}

/* ── Section base ────────────────────────────────────────────── */
section { position: relative; z-index: 1; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1.25rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--cyan);
}

.section-title {
  font-family: var(--sans);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.section-title .accent { color: var(--cyan); }

.section-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: var(--grey-l);
  max-width: 52ch;
  line-height: 1.7;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}

/* ── Cards / Glassmorphism ───────────────────────────────────── */
.glass-card {
  background: rgba(13, 17, 23, 0.7);
  border: 1px solid rgba(0,229,255,0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.glass-card:hover {
  border-color: rgba(0,229,255,0.3);
  box-shadow: 0 0 30px rgba(0,229,255,0.08);
  transform: translateY(-3px);
}

/* ── Badge ───────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.6rem 1.25rem;
  border-radius: 6px;
  border: 1px solid;
  transition: all var(--transition);

}
.badge-cyan { color: var(--cyan); border-color: rgba(0,229,255,0.35); background: var(--cyan-glow-s); }
.badge-green {
  color: var(--cyan);
  border-color: rgba(0,229,255,0.45);
  background: rgba(0,229,255,0.06);
  box-shadow: 0 0 16px rgba(0,229,255,0.12), inset 0 0 12px rgba(0,229,255,0.05);
}
.badge-green:hover {
  background: rgba(0,229,255,0.12);
  box-shadow: 0 0 24px rgba(0,229,255,0.25), inset 0 0 16px rgba(0,229,255,0.08);
  border-color: rgba(0,229,255,0.8);

}
.badge-red   { color: var(--red);   border-color: rgba(255,59,85,0.35);  background: rgba(255,59,85,0.06); }

/* ── Footer ──────────────────────────────────────────────────── */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--grey-d);
  background: var(--bg-2);
  padding: 4rem clamp(1.5rem, 5vw, 3rem) 2rem;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
}
.footer-brand p {
  color: var(--grey-l);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 30ch;
}
.footer-col h4 {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col ul a {
  font-size: 0.875rem;
  color: var(--grey-l);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--grey-d);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--grey-m);
}
.footer-bottom .status { display: flex; align-items: center; gap: 0.5rem; }
.status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.5} }

/* ── Hero ─────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 4rem) clamp(1.5rem, 5vw, 3rem) 5rem;
  width: 100%;
  overflow-x: hidden;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 460px), 1fr));
  gap: 4rem;
  align-items: center;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.hero-eyebrow .badge { font-size: 0.82rem; }
.hero-eyebrow-line {
  width: 0px; height: 1px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  opacity: 0.6;

}
.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.07;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero-title .accent { color: var(--cyan); }
.hero-title .dim { color: var(--grey-l); }
.hero-desc {
  font-size: 1.05rem;
  color: var(--grey-l);
  line-height: 1.75;
  max-width: 48ch;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-metrics {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--grey-d);
}
.hero-metric-val {
  font-family: var(--mono);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
}
.hero-metric-val .accent { color: var(--cyan); }
.hero-metric-label {
  font-size: 0.78rem;
  color: var(--grey-l);
  margin-top: 0.2rem;
}

/* Terminal */
.terminal {
  background: #0a0e14;
  border: 1px solid rgba(0,229,255,0.15);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(0,229,255,0.07), 0 40px 80px rgba(0,0,0,0.5);
}
.terminal-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.25rem;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(0,229,255,0.08);
}
.terminal-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
}
.td-r { background: #ff5f57; }
.td-y { background: #febc2e; }
.td-g { background: #28c840; }
.terminal-title {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--grey-m);
  margin-left: 0.5rem;
}
.terminal-body {
  padding: 1.5rem;
  min-height: 280px;
  font-family: var(--mono);
  font-size: 0.8rem;
  line-height: 1.85;
}
.t-line { display: block; }
.t-prompt { color: var(--cyan); }
.t-cmd { color: var(--white); }
.t-out { color: var(--grey-l); }
.t-success { color: var(--green); }
.t-warn { color: #ffcc00; }
.t-err { color: var(--red); }
.t-cursor {
  display: inline-block;
  width: 8px; height: 1em;
  background: var(--cyan);
  vertical-align: text-bottom;
  animation: blink 1s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* ── Services section ────────────────────────────────────────── */
.services-section {
  padding: 6rem clamp(1.5rem, 5vw, 3rem);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.service-card {
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--cyan);
  transition: height 0.4s ease;
}
.service-card:hover::after { height: 100%; }
.service-icon {
  width: 48px; height: 48px;
  border: 1px solid rgba(0,229,255,0.2);
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  background: var(--cyan-glow-s);
  font-size: 1.25rem;
}
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.65rem;
}
.service-card p {
  font-size: 0.875rem;
  color: var(--grey-l);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  transition: gap var(--transition);
}
.service-link:hover { gap: 0.75rem; }
.service-link svg { width: 14px; height: 14px; }

/* ── Stats ───────────────────────────────────────────────────── */
.stats-section {
  padding: 5rem clamp(1.5rem, 5vw, 3rem);
  background: var(--bg-2);
  border-top: 1px solid var(--grey-d);
  border-bottom: 1px solid var(--grey-d);
}
.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item {
  padding: 2.5rem 1.5rem;
  border-right: 1px solid var(--grey-d);
}
.stat-item:last-child { border-right: none; }
.stat-val {
  font-family: var(--mono);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 700;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--grey-l);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── CTA section ──────────────────────────────────────────────── */
.cta-section {
  padding: 7rem clamp(1.5rem, 5vw, 3rem);
  text-align: center;
}
.cta-inner {
  max-width: 700px;
  margin: 0 auto;
}
.cta-inner .section-title { margin-bottom: 1.25rem; }
.cta-inner .section-subtitle { margin: 0 auto 2.5rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Services page ────────────────────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + 4rem) clamp(1.5rem, 5vw, 3rem) 4rem;
  border-bottom: 1px solid var(--grey-d);
}
.page-hero-inner { max-width: 1200px; margin: 0 auto; }

.services-list-section {
  padding: 5rem clamp(1.5rem, 5vw, 3rem);
}
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.service-full-card {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.service-full-card .top { display: flex; justify-content: space-between; align-items: flex-start; }
.service-full-card h2 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
}
.service-full-card p { font-size: 0.875rem; color: var(--grey-l); line-height: 1.7; flex: 1; }
.service-full-card .tags { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-top: auto; padding-top: 0.5rem; }

/* ── Case studies ─────────────────────────────────────────────── */
.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.case-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.case-card .cs-header { display: flex; justify-content: space-between; align-items: center; }
.case-card .cs-industry {
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--grey-l);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.case-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.35;
}
.case-card .cs-challenge, .case-card .cs-result {
  font-size: 0.85rem;
  color: var(--grey-l);
  line-height: 1.65;
}
.case-card .cs-result strong { color: var(--green); }
.case-metrics {
  display: flex;
  gap: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--grey-d);
  margin-top: auto;
}
.cs-metric-val {
  font-family: var(--mono);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cyan);
}
.cs-metric-label { font-size: 0.72rem; color: var(--grey-l); margin-top: 0.1rem; }

/* ── Service detail page ───────────────────────────────────────── */
.svc-detail-hero {
  padding: calc(var(--nav-h) + 5rem) clamp(1.5rem, 5vw, 3rem) 5rem;
  border-bottom: 1px solid var(--grey-d);
}
.svc-detail-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: center;
}
.svc-info-box {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.svc-info-item { display: flex; flex-direction: column; gap: 0.3rem; }
.svc-info-item label {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-m);
}
.svc-info-item span { font-size: 0.9rem; color: var(--white); }

.methodology-section { padding: 5rem clamp(1.5rem, 5vw, 3rem); }
.methodology-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.method-step { padding: 1.75rem; position: relative; }
.step-num {
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--cyan);
  letter-spacing: 0.2em;
  margin-bottom: 0.75rem;
}
.method-step h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.6rem; }
.method-step p { font-size: 0.85rem; color: var(--grey-l); line-height: 1.65; }

.tools-section {
  padding: 5rem clamp(1.5rem, 5vw, 3rem);
  background: var(--bg-2);
}
.tools-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.5rem;
}
.tool-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--grey-l);
  background: var(--bg-3);
  border: 1px solid var(--grey-d);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: border-color var(--transition), color var(--transition);
}
.tool-chip:hover { border-color: var(--cyan); color: var(--cyan); }
.tool-chip::before { content: '▸'; color: var(--cyan); font-size: 0.6rem; }

.benefits-section { padding: 5rem clamp(1.5rem, 5vw, 3rem); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.benefit-card { padding: 1.75rem; }
.benefit-icon { font-size: 1.5rem; margin-bottom: 1rem; }
.benefit-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.benefit-card p { font-size: 0.85rem; color: var(--grey-l); line-height: 1.65; }

/* ── Contact ──────────────────────────────────────────────────── */
.contact-section {
  padding: 5rem clamp(1.5rem, 5vw, 3rem);
}
.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-info-icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(0,229,255,0.2);
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.contact-info-text h4 { font-size: 0.875rem; font-weight: 600; margin-bottom: 0.25rem; }
.contact-info-text p { font-size: 0.85rem; color: var(--grey-l); }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-l);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg-3);
  border: 1px solid var(--grey-d);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.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,0.08);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group select { appearance: none; cursor: pointer; }
.honeypot { display: none !important; }
.form-submit .btn-primary { width: 100%; justify-content: center; }
.form-note {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--grey-m);
  text-align: center;
  margin-top: 0.5rem;
}
.form-success {
  display: none;
  text-align: center;
  padding: 3rem;
}
.form-success.show { display: block; }
.form-success .icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.form-success p { color: var(--grey-l); font-size: 0.9rem; }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .terminal { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--grey-d); }
  .stat-item:nth-child(even) { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .svc-detail-hero-inner { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero-inner { gap: 2rem; }
  .hero-content { min-width: 0; width: 100%; }
  .hero-title { font-size: clamp(2rem, 8vw, 2.75rem); }
  .hero-desc { font-size: 0.95rem; max-width: 100%; }
  .hero-metrics { gap: 1.5rem; flex-wrap: wrap; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 2.25rem; }
}

/* ── Utility ─────────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mb-3 { margin-bottom: 0.75rem; }
.divider {
  height: 1px;
  background: var(--grey-d);
  margin: 3rem 0;
}
.glow-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  margin: 0;
  opacity: 0.5;
}

/* ── Scroll reveal ────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── custom logo ────────────────────────────────────────────── */

.nav-logo img {
  height: 38px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 6px rgba(0, 229, 255, 0.8));
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 3px;
}