/* ─── CSS VARIABLES ─── */
:root {
  --navy:  #050d1a;
  --navy2: #071224;
  --navy3: #0a1a30;
  --blue:  #0070ff;
  --blue2: #0090ff;
  --sky:   #5ab4ff;
  --sky2:  #8fd0ff;
  --white: #ffffff;
  --w80:   rgba(255,255,255,0.80);
  --w60:   rgba(255,255,255,0.60);
  --w40:   rgba(255,255,255,0.40);
  --w20:   rgba(255,255,255,0.20);
  --w08:   rgba(255,255,255,0.08);
  --w04:   rgba(255,255,255,0.04);
  --border:  rgba(90,180,255,0.14);
  --border2: rgba(255,255,255,0.08);
  --grad:  linear-gradient(135deg,#0060e0,#0090ff);
  --grad2: linear-gradient(135deg,#5ab4ff,#0070ff);
}

/* ─── RESET & BASE ─── */
*  { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family:'DM Sans',sans-serif;
  background:var(--navy);
  color:var(--white);
  min-height:100vh;
  overflow-x:hidden;
}
a { text-decoration:none; color:inherit; }
button { cursor:pointer; font-family:'DM Sans',sans-serif; }
img { max-width:100%; height:auto; }

::-webkit-scrollbar { width:6px; }
::-webkit-scrollbar-track { background:var(--navy); }
::-webkit-scrollbar-thumb { background:rgba(90,180,255,0.3); border-radius:3px; }

/* ─── PAGE WRAP (accounts for fixed nav) ─── */
.nls-page-wrap { padding-top:80px; min-height:calc(100vh - 80px); }

/* ─── NAVIGATION ─── */
.nls-nav {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  background:rgba(5,13,26,0.94);
  backdrop-filter:blur(16px);
  border-bottom:1px solid var(--border);
  height:80px;
  display:flex; align-items:center;
  padding:0 5%; gap:0;
  overflow:hidden; /* prevents any child from bleeding outside the bar */
}

/* ─── LOGO ─── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 32px;
  flex-shrink: 0;        /* logo block never compresses */
  min-width: 0;
}

/* WordPress wraps the uploaded logo in <a class="custom-logo-link"><img></a>.
   nav-logo is now a <div>, so there's no nested-anchor issue. */
.nav-logo .custom-logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo .custom-logo-link img,
.nav-logo img {
  height: 36px;          /* slightly taller — more visible */
  width: auto;
  max-width: none;       /* never let the browser squash it */
  min-width: 80px;       /* hard floor so it can't collapse */
  flex-shrink: 0;
  display: block;
}

.nav-shield {
  width: 28px; height: 28px;
  background: var(--grad);
  clip-path: polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.nav-logo:hover .nav-shield { transform:scale(1.1); }

.nav-brand {
  font-family:'Raleway',sans-serif;
  font-size:15px; font-weight:800;
  letter-spacing:0.08em; text-transform:uppercase;
  color:var(--white);
  white-space: nowrap;
}

/* ─── NAV LINKS ─── */
.nav-links {
  display:flex; align-items:center;
  flex:1;
  min-width: 0;          /* allows it to shrink below content size */
  overflow: hidden;      /* clips links instead of pushing nav-right away */
  padding-left: 24px;
}
.nav-link {
  display:inline-flex; align-items:center;
  padding:0 12px; height:64px;
  font-size:13px; color:var(--w60);
  transition:color 0.2s; position:relative;
  white-space:nowrap; border:none; background:none;
  flex-shrink: 0;
}
.nav-link:hover, .nav-link.active { color:var(--white); }
.nav-link.active::after {
  content:''; position:absolute; bottom:0; left:12px; right:12px;
  height:2px; background:var(--grad2);
}

/* ─── NAV RIGHT (phone + CTA) ─── */
.nav-right {
  display:flex; align-items:center; gap:12px;
  margin-left:auto;
  flex-shrink: 0;        /* CTA block never gets compressed */
  padding-left: 12px;    /* breathing room between last link and phone/button */
}
.nav-phone {
  font-family:'IBM Plex Mono',monospace;
  font-size:12px; color:var(--w60); letter-spacing:0.05em; white-space:nowrap;
}
.btn-nav-cta {
  background:var(--grad); color:var(--white); border:none;
  padding:10px 22px; border-radius:4px;
  font-size:13px; font-weight:600;
  transition:all 0.2s; box-shadow:0 2px 16px rgba(0,120,255,0.35);
  white-space:nowrap; display:inline-block; flex-shrink:0;
}
.btn-nav-cta:hover { transform:translateY(-1px); box-shadow:0 4px 24px rgba(0,120,255,0.5); }

/* ─── MOBILE TOGGLE ─── */
.nav-mobile-toggle {
  display:none; background:none; border:none;
  flex-direction:column; gap:5px; padding:4px; margin-left:auto;
  flex-shrink: 0;
}
.nav-mobile-toggle span {
  display:block; width:22px; height:2px; background:var(--w80); border-radius:2px;
  transition:all 0.25s;
}

/* ─── MOBILE DRAWER ─── */
.nav-mobile-drawer {
  display:none; position:fixed; top:64px; left:0; right:0; z-index:999;
  background:var(--navy2); border-bottom:1px solid var(--border);
  flex-direction:column; padding:16px 5%;
}
.nav-mobile-drawer a {
  padding:14px 0; font-size:16px; color:var(--w80);
  border-bottom:1px solid var(--border2);
}
.nav-mobile-drawer .mobile-cta {
  margin-top:16px; background:var(--grad); color:var(--white);
  padding:14px 20px; border-radius:4px; text-align:center; font-weight:600;
  border:none;
}

/* ─── NAV BREAKPOINTS ─── */

/* Stage 1 ~1100px: tighten link padding, drop logo margin */
@media (max-width: 1100px) {
  .nav-logo { margin-right: 16px; }
  .nav-links { padding-left: 8px; }
  .nav-link  { padding: 0 9px; font-size: 12.5px; }
}

/* Stage 2 ~960px: hide phone number, button still visible */
@media (max-width: 960px) {
  .nav-phone { display: none; }
}

/* Stage 3 ~860px: hide full nav-right (button is in mobile drawer) */
@media (max-width: 860px) {
  .nav-right { display: none; }
}

/* Stage 4 ~768px: full mobile mode */
@media (max-width: 768px) {
  .nls-nav .nav-links   { display: none; }
  .nav-mobile-toggle    { display: flex; }
  .nav-mobile-drawer.open { display: flex; }
}

/* ─── SHARED LAYOUT ─── */
.section    { padding:100px 5%; }
.section-sm { padding:70px 5%; }
.container  { max-width:1240px; margin:0 auto; width:100%; }

/* ─── TYPOGRAPHY HELPERS ─── */
.label {
  font-family:'IBM Plex Mono',monospace;
  font-size:11px; letter-spacing:0.25em;
  text-transform:uppercase; color:var(--sky);
  display:flex; align-items:center; gap:10px; margin-bottom:18px;
}
.label::before {
  content:''; display:inline-block;
  width:24px; height:1px; background:var(--sky);
}
.h1 {
  font-family:'Raleway',sans-serif;
  font-size:clamp(42px,5.5vw,78px);
  font-weight:900; line-height:1.05; letter-spacing:-0.02em;
}
.h2 {
  font-family:'Raleway',sans-serif;
  font-size:clamp(34px,4vw,56px);
  font-weight:800; line-height:1.1; letter-spacing:-0.02em;
}
.h3 {
  font-family:'Raleway',sans-serif;
  font-size:clamp(20px,2.5vw,30px);
  font-weight:700; line-height:1.2; letter-spacing:-0.01em;
}
.accent {
  background:var(--grad2);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  background-clip:text;
}
.lead    { font-size:18px; color:var(--w60); line-height:1.75; font-weight:300; max-width:560px; }
.lead-lg { font-size:20px; color:var(--w60); line-height:1.8;  font-weight:300; max-width:620px; }

/* ─── BUTTONS ─── */
.btn-primary {
  background:var(--grad); color:var(--white); border:none;
  padding:16px 36px; border-radius:5px;
  font-size:15px; font-weight:600;
  transition:all 0.2s; box-shadow:0 4px 24px rgba(0,120,255,0.35);
  display:inline-flex; align-items:center; gap:8px;
}
.btn-primary:hover { transform:translateY(-2px); box-shadow:0 8px 32px rgba(0,120,255,0.5); }
.btn-ghost {
  background:transparent; color:var(--w80);
  border:1px solid var(--border2);
  padding:16px 28px; border-radius:5px;
  font-size:15px; font-weight:400;
  transition:all 0.2s;
  display:inline-flex; align-items:center; gap:8px;
}
.btn-ghost:hover { color:var(--white); border-color:var(--w40); }
.btn-sm { padding:11px 22px !important; font-size:13px !important; }
.cta-row { display:flex; gap:14px; align-items:center; flex-wrap:wrap; }

/* ─── ORB BACKGROUNDS ─── */
.orb { position:absolute; border-radius:50%; filter:blur(80px); pointer-events:none; }
.orb-blue { background:radial-gradient(circle,rgba(0,80,220,0.28) 0%,transparent 70%); }
.orb-sky  { background:radial-gradient(circle,rgba(90,180,255,0.18) 0%,transparent 70%); }

/* ─── BADGE PILL ─── */
.badge-pill {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(0,120,255,0.10);
  border:1px solid rgba(0,140,255,0.22);
  padding:6px 14px; border-radius:100px;
  font-family:'IBM Plex Mono',monospace;
  font-size:11px; color:var(--sky); letter-spacing:0.05em;
}
.badge-dot {
  width:6px; height:6px; border-radius:50%; background:var(--sky);
  animation:blink 2s infinite; flex-shrink:0;
}
@keyframes blink { 0%,100%{opacity:1;}50%{opacity:0.3;} }

/* ─── TRUST BAR ─── */
.trust-bar {
  background: linear-gradient(90deg, rgba(0,50,150,0.12), rgba(0,100,255,0.07), rgba(0,50,150,0.12));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 5%;
}
.trust-inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
}
.trust-badge {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(90,180,255,0.15);
  border-radius: 6px;
  transition: all 0.2s;
  flex: 1; min-width: 120px;
}
.trust-badge:hover {
  background: rgba(0,100,255,0.08);
  border-color: rgba(90,180,255,0.35);
  transform: translateY(-2px);
}
.tb-icon { font-size: 20px; flex-shrink: 0; }
.tb-title {
  font-family: 'Raleway', sans-serif;
  font-size: 13px; font-weight: 800;
  color: var(--white);
  letter-spacing: 0.03em;
  line-height: 1.2;
}
.tb-sub {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; color: var(--sky);
  letter-spacing: 0.08em;
  margin-top: 2px;
}
.trust-sep {
  width: 1px; height: 36px;
  background: rgba(90,180,255,0.15);
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .trust-sep { display: none; }
  .trust-badge { min-width: calc(50% - 8px); }
}
@media (max-width: 480px) {
  .trust-badge { min-width: 100%; }
}

/* ─── DIVIDER ─── */
.divider {
  height:1px;
  background:linear-gradient(90deg,transparent,var(--border),transparent);
  margin:0 5%;
}

/* ─── HERO ─── */
.hero {
  min-height:calc(100vh - 64px);
  display:flex; align-items:center;
  position:relative; overflow:hidden;
  padding:80px 5%;
}
.hero-content {
  max-width:1240px; margin:0 auto; width:100%;
  display:flex; align-items:center; gap:80px;
  position:relative; z-index:2;
}
.hero-left  { flex:1.1; }
.hero-right { flex:0.9; display:flex; justify-content:center; align-items:center; flex-shrink:0; }

/* ─── SHIELD ANIMATION ─── */
.shield-scene {
  position:relative; width:380px; height:380px;
  display:flex; align-items:center; justify-content:center;
}
.shield-ring {
  position:absolute; border-radius:50%;
  border:1px solid rgba(90,180,255,0.12);
  animation:ringBreath 5s ease-in-out infinite;
}
.r1 { width:360px; height:360px; animation-delay:0s; }
.r2 { width:440px; height:440px; animation-delay:1s; }
.r3 { width:520px; height:520px; animation-delay:2s; }
@keyframes ringBreath { 0%,100%{opacity:0.5;transform:scale(1);}50%{opacity:0.2;transform:scale(1.02);} }
.shield-svg { width:300px; height:300px; animation:float 6s ease-in-out infinite; position:relative; z-index:2; }
@keyframes float { 0%,100%{transform:translateY(0);}50%{transform:translateY(-16px);} }

/* ─── STATS ROW ─── */
.stats-row {
  display:grid; grid-template-columns:repeat(3,1fr);
  border:1px solid var(--border2);
  margin-top:52px; border-radius:6px; overflow:hidden;
}
.stat-block { padding:26px 30px; border-right:1px solid var(--border2); }
.stat-block:last-child { border-right:none; }
.stat-num {
  font-family:'Raleway',sans-serif;
  font-size:clamp(26px,3vw,42px); font-weight:900; line-height:1;
  background:var(--grad2);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.stat-label { font-size:13px; color:var(--w60); margin-top:6px; font-weight:300; }

/* ─── HOW IT WORKS STEPS ─── */
.steps-grid {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:2px; background:var(--border2);
  border:1px solid var(--border2); border-radius:8px; overflow:hidden;
}
.step { background:var(--navy); padding:36px 30px; }
.step-num {
  font-family:'IBM Plex Mono',monospace;
  font-size:11px; color:var(--sky); letter-spacing:0.15em; margin-bottom:16px;
}
.step-title {
  font-family:'Raleway',sans-serif;
  font-size:20px; font-weight:700; color:var(--white); margin-bottom:10px;
}
.step-body { font-size:14px; color:var(--w60); line-height:1.65; font-weight:300; }

/* ─── TWO COL GRID ─── */
.two-col-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }

/* ─── RISK CARDS ─── */
.risk-cards { display:flex; flex-direction:column; gap:16px; }
.card {
  background:var(--w04); border:1px solid var(--border);
  border-radius:8px; padding:32px; transition:all 0.25s;
}
.card:hover {
  background:rgba(0,120,255,0.05); border-color:rgba(90,180,255,0.3);
  transform:translateY(-3px); box-shadow:0 12px 40px rgba(0,80,200,0.15);
}
.card-flex { display:flex; gap:20px; align-items:flex-start; padding:24px; }
.risk-emoji { font-size:28px; flex-shrink:0; }
.card-title { font-family:'Raleway',sans-serif; font-size:18px; font-weight:700; margin-bottom:6px; }
.card-desc  { font-size:13px; color:var(--w60); font-weight:300; }
.card-icon {
  width:44px; height:44px; border-radius:8px;
  background:rgba(0,112,255,0.12); border:1px solid rgba(0,112,255,0.2);
  display:flex; align-items:center; justify-content:center;
  font-size:20px; margin-bottom:20px;
}

/* ─── INDUSTRIES GRID ─── */
.industries-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.industry-card { cursor:pointer; }
.sol-cta {
  display:inline-flex; align-items:center; gap:6px;
  margin-top:20px; font-size:13px; font-weight:500;
  color:var(--sky); background:none; border:none;
  font-family:'DM Sans',sans-serif; padding:0; transition:gap 0.2s;
}
.sol-cta:hover { gap:10px; }

/* ─── TESTIMONIAL ─── */
.testimonial-block {
  background:var(--w04); border:1px solid var(--border);
  border-radius:8px; padding:44px 52px; position:relative;
}
.testimonial-block::before {
  content:'"'; font-family:'Raleway',sans-serif;
  font-size:120px; font-weight:900;
  color:rgba(0,112,255,0.15);
  position:absolute; top:-20px; left:40px;
  line-height:1; pointer-events:none;
}
.testimonial-text {
  font-size:clamp(17px,2vw,23px); color:var(--w80);
  font-weight:300; line-height:1.65; font-style:italic;
  position:relative; z-index:1;
}
.testimonial-attr { margin-top:28px; display:flex; align-items:center; gap:14px; flex-wrap:wrap; }
.attr-avatar {
  width:44px; height:44px; border-radius:50%; background:var(--grad);
  display:flex; align-items:center; justify-content:center;
  font-weight:700; font-size:14px; flex-shrink:0;
}
.attr-name  { font-size:14px; font-weight:600; color:var(--white); }
.attr-title { font-size:12px; color:var(--w60); margin-top:2px; }

/* ─── RESOURCES PREVIEW GRID ─── */
.section-header-row { display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:40px; flex-wrap:wrap; gap:16px; }
.resources-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.resource-card { background:var(--w04); border:1px solid var(--border); border-radius:8px; overflow:hidden; transition:all 0.25s; }
.resource-card:hover { border-color:rgba(90,180,255,0.3); transform:translateY(-3px); box-shadow:0 12px 40px rgba(0,80,200,0.15); }
.resource-type { padding:12px 20px; border-bottom:1px solid var(--border2); font-family:'IBM Plex Mono',monospace; font-size:10px; letter-spacing:0.18em; text-transform:uppercase; }
.type-case    { color:#5fd4a0; }
.type-white   { color:var(--sky); }
.type-article { color:#ffb347; }
.resource-content { padding:24px 20px 20px; }
.resource-title   { font-family:'Raleway',sans-serif; font-size:17px; font-weight:700; color:var(--white); line-height:1.35; margin-bottom:10px; }
.resource-excerpt { font-size:13px; color:var(--w60); line-height:1.6; font-weight:300; }
.resource-link { display:inline-flex; align-items:center; gap:6px; margin-top:16px; font-size:13px; font-weight:500; color:var(--sky); background:none; border:none; font-family:'DM Sans',sans-serif; padding:0; transition:gap 0.2s; cursor:pointer; }
.resource-link:hover { gap:10px; }

/* ─── CTA SECTION ─── */
.cta-section { padding:120px 5%; position:relative; overflow:hidden; }
.cta-box { max-width:760px; margin:0 auto; text-align:center; position:relative; z-index:2; }
.cta-reassurances {
  display:flex; justify-content:center; gap:24px; margin-top:28px; flex-wrap:wrap;
}
.cta-reassurances span { font-size:12px; color:var(--w40); display:flex; align-items:center; gap:6px; }
.cta-reassurances span::before { content:'✓'; color:var(--sky); }

/* ─── INNER HERO (non-home pages) ─── */
.inner-hero { padding:80px 5% 60px; position:relative; overflow:hidden; }

/* ─── SOLUTIONS PAGE ─── */
.solutions-grid { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.solution-card {
  background:var(--w04); border:1px solid var(--border);
  border-radius:8px; padding:36px 32px; transition:all 0.25s;
}
.solution-card:hover { background:rgba(0,120,255,0.06); border-color:rgba(90,180,255,0.35); transform:translateY(-3px); box-shadow:0 16px 48px rgba(0,80,200,0.18); }
.solution-header { display:flex; align-items:flex-start; gap:16px; margin-bottom:18px; }
.sol-icon { width:48px; height:48px; border-radius:8px; background:rgba(0,112,255,0.1); border:1px solid rgba(0,112,255,0.18); display:flex; align-items:center; justify-content:center; font-size:22px; flex-shrink:0; }
.sol-title { font-family:'Raleway',sans-serif; font-size:22px; font-weight:700; color:var(--white); line-height:1.2; margin-bottom:4px; }
.sol-tag   { font-size:12px; color:var(--sky); font-weight:400; }
.sol-body  { font-size:14px; color:var(--w60); line-height:1.7; font-weight:300; }
.sol-features  { margin-top:18px; display:flex; flex-direction:column; gap:8px; }
.sol-feature   { display:flex; align-items:flex-start; gap:10px; font-size:13px; color:var(--w60); }
.sol-check     { width:16px; height:16px; border-radius:50%; background:rgba(0,112,255,0.15); border:1px solid rgba(0,112,255,0.3); display:flex; align-items:center; justify-content:center; font-size:9px; flex-shrink:0; margin-top:1px; color:var(--sky); }
.cta-banner    { margin-top:60px; padding:52px; background:var(--w04); border:1px solid var(--border); border-radius:8px; position:relative; overflow:hidden; }

/* ─── PRODUCTS PAGE ─── */
.product-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.product-card { background:var(--w04); border:1px solid var(--border); border-radius:8px; overflow:hidden; transition:all 0.25s; display:flex; flex-direction:column; }
.product-card:hover { border-color:rgba(90,180,255,0.35); transform:translateY(-4px); box-shadow:0 16px 48px rgba(0,80,200,0.2); }
.product-card.featured { border-color:rgba(0,120,255,0.4); box-shadow:0 0 0 1px rgba(0,120,255,0.2); position:relative; }
.product-badge { display:inline-block; background:var(--grad); padding:4px 12px; border-radius:100px; font-family:'IBM Plex Mono',monospace; font-size:10px; letter-spacing:0.1em; color:var(--white); position:absolute; top:16px; right:16px; }
.product-header { padding:28px 28px 20px; border-bottom:1px solid var(--border2); }
.product-icon { font-size:28px; margin-bottom:14px; }
.product-name { font-family:'Raleway',sans-serif; font-size:20px; font-weight:700; color:var(--white); margin-bottom:6px; }
.product-tagline { font-size:13px; color:var(--w60); font-weight:300; }
.product-body { padding:24px 28px; flex:1; }
.product-features { display:flex; flex-direction:column; gap:10px; }
.product-feature { display:flex; align-items:flex-start; gap:10px; font-size:13px; color:var(--w60); }
.pf-check { color:var(--sky); flex-shrink:0; font-size:14px; }
.product-cta { padding:20px 28px 28px; border-top:1px solid var(--border2); }

/* ─── COMPLIANCE PAGE ─── */
.compliance-tabs { display:flex; gap:0; border:1px solid var(--border2); border-radius:6px; overflow:hidden; margin-bottom:48px; }
.comp-tab { flex:1; padding:14px 20px; background:transparent; border:none; font-size:13px; color:var(--w60); transition:all 0.2s; border-right:1px solid var(--border2); font-weight:500; }
.comp-tab:last-child { border-right:none; }
.comp-tab:hover { color:var(--white); background:var(--w04); }
.comp-tab.active { background:rgba(0,112,255,0.1); color:var(--sky); border-bottom:2px solid var(--blue); }
.comp-content { display:none; }
.comp-content.active { display:grid; grid-template-columns:1.1fr 0.9fr; gap:60px; align-items:start; }
.comp-reqs { display:flex; flex-direction:column; gap:12px; margin-top:28px; }
.comp-req { display:flex; gap:14px; padding:18px 20px; background:var(--w04); border:1px solid var(--border2); border-radius:6px; }
.req-icon { width:32px; height:32px; border-radius:6px; background:rgba(0,112,255,0.12); display:flex; align-items:center; justify-content:center; font-size:14px; flex-shrink:0; }
.req-title { font-size:14px; font-weight:600; color:var(--white); margin-bottom:4px; }
.req-desc  { font-size:13px; color:var(--w60); line-height:1.5; font-weight:300; }
.comp-right-card { background:var(--w04); border:1px solid var(--border); border-radius:8px; padding:32px; position:sticky; top:90px; }
.comp-card-title { font-family:'Raleway',sans-serif; font-size:20px; font-weight:700; color:var(--white); margin-bottom:6px; }
.comp-card-body  { font-size:14px; color:var(--w60); line-height:1.65; margin-bottom:24px; font-weight:300; }
.penalty-box { background:rgba(255,80,80,0.06); border:1px solid rgba(255,80,80,0.15); border-radius:6px; padding:16px 18px; margin-bottom:20px; }
.penalty-label { font-family:'IBM Plex Mono',monospace; font-size:10px; letter-spacing:0.2em; text-transform:uppercase; color:rgba(255,120,120,0.8); margin-bottom:6px; }
.penalty-val   { font-family:'Raleway',sans-serif; font-size:24px; font-weight:800; color:rgba(255,140,140,0.9); }
.penalty-desc  { font-size:12px; color:var(--w60); margin-top:4px; }

/* ─── RESOURCES PAGE ─── */
.resources-filter { display:flex; gap:10px; margin-bottom:40px; flex-wrap:wrap; }
.filter-btn { background:transparent; border:1px solid var(--border2); color:var(--w60); padding:8px 18px; border-radius:100px; font-size:13px; transition:all 0.2s; }
.filter-btn.active, .filter-btn:hover { background:rgba(0,112,255,0.1); border-color:rgba(0,140,255,0.3); color:var(--sky); }
.resources-main-grid { display:grid; grid-template-columns:2fr 1fr; gap:32px; align-items:start; }
.resources-list { display:flex; flex-direction:column; gap:20px; }
.resource-row { background:var(--w04); border:1px solid var(--border); border-radius:8px; padding:28px; display:flex; gap:24px; align-items:flex-start; transition:all 0.25s; }
.resource-row:hover { border-color:rgba(90,180,255,0.3); transform:translateX(4px); }
.res-type-badge { padding:6px 12px; border-radius:4px; font-family:'IBM Plex Mono',monospace; font-size:10px; letter-spacing:0.12em; flex-shrink:0; margin-top:2px; text-transform:uppercase; }
.rtb-white   { background:rgba(90,180,255,0.1); color:var(--sky); }
.rtb-case    { background:rgba(95,212,160,0.1);  color:#5fd4a0; }
.rtb-article { background:rgba(255,179,71,0.1);  color:#ffb347; }
.rtb-blog    { background:rgba(200,150,255,0.1); color:#c896ff; }
.res-title   { font-family:'Raleway',sans-serif; font-size:18px; font-weight:700; color:var(--white); margin-bottom:8px; line-height:1.3; }
.res-excerpt { font-size:13px; color:var(--w60); line-height:1.65; font-weight:300; }
.res-meta    { display:flex; gap:14px; align-items:center; margin-top:14px; }
.res-meta-item { font-size:12px; color:var(--w40); font-family:'IBM Plex Mono',monospace; }
.res-download  { margin-left:auto; background:rgba(0,112,255,0.08); border:1px solid var(--border); padding:8px 16px; border-radius:4px; font-size:13px; color:var(--sky); font-weight:500; transition:all 0.2s; flex-shrink:0; cursor:pointer; font-family:'DM Sans',sans-serif; white-space:nowrap; }
.res-download:hover { background:rgba(0,112,255,0.15); }
.lead-magnet  { 
  background:var(--w04); 
  border:1px solid rgba(0,120,255,0.25); 
  border-radius:8px; 
  overflow:hidden; 
  position:relative;
  margin-bottom: 40px;
}
.lead-magnet + div {
  position: relative;
  z-index: 10;
  background: var(--navy);
  margin-top: 20px;
}
.lm-header    { background:var(--grad); padding:24px; }
.lm-label     { font-family:'IBM Plex Mono',monospace; font-size:10px; letter-spacing:0.2em; color:rgba(255,255,255,0.7); margin-bottom:8px; text-transform:uppercase; }
.lm-title     { font-family:'Raleway',sans-serif; font-size:20px; font-weight:800; color:var(--white); line-height:1.25; }
.lm-body      { padding:24px; }
.lm-desc      { font-size:14px; color:var(--w60); line-height:1.65; margin-bottom:22px; font-weight:300; }
.lm-btn       { width:100%; background:var(--grad); color:var(--white); border:none; padding:13px; border-radius:4px; font-size:14px; font-weight:600; cursor:pointer; transition:opacity 0.2s; }
.lm-btn:hover { opacity:0.9; }
.lm-fine      { font-size:11px; color:var(--w40); margin-top:10px; line-height:1.5; }

/* ─── ABOUT PAGE ─── */
.timeline { display:flex; flex-direction:column; }
.timeline-item { display:flex; gap:32px; padding:28px 0; border-bottom:1px solid var(--border2); }
.timeline-item:last-child { border-bottom:none; }
.tl-year    { font-family:'Raleway',sans-serif; font-size:20px; font-weight:800; color:var(--sky); width:80px; flex-shrink:0; padding-top:4px; }
.tl-title   { font-family:'Raleway',sans-serif; font-size:17px; font-weight:700; color:var(--white); margin-bottom:6px; }
.tl-body    { font-size:14px; color:var(--w60); line-height:1.65; font-weight:300; }
.team-grid  { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-bottom:48px; }
.team-card  { background:var(--w04); border:1px solid var(--border); border-radius:8px; padding:28px; text-align:center; transition:all 0.25s; }
.team-card:hover { border-color:rgba(90,180,255,0.3); transform:translateY(-3px); }
.team-avatar { width:72px; height:72px; border-radius:50%; background:var(--grad); margin:0 auto 16px; display:flex; align-items:center; justify-content:center; font-family:'Raleway',sans-serif; font-size:22px; font-weight:800; border:2px solid rgba(90,180,255,0.2); }
.team-name { font-family:'Raleway',sans-serif; font-size:18px; font-weight:700; color:var(--white); margin-bottom:4px; }
.team-role { font-size:13px; color:var(--sky); }
.team-bio  { font-size:13px; color:var(--w60); margin-top:12px; line-height:1.6; font-weight:300; }
.hq-banner { margin-top:52px; background:var(--w04); border:1px solid var(--border); border-radius:8px; padding:40px; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:28px; }

/* ─── EVALUATION PAGE ─── */
.eval-page {
  display: flex;
  align-items: stretch;
  min-height: calc(100vh - 64px);
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}
.eval-left {
  flex: 1;
  padding: 80px 60px 80px 5%;
  border-right: 1px solid var(--border2);
  position: relative;
  overflow: hidden;
}
.eval-right {
  width: 560px;
  flex-shrink: 0;
  padding: 60px 5% 60px 52px;
  background: var(--navy2);
  overflow-y: auto;
}
.eval-trust-list { display:flex; flex-direction:column; gap:20px; margin-top:36px; }
.eval-trust-item { display:flex; gap:14px; align-items:flex-start; }
.etl-icon  { width:36px; height:36px; border-radius:6px; background:rgba(0,112,255,0.1); border:1px solid rgba(0,112,255,0.2); display:flex; align-items:center; justify-content:center; font-size:16px; flex-shrink:0; }
.etl-title { font-size:14px; font-weight:600; color:var(--white); margin-bottom:3px; }
.etl-body  { font-size:13px; color:var(--w60); font-weight:300; line-height:1.5; }
.eval-certs { display:flex; gap:10px; margin-top:48px; flex-wrap:wrap; }
.eval-cert  { background:var(--w04); border:1px solid var(--border2); padding:8px 14px; border-radius:4px; font-family:'IBM Plex Mono',monospace; font-size:10px; color:var(--w60); letter-spacing:0.1em; }
.eval-form-title { font-family:'Raleway',sans-serif; font-size:26px; font-weight:800; color:var(--white); margin-bottom:6px; }
.eval-form-sub   { font-size:14px; color:var(--w60); margin-bottom:32px; font-weight:300; line-height:1.6; }
.response-promise { display:flex; align-items:center; gap:10px; background:rgba(0,112,255,0.07); border:1px solid rgba(0,112,255,0.15); padding:12px 16px; border-radius:6px; margin-bottom:24px; }
.rp-dot  { width:8px; height:8px; border-radius:50%; background:#5fd4a0; flex-shrink:0; animation:blink 1.5s infinite; }
.rp-text { font-size:13px; color:var(--w80); }

/* ─── FORMS ─── */
.form-group   { display:flex; flex-direction:column; gap:7px; margin-bottom:18px; }
.form-label   { font-size:12px; color:var(--w60); font-weight:500; letter-spacing:0.04em; }
.form-input, .form-select {
  background:rgba(255,255,255,0.04); border:1px solid var(--border2);
  color:var(--white); padding:13px 16px; border-radius:5px;
  font-family:'DM Sans',sans-serif; font-size:14px;
  transition:border-color 0.2s; outline:none; width:100%;
}
.form-input:focus, .form-select:focus { border-color:var(--sky); }
.form-input::placeholder { color:var(--w40); }
.form-select option { background:var(--navy2); color:var(--white); }
.form-row     { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-submit  { width:100%; background:var(--grad); color:var(--white); border:none; padding:16px; border-radius:5px; font-size:15px; font-weight:600; cursor:pointer; transition:all 0.2s; box-shadow:0 4px 20px rgba(0,120,255,0.3); margin-top:4px; }
.form-submit:hover  { transform:translateY(-1px); box-shadow:0 8px 28px rgba(0,120,255,0.45); }
.form-guarantee { font-size:12px; color:var(--w40); text-align:center; margin-top:14px; line-height:1.5; }
textarea.form-input { resize:vertical; min-height:80px; }

/* ─── FOOTER ─── */
.nls-footer { background:var(--navy2); border-top:1px solid var(--border2); padding:64px 5% 40px; }
.footer-grid { max-width:1240px; margin:0 auto; display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:48px; margin-bottom:48px; }
.footer-brand { font-size:14px; color:var(--w60); line-height:1.65; margin-top:14px; font-weight:300; }
.footer-col-title { font-family:'IBM Plex Mono',monospace; font-size:11px; letter-spacing:0.2em; text-transform:uppercase; color:var(--w60); margin-bottom:18px; }
.footer-links { display:flex; flex-direction:column; gap:10px; }
.footer-link  { font-size:14px; color:var(--w60); background:none; border:none; text-align:left; padding:0; transition:color 0.15s; display:block; }
.footer-link:hover { color:var(--white); }
.footer-bottom { max-width:1240px; margin:0 auto; border-top:1px solid var(--border2); padding-top:24px; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:14px; }
.footer-copy { font-size:13px; color:var(--w40); }
.footer-cert { font-family:'IBM Plex Mono',monospace; font-size:10px; color:var(--w40); border:1px solid var(--border2); padding:4px 8px; border-radius:3px; }

/* ─── FLOATING CHAT ─── */
.chat-float { position:fixed; bottom:28px; right:28px; z-index:900; display:flex; flex-direction:column; align-items:flex-end; gap:12px; }
.chat-bubble { background:var(--navy2); border:1px solid var(--border); padding:14px 18px; border-radius:12px 12px 0 12px; font-size:13px; color:var(--w80); max-width:220px; line-height:1.5; box-shadow:0 8px 32px rgba(0,0,0,0.4); }
.chat-bubble strong { color:var(--white); }
.chat-btn { width:52px; height:52px; border-radius:50%; background:var(--grad); border:none; cursor:pointer; display:flex; align-items:center; justify-content:center; font-size:22px; box-shadow:0 4px 20px rgba(0,120,255,0.45); transition:transform 0.2s; }
.chat-btn:hover { transform:scale(1.08); }

/* ─── MODAL ─── */
.modal-overlay { position:fixed; inset:0; z-index:2000; background:rgba(0,0,0,0.75); backdrop-filter:blur(6px); display:none; align-items:center; justify-content:center; padding:20px; }
.modal-overlay.open { display:flex; }
.modal { background:var(--navy2); border:1px solid var(--border); border-radius:12px; width:100%; max-width:480px; padding:40px; position:relative; }
.modal-title { font-family:'Raleway',sans-serif; font-size:22px; font-weight:700; color:var(--white); margin-bottom:8px; }
.modal-close { position:absolute; top:16px; right:16px; background:var(--w08); border:none; color:var(--w60); width:32px; height:32px; border-radius:50%; font-size:16px; display:flex; align-items:center; justify-content:center; cursor:pointer; }
.modal-close:hover { background:var(--w20); color:var(--white); }

/* ─── PAGE CONTENT (generic pages) ─── */
.page-content h2 { font-family:'Raleway',sans-serif; font-size:28px; font-weight:700; color:var(--white); margin:32px 0 12px; }
.page-content h3 { font-family:'Raleway',sans-serif; font-size:22px; font-weight:700; color:var(--white); margin:24px 0 10px; }
.page-content p  { font-size:16px; color:var(--w60); line-height:1.8; margin-bottom:16px; font-weight:300; }
.page-content a  { color:var(--sky); }
.page-content ul, .page-content ol { padding-left:24px; color:var(--w60); font-size:15px; line-height:1.8; margin-bottom:16px; font-weight:300; }

/* ─── RESPONSIVE ─── */
@media (max-width:1024px) {
  .hero-right { display:none; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:32px; }
  .product-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width:768px) {
  .nls-nav .nav-links { display:none; }
  .nav-mobile-toggle { display:flex; }
  .nav-mobile-drawer.open { display:flex; }
  .hero-content { flex-direction:column; }
  .stats-row { grid-template-columns:1fr; }
  .stat-block { border-right:none; border-bottom:1px solid var(--border2); }
  .steps-grid { grid-template-columns:1fr; }
  .two-col-grid { grid-template-columns:1fr; gap:48px; }
  .industries-grid { grid-template-columns:1fr 1fr; }
  .solutions-grid { grid-template-columns:1fr; }
  .product-grid { grid-template-columns:1fr; }
  .resources-grid { grid-template-columns:1fr; }
  .resources-main-grid { grid-template-columns:1fr; }
  .comp-content.active { grid-template-columns:1fr; }
  .compliance-tabs { flex-wrap:wrap; }
  .comp-tab { flex:initial; width:50%; }
  .team-grid { grid-template-columns:1fr; }
  .eval-page { flex-direction:column; }
  .eval-right { width:100%; padding:40px 5%; }
  .eval-left  { padding:60px 5%; }
  .footer-grid { grid-template-columns:1fr; gap:32px; }
  .testimonial-block { padding:28px 24px; }
  .testimonial-attr { flex-direction:column; align-items:flex-start; gap:12px; }
  .form-row { grid-template-columns:1fr; }
  .resource-row { flex-direction:column; }
  .res-download { margin-left:0; }
  .section-header-row { flex-direction:column; align-items:flex-start; }
  .cta-row { flex-direction:column; align-items:stretch; }
  .cta-row .btn-primary, .cta-row .btn-ghost { text-align:center; justify-content:center; }
}
@media (max-width:480px) {
  .industries-grid { grid-template-columns:1fr; }
  .comp-tab { width:100%; }
  .trust-inner { flex-direction:column; align-items:flex-start; }
}
