/* ============================================================
   SEKURE WARDEN LLC — style.css
   Built on Bootstrap 5. Dark navy/charcoal theme with electric
   blue/cyan accents. AI-assistant chat styles intentionally
   live in the embed block (index.html / wix-ai-assistant-embed.html)
   so the widget stays self-contained and Wix-portable.
   ============================================================ */

/* ============================================================
   1. CSS VARIABLES — edit here to retheme the site.
   ============================================================ */
:root {
  --sw-navy:       #0a0e1a;
  --sw-dark:       #0d1120;
  --sw-medium:     #111827;
  --sw-card:       #141c2f;
  --sw-card-hover: #1a2540;
  --sw-border:     rgba(30, 144, 255, 0.15);
  --sw-blue:       #1e90ff;
  --sw-cyan:       #00d4ff;
  --sw-accent:     #3b9fff;
  --sw-glow:       rgba(30, 144, 255, 0.25);
  --sw-white:      #ffffff;
  --sw-gray-light: #a0aec0;
  --sw-gray-mid:   #4a5568;
  --sw-success:    #22c55e;
  --sw-warning:    #f59e0b;
  --font-main:     'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-display:  'Orbitron', var(--font-main);
  --nav-height:    72px;
  --radius:        10px;
  --radius-lg:     16px;
  --transition:    0.3s ease;
}

/* ============================================================
   2. BASE / RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-main);
  background-color: var(--sw-dark);
  color: var(--sw-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

/* Reduce motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Universal focus ring for keyboard users */
:focus-visible {
  outline: 3px solid var(--sw-cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 100000;
  background: var(--sw-blue);
  color: #fff !important;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 600;
}

/* ============================================================
   3. TYPOGRAPHY UTILITIES
   ============================================================ */
.text-accent      { color: var(--sw-cyan) !important; }
.text-accent-bold { color: var(--sw-cyan); font-weight: 600; font-size: 1.05rem; }
.text-muted-light { color: var(--sw-gray-light); }
.required         { color: var(--sw-cyan); }

.section-tag {
  display: inline-block;
  background: rgba(30, 144, 255, 0.12);
  border: 1px solid var(--sw-border);
  color: var(--sw-cyan);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--sw-white);
  line-height: 1.25;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--sw-gray-light);
  font-size: 1.05rem;
  max-width: 680px;
  margin: 0 auto;
}

/* ============================================================
   4. SECTION BACKGROUNDS
   ============================================================ */
.section-dark   { background-color: var(--sw-dark); }
.section-medium { background-color: var(--sw-medium); }

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn-cta-primary {
  background: linear-gradient(135deg, var(--sw-blue), var(--sw-cyan));
  border: none;
  color: #fff !important;
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 4px 20px var(--sw-glow);
  white-space: nowrap;
}
.btn-cta-primary:hover,
.btn-cta-primary:focus {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(30, 144, 255, 0.45);
  color: #fff !important;
}

.btn-cta-outline {
  background: transparent;
  border: 1.5px solid var(--sw-blue);
  color: var(--sw-cyan) !important;
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-cta-outline:hover,
.btn-cta-outline:focus {
  background: var(--sw-glow);
  transform: translateY(-2px);
  color: var(--sw-white) !important;
}

.btn-cta-ghost {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--sw-white) !important;
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-cta-ghost:hover,
.btn-cta-ghost:focus {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

/* ============================================================
   6. NAVBAR
   ============================================================ */
#mainNav {
  background: rgba(10, 14, 26, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sw-border);
  height: var(--nav-height);
  transition: background 0.4s;
}
#mainNav.scrolled {
  background: rgba(10, 14, 26, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.logo-shield {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--sw-blue), var(--sw-cyan));
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  box-shadow: 0 0 12px var(--sw-glow);
  flex-shrink: 0;
}
.logo-shield.small {
  width: 32px;
  height: 32px;
  font-size: 1rem;
  border-radius: 8px;
}

.logo-text { line-height: 1.1; }
.logo-text .logo-primary { color: var(--sw-white); font-weight: 700; font-size: 1.1rem; }
.logo-text .logo-accent  { color: var(--sw-cyan);  font-weight: 700; font-size: 1.1rem; }
.logo-text .logo-sub     { color: var(--sw-gray-light); font-size: 0.65rem; letter-spacing: 0.08em; line-height: 1; margin-top: 2px; }

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.4rem 0.7rem !important;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active {
  color: var(--sw-cyan) !important;
  background: rgba(30, 144, 255, 0.08);
}

/* ============================================================
   7. HERO
   ============================================================ */
.hero-section {
  min-height: 100vh;
  background: radial-gradient(ellipse at 60% 40%, rgba(30, 144, 255, 0.12) 0%, transparent 60%),
              linear-gradient(180deg, var(--sw-navy) 0%, var(--sw-dark) 100%);
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30, 144, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 144, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: gridPulse 8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes gridPulse {
  0%, 100% { opacity: 0.5; }
  50%      { opacity: 1; }
}

.hero-shield-bg {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(300px, 35vw, 500px);
  color: rgba(30, 144, 255, 0.04);
  pointer-events: none;
  animation: shieldFloat 6s ease-in-out infinite;
  line-height: 1;
}
@keyframes shieldFloat {
  0%, 100% { transform: translateY(-50%) rotate(-3deg); }
  50%      { transform: translateY(-53%) rotate(3deg); }
}

.hero-badge {
  display: inline-block;
  background: rgba(30, 144, 255, 0.1);
  border: 1px solid var(--sw-border);
  color: var(--sw-cyan);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  letter-spacing: 0.04em;
  margin: 0;
}
.hero-badge-divider { margin: 0 0.4rem; opacity: 0.5; }

.hero-headline {
  font-family: var(--font-main);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--sw-white);
}

.hero-subheadline {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--sw-gray-light);
  max-width: 760px;
  margin: 0 auto;
}

/* ============================================================
   8. TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--sw-card);
  border-top: 1px solid var(--sw-border);
  border-bottom: 1px solid var(--sw-border);
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--sw-gray-light);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.5rem;
  transition: color var(--transition);
}
.trust-item:hover { color: var(--sw-cyan); }
.trust-item i {
  font-size: 1.5rem;
  color: var(--sw-blue);
  transition: color var(--transition);
}
.trust-item:hover i { color: var(--sw-cyan); }

/* ============================================================
   9. SERVICE CARDS
   ============================================================ */
.service-card {
  background: var(--sw-card);
  border: 1px solid var(--sw-border);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sw-blue), var(--sw-cyan));
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(30, 144, 255, 0.2);
  border-color: rgba(30, 144, 255, 0.4);
  background: var(--sw-card-hover);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(30, 144, 255, 0.15), rgba(0, 212, 255, 0.15));
  border: 1px solid rgba(30, 144, 255, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--sw-cyan);
  margin-bottom: 1rem;
  transition: background var(--transition), box-shadow var(--transition);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, rgba(30, 144, 255, 0.3), rgba(0, 212, 255, 0.3));
  box-shadow: 0 0 16px var(--sw-glow);
}

.service-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--sw-white);
  margin-bottom: 0.6rem;
}
.service-desc {
  font-size: 0.875rem;
  color: var(--sw-gray-light);
  flex: 1;
  margin-bottom: 1rem;
}
.service-link {
  color: var(--sw-cyan);
  font-size: 0.85rem;
  font-weight: 600;
  transition: letter-spacing var(--transition);
}
.service-link:hover { letter-spacing: 0.02em; color: var(--sw-cyan); }

/* ============================================================
   10. ASSESSMENT SECTION
   ============================================================ */
.section-assessment {
  background: linear-gradient(135deg, var(--sw-navy) 0%, #091630 50%, var(--sw-dark) 100%);
  position: relative;
  overflow: hidden;
}
.section-assessment::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(30, 144, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.assessment-checklist { list-style: none; padding: 0; margin: 0; }
.assessment-checklist li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.45rem 0;
  color: var(--sw-gray-light);
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: color var(--transition);
}
.assessment-checklist li:last-child { border-bottom: none; }
.assessment-checklist li:hover { color: var(--sw-white); }
.assessment-checklist li i {
  color: var(--sw-success);
  font-size: 1rem;
  flex-shrink: 0;
}

.assessment-card {
  background: var(--sw-card);
  border: 1px solid rgba(30, 144, 255, 0.25);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  position: relative;
}
.assessment-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sw-blue), var(--sw-cyan));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.assessment-card-icon {
  text-align: center;
  font-size: 3rem;
  color: var(--sw-cyan);
  margin-bottom: 1rem;
  line-height: 1;
}
.assessment-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--sw-white);
  text-align: center;
  margin-bottom: 0.75rem;
}
.assessment-card-text {
  color: var(--sw-gray-light);
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: 1.5rem;
}
.assessment-note {
  font-size: 0.8rem;
  color: var(--sw-gray-light);
  margin: 0;
}
.assessment-followup {
  color: var(--sw-gray-light);
  font-size: 0.875rem;
  margin: 0;
}
.assessment-disclaimer {
  color: var(--sw-gray-mid);
  margin: 0;
}
.assessment-disclaimer small { font-size: 0.78rem; }

.assessment-iframe-wrapper {
  border: 1px solid var(--sw-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}
.assessment-iframe-wrapper iframe { display: block; border: 0; width: 100%; }

.divider-dark { border-color: rgba(255, 255, 255, 0.08); }
.link-accent  { color: var(--sw-cyan); }
.link-accent:hover { color: var(--sw-white); }

/* ============================================================
   11. ABOUT SECTION
   ============================================================ */
.about-graphic { position: relative; }

.about-shield-ring {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 2px solid rgba(30, 144, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  animation: ringPulse 3s ease-in-out infinite;
}
@keyframes ringPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(30, 144, 255, 0.15); }
  50%      { box-shadow: 0 0 0 20px rgba(30, 144, 255, 0); }
}

.about-shield-inner {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(30, 144, 255, 0.15), rgba(0, 212, 255, 0.1));
  border: 2px solid rgba(30, 144, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--sw-cyan);
}

.stat-card {
  background: var(--sw-card);
  border: 1px solid var(--sw-border);
  border-radius: var(--radius);
  padding: 0.8rem;
  text-align: center;
  transition: border-color var(--transition);
}
.stat-card:hover { border-color: var(--sw-blue); }
.stat-icon { font-size: 1.4rem; color: var(--sw-blue); display: block; margin-bottom: 0.3rem; }
.stat-label { font-size: 0.78rem; font-weight: 700; color: var(--sw-white); }
.stat-sub   { font-size: 0.7rem;  color: var(--sw-gray-light); }

.about-points { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.about-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.about-point > i {
  font-size: 1.3rem;
  color: var(--sw-blue);
  margin-top: 0.1rem;
  flex-shrink: 0;
}
.about-point strong { color: var(--sw-white); font-weight: 600; }
.about-point p { color: var(--sw-gray-light); font-size: 0.875rem; margin: 0.2rem 0 0; }

/* ============================================================
   12. CERTIFICATIONS
   ============================================================ */
.cert-card {
  background: var(--sw-card);
  border: 1px solid var(--sw-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.cert-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(30, 144, 255, 0.15);
  border-color: rgba(30, 144, 255, 0.35);
}

.cert-icon-wrap {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(30, 144, 255, 0.15), rgba(0, 212, 255, 0.1));
  border: 1px solid rgba(30, 144, 255, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--sw-blue);
  flex-shrink: 0;
}
.cert-icon-wrap.pending { color: var(--sw-warning); }

.cert-title { font-size: 0.95rem; font-weight: 700; color: var(--sw-white); margin: 0 0 0.1rem; }
.cert-sub   { font-size: 0.78rem; color: var(--sw-gray-light); margin-bottom: 0.5rem; }

.cert-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
}
.cert-badge.active {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: var(--sw-success);
}
.cert-badge.pending {
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: var(--sw-warning);
}

/* ============================================================
   13. INDUSTRIES
   ============================================================ */
.industry-card {
  background: var(--sw-card);
  border: 1px solid var(--sw-border);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: default;
  height: 100%;
}
.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(30, 144, 255, 0.15);
  border-color: rgba(30, 144, 255, 0.4);
}
.industry-card i {
  font-size: 2rem;
  color: var(--sw-blue);
  transition: color var(--transition), text-shadow var(--transition);
}
.industry-card:hover i {
  color: var(--sw-cyan);
  text-shadow: 0 0 12px rgba(0, 212, 255, 0.4);
}
.industry-card h3 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sw-gray-light);
  margin: 0;
  transition: color var(--transition);
}
.industry-card:hover h3 { color: var(--sw-white); }

/* ============================================================
   14. WHY CHOOSE
   ============================================================ */
.why-card {
  background: var(--sw-card);
  border: 1px solid var(--sw-border);
  border-radius: var(--radius);
  padding: 1.1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  height: 100%;
  transition: border-color var(--transition), background var(--transition);
}
.why-card:hover {
  border-color: rgba(30, 144, 255, 0.4);
  background: var(--sw-card-hover);
}
.why-card i {
  font-size: 1.2rem;
  color: var(--sw-cyan);
  margin-top: 0.1rem;
  flex-shrink: 0;
}
.why-card p {
  color: var(--sw-gray-light);
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.5;
}

/* ============================================================
   15. CTA STRIP
   ============================================================ */
.section-cta {
  background: linear-gradient(135deg, #07111f 0%, #0a1628 40%, #0c1a30 100%);
  border-top: 1px solid var(--sw-border);
  border-bottom: 1px solid var(--sw-border);
  position: relative;
  overflow: hidden;
}
.section-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(30, 144, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-shield {
  font-size: 3.5rem;
  color: var(--sw-blue);
  animation: shieldGlow 3s ease-in-out infinite;
  line-height: 1;
}
@keyframes shieldGlow {
  0%, 100% { text-shadow: 0 0 10px rgba(30, 144, 255, 0.3); }
  50%      { text-shadow: 0 0 30px rgba(0, 212, 255, 0.6); }
}

.cta-headline {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--sw-white);
}
.cta-text {
  color: var(--sw-gray-light);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   16. CONTACT
   ============================================================ */
.contact-info { display: flex; flex-direction: column; gap: 1.1rem; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}
.contact-info-item i {
  font-size: 1.1rem;
  color: var(--sw-blue);
  margin-top: 0.1rem;
  flex-shrink: 0;
}
.contact-info-item strong { display: block; color: var(--sw-white); font-size: 0.85rem; }
.contact-info-item a,
.contact-info-item span { color: var(--sw-gray-light); font-size: 0.9rem; word-break: break-word; }
.contact-info-item a:hover { color: var(--sw-cyan); }

.contact-certs { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.contact-form-card {
  background: var(--sw-card);
  border: 1px solid var(--sw-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.form-control-dark,
.form-select.form-control-dark {
  background-color: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(30, 144, 255, 0.2) !important;
  color: var(--sw-white) !important;
  border-radius: 8px !important;
}
.form-control-dark::placeholder { color: var(--sw-gray-mid) !important; }
.form-control-dark:focus,
.form-select.form-control-dark:focus {
  background-color: rgba(30, 144, 255, 0.06) !important;
  border-color: var(--sw-blue) !important;
  box-shadow: 0 0 0 3px rgba(30, 144, 255, 0.15) !important;
  outline: none;
}
.form-label { color: var(--sw-gray-light); font-size: 0.875rem; font-weight: 500; margin-bottom: 0.4rem; }
.form-select.form-control-dark option {
  background-color: var(--sw-card);
  color: var(--sw-white);
}

.form-confirmation {
  text-align: center;
  padding: 2.5rem 1rem;
}
.confirmation-icon {
  font-size: 3rem;
  color: var(--sw-success);
  display: block;
  margin-bottom: 0.75rem;
  line-height: 1;
}
.form-confirmation h3 { font-size: 1.25rem; font-weight: 700; color: var(--sw-white); margin-bottom: 0.5rem; }
.form-confirmation p  { color: var(--sw-gray-light); }

.form-error-msg {
  background: rgba(220, 53, 69, 0.12) !important;
  border: 1px solid rgba(220, 53, 69, 0.4) !important;
  color: #ffb3b3 !important;
}

.mini-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(30, 144, 255, 0.1);
  border: 1px solid var(--sw-border);
  color: var(--sw-cyan);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
}

/* ============================================================
   17. FOOTER
   ============================================================ */
.site-footer {
  background: var(--sw-navy);
  border-top: 1px solid var(--sw-border);
}

.footer-tagline {
  color: var(--sw-cyan);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer-mission { color: var(--sw-gray-light); font-size: 0.875rem; font-style: italic; }
.footer-certs   { display: flex; flex-wrap: wrap; gap: 0.4rem; }

.footer-heading {
  color: var(--sw-white);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-links,
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.footer-links a {
  color: var(--sw-gray-light);
  font-size: 0.875rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--sw-cyan); }

.footer-contact-list { gap: 0.7rem; }
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.footer-contact-list i { color: var(--sw-blue); margin-top: 0.15rem; flex-shrink: 0; }
.footer-contact-list a,
.footer-contact-list span { color: var(--sw-gray-light); font-size: 0.875rem; word-break: break-word; }
.footer-contact-list a:hover { color: var(--sw-cyan); }

.footer-divider  { border-color: rgba(255, 255, 255, 0.06); }
.footer-copy     { color: var(--sw-gray-mid); font-size: 0.82rem; }
.footer-policies a {
  color: var(--sw-gray-light);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-policies a:hover { color: var(--sw-cyan); }
.footer-top-link { color: var(--sw-gray-light); transition: color var(--transition); }
.footer-top-link:hover { color: var(--sw-cyan); }

/* ============================================================
   18. SCROLL-TO-TOP BUTTON
   Sits to the LEFT of the AI assistant so the two never overlap.
   ============================================================ */
.scroll-top-btn {
  position: fixed;
  bottom: 28px;
  right: 100px;          /* offset from the AI chat button on the right */
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(30, 144, 255, 0.85);
  color: #fff;
  border: none;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9990;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
}
.scroll-top-btn.visible {
  opacity: 1;
  transform: translateY(0);
}
.scroll-top-btn:hover {
  background: var(--sw-cyan);
}
@media (max-width: 480px) {
  .scroll-top-btn {
    bottom: 80px;        /* lift above the chat button on mobile */
    right: 18px;
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
}

/* ============================================================
   19. SCROLL REVEAL ANIMATION
   Triggered by IntersectionObserver in script.js
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   20. RESPONSIVE TWEAKS
   ============================================================ */
@media (max-width: 991px) {
  .hero-shield-bg { display: none; }

  .navbar-collapse {
    background: rgba(10, 14, 26, 0.97);
    border-top: 1px solid var(--sw-border);
    padding: 1rem;
    border-radius: 0 0 12px 12px;
    margin-top: 0.5rem;
  }
  .navbar-nav .nav-link { padding: 0.6rem 0.7rem !important; }
}

@media (max-width: 767px) {
  .about-shield-ring  { width: 140px; height: 140px; }
  .about-shield-inner { width: 100px; height: 100px; font-size: 2.5rem; }
  .cert-card { flex-direction: column; text-align: center; }
  .contact-form-card { padding: 1.25rem; }
}

/* ============================================================
   21. PRINT STYLES — collapse decoration so users can save a
   clean PDF / printable copy of the page.
   ============================================================ */
@media print {
  *, *::before, *::after { background: #fff !important; color: #000 !important; box-shadow: none !important; text-shadow: none !important; }
  #mainNav, .scroll-top-btn, #sw-toggle, #sw-popup,
  .hero-grid-overlay, .hero-shield-bg, .section-cta::before,
  .section-assessment::before, .navbar-toggler { display: none !important; }
  a { color: #000 !important; text-decoration: underline; }
  .hero-section { min-height: auto; padding-top: 1rem; }
  body { line-height: 1.5; }
}


/* ============================================================
   ASSESSMENT PAGE — /assessment
   Self-contained section. All classes prefixed `a-` to avoid
   collisions with site styles.
   ============================================================ */

/* page wrapper */
.assessment-page { background: #0a0e1a; }

/* hero */
.a-hero {
  padding: 130px 0 50px;
  background:
    radial-gradient(circle at 20% 0%, rgba(0,212,255,.08) 0%, transparent 60%),
    radial-gradient(circle at 80% 100%, rgba(30,144,255,.06) 0%, transparent 60%),
    #0a0e1a;
  border-bottom: 1px solid rgba(0,212,255,.15);
}
.a-hero-h1 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: #fff;
  line-height: 1.1;
  margin: 1rem 0 1.2rem;
}
.a-hero-h1 .text-accent { color: #00d4ff; }
.a-hero-lead {
  color: #b6c1d6;
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 820px;
}
.a-hero-points {
  list-style: none;
  padding: 0; margin: 1.6rem 0 0;
  display: flex; flex-wrap: wrap; gap: 0.7rem 1.4rem;
}
.a-hero-points li {
  color: #cfd6e4; font-size: .95rem;
  display: inline-flex; align-items: center; gap: .45rem;
}
.a-hero-points li i { color: #00d4ff; }

/* app card */
.a-app-section { background: #0a0e1a; }
.a-app {
  background: #141c2f;
  border: 1px solid rgba(0,212,255,.18);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 10px 40px rgba(0,0,0,.35);
}
@media (max-width: 575px) {
  .a-app { padding: 22px 18px; border-radius: 12px; }
  .a-hero { padding-top: 110px; }
}

/* progress */
.a-progress {
  position: relative;
  height: 8px;
  background: rgba(255,255,255,.05);
  border-radius: 999px;
  margin-bottom: 28px;
}
.a-progress-bar {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #1e90ff, #00d4ff);
  transition: width .3s ease;
}
.a-progress-text {
  position: absolute; right: 0; top: 14px;
  font-size: .8rem; color: #8a96ad; letter-spacing: .5px;
}

/* step head */
.a-step-head { margin-bottom: 22px; }
.a-step-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 1.55rem;
  margin: .55rem 0 .4rem;
  line-height: 1.3;
}
.a-step-sub { color: #b6c1d6; line-height: 1.6; }

/* business-type grid */
.a-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
  margin-top: 8px;
}
.a-type-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(0,212,255,.15);
  border-radius: 12px;
  padding: 22px 14px;
  color: #cfd6e4;
  text-align: center;
  cursor: pointer;
  transition: all .2s ease;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-weight: 500;
}
.a-type-card:hover {
  border-color: #00d4ff;
  background: rgba(0,212,255,.08);
  transform: translateY(-2px);
  color: #fff;
}
.a-type-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(30,144,255,.18), rgba(0,212,255,.18));
  color: #00d4ff;
  font-size: 22px;
}
.a-type-label { font-size: .92rem; line-height: 1.3; }

/* intake form */
.a-intake {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.a-field { display: flex; flex-direction: column; }
.a-label { color: #cfd6e4; font-size: .92rem; font-weight: 500; margin-bottom: 6px; }
.a-req { color: #ff6b6b; }
.a-input,
textarea.a-input,
select.a-input {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(0,212,255,.2);
  border-radius: 8px;
  color: #fff;
  padding: 11px 14px;
  font-size: .95rem;
  font-family: inherit;
  transition: border-color .2s, background .2s;
}
.a-input:focus, textarea.a-input:focus, select.a-input:focus {
  outline: none;
  border-color: #00d4ff;
  background: rgba(0,212,255,.06);
}

/* question option cards */
.a-options { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.a-option {
  display: flex; align-items: flex-start; gap: 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 14px 18px;
  color: #cfd6e4;
  text-align: left;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1.5;
  transition: all .15s ease;
  width: 100%;
}
.a-option:hover {
  border-color: rgba(0,212,255,.4);
  background: rgba(0,212,255,.05);
  color: #fff;
}
.a-option-radio {
  flex: 0 0 auto;
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.3);
  margin-top: 3px;
  position: relative;
  transition: border-color .15s, background .15s;
}
.a-option-selected {
  border-color: #00d4ff;
  background: rgba(0,212,255,.1);
  color: #fff;
}
.a-option-selected .a-option-radio {
  border-color: #00d4ff;
  background: #00d4ff;
}
.a-option-selected .a-option-radio::after {
  content: ''; position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #0a0e1a;
}
.a-option-text { flex: 1 1 auto; }

/* nav row */
.a-nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.a-nav-row .btn { min-width: 130px; }

/* privacy + consent */
.a-privacy {
  background: rgba(255,180,0,.06);
  border: 1px solid rgba(255,180,0,.35);
  border-radius: 10px;
  padding: 14px 16px;
  margin: 14px 0 18px;
  color: #ffd58a;
  font-size: .92rem;
  line-height: 1.55;
}
.a-privacy strong { color: #ffd58a; }
.a-consent {
  display: flex; align-items: flex-start; gap: 10px;
  color: #cfd6e4;
  font-size: .92rem;
  margin: 14px 0 4px;
  cursor: pointer;
}
.a-consent input { margin-top: 4px; }

/* flash error */
.a-flash {
  background: rgba(255, 90, 90, .1);
  border: 1px solid rgba(255, 90, 90, .5);
  color: #ffb3b3;
  border-radius: 8px;
  padding: 10px 14px;
  margin-top: 14px;
  font-size: .92rem;
}

/* ============================================================
   REPORT
   ============================================================ */

/* hero (report top) */
.a-report-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 26px 24px;
  border-radius: 14px;
  margin-bottom: 24px;
  background: rgba(255,255,255,.03);
  border-left: 4px solid #00d4ff;
}
@media (min-width: 720px) {
  .a-report-hero { grid-template-columns: 1.2fr 1fr; align-items: center; }
}
.a-report-hero.a-red    { border-left-color: #ff5a5a; background: rgba(255, 90, 90, .05); }
.a-report-hero.a-yellow { border-left-color: #ffc14a; background: rgba(255, 193, 74, .05); }
.a-report-hero.a-green  { border-left-color: #4ade80; background: rgba(74, 222, 128, .05); }

.a-hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #8a96ad;
  font-size: .75rem;
  font-weight: 600;
  margin: 0 0 6px;
}
.a-hero-title {
  font-family: 'Orbitron', sans-serif;
  color: #fff;
  font-weight: 700;
  font-size: 1.6rem;
  margin: 0 0 4px;
}
.a-hero-type { color: #b6c1d6; margin: 0; font-size: .95rem; }
.a-hero-text { color: #cfd6e4; margin: 8px 0 0; line-height: 1.6; font-size: .95rem; }

/* Badges */
.a-badge {
  display: inline-flex; align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1px;
  border: 1px solid transparent;
}
.a-badge-lg { padding: 7px 14px; font-size: .82rem; }
.a-badge.a-red    { background: rgba(255, 90, 90, .14); color: #ff8b8b; border-color: rgba(255, 90, 90, .3); }
.a-badge.a-yellow { background: rgba(255, 193, 74, .14); color: #ffc14a; border-color: rgba(255, 193, 74, .3); }
.a-badge.a-green  { background: rgba(74, 222, 128, .14); color: #4ade80; border-color: rgba(74, 222, 128, .3); }

/* Domain grid */
.a-domain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
  margin-bottom: 30px;
}
.a-domain {
  display: flex; gap: 12px; align-items: flex-start;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-left: 3px solid #00d4ff;
  border-radius: 10px;
  padding: 14px 16px;
}
.a-domain.a-red    { border-left-color: #ff5a5a; }
.a-domain.a-yellow { border-left-color: #ffc14a; }
.a-domain.a-green  { border-left-color: #4ade80; }
.a-domain-icon {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(30,144,255,.15), rgba(0,212,255,.15));
  color: #00d4ff;
  display: flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
  font-size: 18px;
}
.a-domain-title { color: #fff; font-size: .95rem; margin: 0 0 6px; line-height: 1.3; font-weight: 600; }

/* Findings */
.a-findings { display: grid; gap: 18px; margin-bottom: 30px; }
@media (min-width: 900px) { .a-findings { grid-template-columns: repeat(3, 1fr); } }
.a-finding {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 10px;
  padding: 18px 20px;
}
.a-finding-h {
  font-size: 1rem;
  color: #fff;
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  margin: 0 0 12px;
}
.a-finding-count { color: #8a96ad; font-weight: 400; font-size: .9rem; }
.a-finding-list { list-style: none; padding: 0; margin: 0; }
.a-finding-list li {
  color: #cfd6e4;
  padding: 8px 0;
  border-top: 1px solid rgba(255,255,255,.05);
  font-size: .92rem;
  line-height: 1.5;
}
.a-finding-list li:first-child { border-top: none; }
.a-finding-empty { color: #8a96ad; font-style: italic; font-size: .9rem; margin: 0; }

/* Top 3 fixes */
.a-top3 {
  background: rgba(0,212,255,.04);
  border: 1px solid rgba(0,212,255,.2);
  border-radius: 12px;
  padding: 22px 24px;
  margin-bottom: 24px;
}
.a-top3-list { padding-left: 1.4rem; margin: 12px 0 0; }
.a-top3-list li { color: #fff; margin-bottom: 14px; line-height: 1.5; }
.a-top3-fix { color: #b6c1d6; margin: 4px 0 0; font-weight: 400; font-size: .92rem; }

/* impact + cta block */
.a-impact, .a-cta-block {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  padding: 22px 24px;
  margin-bottom: 24px;
}
.a-section-h {
  font-family: 'Orbitron', sans-serif;
  color: #00d4ff;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .3px;
  margin: 0 0 10px;
}
.a-impact-text, .a-cta-block p { color: #cfd6e4; line-height: 1.7; margin: 0; }

.a-cta-row {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 14px;
}
.a-submit-status {
  margin: 12px 0 0;
  color: #b6c1d6;
  font-size: .92rem;
  min-height: 1em;
}
.a-submit-status a { color: #00d4ff; }

.a-tools {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: flex-end;
  margin-bottom: 18px;
}

.a-disclaimer {
  color: #8a96ad;
  font-size: .82rem;
  line-height: 1.6;
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 18px;
  margin: 0;
}

/* notice card under app */
.a-notice-section { background: #0a0e1a; }
.a-notice-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(0,212,255,.15);
  border-radius: 12px;
  padding: 26px 28px;
  color: #cfd6e4;
  line-height: 1.65;
}
.a-notice-h {
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  margin: 0 0 12px;
}
.a-notice-card p:last-child { margin-bottom: 0; }
.a-notice-card a { color: #00d4ff; }

/* PRINT — keep just the report */
@media print {
  body { background: #fff !important; color: #000 !important; }
  #mainNav, #footer, .a-hero, .a-notice-section,
  .a-progress, .a-step-head, .a-options, .a-type-grid,
  .a-intake, .a-privacy, .a-consent, .a-flash,
  .a-nav-row, .a-cta-row, .a-tools,
  #sw-toggle, #sw-popup, #scrollTopBtn { display: none !important; }
  .a-app {
    background: #fff !important; border: none !important;
    box-shadow: none !important; padding: 0 !important;
  }
  .a-report-hero, .a-domain, .a-finding, .a-top3, .a-impact, .a-cta-block {
    background: #fff !important; border: 1px solid #ccc !important;
    color: #000 !important;
    page-break-inside: avoid;
  }
  .a-hero-title, .a-hero-type, .a-hero-text,
  .a-domain-title, .a-finding-h, .a-finding-list li,
  .a-top3-list li, .a-impact-text, .a-section-h,
  .a-disclaimer { color: #000 !important; }
  .a-section-h { color: #1e3a8a !important; }
  .a-badge.a-red    { background: #ffe5e5 !important; color: #8b0000 !important; border-color: #d44 !important; }
  .a-badge.a-yellow { background: #fff7d6 !important; color: #7a5b00 !important; border-color: #c8a000 !important; }
  .a-badge.a-green  { background: #e6fff0 !important; color: #006633 !important; border-color: #2a8a4a !important; }
  .a-domain.a-red    { border-left: 4px solid #c00 !important; }
  .a-domain.a-yellow { border-left: 4px solid #c89000 !important; }
  .a-domain.a-green  { border-left: 4px solid #228844 !important; }
  .a-disclaimer { border-top: 1px solid #ccc !important; }
  .a-domain-icon, .a-type-icon { display: none !important; }
}

/* SeKure Warden service ladder shown inside the report CTA block */
.a-ladder {
  display: grid;
  gap: 12px;
  margin: 18px 0 4px;
}
.a-ladder-step {
  display: flex; gap: 14px; align-items: flex-start;
  background: rgba(0, 212, 255, .04);
  border: 1px solid rgba(0, 212, 255, .15);
  border-radius: 10px;
  padding: 14px 16px;
}
.a-ladder-num {
  flex: 0 0 auto;
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #1e90ff, #00d4ff);
  color: #0a0e1a;
  font-weight: 700;
  font-size: .9rem;
}
.a-ladder-step strong { color: #fff; display: block; margin-bottom: 4px; }
.a-ladder-text { color: #b6c1d6; margin: 0; line-height: 1.55; font-size: .92rem; }

/* Print: keep the ladder visible but plain */
@media print {
  .a-ladder-step { background: #fff !important; border: 1px solid #ccc !important; }
  .a-ladder-step strong { color: #000 !important; }
  .a-ladder-text { color: #000 !important; }
  .a-ladder-num { background: #1e3a8a !important; color: #fff !important; }
}


/* ============================================================
   ADDITIONAL UTILITY STYLES — for /services, /about, /industries
   ============================================================ */

/* Service bullet lists */
.service-bullets {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
}
.service-bullets li {
  position: relative;
  padding-left: 24px;
  color: #b6c1d6;
  margin-bottom: 8px;
  line-height: 1.55;
}
.service-bullets li::before {
  content: "\f26b"; /* bi-check2 */
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  color: #00d4ff;
  font-size: 1rem;
  top: 1px;
}

/* Industry-card subtype helpers */
.industry-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(30,144,255,.18), rgba(0,212,255,.18));
  color: #00d4ff;
  font-size: 24px;
  margin-bottom: 14px;
}
.industry-title {
  font-family: 'Orbitron', sans-serif;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 12px;
}
.industry-focus {
  background: rgba(0,212,255,.06);
  border-left: 3px solid #00d4ff;
  padding: 10px 14px;
  border-radius: 0 8px 8px 0;
  font-size: .92rem;
  color: #cfd6e4;
  margin-top: 14px;
  line-height: 1.55;
}
.industry-focus strong { color: #fff; }

/* About page */
.why-card-title {
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 10px;
  letter-spacing: .3px;
}
.text-lead {
  font-size: 1.08rem;
  color: #cfd6e4;
  line-height: 1.75;
}
.cert-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(30,144,255,.18), rgba(0,212,255,.18));
  color: #00d4ff;
  font-size: 24px;
  margin: 0 auto 14px;
}

/* Service icon (used on /services cards too) */
.service-card .service-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(30,144,255,.18), rgba(0,212,255,.18));
  color: #00d4ff;
  font-size: 24px;
  margin-bottom: 14px;
}
.service-card .service-icon.mx-auto { margin-left: auto; margin-right: auto; }

/* Print-friendliness for new pages */
@media print {
  .hero-section, nav, footer, .skip-link { background: #fff !important; color: #000 !important; }
  .industry-card, .service-card, .why-card, .cert-card { background: #fff !important; color: #000 !important; border: 1px solid #ccc !important; }
}


/* ============================================================
   ADDITIONAL UTILITY STYLES — for /services, /about, /industries
   ============================================================ */
.service-bullets { list-style: none; padding: 0; margin: 14px 0 0; }
.service-bullets li {
  position: relative; padding-left: 24px;
  color: #b6c1d6; margin-bottom: 8px; line-height: 1.55;
}
.service-bullets li::before {
  content: "\f26b"; font-family: "bootstrap-icons";
  position: absolute; left: 0; color: #00d4ff; font-size: 1rem; top: 1px;
}
.industry-icon {
  width: 56px; height: 56px; display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(30,144,255,.18), rgba(0,212,255,.18));
  color: #00d4ff; font-size: 24px; margin-bottom: 14px;
}
.industry-title {
  font-family: 'Orbitron', sans-serif; color: #fff;
  font-size: 1.25rem; font-weight: 600; margin: 0 0 12px;
}
.industry-focus {
  background: rgba(0,212,255,.06); border-left: 3px solid #00d4ff;
  padding: 10px 14px; border-radius: 0 8px 8px 0;
  font-size: .92rem; color: #cfd6e4; margin-top: 14px; line-height: 1.55;
}
.industry-focus strong { color: #fff; }
.why-card-title {
  color: #fff; font-family: 'Orbitron', sans-serif;
  font-size: 1.05rem; font-weight: 600; margin: 0 0 10px; letter-spacing: .3px;
}
.text-lead { font-size: 1.08rem; color: #cfd6e4; line-height: 1.75; }
.cert-icon {
  width: 56px; height: 56px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(30,144,255,.18), rgba(0,212,255,.18));
  color: #00d4ff; font-size: 24px; margin: 0 auto 14px;
}
.service-card .service-icon {
  width: 56px; height: 56px; display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(30,144,255,.18), rgba(0,212,255,.18));
  color: #00d4ff; font-size: 24px; margin-bottom: 14px;
}
.service-card .service-icon.mx-auto { margin-left: auto; margin-right: auto; }
@media print {
  .hero-section, nav, footer, .skip-link { background: #fff !important; color: #000 !important; }
  .industry-card, .service-card, .why-card, .cert-card { background: #fff !important; color: #000 !important; border: 1px solid #ccc !important; }
}
