/*
Theme Name: Global IT Solutions
Theme URI: https://globalitsolutions.com
Author: Global IT Solutions
Author URI: https://globalitsolutions.com
Description: Enterprise Technology & Security theme. Dark, professional with animated network backgrounds, cybersecurity HUD panels, and a navy/electric blue design system. Full multi-page build.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
License URI: #
Text Domain: global-it-solutions
Tags: business, corporate, technology, cybersecurity, dark, custom-colors, custom-logo
*/

/* ─────────────────────────────────────────────
   DESIGN TOKENS
───────────────────────────────────────────── */
:root {
  --navy:          #081C3A;
  --navy-mid:      #0B2550;
  --navy-light:    #0D2D5E;
  --royal:         #0057FF;
  --royal-mid:     #0047D0;
  --electric:      #00B7FF;
  --electric-dim:  rgba(0,183,255,0.15);
  --electric-glow: rgba(0,183,255,0.08);
  --silver:        #C0C7D1;
  --silver-dim:    rgba(192,199,209,0.5);
  --white:         #FFFFFF;
  --white-90:      rgba(255,255,255,0.9);
  --white-60:      rgba(255,255,255,0.6);
  --white-30:      rgba(255,255,255,0.3);
  --white-10:      rgba(255,255,255,0.08);
  --white-05:      rgba(255,255,255,0.04);
  --border:        rgba(0,183,255,0.12);
  --border-bright: rgba(0,183,255,0.3);
}

/* ─────────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ─────────────────────────────────────────────
   NAV
───────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(8,28,58,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 5vw;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
  transition: background 0.3s;
}
.site-header.scrolled { background: rgba(8,28,58,0.98); }

.nav-brand { display: flex; align-items: center; gap: 14px; }
.nav-logo img { height: 36px; width: auto; }
.nav-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 18px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--white); white-space: nowrap;
}
.nav-name span { color: var(--electric); }

/* Primary menu */
.nav-links,
.primary-menu {
  display: flex; align-items: center; gap: 24px;
  list-style: none; margin: 0; padding: 0;
}
.nav-links li,
.primary-menu li { position: relative; }

.nav-links a,
.primary-menu a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--silver); transition: color 0.2s; white-space: nowrap;
}
.nav-links a:hover,
.primary-menu a:hover { color: var(--electric); }

/* Active page highlight */
.nav-links li.current-menu-item > a,
.primary-menu li.current-menu-item > a,
.primary-menu li.current_page_item > a { color: var(--electric); }

/* Services dropdown */
.primary-menu li.menu-item-has-children > a::after {
  content: ' ▾';
  font-size: 10px;
  color: var(--electric);
}
.primary-menu li.menu-item-has-children:hover > .sub-menu,
.primary-menu li.menu-item-has-children:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.sub-menu {
  position: absolute; top: calc(100% + 12px); left: 0;
  background: rgba(8,28,58,0.98);
  border: 1px solid var(--border-bright);
  backdrop-filter: blur(12px);
  min-width: 220px;
  list-style: none; padding: 8px 0;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  z-index: 200;
}
.sub-menu li a {
  display: block; padding: 10px 20px;
  font-size: 12px; letter-spacing: 0.08em;
  border-left: 2px solid transparent;
  transition: all 0.15s;
}
.sub-menu li a:hover { border-left-color: var(--electric); background: var(--electric-glow); color: var(--electric); }

/* Contact CTA */
.nav-cta > a,
.primary-menu .nav-cta > a {
  background: var(--royal) !important;
  color: var(--white) !important;
  padding: 8px 18px !important;
  border: 1px solid var(--royal) !important;
  transition: background 0.2s, color 0.2s, border-color 0.2s !important;
}
.nav-cta > a:hover,
.primary-menu .nav-cta > a:hover {
  background: var(--electric) !important;
  color: var(--navy) !important;
  border-color: var(--electric) !important;
}

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; background: none; border: none;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--silver); transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed; top: 70px; left: 0; right: 0; z-index: 999;
  background: rgba(8,28,58,0.98);
  border-bottom: 1px solid var(--border-bright);
  backdrop-filter: blur(12px);
  padding: 20px 5vw 30px;
  max-height: calc(100vh - 70px); overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; }
.mobile-nav > ul > li { border-bottom: 1px solid var(--border); }
.mobile-nav > ul > li > a {
  display: block; padding: 14px 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--silver);
}
.mobile-nav > ul > li > a:hover { color: var(--electric); }
.mobile-nav .sub-menu {
  position: static; opacity: 1; visibility: visible; transform: none;
  background: none; border: none; backdrop-filter: none;
  padding: 0 0 10px 16px; min-width: auto;
}
.mobile-nav .sub-menu li a { padding: 8px 0; border-left: none; font-size: 13px; }
.mobile-nav .nav-cta > a {
  background: var(--royal) !important; color: var(--white) !important;
  padding: 8px 20px !important; border: 1px solid var(--royal) !important;
  display: inline-block; margin-top: 6px;
}

/* ─────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────── */
.btn-primary {
  padding: 14px 32px; background: var(--royal); border: 1px solid var(--royal);
  color: var(--white); font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; text-decoration: none; display: inline-block; transition: all 0.2s;
}
.btn-primary:hover { background: var(--electric); border-color: var(--electric); color: var(--navy); }

.btn-outline {
  padding: 14px 32px; background: transparent; border: 1px solid var(--border-bright);
  color: var(--electric); font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; text-decoration: none; display: inline-block; transition: all 0.2s;
}
.btn-outline:hover { background: var(--electric-dim); border-color: var(--electric); }

/* ─────────────────────────────────────────────
   HERO (front page)
───────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 140px 5vw 80px; overflow: hidden;
}
.hero-canvas {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
}
.hero-content { position: relative; z-index: 2; max-width: 680px; }
.hero-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.hero-eyebrow-line { width: 40px; height: 1px; background: var(--electric); }
.hero-eyebrow span {
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px; color: var(--electric);
  letter-spacing: 0.2em; text-transform: uppercase;
}
.hero-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 700; line-height: 1.0; letter-spacing: -0.01em; margin-bottom: 28px;
}
.hero-headline .accent { color: var(--electric); }
.hero-subheadline {
  font-size: 17px; font-weight: 300;
  color: var(--silver); line-height: 1.7; max-width: 560px; margin-bottom: 44px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* HUD Panel */
.hero-hud { position: absolute; right: 5vw; top: 50%; transform: translateY(-50%); z-index: 2; width: 320px; }
.hud-panel {
  background: rgba(8,28,58,0.9); border: 1px solid var(--border-bright);
  padding: 24px; backdrop-filter: blur(8px);
}
.hud-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--border);
}
.hud-title { font-family: 'Share Tech Mono', monospace; font-size: 11px; color: var(--electric); letter-spacing: 0.12em; text-transform: uppercase; }
.hud-live { display: flex; align-items: center; gap: 6px; font-family: 'Share Tech Mono', monospace; font-size: 10px; color: var(--electric); letter-spacing: 0.1em; }
.hud-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--electric); animation: pulse 1.5s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.hud-score-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; margin-top: 14px; }
.hud-score-label { font-family: 'Share Tech Mono', monospace; font-size: 9px; color: var(--silver-dim); letter-spacing: 0.08em; }
.hud-score-value { font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 600; color: var(--electric); }
.hud-score-bar { height: 3px; background: var(--white-10); margin-bottom: 2px; }
.hud-score-bar-fill { height: 100%; background: var(--electric); transition: width 1s ease; }
.hud-score-bar-fill.warn   { background: #FFB700; }
.hud-score-bar-fill.danger { background: #FF6B35; }
.hud-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border); }
.hud-metric { text-align: center; }
.hud-metric-val { font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 600; color: var(--electric); display: block; }
.hud-metric-lbl { font-family: 'Share Tech Mono', monospace; font-size: 8px; color: var(--silver-dim); letter-spacing: 0.08em; display: block; margin-top: 3px; }

/* ─────────────────────────────────────────────
   PAGE HERO (inner pages)
───────────────────────────────────────────── */
.page-hero {
  position: relative; padding: 160px 5vw 80px;
  background: var(--navy); overflow: hidden;
  border-bottom: 1px solid var(--border);
  min-height: 480px; display: flex; align-items: center;
}
.page-hero-canvas {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; opacity: 0.4;
}
.page-hero-content { position: relative; z-index: 2; max-width: 800px; }
.page-hero-badge {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
}
.page-hero-badge-line { width: 30px; height: 1px; background: var(--electric); }
.page-hero-badge span {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px; color: var(--electric);
  letter-spacing: 0.2em; text-transform: uppercase;
}
.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 700; line-height: 1.0; margin-bottom: 24px;
}
.page-hero h1 .accent { color: var(--electric); }
.page-hero p {
  font-size: 18px; font-weight: 300; color: var(--silver); line-height: 1.7;
  max-width: 600px; margin-bottom: 40px;
}
.page-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.page-hero-icon {
  position: absolute; right: 8vw; top: 50%; transform: translateY(-50%);
  z-index: 2; opacity: 0.12;
}
.page-hero-icon svg { width: 280px; height: 280px; stroke: var(--electric); fill: none; stroke-width: 0.5; }

/* ─────────────────────────────────────────────
   SECTIONS
───────────────────────────────────────────── */
section { padding: 100px 5vw; }
.section-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.section-eyebrow-line { width: 30px; height: 1px; background: var(--electric); }
.section-eyebrow span { font-family: 'Share Tech Mono', monospace; font-size: 11px; color: var(--electric); letter-spacing: 0.2em; text-transform: uppercase; }
.section-headline { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(32px, 4vw, 52px); font-weight: 700; line-height: 1.05; margin-bottom: 20px; }
.section-sub { font-size: 16px; font-weight: 300; color: var(--silver); line-height: 1.7; max-width: 560px; margin-bottom: 60px; }

/* ─────────────────────────────────────────────
   SERVICE PAGE FEATURE GRID
───────────────────────────────────────────── */
.feature-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px; background: var(--border); border: 1px solid var(--border);
}
.feature-card {
  background: var(--navy); padding: 36px 32px;
  transition: background 0.3s; position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 2px; height: 0; background: var(--electric); transition: height 0.4s ease;
}
.feature-card:hover::before { height: 100%; }
.feature-card:hover { background: var(--navy-mid); }
.feature-card-icon {
  width: 48px; height: 48px; border: 1px solid var(--border-bright);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; background: var(--electric-glow);
}
.feature-card-icon svg { width: 22px; height: 22px; stroke: var(--electric); fill: none; stroke-width: 1.5; }
.feature-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 600; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--silver); line-height: 1.7; }

/* ─────────────────────────────────────────────
   TWO-COLUMN LAYOUT (service detail)
───────────────────────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.two-col-content h2 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(28px, 3.5vw, 44px); font-weight: 700; line-height: 1.05; margin-bottom: 20px; }
.two-col-content p { font-size: 15px; color: var(--silver); line-height: 1.8; margin-bottom: 20px; }
.two-col-visual {
  background: var(--navy-mid); border: 1px solid var(--border);
  padding: 40px; display: flex; align-items: center; justify-content: center; min-height: 360px;
}

/* ─────────────────────────────────────────────
   CHECK LIST
───────────────────────────────────────────── */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 18px; border: 1px solid var(--border); background: var(--electric-glow);
}
.check-list li .icon { width: 20px; height: 20px; flex-shrink: 0; stroke: var(--electric); fill: none; stroke-width: 1.5; }
.check-list li span { font-family: 'Barlow Condensed', sans-serif; font-size: 15px; font-weight: 500; letter-spacing: 0.03em; }

/* ─────────────────────────────────────────────
   PROCESS STEPS (horizontal or vertical)
───────────────────────────────────────────── */
.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: flex; gap: 28px; align-items: flex-start;
  padding: 28px 0; border-bottom: 1px solid var(--border);
}
.process-step:last-child { border-bottom: none; }
.process-num {
  font-family: 'Barlow Condensed', sans-serif; font-size: 44px; font-weight: 700;
  color: var(--electric); opacity: 0.3; line-height: 1; flex-shrink: 0; width: 60px;
}
.process-body h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 600; margin-bottom: 6px; }
.process-body p { font-size: 14px; color: var(--silver); line-height: 1.7; }

/* ─────────────────────────────────────────────
   TECH TAGS CLUSTER
───────────────────────────────────────────── */
.tech-cluster { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.tech-tag {
  font-family: 'Share Tech Mono', monospace; font-size: 10px; color: var(--electric);
  border: 1px solid var(--border-bright); padding: 6px 14px;
  letter-spacing: 0.08em; background: var(--electric-glow);
}

/* ─────────────────────────────────────────────
   HIGHLIGHT BAND (dark alternate)
───────────────────────────────────────────── */
.section-alt { background: var(--navy-mid); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-dark { background: #050F1E; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* ─────────────────────────────────────────────
   CTA BAND
───────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-light) 100%);
  border-top: 1px solid var(--border-bright);
  border-bottom: 1px solid var(--border-bright);
  padding: 80px 5vw; text-align: center;
}
.cta-band h2 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(32px, 4vw, 52px); font-weight: 700; margin-bottom: 16px; }
.cta-band p { font-size: 17px; color: var(--silver); margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-band .cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─────────────────────────────────────────────
   ABOUT PAGE
───────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.team-card { background: var(--navy); padding: 36px 28px; transition: background 0.3s; }
.team-card:hover { background: var(--navy-mid); }
.team-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--navy-light); border: 2px solid var(--border-bright);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.team-avatar svg { width: 32px; height: 32px; stroke: var(--electric); fill: none; stroke-width: 1.5; }
.team-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 600; margin-bottom: 4px; }
.team-card .role { font-family: 'Share Tech Mono', monospace; font-size: 10px; color: var(--electric); letter-spacing: 0.1em; display: block; margin-bottom: 14px; }
.team-card p { font-size: 13px; color: var(--silver); line-height: 1.7; }

.value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.value-card {
  border: 1px solid var(--border); padding: 32px; background: var(--electric-glow);
  transition: border-color 0.3s;
}
.value-card:hover { border-color: var(--border-bright); }
.value-card .vnum {
  font-family: 'Barlow Condensed', sans-serif; font-size: 40px; font-weight: 700;
  color: var(--electric); opacity: 0.25; line-height: 1; margin-bottom: 12px;
}
.value-card h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--silver); line-height: 1.7; }

/* Partner logos */
.partner-logos { display: flex; flex-wrap: wrap; gap: 0; border: 1px solid var(--border); background: var(--border); }
.partner-logo {
  background: var(--navy); flex: 1 1 160px; min-height: 90px;
  display: flex; align-items: center; justify-content: center;
  padding: 20px 30px; transition: background 0.3s;
}
.partner-logo:hover { background: var(--navy-mid); }
.partner-logo span {
  font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 600;
  letter-spacing: 0.1em; color: var(--silver-dim);
}

/* ─────────────────────────────────────────────
   CONTACT PAGE
───────────────────────────────────────────── */
.contact-page-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contact-info h2 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(32px, 4vw, 52px); font-weight: 700; line-height: 1.05; margin-bottom: 20px; }
.contact-info p { font-size: 16px; color: var(--silver); line-height: 1.7; margin-bottom: 40px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-detail-icon { width: 40px; height: 40px; flex-shrink: 0; border: 1px solid var(--border-bright); display: flex; align-items: center; justify-content: center; background: var(--electric-glow); }
.contact-detail-icon svg { width: 18px; height: 18px; stroke: var(--electric); fill: none; stroke-width: 1.5; }
.contact-detail-label { font-family: 'Share Tech Mono', monospace; font-size: 10px; color: var(--silver-dim); letter-spacing: 0.1em; display: block; }
.contact-detail-val { font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 500; margin-top: 2px; display: block; }

/* Form */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { font-family: 'Share Tech Mono', monospace; font-size: 10px; color: var(--silver); letter-spacing: 0.1em; display: block; margin-bottom: 8px; text-transform: uppercase; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px; background: var(--navy-mid);
  border: 1px solid var(--border-bright); color: var(--white);
  font-family: 'Barlow', sans-serif; font-size: 14px;
  transition: border-color 0.2s; outline: none; appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--electric); }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2300B7FF' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-consent { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 24px; }
.form-consent input[type="checkbox"] { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; accent-color: var(--electric); }
.form-consent label { font-size: 12px; color: var(--silver); line-height: 1.5; }
#formSuccess, .form-success {
  display: none; padding: 40px; text-align: center;
  border: 1px solid var(--border-bright); background: var(--electric-glow);
}
#formSuccess h3, .form-success h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 28px; font-weight: 700; margin-bottom: 12px; }
#formSuccess p, .form-success p { color: var(--silver); font-size: 15px; }

/* ─────────────────────────────────────────────
   SERVICE CARDS (home)
───────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1px; border: 1px solid var(--border); background: var(--border); }
.service-card { background: var(--navy); padding: 40px; transition: background 0.3s; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 2px; height: 0; background: var(--electric); transition: height 0.4s ease; }
.service-card:hover::before { height: 100%; }
.service-card:hover { background: var(--navy-mid); }
.service-icon { width: 48px; height: 48px; border: 1px solid var(--border-bright); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; background: var(--electric-glow); }
.service-icon svg { width: 24px; height: 24px; stroke: var(--electric); fill: none; stroke-width: 1.5; }
.service-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 600; letter-spacing: 0.02em; margin-bottom: 12px; }
.service-card p { font-size: 14px; color: var(--silver); line-height: 1.7; margin-bottom: 24px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { font-family: 'Share Tech Mono', monospace; font-size: 10px; color: var(--electric); border: 1px solid var(--border-bright); padding: 4px 10px; letter-spacing: 0.08em; background: var(--electric-glow); }
.service-card .learn-more { display: inline-block; margin-top: 20px; font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--electric); border-bottom: 1px solid var(--border-bright); padding-bottom: 2px; transition: color 0.2s, border-color 0.2s; }
.service-card .learn-more:hover { color: var(--white); border-color: var(--white); }

/* ─────────────────────────────────────────────
   SECURITY SECTION
───────────────────────────────────────────── */
.security-section { background: var(--navy-mid); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.security-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.score-ring-wrap { position: relative; width: 220px; height: 220px; margin: 0 auto 40px; }
.score-ring-wrap svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.score-ring-bg { fill: none; stroke: var(--white-10); stroke-width: 8; }
.score-ring-fill { fill: none; stroke: var(--electric); stroke-width: 8; stroke-linecap: round; stroke-dasharray: 565; stroke-dashoffset: 85; transition: stroke-dashoffset 1.5s ease; }
.score-ring-center { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.score-ring-num { font-family: 'Barlow Condensed', sans-serif; font-size: 52px; font-weight: 700; color: var(--electric); line-height: 1; }
.score-ring-label { font-family: 'Share Tech Mono', monospace; font-size: 10px; color: var(--silver-dim); letter-spacing: 0.1em; margin-top: 4px; }
.security-checks { display: flex; flex-direction: column; gap: 12px; }
.check-item { display: flex; align-items: center; gap: 14px; padding: 12px 16px; border: 1px solid var(--border); background: var(--electric-glow); }
.check-icon { width: 20px; height: 20px; flex-shrink: 0; stroke: var(--electric); fill: none; stroke-width: 1.5; }
.check-label { font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 500; letter-spacing: 0.04em; }

/* ─────────────────────────────────────────────
   ROADMAP
───────────────────────────────────────────── */
.roadmap-track { display: flex; align-items: flex-start; position: relative; margin-top: 60px; }
.roadmap-track::before { content: ''; position: absolute; top: 28px; left: 28px; right: 28px; height: 1px; background: var(--border-bright); }
.roadmap-step { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; padding: 0 10px; }
.roadmap-node { width: 56px; height: 56px; border: 1px solid var(--electric); background: var(--navy); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; position: relative; z-index: 1; font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 600; color: var(--electric); letter-spacing: 0.1em; }
.roadmap-node.active { background: var(--royal); border-color: var(--royal); color: var(--white); }
.roadmap-label { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 8px; }
.roadmap-desc { font-size: 13px; color: var(--silver); line-height: 1.5; }

/* ─────────────────────────────────────────────
   STATS BAND
───────────────────────────────────────────── */
.stats-band { background: var(--navy-light); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 60px 5vw; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.stat-item { background: var(--navy); padding: 40px 30px; text-align: center; }
.stat-num { font-family: 'Barlow Condensed', sans-serif; font-size: 52px; font-weight: 700; line-height: 1; color: var(--electric); margin-bottom: 8px; }
.stat-label { font-family: 'Share Tech Mono', monospace; font-size: 11px; color: var(--silver); letter-spacing: 0.12em; text-transform: uppercase; }

/* ─────────────────────────────────────────────
   INSIGHTS CARDS
───────────────────────────────────────────── */
.insights-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.insight-card { background: var(--navy); padding: 36px; transition: background 0.3s; }
.insight-card:hover { background: var(--navy-mid); }
.insight-tag { font-family: 'Share Tech Mono', monospace; font-size: 10px; color: var(--electric); border: 1px solid var(--border-bright); padding: 4px 10px; display: inline-block; letter-spacing: 0.08em; margin-bottom: 20px; background: var(--electric-glow); }
.insight-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 600; line-height: 1.2; margin-bottom: 12px; }
.insight-card p { font-size: 14px; color: var(--silver); line-height: 1.6; margin-bottom: 24px; }
.insight-meta { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; border-top: 1px solid var(--border); font-family: 'Share Tech Mono', monospace; font-size: 10px; color: var(--silver-dim); letter-spacing: 0.06em; }
.insight-read { color: var(--electric); font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.2s; }
.insight-read:hover { color: var(--white); }

/* ─────────────────────────────────────────────
   CONTACT SECTION (home)
───────────────────────────────────────────── */
.contact-section { background: var(--navy-mid); border-top: 1px solid var(--border); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contact-info h2 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(32px, 4vw, 52px); font-weight: 700; line-height: 1.05; margin-bottom: 20px; }
.contact-info > p { font-size: 16px; color: var(--silver); line-height: 1.7; margin-bottom: 40px; }
.contact-form-wrap { }

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.site-footer { background: #050F1E; border-top: 1px solid var(--border); padding: 60px 5vw 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 48px; }
.footer-brand .nav-name { font-size: 20px; margin-bottom: 8px; display: block; }
.footer-tagline { font-family: 'Share Tech Mono', monospace; font-size: 10px; color: var(--electric); letter-spacing: 0.15em; margin-bottom: 16px; }
.footer-brand-desc { font-size: 13px; color: var(--silver); line-height: 1.7; margin-bottom: 24px; }
.footer-col h5 { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: var(--silver); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--electric); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--border); }
.footer-copyright { font-family: 'Share Tech Mono', monospace; font-size: 10px; color: var(--silver-dim); letter-spacing: 0.06em; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-family: 'Share Tech Mono', monospace; font-size: 10px; color: var(--silver-dim); letter-spacing: 0.06em; transition: color 0.2s; }
.footer-legal a:hover { color: var(--electric); }
.footer-social { display: flex; gap: 16px; }
.footer-social a { width: 36px; height: 36px; border: 1px solid var(--border-bright); display: flex; align-items: center; justify-content: center; transition: border-color 0.2s; }
.footer-social a:hover { border-color: var(--electric); }
.footer-social svg { width: 14px; height: 14px; stroke: var(--silver); fill: none; stroke-width: 1.5; }

/* ─────────────────────────────────────────────
   WORDPRESS CORE OVERRIDES
───────────────────────────────────────────── */
.wp-block-image img { border: 1px solid var(--border); }
.alignfull { margin-left: calc(-5vw); margin-right: calc(-5vw); }
.alignwide { margin-left: calc(-2vw); margin-right: calc(-2vw); }

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1200px) {
  .nav-links, .primary-menu { gap: 16px; }
}
@media (max-width: 1024px) {
  .hero-hud { display: none; }
  .security-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-layout, .contact-page-layout { grid-template-columns: 1fr; gap: 40px; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .page-hero-icon { display: none; }
}
@media (max-width: 768px) {
  .nav-links, .primary-menu { display: none; }
  .nav-hamburger { display: flex; }
  section { padding: 70px 5vw; }
  .roadmap-track { flex-direction: column; gap: 32px; }
  .roadmap-track::before { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band .cta-actions { flex-direction: column; align-items: center; }
}
