/* ── LOCAL FONTS ── */
@import url('fonts.css');

/* ── DESIGN TOKENS ── */
:root {
  --navy-950: #03080f;
  --navy-900: #060d1a;
  --navy-800: #0d1f3c;
  --navy-700: #112847;
  --navy-600: #1a3a5c;
  --mid:      #0f2035;
  --surface:  #111e30;
  --surface-2:#162840;

  --blue-300: #90CDF4;
  --blue-400: #63B3ED;
  --blue-500: #4299E1;
  --blue-600: #3182CE;
  --cyan-400: #76E4F7;
  --red-400:  #FC8181;
  --amber-400:#F6AD55;
  --green-400:#68D391;

  --text-primary:   #E8F0F8;
  --text-secondary: #8BA8C8;
  --text-muted:     #4d6a87;

  --border:       rgba(99,179,237,0.12);
  --border-hover: rgba(99,179,237,0.32);

  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --radius:    10px;
  --radius-lg: 16px;
  --section-pad: 88px 0;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--navy-900); color: var(--text-primary); line-height: 1.6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
address { font-style: normal; }
ul { list-style: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-pad); }
.section-dark { background: var(--navy-900); }
.section-mid  { background: var(--mid); }

/* ── TYPOGRAPHY ── */
h1 { font-family: var(--font-display); font-size: clamp(2.4rem,5vw,3.8rem); font-weight: 700; line-height: 1.13; letter-spacing: -.02em; }
h2 { font-family: var(--font-display); font-size: clamp(1.7rem,3vw,2.6rem); font-weight: 600; line-height: 1.18; letter-spacing: -.01em; }
h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; }
h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 600; }
h5 { font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--text-secondary); }
p  { color: var(--text-secondary); line-height: 1.72; }

.gradient-text {
  background: linear-gradient(135deg, var(--blue-400) 0%, var(--cyan-400) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.eyebrow {
  display: inline-block; font-size: .72rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--blue-400); margin-bottom: 14px;
  padding: 4px 12px; background: rgba(99,179,237,0.07);
  border: 1px solid rgba(99,179,237,0.22); border-radius: 100px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: .9rem; font-weight: 500;
  padding: 11px 22px; border-radius: 8px; border: 1.5px solid transparent;
  cursor: pointer; transition: all .2s ease; white-space: nowrap; text-decoration: none;
}
.btn-lg { padding: 13px 28px; font-size: .95rem; }
.btn-primary { background: var(--blue-500); color: #fff; border-color: var(--blue-500); }
.btn-primary:hover { background: var(--blue-600); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(66,153,225,.32); }
.btn-ghost  { background: transparent; color: var(--text-primary); border-color: var(--border-hover); }
.btn-ghost:hover  { background: rgba(255,255,255,.05); border-color: var(--blue-400); color: var(--blue-400); }
.btn-outline { background: transparent; color: var(--blue-400); border-color: var(--blue-400); }
.btn-outline:hover { background: var(--blue-400); color: var(--navy-900); }

/* ── NAV ── */
.nav-wrap {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(6,13,26,0.82); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border); transition: all .3s;
}
.nav-wrap.scrolled { background: rgba(6,13,26,0.97); box-shadow: 0 4px 28px rgba(0,0,0,.4); }
.nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  height: 66px; display: flex; align-items: center; gap: 28px;
}
.logo { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.logo-mark {
  font-family: var(--font-display); font-weight: 700; font-size: 1.35rem;
  background: linear-gradient(135deg, var(--blue-400), var(--cyan-400));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.logo-text { font-family: var(--font-display); font-weight: 500; font-size: 1.05rem; }
.nav-links { display: flex; margin-left: auto; gap: 2px; }
.nav-links a { display: block; padding: 7px 13px; font-size: .85rem; font-weight: 500; color: var(--text-secondary); border-radius: 6px; transition: all .18s; }
.nav-links a:hover, .nav-links a.active { color: var(--text-primary); background: rgba(255,255,255,.05); }
.nav-links a.active { color: var(--blue-400); }
.nav-highlight { color: var(--cyan-400) !important; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 240px; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 6px; list-style: none;
  box-shadow: 0 20px 40px rgba(0,0,0,.5); z-index: 10;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown li a { display: block; padding: 9px 14px; font-size: .83rem; border-radius: 6px; color: var(--text-secondary); }
.dropdown li a:hover { background: rgba(99,179,237,.08); color: var(--blue-400); }
.dropdown li a.dropdown-highlight { color: var(--cyan-400); }
.dropdown-divider { height: 1px; background: var(--border); margin: 5px 4px; }
.dropdown-new { color: var(--blue-400) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: all .3s; }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 110px 24px 80px; position: relative; overflow: hidden;
  max-width: 1180px; margin: 0 auto; gap: 60px;
}
/* Grid background */
body::before {
  content: ''; position: fixed; inset: 0; z-index: -1;
  background-image: linear-gradient(rgba(99,179,237,.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(99,179,237,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
/* Ambient glow */
body::after {
  content: ''; position: fixed; inset: 0; z-index: -1;
  background: radial-gradient(ellipse at 70% 30%, rgba(99,179,237,.06) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(118,228,247,.04) 0%, transparent 50%);
}

.hero-content { flex: 1; max-width: 600px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .76rem; font-weight: 500; color: var(--blue-400);
  background: rgba(99,179,237,.07); border: 1px solid rgba(99,179,237,.22);
  border-radius: 100px; padding: 6px 16px; margin-bottom: 28px;
}
.hero-badge::before { content: ''; width: 6px; height: 6px; background: var(--blue-400); border-radius: 50%; animation: pulse-dot 2s infinite; }
.hero-headline { margin-bottom: 22px; }
.hero-sub { font-size: 1.05rem; max-width: 490px; margin-bottom: 36px; line-height: 1.76; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-stats { display: flex; align-items: center; gap: 28px; padding-top: 32px; border-top: 1px solid var(--border); flex-wrap: nowrap; overflow: hidden; }
.stat { display: flex; flex-direction: column; gap: 3px; }
.stat-num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--text-primary); line-height: 1; }
.stat-plus { color: var(--blue-400); }
.stat-label { font-size: .72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; }
.stat-div { width: 1px; height: 40px; background: var(--border); }

/* Hero visual */
.hero-visual { flex: 0 0 420px; position: relative; height: 420px; display: flex; align-items: center; justify-content: center; }
.shield-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(99,179,237,.25); animation: spin-slow linear infinite; }
.ring-1 { width: 200px; height: 200px; animation-duration: 22s; }
.ring-2 { width: 300px; height: 300px; border-style: dashed; animation-duration: 34s; animation-direction: reverse; }
.ring-3 { width: 380px; height: 380px; animation-duration: 50s; border-color: rgba(99,179,237,.12); }
.shield-core {
  width: 108px; height: 108px; z-index: 2;
  background: linear-gradient(145deg, var(--navy-700), var(--navy-800));
  border: 1.5px solid rgba(99,179,237,.3); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 60px rgba(99,179,237,.15), 0 0 20px rgba(99,179,237,.1), inset 0 1px 0 rgba(99,179,237,.2);
}
.threat-badge {
  position: absolute; display: flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 100px; padding: 9px 16px; font-size: .78rem; font-weight: 500;
  white-space: nowrap; box-shadow: 0 6px 24px rgba(0,0,0,.4);
}
.tb-1 { top: 36px; right: 0; animation: float1 4s ease-in-out infinite; }
.tb-2 { bottom: 90px; left: -8px; animation: float2 5.2s ease-in-out infinite; }
.tb-3 { bottom: 36px; right: 8px; animation: float3 4.6s ease-in-out infinite; }
.dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.dot-green { background: #48BB78; box-shadow: 0 0 6px rgba(72,187,120,.6); }
.dot-blue  { background: var(--blue-400); box-shadow: 0 0 6px rgba(99,179,237,.6); }
.dot-amber { background: #ECC94B; box-shadow: 0 0 6px rgba(236,201,75,.6); }

/* ── PARTNER STRIP ── */
.partner-strip { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 32px 0; }
.strip-label { text-align: center; font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); margin-bottom: 24px; }
.logos-row { display: flex; justify-content: center; align-items: center; gap: 16px; flex-wrap: wrap; padding: 0 24px; }
.partner-logo {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 22px; border-radius: 10px;
  border: 1.5px solid var(--border); background: var(--navy-800);
  transition: all .22s; cursor: default; min-width: 140px; justify-content: center;
}
.partner-logo:hover { border-color: var(--border-hover); background: var(--surface-2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.3); }
.partner-logo svg { flex-shrink: 0; }
.partner-logo span { font-family: var(--font-display); font-weight: 700; font-size: 1rem; letter-spacing: -.01em; }
.netskope-logo span  { color: #5B9BD5; }
.crowdstrike-logo span { color: #E05A4A; }
.sentinelone-logo span { color: #7CB540; }
.proofpoint-logo span { color: #0073CF; }
.more-logo span { color: var(--text-muted); font-size: .85rem; font-weight: 500; }

/* ── SECTION HEADER ── */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section-header h2 { margin-bottom: 14px; }
.section-sub { font-size: .97rem; }

/* ── SERVICES GRID ── */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.services-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.service-card {
  display: flex; flex-direction: column; padding: 26px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); transition: all .22s; position: relative; overflow: hidden;
}
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--blue-400), var(--cyan-400)); opacity: 0; transition: opacity .22s; }
.service-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.32); }
.service-card:hover::before { opacity: 1; }
.service-card.card-red   { border-color: rgba(252,129,129,.18); }
.service-card.card-red:hover   { border-color: rgba(252,129,129,.4); }
.service-card.card-red::before   { background: linear-gradient(90deg, #FC8181, #F6AD55); }
.service-card.card-amber { border-color: rgba(246,173,85,.18); }
.service-card.card-amber:hover { border-color: rgba(246,173,85,.4); }
.service-card.card-amber::before { background: linear-gradient(90deg, #F6AD55, #ECC94B); }
.service-card.card-green { border-color: rgba(104,211,145,.18); }
.service-card.card-green:hover { border-color: rgba(104,211,145,.4); }
.service-card.card-green::before { background: linear-gradient(90deg, #68D391, #76E4F7); }
.service-card.card-cyan  { border-color: rgba(118,228,247,.18); }
.service-card.card-cyan:hover  { border-color: rgba(118,228,247,.4); }
.service-card.card-cyan::before  { background: linear-gradient(90deg, #76E4F7, var(--blue-400)); }

.svc-icon { width: 46px; height: 46px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; border: 1px solid; }
.svc-icon-blue   { background: rgba(99,179,237,.08);   border-color: rgba(99,179,237,.18);   }
.svc-icon-red    { background: rgba(252,129,129,.08);  border-color: rgba(252,129,129,.18);  }
.svc-icon-amber  { background: rgba(246,173,85,.08);   border-color: rgba(246,173,85,.18);   }
.svc-icon-green  { background: rgba(104,211,145,.08);  border-color: rgba(104,211,145,.18);  }
.svc-icon-cyan   { background: rgba(118,228,247,.08);  border-color: rgba(118,228,247,.18);  }

.service-card h3 { margin-bottom: 8px; font-size: 1rem; }
.service-card p  { font-size: .85rem; flex: 1; line-height: 1.6; }
.card-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 14px; }
.ctag { font-size: .68rem; padding: 3px 8px; border: 1px solid var(--border); border-radius: 4px; color: var(--text-muted); }
.card-link { display: flex; align-items: center; gap: 4px; margin-top: 16px; font-size: .82rem; font-weight: 500; color: var(--blue-400); transition: gap .18s; }
.service-card:hover .card-link { gap: 8px; }
.card-link.rl-red   { color: var(--red-400);   }
.card-link.rl-amber { color: var(--amber-400); }
.card-link.rl-green { color: var(--green-400); }
.card-link.rl-cyan  { color: var(--cyan-400);  }
.new-badge { font-size: .62rem; padding: 2px 7px; background: rgba(118,228,247,.1); border: 1px solid rgba(118,228,247,.3); border-radius: 100px; color: #76E4F7; vertical-align: middle; margin-left: 6px; }

/* ── WHY PCS ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 18px; margin: 24px 0 32px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; }
.check-circle { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: rgba(99,179,237,.1); border: 1px solid rgba(99,179,237,.28); display: flex; align-items: center; justify-content: center; font-size: .68rem; color: var(--blue-400); margin-top: 2px; }
.check-list strong { display: block; color: var(--text-primary); margin-bottom: 2px; font-size: .92rem; }
.check-list p { font-size: .85rem; }

.metrics-4 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.metric-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px 18px; text-align: center; }
.metric-big { display: block; font-family: var(--font-display); font-size: 2.1rem; font-weight: 700; background: linear-gradient(135deg, var(--blue-400), var(--cyan-400)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 6px; }
.metric-lbl { font-size: .75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; }

.industry-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 18px; }
.ind-card { display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); transition: border-color .2s; }
.ind-card:hover { border-color: var(--border-hover); }
.ind-icon { font-size: 1.3rem; }
.ind-card strong { display: block; font-size: .86rem; color: var(--text-primary); }
.ind-card small  { font-size: .74rem; color: var(--text-muted); }

/* ── CASE STUDIES ── */
.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.case-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px; transition: border-color .2s; }
.case-card:hover { border-color: var(--border-hover); }
.case-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; gap: 8px; }
.case-sector { font-size: .88rem; font-weight: 600; color: var(--text-primary); }
.case-size { font-size: .7rem; background: var(--navy-800); border: 1px solid var(--border); border-radius: 100px; padding: 3px 9px; color: var(--text-muted); white-space: nowrap; }
.case-card p { font-size: .83rem; margin-bottom: 6px; }
.case-result { margin-top: 12px; padding: 8px 12px; background: rgba(72,187,120,.07); border: 1px solid rgba(72,187,120,.2); border-radius: 6px; font-size: .8rem; color: #68D391; }

/* ── ENGAGEMENT MODELS ── */
.engage-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.engage-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px 22px; transition: border-color .2s; }
.engage-card:hover { border-color: var(--border-hover); }
.engage-card.featured { border-color: rgba(99,179,237,.25); background: linear-gradient(145deg, rgba(99,179,237,.04), var(--surface)); }
.engage-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: rgba(99,179,237,.2); line-height: 1; margin-bottom: 10px; }
.engage-card h3 { font-size: .94rem; margin-bottom: 14px; }
.engage-list { display: flex; flex-direction: column; gap: 7px; }
.engage-list li { font-size: .8rem; color: var(--text-secondary); padding-left: 14px; position: relative; }
.engage-list li::before { content: '—'; position: absolute; left: 0; color: var(--text-muted); font-size: .7rem; line-height: 1.5; }
.engage-best { margin-top: 16px; padding: 7px 10px; background: rgba(99,179,237,.05); border: 1px solid rgba(99,179,237,.12); border-radius: 6px; font-size: .74rem; color: var(--blue-400); }

/* ── NEW SERVICES BANNER ── */
.new-services-banner { padding: 36px 0; }
.nsb-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); margin-bottom: 14px; }
.nsb-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.nsb-card { display: flex; align-items: center; gap: 16px; padding: 20px 22px; border-radius: var(--radius-lg); border: 1.5px solid; transition: all .22s; }
.nsb-card:hover { transform: translateY(-3px); }
.nsb-red   { border-color: rgba(252,129,129,.28); background: rgba(252,129,129,.04); }
.nsb-red:hover   { border-color: rgba(252,129,129,.55); box-shadow: 0 12px 28px rgba(252,129,129,.1); }
.nsb-amber { border-color: rgba(246,173,85,.28);  background: rgba(246,173,85,.04);  }
.nsb-amber:hover { border-color: rgba(246,173,85,.55);  box-shadow: 0 12px 28px rgba(246,173,85,.1);  }
.nsb-green { border-color: rgba(104,211,145,.28); background: rgba(104,211,145,.04); }
.nsb-green:hover { border-color: rgba(104,211,145,.55); box-shadow: 0 12px 28px rgba(104,211,145,.1); }
.nsb-icon { font-size: 1.8rem; flex-shrink: 0; }
.nsb-card h3 { font-size: .94rem; color: var(--text-primary); margin-bottom: 4px; }
.nsb-card p  { font-size: .78rem; line-height: 1.5; }
.nsb-arrow { margin-left: auto; color: var(--text-muted); flex-shrink: 0; font-size: 1rem; }

/* ── SOC LIVE FEED PANEL ── */
.soc-panel { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.soc-panel-hdr { display: flex; justify-content: space-between; align-items: center; padding: 13px 18px; background: var(--navy-800); border-bottom: 1px solid var(--border); font-size: .82rem; font-weight: 600; color: var(--blue-400); }
.soc-event { display: flex; align-items: center; gap: 10px; padding: 12px 18px; border-bottom: 1px solid var(--border); font-size: .8rem; color: var(--text-secondary); border-left: 3px solid transparent; transition: background .15s; }
.soc-event:last-of-type { border-bottom: none; }
.soc-event:hover { background: rgba(255,255,255,.02); }
.ev-crit { border-left-color: #FC8181; } .ev-high { border-left-color: #F6AD55; } .ev-med { border-left-color: #ECC94B; } .ev-low { border-left-color: #68D391; }
.ev-time { font-size: .7rem; color: var(--text-muted); flex-shrink: 0; width: 36px; }
.ev-sev { font-size: .6rem; font-weight: 700; padding: 2px 6px; border-radius: 3px; flex-shrink: 0; }
.sev-c { background: rgba(252,129,129,.15); color: #FC8181; } .sev-h { background: rgba(246,173,85,.15); color: #F6AD55; } .sev-m { background: rgba(236,201,75,.15); color: #ECC94B; } .sev-l { background: rgba(104,211,145,.15); color: #68D391; }
.soc-panel-ftr { display: flex; justify-content: space-between; padding: 11px 18px; font-size: .74rem; color: var(--text-muted); background: var(--navy-800); }

/* ── BAS VISUAL ── */
.bas-visual { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.bas-hdr { padding: 13px 18px; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); background: var(--navy-800); border-bottom: 1px solid var(--border); }
.bas-row { display: flex; align-items: center; gap: 12px; padding: 13px 18px; border-bottom: 1px solid var(--border); }
.bas-row:last-of-type { border-bottom: none; }
.bas-lbl { font-size: .82rem; color: var(--text-secondary); flex: 1; }
.bas-track { flex: 0 0 90px; height: 5px; background: rgba(255,255,255,.06); border-radius: 100px; overflow: hidden; }
.bas-fill { height: 100%; border-radius: 100px; }
.bas-pct { font-size: .8rem; font-weight: 600; flex-shrink: 0; width: 32px; text-align: right; }
.bas-ftr { display: flex; justify-content: space-between; padding: 11px 18px; font-size: .73rem; color: var(--text-muted); background: var(--navy-800); }

/* ── METRIC ROWS ── */
.metric-row { display: flex; justify-content: space-between; align-items: center; padding: 13px 16px; background: var(--navy-800); border-radius: 8px; border: 1px solid var(--border); }
.metric-lbl { font-size: .84rem; color: var(--text-secondary); }
.metric-val { font-family: var(--font-display); font-weight: 600; color: var(--blue-400); }
.metric-status { display: flex; align-items: center; gap: 5px; font-size: .74rem; color: #68D391; }
.svc-visual { display: flex; flex-direction: column; gap: 10px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; }
.svc-visual-title { font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: 4px; }

/* ── METHOD TIMELINE ── */
.method-tl { display: flex; flex-direction: column; gap: 0; max-width: 780px; margin: 0 auto; }
.method-step { display: flex; gap: 22px; padding: 22px 26px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); transition: border-color .2s; }
.method-step:hover { border-color: var(--border-hover); }
.method-num { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: rgba(252,129,129,.22); line-height: 1; flex-shrink: 0; width: 44px; }
.method-content h4 { margin-bottom: 5px; }
.method-content p { font-size: .86rem; }
.method-connector { width: 2px; height: 14px; background: var(--border); margin-left: 46px; }

/* ── CERT GRID ── */
.cert-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 13px; }
.cert-card { padding: 16px 18px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); text-align: center; transition: border-color .2s; }
.cert-card:hover { border-color: var(--border-hover); }
.cert-name { display: block; font-weight: 600; font-size: .88rem; color: var(--text-primary); margin-bottom: 3px; }
.cert-desc { font-size: .73rem; color: var(--text-muted); }

/* ── ZT IDENTITY ── */
.zt-diagram { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 22px; display: flex; flex-direction: column; align-items: center; gap: 0; }
.zt-node { display: flex; align-items: center; gap: 12px; background: var(--navy-800); border: 1px solid var(--border); border-radius: var(--radius); padding: 13px 22px; font-size: .88rem; font-weight: 500; }
.zt-node-access { background: rgba(104,211,145,.08); border-color: rgba(104,211,145,.25); color: #68D391; }
.zt-arrow { font-size: 1.2rem; color: var(--text-muted); padding: 5px 0; }
.zt-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; width: 100%; margin: 6px 0; }
.zt-check { font-size: .78rem; padding: 8px 10px; border-radius: 6px; text-align: center; background: rgba(104,211,145,.09); color: #68D391; border: 1px solid rgba(104,211,145,.2); }
.zt-policy-lbl { font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-top: 4px; }

/* ── SLA CARDS ── */
.sla-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 13px; margin-top: 26px; }
.sla-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; text-align: center; }
.sla-num { display: block; font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--blue-400); margin-bottom: 5px; }
.sla-lbl { font-size: .72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .04em; }

/* ── STAT BAR ── */
.stat-bar { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 28px 0; }
.stat-bar-inner { display: flex; align-items: center; justify-content: center; gap: 44px; flex-wrap: wrap; }
.stat-bar-item { text-align: center; }
.sbi-num { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 700; background: linear-gradient(135deg, #68D391, #76E4F7); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 5px; }
.sbi-lbl { font-size: .76rem; color: var(--text-muted); max-width: 150px; line-height: 1.4; }
.stat-bar-div { width: 1px; height: 40px; background: var(--border); }

/* ── IR STEPS ── */
.ir-row { display: flex; align-items: flex-start; flex-wrap: wrap; gap: 0; }
.ir-step { flex: 1; min-width: 160px; padding: 24px 18px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); text-align: center; transition: border-color .2s; }
.ir-step:hover { border-color: var(--border-hover); }
.ir-icon { font-size: 1.7rem; margin-bottom: 10px; }
.ir-step h4 { font-size: .9rem; margin-bottom: 6px; }
.ir-step p  { font-size: .8rem; }
.ir-arrow { display: flex; align-items: center; padding: 0 6px; font-size: 1.2rem; color: var(--text-muted); margin-top: 44px; }

/* ── CTA BAND ── */
.cta-band { background: linear-gradient(135deg, var(--navy-700), var(--navy-800)); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 68px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-inner h2 { margin-bottom: 10px; }
.cta-actions { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }
.cta-emergency { text-align: center; max-width: 600px; margin: 0 auto; padding: 28px; background: rgba(252,129,129,.05); border: 1px solid rgba(252,129,129,.15); border-radius: var(--radius-lg); }
.cta-emergency p { margin-bottom: 16px; font-size: .9rem; color: var(--text-primary); }

/* ── PAGE HERO ── */
.page-hero { padding: 130px 0 72px; text-align: center; position: relative; overflow: hidden; border-bottom: 1px solid var(--border); }
.page-hero h1 { margin-bottom: 14px; }
.page-hero > .container > p { max-width: 560px; margin: 0 auto; font-size: 1.02rem; }
.breadcrumb { font-size: .76rem; color: var(--text-muted); margin-bottom: 14px; }
.breadcrumb span { color: var(--text-secondary); }
.ph-glow-red   { background: linear-gradient(180deg, rgba(30,8,8,.85) 0%, var(--navy-900) 100%); }
.ph-glow-amber { background: linear-gradient(180deg, rgba(30,18,4,.85) 0%, var(--navy-900) 100%); }
.ph-glow-green { background: linear-gradient(180deg, rgba(4,20,10,.85) 0%, var(--navy-900) 100%); }
.ph-glow-default { background: linear-gradient(180deg, var(--navy-800) 0%, var(--navy-900) 100%); }
.jump-nav { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 28px; }
.jump-nav a { font-size: .76rem; font-weight: 500; padding: 5px 14px; border: 1px solid var(--border); border-radius: 100px; color: var(--text-secondary); transition: all .18s; }
.jump-nav a:hover { border-color: var(--border-hover); color: var(--text-primary); }

/* ── SERVICE DETAIL SPLIT ── */
.svc-split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.svc-split.flip { direction: rtl; }
.svc-split.flip > * { direction: ltr; }
.bullet-list { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-top: 18px; }
.bullet-list li { display: flex; gap: 10px; font-size: .88rem; color: var(--text-secondary); }
.bullet-list li::before { content: '▸'; color: var(--blue-400); flex-shrink: 0; }
.platform-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 20px; }
.ptag { font-size: .75rem; padding: 4px 12px; background: rgba(99,179,237,.07); border: 1px solid rgba(99,179,237,.2); border-radius: 100px; color: var(--blue-400); }

/* ── FOOTER ── */
.footer { background: var(--navy-950); border-top: 1px solid var(--border); padding: 60px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 44px; }
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand > p { font-size: .85rem; margin-bottom: 14px; }
.footer-badges { display: flex; gap: 7px; flex-wrap: wrap; }
.fbadge { font-size: .68rem; padding: 3px 9px; border: 1px solid var(--border); border-radius: 100px; color: var(--text-muted); }
.footer-col h5 { margin-bottom: 14px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: .86rem; color: var(--text-secondary); transition: color .18s; }
.footer-col a:hover { color: var(--blue-400); }
.footer-col address { font-style: normal; }
.footer-col address p { font-size: .86rem; margin-bottom: 7px; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 22px; border-top: 1px solid var(--border); font-size: .78rem; color: var(--text-muted); }

/* ── ANIMATIONS ── */
@keyframes pulse-dot  { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1.4)} }
@keyframes spin-slow  { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
@keyframes float1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-9px)} }
@keyframes float2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-13px)} }
@keyframes float3 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }

/* Scroll fade */
.fade-in { opacity:1; transform:translateY(0); transition:opacity .55s ease,transform .55s ease; }
.fade-in.visible { opacity:1; transform:translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .engage-grid   { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .hero { flex-direction: column; text-align: center; min-height: auto; padding-top: 100px; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-stats   { justify-content: center; }
  .hero-visual  { flex: 0 0 300px; height: 300px; }
  .ring-3 { width: 280px; height: 280px; }
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .svc-split { grid-template-columns: 1fr; }
  .svc-split.flip { direction: ltr; }
  .nsb-grid { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: repeat(3,1fr); }
  .cases-grid { grid-template-columns: repeat(2,1fr); }
  .sla-row { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  :root { --section-pad: 60px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 66px; left: 0; right: 0; background: var(--navy-950); border-bottom: 1px solid var(--border); padding: 14px 24px 22px; gap: 2px; z-index: 199; }
  .nav-links.open .dropdown { display: block; position: static; box-shadow: none; border: none; padding: 0 0 0 12px; background: transparent; }
  .nav-cta.open { display: flex; margin: 12px 24px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .services-grid-3 { grid-template-columns: 1fr; }
  .engage-grid { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .cert-grid  { grid-template-columns: repeat(2,1fr); }
  .metrics-4  { grid-template-columns: 1fr 1fr; }
  .industry-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
  .cta-inner { flex-direction: column; text-align: center; }
  .stat-bar-inner { gap: 20px; }
  .stat-bar-div { display: none; }
  .ir-row { gap: 12px; }
  .ir-arrow { display: none; }
  .ir-step { min-width: 100%; }
  .zt-checks { grid-template-columns: 1fr; }
  .sla-row { grid-template-columns: 1fr 1fr; }
  .nsb-grid { grid-template-columns: 1fr; }
}
