/* O2Cyber Design System — Shared Styles */

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #1E1E1E;
}
::-webkit-scrollbar-thumb {
  background: #FE5E04;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #e55504;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes countUp {
  from { opacity: 0; transform: scale(0.5); }
  to { opacity: 1; transform: scale(1); }
}

/* Animation utility classes */
.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-fade-in {
  animation: fadeIn 0.5s ease-out forwards;
}

.animate-slide-left {
  animation: slideInLeft 0.6s ease-out forwards;
}

.animate-slide-right {
  animation: slideInRight 0.6s ease-out forwards;
}

/* Staggered delays */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; }

/* Initially hidden for animation */
.animate-on-scroll {
  opacity: 0;
}
.animate-on-scroll.is-visible {
  opacity: 1;
}

/* Card hover effects */
.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Button styles */
.btn-primary {
  background-color: #FE5E04;
  color: white;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover {
  background-color: #e55504;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(254, 94, 4, 0.35);
}

.btn-ghost {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-ghost:hover {
  border-color: #FE5E04;
  color: #FE5E04;
  background-color: rgba(254, 94, 4, 0.05);
}

.btn-outline {
  border: 2px solid #FE5E04;
  color: #FE5E04;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline:hover {
  background-color: #FE5E04;
  color: white;
}

/* Image placeholder (legacy fallback) */
.img-placeholder {
  background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 14px;
  border-radius: 8px;
  border: 1px dashed #444;
}

/* ======================================================
   MOCKUP VISUAL IMAGES — CSS-generated cyber visuals
   ====================================================== */

/* Base for all mockup visuals */
.mock-visual {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- DASHBOARD: Dark UI with chart bars & status dots --- */
.mock-dashboard {
  background: linear-gradient(145deg, #0c1220 0%, #162032 40%, #0f1825 100%);
  border: 1px solid rgba(254,94,4,0.12);
}
.mock-dashboard::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(254,94,4,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(254,94,4,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
}
.mock-dashboard::after {
  content: '';
  position: absolute;
  inset: 12%;
  border-radius: 8px;
  background:
    /* Top bar */
    linear-gradient(180deg, rgba(254,94,4,0.08) 0%, rgba(254,94,4,0.08) 8%, transparent 8%),
    /* Left sidebar */
    linear-gradient(90deg, rgba(254,94,4,0.05) 0%, rgba(254,94,4,0.05) 18%, transparent 18%),
    /* Chart area bars */
    linear-gradient(180deg,
      transparent 40%,
      rgba(254,94,4,0.15) 40%, rgba(254,94,4,0.15) 45%,
      transparent 45%, transparent 50%,
      rgba(254,94,4,0.25) 50%, rgba(254,94,4,0.25) 58%,
      transparent 58%, transparent 63%,
      rgba(254,94,4,0.12) 63%, rgba(254,94,4,0.12) 66%,
      transparent 66%, transparent 71%,
      rgba(254,94,4,0.35) 71%, rgba(254,94,4,0.35) 82%,
      transparent 82%, transparent 87%,
      rgba(254,94,4,0.18) 87%, rgba(254,94,4,0.18) 92%,
      transparent 92%
    );
  border: 1px solid rgba(254,94,4,0.06);
}
.mock-dashboard .mock-dots {
  position: absolute;
  top: 16%;
  right: 16%;
  display: flex;
  gap: 6px;
  z-index: 2;
}
.mock-dashboard .mock-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.mock-dashboard .mock-dot.green { background: #22c55e; box-shadow: 0 0 8px rgba(34,197,94,0.5); }
.mock-dashboard .mock-dot.orange { background: #FE5E04; box-shadow: 0 0 8px rgba(254,94,4,0.5); }
.mock-dashboard .mock-dot.red { background: #ef4444; box-shadow: 0 0 8px rgba(239,68,68,0.5); }

/* --- SOC ROOM: Multiple monitor feel with scan lines --- */
.mock-soc {
  background: linear-gradient(135deg, #080e18 0%, #0e1a2c 50%, #0a1220 100%);
  border: 1px solid rgba(254,94,4,0.1);
}
.mock-soc::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    /* Scan lines */
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 3px,
      rgba(254,94,4,0.015) 3px,
      rgba(254,94,4,0.015) 4px
    ),
    /* Monitor grid */
    linear-gradient(rgba(254,94,4,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(254,94,4,0.03) 1px, transparent 1px);
  background-size: 100% 100%, 40px 40px, 40px 40px;
}
.mock-soc::after {
  content: '';
  position: absolute;
  inset: 8%;
  background:
    /* 4 monitor panels */
    linear-gradient(90deg,
      transparent 0%, transparent 2%,
      rgba(254,94,4,0.04) 2%, rgba(254,94,4,0.04) 48%,
      transparent 48%, transparent 52%,
      rgba(254,94,4,0.06) 52%, rgba(254,94,4,0.06) 98%,
      transparent 98%
    ),
    linear-gradient(180deg,
      transparent 0%, transparent 2%,
      rgba(254,94,4,0.03) 2%, rgba(254,94,4,0.03) 47%,
      transparent 47%, transparent 53%,
      rgba(254,94,4,0.03) 53%, rgba(254,94,4,0.03) 98%,
      transparent 98%
    );
  border-radius: 4px;
}
.mock-soc .mock-glow {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(254,94,4,0.15) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 3s ease-in-out infinite;
}

/* --- CYBER NETWORK: Abstract network nodes & connections --- */
.mock-network {
  background: linear-gradient(160deg, #0a0f1a 0%, #111827 50%, #0d1321 100%);
  border: 1px solid rgba(254,94,4,0.1);
}
.mock-network::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    /* Hex grid */
    radial-gradient(circle at 20% 30%, rgba(254,94,4,0.12) 2px, transparent 2px),
    radial-gradient(circle at 50% 60%, rgba(254,94,4,0.15) 3px, transparent 3px),
    radial-gradient(circle at 80% 25%, rgba(254,94,4,0.10) 2px, transparent 2px),
    radial-gradient(circle at 35% 75%, rgba(254,94,4,0.08) 2px, transparent 2px),
    radial-gradient(circle at 70% 70%, rgba(254,94,4,0.12) 2px, transparent 2px),
    radial-gradient(circle at 15% 55%, rgba(254,94,4,0.06) 2px, transparent 2px),
    radial-gradient(circle at 85% 50%, rgba(254,94,4,0.08) 2px, transparent 2px),
    radial-gradient(circle at 60% 15%, rgba(254,94,4,0.10) 2px, transparent 2px),
    radial-gradient(circle at 40% 40%, rgba(254,94,4,0.06) 2px, transparent 2px);
}
.mock-network::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    /* Connection lines between nodes */
    linear-gradient(35deg, transparent 18%, rgba(254,94,4,0.06) 19%, transparent 20%),
    linear-gradient(125deg, transparent 28%, rgba(254,94,4,0.05) 29%, transparent 30%),
    linear-gradient(75deg, transparent 55%, rgba(254,94,4,0.04) 56%, transparent 57%),
    linear-gradient(155deg, transparent 40%, rgba(254,94,4,0.05) 41%, transparent 42%),
    linear-gradient(10deg, transparent 65%, rgba(254,94,4,0.04) 66%, transparent 67%);
}
.mock-network .mock-glow {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(254,94,4,0.2) 0%, transparent 70%);
  animation: pulse 3s ease-in-out infinite;
}
.mock-network .mock-glow:nth-child(1) { top: 25%; left: 45%; animation-delay: 0s; }
.mock-network .mock-glow:nth-child(2) { top: 55%; left: 20%; width: 60px; height: 60px; animation-delay: 1s; }
.mock-network .mock-glow:nth-child(3) { top: 40%; left: 70%; width: 50px; height: 50px; animation-delay: 2s; }

/* --- REPORT: Document-style with lines & sections --- */
.mock-report {
  background: linear-gradient(180deg, #f8f9fb 0%, #f0f2f5 100%);
  border: 1px solid #e0e2e8;
}
.mock-report::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 12%;
  right: 12%;
  bottom: 10%;
  background:
    /* Header bar */
    linear-gradient(180deg,
      rgba(254,94,4,0.12) 0%, rgba(254,94,4,0.12) 6%,
      transparent 6%, transparent 10%,
      /* Text lines */
      #ddd 10%, #ddd 10.5%, transparent 10.5%, transparent 14%,
      #e5e5e5 14%, #e5e5e5 14.3%, transparent 14.3%, transparent 17%,
      #e5e5e5 17%, #e5e5e5 17.3%, transparent 17.3%, transparent 20%,
      #ddd 20%, #ddd 20.3%, transparent 20.3%, transparent 24%,
      /* Chart section */
      transparent 24%, transparent 28%,
      rgba(254,94,4,0.08) 28%, rgba(254,94,4,0.08) 55%,
      transparent 55%, transparent 58%,
      /* More text lines */
      #e5e5e5 58%, #e5e5e5 58.3%, transparent 58.3%, transparent 62%,
      #e5e5e5 62%, #e5e5e5 62.3%, transparent 62.3%, transparent 66%,
      #ddd 66%, #ddd 66.5%, transparent 66.5%, transparent 72%,
      #e5e5e5 72%, #e5e5e5 72.3%, transparent 72.3%, transparent 76%,
      #e5e5e5 76%, #e5e5e5 76.3%, transparent 76.3%, transparent 80%,
      /* Footer */
      rgba(254,94,4,0.06) 92%, rgba(254,94,4,0.06) 100%
    );
  border-radius: 4px;
  border: 1px solid #e8eaef;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

/* --- TEAM/OFFICE: Professional warm gradient --- */
.mock-office {
  background: linear-gradient(135deg, #1a1520 0%, #2a2030 40%, #1e1828 100%);
  border: 1px solid rgba(254,94,4,0.08);
}
.mock-office::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    /* People silhouettes as abstract shapes */
    radial-gradient(ellipse 40px 60px at 25% 55%, rgba(254,94,4,0.08) 0%, transparent 100%),
    radial-gradient(ellipse 35px 55px at 45% 52%, rgba(254,94,4,0.10) 0%, transparent 100%),
    radial-gradient(ellipse 38px 58px at 65% 54%, rgba(254,94,4,0.07) 0%, transparent 100%),
    radial-gradient(ellipse 32px 50px at 80% 56%, rgba(254,94,4,0.09) 0%, transparent 100%),
    /* Desk/table line */
    linear-gradient(180deg, transparent 68%, rgba(254,94,4,0.04) 68%, rgba(254,94,4,0.04) 70%, transparent 70%),
    /* Warm ambient glow */
    radial-gradient(ellipse at 50% 30%, rgba(254,94,4,0.06) 0%, transparent 60%);
}

/* --- SHIELD: Security/compliance badge style --- */
.mock-shield {
  background: linear-gradient(145deg, #0c1220 0%, #14202e 50%, #0e1622 100%);
  border: 1px solid rgba(254,94,4,0.12);
}
.mock-shield::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40%;
  height: 55%;
  background:
    linear-gradient(180deg, rgba(254,94,4,0.12), rgba(254,94,4,0.03));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.mock-shield::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30%;
  height: 42%;
  background:
    linear-gradient(180deg, rgba(254,94,4,0.2), rgba(254,94,4,0.05));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: pulse 3s ease-in-out infinite;
}

/* Mock visual overlay icon */
.mock-visual .mock-icon {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: rgba(254,94,4,0.15);
  border: 1px solid rgba(254,94,4,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.mock-visual .mock-icon i { color: #FE5E04; }

/* Mock visual label */
.mock-visual .mock-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 14px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.6));
  z-index: 3;
}
.mock-visual .mock-label span {
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Light variant for light-bg sections */
.mock-visual-light.mock-dashboard {
  background: linear-gradient(145deg, #f0f4f8 0%, #e4eaf0 40%, #eef2f7 100%);
  border-color: #d0d5dc;
}
.mock-visual-light.mock-dashboard::before {
  background:
    linear-gradient(rgba(30,30,30,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,30,30,0.03) 1px, transparent 1px);
  background-size: 24px 24px;
}
.mock-visual-light.mock-dashboard::after {
  background:
    linear-gradient(180deg, rgba(254,94,4,0.1) 0%, rgba(254,94,4,0.1) 8%, transparent 8%),
    linear-gradient(90deg, rgba(254,94,4,0.06) 0%, rgba(254,94,4,0.06) 18%, transparent 18%),
    linear-gradient(180deg,
      transparent 40%,
      rgba(254,94,4,0.12) 40%, rgba(254,94,4,0.12) 45%,
      transparent 45%, transparent 50%,
      rgba(254,94,4,0.2) 50%, rgba(254,94,4,0.2) 58%,
      transparent 58%, transparent 63%,
      rgba(254,94,4,0.1) 63%, rgba(254,94,4,0.1) 66%,
      transparent 66%, transparent 71%,
      rgba(254,94,4,0.28) 71%, rgba(254,94,4,0.28) 82%,
      transparent 82%, transparent 87%,
      rgba(254,94,4,0.14) 87%, rgba(254,94,4,0.14) 92%,
      transparent 92%
    );
  border-color: rgba(30,30,30,0.08);
}

/* Gradient backgrounds */
.bg-gradient-dark {
  background-color: #1E1E1E;
  background-image: linear-gradient(135deg, #1E1E1E 0%, #2d2d2d 50%, #1E1E1E 100%);
}

.bg-gradient-orange {
  background: linear-gradient(135deg, #FE5E04 0%, #ff8533 100%);
}

/* Subtle grid pattern for hero sections — layers grid on top of gradient */
.bg-grid-pattern {
  background-image:
    linear-gradient(rgba(254, 94, 4, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(254, 94, 4, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.bg-gradient-dark.bg-grid-pattern {
  background-image:
    linear-gradient(rgba(254, 94, 4, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(254, 94, 4, 0.03) 1px, transparent 1px),
    linear-gradient(135deg, #1E1E1E 0%, #2d2d2d 50%, #1E1E1E 100%);
  background-size: 60px 60px, 60px 60px, 100% 100%;
}

/* Nav dropdown (simple dropdowns like Company) */
.nav-dropdown {
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ===== MEGA MENU ===== */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 900px;
  max-width: calc(100vw - 2rem);
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
  z-index: 100;
}
.nav-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.mega-menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.mega-menu-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 10px;
  transition: all 0.2s ease;
  text-decoration: none;
}
.mega-menu-item:hover {
  background: rgba(254,94,4,0.08);
}
.mega-menu-item .mm-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(254,94,4,0.1);
  border: 1px solid rgba(254,94,4,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mega-menu-item .mm-icon i,
.mega-menu-item .mm-icon svg {
  color: #FE5E04;
  stroke: #FE5E04;
  width: 20px;
  height: 20px;
}
.mega-menu-item:hover .mm-icon {
  background: rgba(254,94,4,0.2);
  border-color: rgba(254,94,4,0.4);
}
.mega-menu-item h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  margin: 0 0 2px 0;
  line-height: 1.3;
}
.mega-menu-item p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
  line-height: 1.4;
}
.mega-menu-cta {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mega-menu-cta a {
  font-size: 0.85rem;
  font-weight: 600;
  color: #FE5E04;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: gap 0.2s ease;
}
.mega-menu-cta a:hover {
  gap: 0.75rem;
}

/* Badge styles */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
}
.badge-orange {
  background: rgba(254, 94, 4, 0.1);
  color: #FE5E04;
}

/* Section divider */
.section-divider {
  width: 60px;
  height: 3px;
  background: #FE5E04;
  border-radius: 2px;
}

/* Step connector line */
.step-connector {
  position: relative;
}
.step-connector::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -40px;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #FE5E04, transparent);
}

/* Form styles */
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}
.form-input:focus {
  border-color: #FE5E04;
  box-shadow: 0 0 0 3px rgba(254, 94, 4, 0.1);
}

/* Certification badge */
.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(254, 94, 4, 0.05);
  border: 1px solid rgba(254, 94, 4, 0.15);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  transition: all 0.2s ease;
}
.cert-badge:hover {
  background: rgba(254, 94, 4, 0.1);
  border-color: rgba(254, 94, 4, 0.3);
}

/* Wizard steps */
.wizard-step {
  position: relative;
  padding-left: 48px;
}
.wizard-step::before {
  content: attr(data-step);
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e0e0e0;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}
.wizard-step.active::before {
  background: #FE5E04;
  color: white;
}
.wizard-step.completed::before {
  background: #22c55e;
  color: white;
  content: '✓';
}

/* ======================================================
   FORM MODAL — Lead capture popup
   ====================================================== */

@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.form-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: modalFadeIn 0.25s ease-out;
}

.form-modal-card {
  position: relative;
  width: 100%;
  max-width: 28rem;
  margin: 1rem;
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideUp 0.3s ease-out;
  overflow: hidden;
}

.form-modal-card .modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #f0f0f0;
}

.form-modal-card .modal-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1E1E1E;
  margin: 0;
}

.form-modal-card .modal-close {
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  transition: all 0.2s;
}

.form-modal-card .modal-close:hover {
  background: #f5f5f5;
  color: #333;
}

.form-modal-card .modal-body {
  padding: 1.5rem;
}

.form-modal-card .modal-subtitle {
  font-size: 0.875rem;
  color: #666;
  margin: 0 0 1.25rem 0;
}

.form-modal-card .modal-field {
  margin-bottom: 1rem;
}

.form-modal-card .modal-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.form-modal-card .modal-field input,
.form-modal-card .modal-field textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
  font-family: inherit;
  resize: vertical;
}
.form-modal-card .modal-field input[readonly] {
  background: #f5f5f5;
  color: #6b7280;
}

.form-modal-card .modal-field input:focus,
.form-modal-card .modal-field textarea:focus {
  border-color: #FE5E04;
  box-shadow: 0 0 0 3px rgba(254, 94, 4, 0.1);
}

.form-modal-card .modal-submit {
  width: 100%;
  margin-top: 0.5rem;
}

.form-modal-card .modal-success {
  text-align: center;
  padding: 2.5rem 1.5rem;
}

.form-modal-card .modal-success .success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FE5E04 0%, #FF8A3D 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.1rem;
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(254, 94, 4, 0.35);
}

.form-modal-card .modal-success p {
  color: #1E1E1E;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
}
.form-modal-card .modal-success p:last-child {
  margin-top: 8px;
  color: #6b7280;
  font-size: 0.85rem;
}


/* ======================================================
   MODERN DIAGRAM CARDS — Zscaler/RiskProfiler style
   ====================================================== */

/* Diagram section background */
.diagram-section {
  background-color: #0d0d1a;
  background-image:
    linear-gradient(rgba(254,94,4,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(254,94,4,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* Modern diagram card */
.diagram-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.diagram-card:hover {
  border-color: rgba(254,94,4,0.3);
  background: linear-gradient(145deg, rgba(254,94,4,0.08) 0%, rgba(254,94,4,0.02) 100%);
  box-shadow: 0 8px 32px rgba(254,94,4,0.1);
  transform: translateY(-2px);
}
.diagram-card .dc-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(254,94,4,0.15), rgba(254,94,4,0.05));
  border: 1px solid rgba(254,94,4,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.diagram-card .dc-icon i,
.diagram-card .dc-icon svg {
  color: #FE5E04;
  stroke: #FE5E04;
  width: 24px;
  height: 24px;
}
.diagram-card:hover .dc-icon {
  background: linear-gradient(135deg, rgba(254,94,4,0.25), rgba(254,94,4,0.1));
  border-color: rgba(254,94,4,0.5);
  box-shadow: 0 0 20px rgba(254,94,4,0.2);
}
.diagram-card h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: white;
  margin: 0;
  line-height: 1.3;
}
.diagram-card p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
  line-height: 1.4;
}

/* Diagram central hub */
.diagram-hub {
  background: linear-gradient(135deg, rgba(254,94,4,0.15) 0%, rgba(254,94,4,0.05) 100%);
  border: 2px solid #FE5E04;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 0 40px rgba(254,94,4,0.15), 0 0 80px rgba(254,94,4,0.05);
}
.diagram-hub h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin: 0;
}
.diagram-hub p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

/* Diagram group container */
.diagram-group {
  border: 1px solid rgba(254,94,4,0.15);
  border-radius: 20px;
  padding: 1.5rem;
  background: rgba(254,94,4,0.02);
}
.diagram-group-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #FE5E04;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  text-align: center;
}

/* Hero full-width background image */
.hero-fullwidth {
    position: relative;
    min-height: 90vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-fullwidth::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,10,18,0.92) 0%, rgba(18,10,2,0.85) 50%, rgba(10,10,18,0.75) 100%);
    z-index: 1;
}

.hero-fullwidth > *:not(.deco-arc):not(.deco-band):not(.deco-o2-text):not(.hero-video):not(.hero-video-overlay):not(.hero-static-image):not(.hero-shield-stage):not(.hero-dash):not(.hero-cyber-bg):not(.hero-brain-net) {
    position: relative;
    z-index: 2;
}

/* Hero background video (home) */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(254,94,4,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(254,94,4,0.10) 0%, transparent 55%),
    linear-gradient(135deg, rgba(10,10,18,0.88) 0%, rgba(18,10,2,0.80) 50%, rgba(10,10,18,0.70) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-immersive.hero-fullwidth::before { display: none; }

/* Our Approach flow animation */
.approach-flow { position: relative; }
.approach-connector {
  position: absolute;
  top: 76px;
  left: 6%;
  right: 6%;
  height: 24px;
  z-index: 3;
  pointer-events: none;
}
.approach-connector-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(0 0 12px rgba(254,94,4,0.8));
}
.approach-card { position: relative; z-index: 1; }

/* Hero animated background */
@keyframes heroFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-15px) rotate(2deg); }
  66% { transform: translateY(8px) rotate(-1deg); }
}
@keyframes heroPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.1); }
}
@keyframes heroGlow {
  0%, 100% { opacity: 0.15; }
  50% { opacity: 0.35; }
}
.hero-float-icon {
  position: absolute;
  color: rgba(254,94,4,0.15);
  animation: heroFloat 6s ease-in-out infinite;
  pointer-events: none;
}
.hero-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(254,94,4,0.3);
  animation: heroPulse 4s ease-in-out infinite;
  pointer-events: none;
}

/* ================================================================
   Agentic Team (3PI) — riskprofiler "Meet Your Agentic Team" style
   ================================================================ */
.agentic-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}
@media (min-width: 720px) { .agentic-grid { grid-template-columns: repeat(2, 1fr); } }
@keyframes agenticOrbit {
  from { offset-distance: 0%; }
  to   { offset-distance: 100%; }
}

/* Hub — a solid filled circle that contrasts with the dark tiles */
.agentic-hub {
  grid-column: 1 / -1;
  position: relative;
  min-height: 280px;
  padding: 0;
  text-align: center;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #FF8A3D 0%, #FE5E04 45%, #B54504 100%);
  box-shadow:
    0 0 80px rgba(254,94,4,0.55),
    0 0 30px rgba(254,94,4,0.45),
    inset 0 -20px 60px rgba(0,0,0,0.25),
    inset 0 1px 0 rgba(255,255,255,0.3);
}
.agentic-hub::before, .agentic-hub::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(254,94,4,0.28);
  pointer-events: none;
}
.agentic-hub::before {
  width: 400px; height: 400px;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  border-color: rgba(254,94,4,0.35);
  animation: agenticRing 18s linear infinite;
}
.agentic-hub::after {
  width: 480px; height: 480px;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  border-color: rgba(254,94,4,0.18);
  animation: agenticRing 28s linear infinite reverse;
}
@keyframes agenticRing { to { transform: translate(-50%, -50%) rotate(360deg); } }
.agentic-hub-orb {
  position: relative;
  z-index: 1;
  width: 78px; height: 78px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: 1.5px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.25);
  animation: agenticPulse 2.5s ease-in-out infinite;
}
.agentic-hub-orb svg, .agentic-hub-orb i[data-lucide] { width: 36px; height: 36px; color: #fff; }
@keyframes agenticPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}
.agentic-hub-title {
  position: relative; z-index: 1;
  font-family: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.agentic-hub-title .agentic-accent {
  background: none;
  -webkit-text-fill-color: #fff;
  color: #fff;
}
.agentic-accent {
  background: linear-gradient(135deg, #FE5E04 0%, #FF8A3D 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.agentic-hub-sub {
  position: relative; z-index: 1;
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 0;
  font-weight: 600;
}
.agentic-hub-stats {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 340px;
  margin: 0 auto;
}
.agentic-hub-stats > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
}
.agentic-hub-stats b {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #FE5E04;
}
.agentic-hub-stats span {
  font-size: 10px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 2px;
}

.agentic-tile {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(22,22,42,0.85) 0%, rgba(15,15,30,0.85) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  text-decoration: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

/* Desktop: absolute-positioned orbital layout (moon-around-earth motion) */
@media (min-width: 1024px) {
  .agentic-grid {
    display: block;
    height: 720px;
    perspective: 1200px;
  }
  .agentic-hub {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 340px;
    height: 340px;
    min-height: 0;
  }
  .agentic-tile {
    position: absolute;
    top: 0; left: 0;
    width: 300px;
    offset-path: ellipse(500px 300px at 50% 50%);
    offset-rotate: 0deg;
    animation: agenticOrbit 32s linear infinite;
    transform-origin: center;
    will-change: offset-distance;
  }
  .agentic-tile:nth-of-type(1) { animation-delay: 0s; }
  .agentic-tile:nth-of-type(2) { animation-delay: -5.333s; }
  .agentic-tile:nth-of-type(3) { animation-delay: -10.666s; }
  .agentic-tile:nth-of-type(4) { animation-delay: -16s; }
  .agentic-tile:nth-of-type(5) { animation-delay: -21.333s; }
  .agentic-tile:nth-of-type(6) { animation-delay: -26.666s; }
}
.agentic-tile::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #FE5E04, transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.agentic-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(254,94,4,0.4);
  box-shadow: 0 16px 40px -12px rgba(254,94,4,0.35);
}
.agentic-tile:hover::before { transform: translateX(0); }
.agentic-tile-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(254,94,4,0.18), rgba(254,94,4,0.06));
  border: 1px solid rgba(254,94,4,0.3);
  display: flex; align-items: center; justify-content: center;
}
.agentic-tile-num {
  position: absolute;
  top: 12px;
  right: 14px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: rgba(254,94,4,0.55);
  letter-spacing: 0.1em;
}
.agentic-tile-icon svg, .agentic-tile-icon i[data-lucide] { width: 20px; height: 20px; color: #FE5E04; }
.agentic-tile-body h5 {
  font-family: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.agentic-tile-body p {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255,255,255,0.6);
}
.agentic-tile-more {
  background:
    linear-gradient(135deg, rgba(254,94,4,0.08) 0%, rgba(254,94,4,0.02) 100%);
  border-color: rgba(254,94,4,0.25);
  border-style: dashed;
}
.agentic-tile-more .agentic-tile-icon {
  background: linear-gradient(135deg, #FE5E04 0%, #FF8A3D 100%);
  border-color: transparent;
}
.agentic-tile-more .agentic-tile-icon svg,
.agentic-tile-more .agentic-tile-icon i[data-lucide] { color: #fff; }

/* ================================================================
   Diagram sections — cool deep-navy so they contrast the warm hero
   ================================================================ */
.diagram-section,
.vr-diagram-section,
.siem-diagram-section {
  background-color: #070912;
  background-image:
    radial-gradient(ellipse at 20% -10%, rgba(99,102,241,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 120%, rgba(56,189,248,0.05) 0%, transparent 55%),
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(180deg, #070912 0%, #0b0e1c 100%);
  background-size: auto, auto, 48px 48px, 48px 48px, 100% 100%;
  border-top: 1px solid rgba(254,94,4,0.15);
  position: relative;
}
.diagram-section::before,
.vr-diagram-section::before,
.siem-diagram-section::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(254,94,4,0.55) 50%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

/* Override dark gradient on solution-siem's architecture section so it picks
   up the cool diagram palette too */
.solution-siem-architecture,
section.py-14.bg-gradient-dark,
section.py-14.lg\:py-16.bg-gradient-dark {
  background-image:
    radial-gradient(ellipse at 20% -10%, rgba(99,102,241,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 120%, rgba(56,189,248,0.05) 0%, transparent 55%),
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(180deg, #070912 0%, #0b0e1c 100%);
  background-size: auto, auto, 48px 48px, 48px 48px, 100% 100%;
}

/* ================================================================
   Hero Animated Diagrams — per-page topic-relevant visualizations
   that sit inside .hero-split-image-wrap (replacing the video/image)
   ================================================================ */
.hdiag {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(254,94,4,0.16) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 70%, rgba(254,138,61,0.08) 0%, transparent 60%),
    linear-gradient(135deg, #100c1f 0%, #0a0715 60%, #05030e 100%);
  font-family: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  color: #fff;
}
.hdiag::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse at center, black 25%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 25%, transparent 80%);
  pointer-events: none;
}

/* Shared keyframes */
@keyframes hdSpin { to { transform: rotate(360deg); } }
@keyframes hdSpinReverse { to { transform: rotate(-360deg); } }
@keyframes hdPulse { 0%,100% { transform: scale(1); opacity: 0.85; } 50% { transform: scale(1.08); opacity: 1; } }
@keyframes hdRipple { 0% { transform: scale(0.4); opacity: 0.9; } 100% { transform: scale(2.2); opacity: 0; } }
@keyframes hdBob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes hdFlowX { 0% { transform: translateX(-120%); opacity: 0; } 15% { opacity: 1; } 85% { opacity: 1; } 100% { transform: translateX(120%); opacity: 0; } }
@keyframes hdFlowY { 0% { transform: translateY(-120%); opacity: 0; } 15% { opacity: 1; } 85% { opacity: 1; } 100% { transform: translateY(120%); opacity: 0; } }
@keyframes hdCount { 0% { transform: translateY(0); } 100% { transform: translateY(-1200px); } }
@keyframes hdScan { 0%,100% { transform: translateY(-10%); } 50% { transform: translateY(110%); } }
@keyframes hdGaugeFill { 0% { stroke-dashoffset: 283; } 100% { stroke-dashoffset: 79; } }
@keyframes hdFadePulse { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }
@keyframes hdDash { to { stroke-dashoffset: -40; } }

/* Shared primitives */
.hdiag-hub {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 88px; height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FE5E04 0%, #FF8A3D 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 40px rgba(254,94,4,0.6), inset 0 2px 0 rgba(255,255,255,0.25);
  animation: hdHubPulse 2.6s ease-in-out infinite;
  z-index: 3;
}
@keyframes hdHubPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1);    opacity: 0.9; }
  50%      { transform: translate(-50%, -50%) scale(1.06); opacity: 1; }
}
.hdiag-hub svg, .hdiag-hub i[data-lucide] { width: 34px; height: 34px; color: #fff; }
.hdiag-hub-label {
  position: absolute;
  top: calc(50% + 54px);
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  white-space: nowrap;
  z-index: 3;
}
.hdiag-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px dashed rgba(254,94,4,0.35);
  pointer-events: none;
}
.hdiag-ring.sz-1 { width: 160px; height: 160px; animation: hdSpin 18s linear infinite; }
.hdiag-ring.sz-2 { width: 230px; height: 230px; border-color: rgba(254,94,4,0.2); animation: hdSpinReverse 28s linear infinite; }
.hdiag-ring.sz-3 { width: 300px; height: 300px; border-color: rgba(254,94,4,0.12); animation: hdSpin 42s linear infinite; }
.hdiag-ripple {
  position: absolute;
  top: 50%; left: 50%;
  width: 100px; height: 100px;
  margin: -50px 0 0 -50px;
  border: 1.5px solid rgba(254,94,4,0.55);
  border-radius: 50%;
  transform: scale(0.4);
  animation: hdRipple 3s ease-out infinite;
  pointer-events: none;
  z-index: 1;
}
.hdiag-ripple.d-1 { animation-delay: 1s; }
.hdiag-ripple.d-2 { animation-delay: 2s; }

/* Orbital satellite (small icon orbiting hub) */
.hdiag-orbit {
  position: absolute;
  top: 50%; left: 50%;
  width: 230px; height: 230px;
  margin: -115px 0 0 -115px;
  animation: hdSpin 14s linear infinite;
  pointer-events: none;
}
.hdiag-orbit.rev { animation-direction: reverse; animation-duration: 20s; }
.hdiag-orbit-sat {
  position: absolute;
  top: 50%; left: 50%;
  width: 34px; height: 34px;
  margin: -17px 0 0 -17px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(22,22,42,0.95), rgba(15,15,30,0.95));
  border: 1px solid rgba(254,94,4,0.5);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 16px rgba(254,94,4,0.35);
  transform-origin: 17px 17px;
}
.hdiag-orbit-sat svg, .hdiag-orbit-sat i[data-lucide] { width: 16px; height: 16px; color: #FE5E04; }
.hdiag-orbit-sat.p-0  { transform: translateX(100px); }
.hdiag-orbit-sat.p-60 { transform: rotate(60deg)  translateX(100px) rotate(-60deg); }
.hdiag-orbit-sat.p-120{ transform: rotate(120deg) translateX(100px) rotate(-120deg); }
.hdiag-orbit-sat.p-180{ transform: rotate(180deg) translateX(100px) rotate(-180deg); }
.hdiag-orbit-sat.p-240{ transform: rotate(240deg) translateX(100px) rotate(-240deg); }
.hdiag-orbit-sat.p-300{ transform: rotate(300deg) translateX(100px) rotate(-300deg); }

/* Corner label */
.hdiag-badge {
  position: absolute;
  padding: 5px 10px;
  background: rgba(22,22,42,0.9);
  border: 1px solid rgba(254,94,4,0.45);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FFB07A;
  z-index: 4;
  backdrop-filter: blur(4px);
}
.hdiag-badge.tl { top: 14px; left: 14px; }
.hdiag-badge.tr { top: 14px; right: 14px; }
.hdiag-badge.bl { bottom: 14px; left: 14px; }
.hdiag-badge.br { bottom: 14px; right: 14px; }

/* ───── SIEM: data sources → brain → alerts (L→R flow) ───── */
.hd-siem-col {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 10px;
  z-index: 2;
}
.hd-siem-col.left { left: 20px; }
.hd-siem-col.right { right: 20px; }
.hd-siem-cell {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 10px;
  background: rgba(22,22,42,0.85);
  border: 1px solid rgba(254,94,4,0.3);
  border-radius: 8px;
  font-size: 10px; color: rgba(255,255,255,0.85);
  /* Boxes are now always solid — no blink animation */
}
.hd-siem-cell svg, .hd-siem-cell i[data-lucide] { width: 12px; height: 12px; color: #FE5E04; }
.hd-siem-cell.d-0 { animation-delay: 0s; }
.hd-siem-cell.d-1 { animation-delay: 0.3s; }
.hd-siem-cell.d-2 { animation-delay: 0.6s; }
.hd-siem-cell.d-3 { animation-delay: 0.9s; }
.hd-siem-flow {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none; z-index: 1;
}

/* ───── SOC: radar sweep ───── */
.hd-radar {
  position: absolute;
  top: 50%; left: 50%;
  width: 240px; height: 240px;
  margin: -120px 0 0 -120px;
  border-radius: 50%;
  border: 1px solid rgba(254,94,4,0.4);
  overflow: hidden;
}
.hd-radar::before,
.hd-radar::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 60%; height: 60%;
  border-radius: 50%;
  border: 1px dashed rgba(254,94,4,0.25);
  transform: translate(-50%, -50%);
}
.hd-radar::after { width: 30%; height: 30%; }
.hd-radar-sweep {
  position: absolute;
  top: 0; left: 50%;
  width: 50%; height: 50%;
  transform-origin: 0% 100%;
  background: conic-gradient(from 0deg at 0% 100%, transparent 0deg, rgba(254,94,4,0.55) 30deg, transparent 60deg);
  animation: hdSpin 4s linear infinite;
}
.hd-radar-dot {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #FE5E04;
  box-shadow: 0 0 12px #FE5E04;
  animation: hdPulse 2s ease-in-out infinite;
}

/* ───── DLP eye ───── */
.hd-eye {
  position: absolute;
  top: 50%; left: 50%;
  width: 220px; height: 110px;
  margin: -55px 0 0 -110px;
}
.hd-eye-svg { width: 100%; height: 100%; }
.hd-eye-scan {
  position: absolute;
  top: 50%; left: 50%;
  width: 70px; height: 70px;
  margin: -35px 0 0 -35px;
  border-radius: 50%;
  overflow: hidden;
}
.hd-eye-scan::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #FE5E04, transparent);
  box-shadow: 0 0 8px #FE5E04;
  animation: hdScan 3s ease-in-out infinite;
}

/* ───── EDR endpoint shield ───── */
.hd-endpoint {
  position: absolute;
  top: 50%; left: 50%;
  width: 140px; height: 90px;
  margin: -45px 0 0 -70px;
  background: linear-gradient(135deg, rgba(22,22,42,0.95), rgba(15,15,30,0.95));
  border: 1.5px solid rgba(254,94,4,0.5);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 24px rgba(254,94,4,0.35);
}
.hd-endpoint svg, .hd-endpoint i[data-lucide] { width: 34px; height: 34px; color: #FE5E04; }
.hd-endpoint::after {
  content: '';
  position: absolute;
  bottom: -10px; left: 50%;
  width: 60px; height: 8px;
  margin-left: -30px;
  background: linear-gradient(135deg, rgba(22,22,42,0.95), rgba(15,15,30,0.95));
  border: 1.5px solid rgba(254,94,4,0.5);
  border-top: none;
  border-radius: 0 0 6px 6px;
}

/* ───── Gauge (AI Dashboard / Assessment / Vendor Risk) ───── */
.hd-gauge {
  position: absolute;
  top: 50%; left: 50%;
  width: 220px; height: 220px;
  margin: -110px 0 0 -110px;
}
.hd-gauge-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.hd-gauge-value {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
  text-shadow: 0 0 20px rgba(254,94,4,0.6);
}
.hd-gauge-label {
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-top: 6px;
}

/* ───── Scanner grid (Vulnerability Scans) ───── */
.hd-servergrid {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  width: 280px;
  padding: 18px;
  border: 1px solid rgba(254,94,4,0.2);
  border-radius: 12px;
  background: rgba(0,0,0,0.3);
}
.hd-server-cell {
  aspect-ratio: 1;
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(254,94,4,0.12), rgba(22,22,42,0.8));
  border: 1px solid rgba(254,94,4,0.2);
  animation: hdFadePulse 2s ease-in-out infinite;
}
.hd-scanbar {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #FE5E04, transparent);
  box-shadow: 0 0 12px #FE5E04;
  animation: hdScan 2.8s ease-in-out infinite;
  z-index: 2;
}

/* ───── Email filter stream ───── */
.hd-envelopes {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hd-env {
  position: absolute;
  left: -8%;
  width: 30px; height: 22px;
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(22,22,42,0.95), rgba(15,15,30,0.95));
  border: 1px solid rgba(254,94,4,0.4);
  display: flex; align-items: center; justify-content: center;
  animation: hdEnvFly 5s linear infinite;
  opacity: 0;
  z-index: 2;
}
.hd-env svg, .hd-env i[data-lucide] { width: 14px; height: 14px; color: #FE5E04; }
.hd-env.blocked {
  border-color: rgba(239,68,68,0.6);
  background: linear-gradient(135deg, rgba(40,10,10,0.95), rgba(20,5,5,0.95));
  animation: hdEnvBlocked 5s ease-in-out infinite;
}
.hd-env.blocked svg, .hd-env.blocked i[data-lucide] { color: #fca5a5; }
.hd-env.blocked::after {
  content: '';
  position: absolute;
  inset: -3px;
  border: 1.5px solid rgba(239,68,68,0.7);
  border-radius: 6px;
}
/* Clean envelopes cross the whole diagram */
@keyframes hdEnvFly {
  0%   { left: -8%; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { left: 108%; opacity: 0; }
}
/* Blocked envelopes approach the filter, bounce back, fade */
@keyframes hdEnvBlocked {
  0%   { left: -8%; opacity: 0; transform: scale(1); }
  12%  { opacity: 1; }
  45%  { left: 38%; opacity: 1; transform: scale(1); }
  55%  { left: 44%; transform: scale(1.15); }
  65%  { left: 35%; opacity: 0.7; transform: scale(0.9) rotate(-6deg); }
  80%  { left: 10%; opacity: 0; transform: scale(0.5) rotate(-12deg); }
  100% { left: -8%; opacity: 0; transform: scale(1); }
}

/* ───── Pipeline steps (pentest, sec impl, assessment) ───── */
.hd-pipe {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hd-pipe-step {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(22,22,42,0.9);
  border: 2px solid rgba(254,94,4,0.35);
  display: flex; align-items: center; justify-content: center;
  animation: hdPulse 3s ease-in-out infinite;
}
.hd-pipe-step svg, .hd-pipe-step i[data-lucide] { width: 22px; height: 22px; color: #FE5E04; }
.hd-pipe-step.d-0 { animation-delay: 0s; }
.hd-pipe-step.d-1 { animation-delay: 0.75s; }
.hd-pipe-step.d-2 { animation-delay: 1.5s; }
.hd-pipe-step.d-3 { animation-delay: 2.25s; }
.hd-pipe-connector {
  width: 22px; height: 2px;
  background: rgba(254,94,4,0.4);
  position: relative;
  overflow: hidden;
}
.hd-pipe-connector::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 8px; height: 2px;
  background: #FE5E04;
  box-shadow: 0 0 6px #FE5E04;
  animation: hdFlowX 1.2s linear infinite;
}
.hd-pipe-label {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
  letter-spacing: 0.05em;
}

/* ───── Compliance balance scale ───── */
.hd-scale {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 360px; height: 260px;
}
.hd-scale-arm {
  position: absolute;
  top: 56px;
  left: 6%;
  right: 6%;
  height: 4px;
  background: linear-gradient(90deg, transparent, #FE5E04, #FF8A3D, #FE5E04, transparent);
  transform-origin: center;
  animation: hdScaleRock 3.6s ease-in-out infinite;
}
@keyframes hdScaleRock {
  0%, 100% { transform: rotate(-4deg); }
  50% { transform: rotate(4deg); }
}
.hd-scale-pan {
  position: absolute;
  top: 60px;
  width: 130px; height: 76px;
  border: 2px solid rgba(254,94,4,0.55);
  border-top: 2px solid rgba(254,94,4,0.85);
  border-radius: 0 0 70px 70px;
  /* Mix: dark base with subtle orange tint, not solid orange */
  background: linear-gradient(180deg, rgba(22,22,42,0.92) 0%, rgba(10,7,21,0.92) 100%);
  box-shadow: 0 12px 28px -8px rgba(254,94,4,0.25), inset 0 1px 0 rgba(254,94,4,0.18);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 6px; padding: 8px 6px;
  gap: 4px;
}
.hd-scale-pan.left { left: 4%; animation: hdScaleRockLeft 3.6s ease-in-out infinite; }
.hd-scale-pan.right { right: 4%; animation: hdScaleRockRight 3.6s ease-in-out infinite; }
@keyframes hdScaleRockLeft {
  0%, 100% { transform: translateY(-6px); }
  50% { transform: translateY(6px); }
}
@keyframes hdScaleRockRight {
  0%, 100% { transform: translateY(6px); }
  50% { transform: translateY(-6px); }
}
.hd-scale-badge {
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  /* Black-on-orange-trim for clearer mix of brand colors */
  background: linear-gradient(135deg, #1a1325 0%, #0a0715 100%);
  border: 1px solid rgba(254,94,4,0.6);
  border-radius: 6px;
  color: #FFD9B8;
  box-shadow: 0 2px 6px rgba(0,0,0,0.35), inset 0 1px 0 rgba(254,94,4,0.18);
  white-space: nowrap;
}
.hd-scale-post {
  position: absolute;
  left: 50%; top: 28px;
  width: 3px; height: 200px;
  margin-left: -1.5px;
  /* Dark post with orange highlight, not solid orange */
  background: linear-gradient(180deg, #FE5E04 0%, rgba(254,94,4,0.4) 30%, #1a1325 100%);
  border-radius: 2px;
}
/* Base of the scale (stand) — dark trapezoid for grounding */
.hd-scale::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: 100px; height: 16px;
  background: linear-gradient(180deg, #1a1325 0%, #0a0715 100%);
  border: 1px solid rgba(254,94,4,0.4);
  border-radius: 4px 4px 12px 12px;
  box-shadow: 0 8px 20px -4px rgba(0,0,0,0.6);
}

/* ───── Mini sparklines (AI dashboard) ───── */
.hd-sparkline {
  position: absolute;
  padding: 8px 10px;
  background: rgba(22,22,42,0.9);
  border: 1px solid rgba(254,94,4,0.3);
  border-radius: 8px;
  backdrop-filter: blur(6px);
  z-index: 3;
}
.hd-sparkline-val {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.hd-sparkline-sub {
  font-size: 9px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 2px;
}
.hd-sparkline-chart {
  width: 60px; height: 20px;
  margin-top: 4px;
}

/* ===== vCISO compass ===== */
.hd-compass {
  position: absolute;
  top: 48%; left: 50%;
  width: 240px; height: 240px;
  margin: -120px 0 0 -120px;
  border-radius: 50%;
  border: 2px solid rgba(254,94,4,0.35);
  background: radial-gradient(circle at center, rgba(22,22,42,0.6), transparent 72%);
  overflow: hidden;
}
.hd-compass::after {
  /* inner dashed ring */
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 70%; height: 70%;
  border-radius: 50%;
  border: 1px dashed rgba(254,94,4,0.28);
  pointer-events: none;
}
.hd-compass-spot {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(254,94,4,0.5) 0deg, rgba(254,94,4,0.15) 45deg, transparent 90deg, transparent 360deg);
  animation: hdSpin 8s linear infinite;
  pointer-events: none;
}
.hd-compass-label {
  position: absolute;
  z-index: 2;
  font-size: 10px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 2px 6px rgba(0,0,0,0.7);
  padding: 3px 8px;
  background: rgba(22,22,42,0.6);
  border: 1px solid rgba(254,94,4,0.3);
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.hd-compass-label.n { top: 10px; left: 50%; transform: translateX(-50%); }
.hd-compass-label.e { right: 8px;  top: 50%; transform: translateY(-50%); }
.hd-compass-label.s { bottom: 10px; left: 50%; transform: translateX(-50%); }
.hd-compass-label.w { left: 8px;   top: 50%; transform: translateY(-50%); }

/* ===== Vendor Risk — clean 3-column link ===== */
.vr-link {
  position: absolute;
  top: 48%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 0;
}
.vr-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.vr-node-icon {
  width: 68px; height: 68px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(22,22,42,0.95), rgba(15,15,30,0.95));
  border: 1.5px solid rgba(254,94,4,0.5);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 24px -6px rgba(254,94,4,0.4);
}
.vr-node-icon svg, .vr-node-icon i[data-lucide] { width: 26px; height: 26px; color: #FE5E04; }
.vr-node-label {
  font-size: 10px;
  color: rgba(255,255,255,0.65);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.vr-bridge {
  position: relative;
  margin: 0 -4px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
}
.vr-bridge-line {
  position: absolute;
  left: 8px; right: 8px;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, rgba(254,94,4,0.25), rgba(254,94,4,0.9), rgba(254,94,4,0.25));
  box-shadow: 0 0 8px rgba(254,94,4,0.5);
  transform: translateY(-1px);
  overflow: hidden;
}
.vr-bridge-line::after {
  content: '';
  position: absolute;
  top: -3px; left: 0;
  width: 24px; height: 8px;
  border-radius: 4px;
  background: linear-gradient(90deg, transparent, #FFD4A8);
  box-shadow: 0 0 10px #FE5E04;
  animation: vrBridgeDot 2.2s linear infinite;
}
@keyframes vrBridgeDot { 0% { left: 0; opacity: 0; } 15% { opacity: 1; } 85% { opacity: 1; } 100% { left: 100%; opacity: 0; } }
.vr-score {
  position: relative;
  z-index: 2;
  padding: 10px 18px;
  /* Switched to dark/black so this score badge contrasts with the orange
     Org/Vendor nodes on either side. */
  background: linear-gradient(135deg, #161221 0%, #0a0715 100%);
  border: 1.5px solid rgba(254,94,4,0.55);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 28px -8px rgba(254,94,4,0.55), inset 0 1px 0 rgba(255,255,255,0.2);
}
.vr-score-grade {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #FE5E04;
  line-height: 1;
  letter-spacing: -0.02em;
  text-shadow: 0 0 12px rgba(254,94,4,0.5);
}
.vr-score-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.vr-score-num span { font-size: 11px; opacity: 0.75; font-weight: 500; margin-left: 1px; }

/* ───── Vendor trust link ───── */
.hd-link {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex; align-items: center; gap: 20px;
}
.hd-link-node {
  width: 72px; height: 72px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(22,22,42,0.95), rgba(15,15,30,0.95));
  border: 1.5px solid rgba(254,94,4,0.5);
  display: flex; align-items: center; justify-content: center;
}
.hd-link-node svg, .hd-link-node i[data-lucide] { width: 28px; height: 28px; color: #FE5E04; }
.hd-link-line {
  position: relative;
  width: 80px; height: 2px;
  background: rgba(254,94,4,0.3);
  overflow: hidden;
}
.hd-link-line::after {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 20px; height: 2px;
  background: #FE5E04;
  box-shadow: 0 0 8px #FE5E04;
  animation: hdFlowX 1.4s linear infinite;
}
.hd-link-score {
  position: absolute;
  left: 50%; top: -32px;
  transform: translateX(-50%);
  padding: 4px 10px;
  background: linear-gradient(135deg, #FE5E04, #FF8A3D);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 6px;
  letter-spacing: 0.1em;
  box-shadow: 0 4px 12px rgba(254,94,4,0.4);
}

/* ================================================================
   vCISO Iceberg Infographic (service-virtual-ciso page)
   ================================================================ */
.vciso-iceberg-section {
  position: relative;
  overflow: hidden;
  padding: 72px 0 96px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(254,94,4,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 100%, rgba(99,102,241,0.08) 0%, transparent 60%),
    linear-gradient(180deg, #0c0a18 0%, #05060e 55%, #030510 100%);
  border-top: 1px solid rgba(254,94,4,0.15);
}
.vciso-iceberg-section::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(254,94,4,0.5), transparent);
  pointer-events: none;
  z-index: 2;
}
.iceberg-bg-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.iceberg-bg-orbs span {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(254,94,4,0.45);
  box-shadow: 0 0 14px rgba(254,94,4,0.65);
  animation: icebergOrb 12s ease-in-out infinite;
}
.iceberg-bg-orbs span:nth-child(1) { top: 5%;  left: 8%;  animation-duration: 14s; }
.iceberg-bg-orbs span:nth-child(2) { top: 12%; left: 88%; animation-duration: 16s; animation-delay: -3s; }
.iceberg-bg-orbs span:nth-child(3) { top: 18%; left: 20%; animation-duration: 13s; animation-delay: -5s; width: 3px; height: 3px; }
.iceberg-bg-orbs span:nth-child(4) { top: 8%;  left: 68%; animation-duration: 15s; animation-delay: -2s; }
.iceberg-bg-orbs span:nth-child(5) { top: 62%; left: 3%;  animation-duration: 18s; width: 5px; height: 5px; }
.iceberg-bg-orbs span:nth-child(6) { top: 78%; left: 96%; animation-duration: 14s; animation-delay: -4s; }
.iceberg-bg-orbs span:nth-child(7) { top: 88%; left: 48%; animation-duration: 17s; animation-delay: -7s; }
.iceberg-bg-orbs span:nth-child(8) { top: 45%; left: 92%; animation-duration: 16s; animation-delay: -1s; width: 3px; height: 3px; }
@keyframes icebergOrb {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.55; }
  50%      { transform: translate(18px, -26px) scale(1.3); opacity: 1; }
}

.iceberg-heading {
  font-family: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(26px, 3.4vw, 42px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.015em;
  max-width: 920px;
  margin: 0 auto;
}
.iceberg-accent {
  background: linear-gradient(135deg, #FE5E04 0%, #FF8A3D 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.iceberg-accent-light { color: #FFD4A8; }

/* Scene — grid with iceberg in the middle column spanning both rows */
.iceberg-scene {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px 1fr;
  grid-template-rows: auto auto;
  gap: 28px 36px;
  align-items: start;
}
.ib-slot-top-left  { grid-column: 1; grid-row: 1; justify-self: end; text-align: right; padding-top: 40px; max-width: 320px; }
.ib-slot-top-right { grid-column: 3; grid-row: 1; justify-self: start; padding-top: 40px; max-width: 340px; }
.ib-slot-bot-left  { grid-column: 1; grid-row: 2; padding-top: 10px; }
.ib-slot-bot-right { grid-column: 3; grid-row: 2; padding-top: 40px; }
.ib-center         { grid-column: 2; grid-row: 1 / span 2; position: relative; min-height: 900px; display: flex; justify-content: center; }

@media (max-width: 900px) {
  .iceberg-scene {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto auto;
  }
  .ib-slot-top-left  { grid-column: 1; grid-row: 1; justify-self: center; text-align: center; padding: 0; max-width: none; }
  .ib-center         { grid-column: 1; grid-row: 2; min-height: 520px; }
  .ib-slot-top-right { grid-column: 1; grid-row: 3; justify-self: center; padding: 0; max-width: 420px; }
  .ib-slot-bot-left  { grid-column: 1; grid-row: 4; padding: 0; }
  .ib-slot-bot-right { grid-column: 1; grid-row: 5; padding: 0; text-align: center; }
}

.ib-label-kicker {
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  margin-bottom: 6px;
}
.ib-label-sub {
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  font-style: italic;
}
.ib-label-sub-mb { margin-bottom: 18px; }
.ib-label-dashes {
  display: inline-block;
  width: 80px;
  height: 1px;
  border-top: 1px dashed rgba(255,255,255,0.35);
  margin-top: 10px;
}
@media (max-width: 900px) { .ib-label-dashes { display: none; } }

/* CENTER — the unified iceberg SVG */
.ib-iceberg-svg {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
  animation: icebergFloat 6s ease-in-out infinite;
  filter: drop-shadow(0 0 40px rgba(254,94,4,0.35));
  position: relative;
  z-index: 2;
}
@keyframes icebergFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* Peak badge — sits ABOVE the iceberg peak tip in the sky area
   SVG is 800×1000, rendered ~720px tall. Peak tip now at y=130 (~94px). */
.ib-peak-badge {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  pointer-events: none;
  z-index: 3;
  animation: icebergFloat 6s ease-in-out infinite;
}
.ib-peak-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: 1.5px solid rgba(255,255,255,0.65);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
  margin-bottom: 6px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}
.ib-peak-icon svg, .ib-peak-icon i[data-lucide] { width: 18px; height: 18px; color: #fff; }
.ib-peak-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1;
  text-shadow: 0 2px 12px rgba(0,0,0,0.55);
}
.ib-peak-sub {
  font-size: 10px;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
  margin-top: 3px;
}

/* Above-water cards — compact so all 3 fit above the water line */
.ib-slot-top-right {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 20px;
  max-width: 320px;
}
.ib-slot-top-left { padding-top: 24px; }
.ib-card {
  position: relative;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 14px;
  background: linear-gradient(135deg, rgba(22,22,42,0.92) 0%, rgba(15,15,30,0.92) 100%);
  border: 1px solid rgba(254,94,4,0.28);
  border-radius: 10px;
  transition: all 0.3s ease;
  animation: icebergCardFloat 6s ease-in-out infinite;
  animation-delay: calc(var(--ib-n, 0) * 0.6s);
}
.ib-card:hover {
  transform: translateX(-4px);
  border-color: rgba(254,94,4,0.6);
  box-shadow: 0 10px 24px -8px rgba(254,94,4,0.4);
}
.ib-card-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 7px;
  background: linear-gradient(135deg, rgba(254,94,4,0.2), rgba(254,94,4,0.06));
  border: 1px solid rgba(254,94,4,0.35);
  display: flex; align-items: center; justify-content: center;
}
.ib-card-icon svg, .ib-card-icon i[data-lucide] { width: 14px; height: 14px; color: #FE5E04; }
.ib-card h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.ib-card p {
  font-size: 11px;
  line-height: 1.35;
  color: rgba(255,255,255,0.65);
}
@keyframes icebergCardFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}

/* Rising bubbles behind the iceberg center */
.ib-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.ib-bubbles span {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(254,94,4,0.45);
  box-shadow: inset 0 0 3px rgba(255,255,255,0.5);
  bottom: -20px;
  animation: icebergBubble 8s linear infinite;
}
.ib-bubbles span:nth-child(1) { left: 8%;  animation-duration: 9s;  animation-delay: -1s; }
.ib-bubbles span:nth-child(2) { left: 22%; animation-duration: 10s; animation-delay: -4s; width: 4px; height: 4px; }
.ib-bubbles span:nth-child(3) { left: 40%; animation-duration: 8s;  animation-delay: -2s; }
.ib-bubbles span:nth-child(4) { left: 58%; animation-duration: 11s; animation-delay: -5s; width: 5px; height: 5px; }
.ib-bubbles span:nth-child(5) { left: 72%; animation-duration: 9s;  animation-delay: -3s; }
.ib-bubbles span:nth-child(6) { left: 86%; animation-duration: 10s; animation-delay: -6s; width: 4px; height: 4px; }
.ib-bubbles span:nth-child(7) { left: 14%; animation-duration: 12s; animation-delay: -7s; width: 3px; height: 3px; }
.ib-bubbles span:nth-child(8) { left: 92%; animation-duration: 9s;  animation-delay: -2s; }
@keyframes icebergBubble {
  0%   { transform: translateY(0) scale(0.5); opacity: 0; }
  10%  { opacity: 0.7; }
  90%  { opacity: 0.3; }
  100% { transform: translateY(-1100px) scale(1.2); opacity: 0; }
}

/* Numbered list */
.ib-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ib-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: linear-gradient(135deg, rgba(22,22,42,0.65) 0%, rgba(15,15,30,0.65) 100%);
  border: 1px solid rgba(254,94,4,0.18);
  border-radius: 10px;
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
  animation: icebergListPulse 9s ease-in-out infinite;
  animation-delay: calc(var(--ib-i, 0) * 0.5s);
}
.ib-list li:hover {
  transform: translateX(4px);
  border-color: rgba(254,94,4,0.55);
  box-shadow: 0 8px 24px -8px rgba(254,94,4,0.4);
}
.ib-list-num {
  flex-shrink: 0;
  width: 22px;
  color: #FE5E04;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
}
.ib-list-icon {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 8px;
  background: rgba(254,94,4,0.12);
  border: 1px solid rgba(254,94,4,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ib-list-icon svg, .ib-list-icon i[data-lucide] { width: 14px; height: 14px; color: #FE5E04; }
.ib-list-text {
  color: rgba(255,255,255,0.85);
  font-size: 13.5px;
  line-height: 1.4;
}
@keyframes icebergListPulse {
  0%, 90%, 100% { box-shadow: 0 0 0 0 rgba(254,94,4,0); border-color: rgba(254,94,4,0.18); }
  5%, 10%      { box-shadow: 0 0 20px -4px rgba(254,94,4,0.45); border-color: rgba(254,94,4,0.55); }
}

/* Below-water tagline (right side) */
.ib-below-right {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ib-tagline-top {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 22px;
}
.ib-tagline-top div:nth-child(2) { color: rgba(255,255,255,0.88); }
.ib-tagline-top div:nth-child(3) { color: rgba(255,255,255,0.72); }
.ib-tagline-accent {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.45;
  background: linear-gradient(135deg, #FE5E04 0%, #FF8A3D 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ================================================================
   Blog Listing — white background + orange skeleton
   (threatspike / riskprofiler style)
   ================================================================ */
.blog-hero {
  position: relative;
  background: #ffffff;
  padding: 140px 0 56px;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid #f0f0f0;
}
.blog-hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(254,94,4,0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(254,138,61,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.blog-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}
.blog-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(254,94,4,0.08);
  border: 1px solid rgba(254,94,4,0.25);
  color: #FE5E04;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}
.blog-hero-title {
  font-family: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 800;
  color: #1E1E1E;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.blog-accent {
  background: linear-gradient(135deg, #FE5E04 0%, #FF8A3D 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.blog-hero-sub {
  color: #666;
  font-size: 18px;
  line-height: 1.55;
  max-width: 660px;
  margin: 0 auto 32px;
}
.blog-hero-search {
  position: relative;
  max-width: 540px;
  margin: 0 auto;
}
.blog-hero-search svg,
.blog-hero-search i[data-lucide] {
  position: absolute;
  left: 18px; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 18px;
  color: #999;
}
.blog-hero-search input {
  width: 100%;
  padding: 14px 16px 14px 48px;
  background: #fff;
  border: 1.5px solid #e5e5e5;
  border-radius: 12px;
  font-size: 14px;
  color: #333;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.blog-hero-search input:focus {
  outline: none;
  border-color: rgba(254,94,4,0.5);
  box-shadow: 0 0 0 4px rgba(254,94,4,0.1);
}
.blog-hero-search input::placeholder { color: #aaa; }

/* Filter bar */
.blog-filters-bar {
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  padding: 18px 0;
}
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.blog-filter {
  padding: 8px 18px;
  border-radius: 999px;
  background: #fff;
  border: 1.5px solid #e8e8e8;
  color: #555;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.blog-filter:hover {
  border-color: rgba(254,94,4,0.45);
  color: #FE5E04;
  background: rgba(254,94,4,0.04);
}
.blog-filter.is-active {
  background: linear-gradient(135deg, #FE5E04 0%, #FF8A3D 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 14px -4px rgba(254,94,4,0.55);
}

/* Body section */
.blog-body {
  background: #fff;
  padding: 56px 0 80px;
}

/* Featured card — large horizontal (image left, text right) */
.blog-featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 72px;
  background: #ffffff;
  border: 1.5px solid rgba(254,94,4,0.18);
  border-radius: 20px;
  /* Padding so the image's orange border is visible on all 4 sides */
  padding: 18px;
  overflow: visible;
  text-decoration: none;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
@media (min-width: 900px) {
  .blog-featured { grid-template-columns: 1.1fr 1fr; align-items: stretch; }
}
.blog-featured:hover {
  transform: translateY(-4px);
  border-color: rgba(254,94,4,0.5);
  box-shadow: 0 24px 60px -16px rgba(254,94,4,0.28);
}
.blog-featured-image {
  position: relative;
  /* Slightly taller than before so the illustration occupies more vertical space */
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f5f5f5;
  /* Thick orange brand border */
  border: 4px solid #FE5E04;
  border-radius: 16px;
  box-shadow: 0 12px 30px -8px rgba(254,94,4,0.25);
}
.blog-featured-image img {
  width: 100%;
  height: 100%;
  /* Use 'contain' so the illustration is shown in full without being cropped,
     letting the cream background of the image meet the orange border cleanly. */
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-featured:hover .blog-featured-image img { transform: scale(1.03); }
.blog-featured-tag {
  position: absolute;
  top: 20px; left: 20px;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #FE5E04 0%, #FF8A3D 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(254,94,4,0.4);
}
.blog-featured-content {
  /* Outer card now has its own padding (18px); content just needs internal spacing */
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blog-featured-title {
  font-family: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  color: #1E1E1E;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 14px 0 14px;
}
.blog-featured-excerpt {
  color: #555;
  font-size: 15.5px;
  line-height: 1.65;
  margin-bottom: 22px;
}
.blog-featured-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #FE5E04;
  font-weight: 600;
  font-size: 14px;
  transition: gap 0.2s ease;
}
.blog-featured:hover .blog-featured-cta { gap: 12px; }
.blog-featured-cta svg,
.blog-featured-cta i[data-lucide] { width: 16px; height: 16px; }

/* Shared meta row */
.blog-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12.5px;
  color: #888;
}
.blog-cat {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(254,94,4,0.1);
  color: #FE5E04;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.blog-dot {
  width: 3px; height: 3px; border-radius: 50%;
  background: #ddd;
}

/* Grid header */
.blog-grid-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0f0f0;
}
.blog-grid-heading {
  font-family: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #1E1E1E;
  letter-spacing: -0.015em;
}
.blog-grid-count {
  color: #999;
  font-size: 13px;
}

/* Article grid */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 680px)  { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; } }

.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1.5px solid rgba(254,94,4,0.14);
  border-radius: 14px;
  /* Padding so the image's orange border shows on all 4 sides */
  padding: 14px 14px 0 14px;
  overflow: visible;
  text-decoration: none;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(254,94,4,0.45);
  box-shadow: 0 16px 40px -14px rgba(254,94,4,0.28);
}
.blog-card-image {
  /* Taller card image so the illustration occupies a larger portion of the card */
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #fdf4ed 0%, #fff8f1 100%);
  overflow: hidden;
  /* Thick orange brand border */
  border: 4px solid #FE5E04;
  border-radius: 14px;
  box-shadow: 0 8px 22px -6px rgba(254,94,4,0.22);
}
.blog-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-image img { transform: scale(1.04); }
.blog-card-body {
  /* Outer card now has its own horizontal padding (14px); body just needs vertical padding */
  padding: 18px 8px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.blog-card-title {
  font-family: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #1E1E1E;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 4px 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card:hover .blog-card-title { color: #FE5E04; }
.blog-card-excerpt {
  color: #666;
  font-size: 13.5px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.blog-card-meta {
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid #f2f2f2;
  color: #999;
  font-size: 12px;
}
.blog-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.blog-card-meta svg,
.blog-card-meta i[data-lucide] { width: 13px; height: 13px; }

/* Newsletter callout */
.blog-newsletter {
  margin-top: 64px;
  padding: 36px 40px;
  background:
    linear-gradient(135deg, rgba(254,94,4,0.06) 0%, rgba(254,138,61,0.03) 100%),
    #fff;
  border: 1.5px solid rgba(254,94,4,0.22);
  border-radius: 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}
@media (max-width: 820px) {
  .blog-newsletter {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 28px 24px;
  }
  .blog-newsletter-icon { margin: 0 auto; }
}
.blog-newsletter-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #FE5E04 0%, #FF8A3D 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px -6px rgba(254,94,4,0.5);
}
.blog-newsletter-icon svg,
.blog-newsletter-icon i[data-lucide] { width: 24px; height: 24px; color: #fff; }
.blog-newsletter-text h3 {
  font-family: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #1E1E1E;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.blog-newsletter-text p {
  color: #666;
  font-size: 14.5px;
  line-height: 1.55;
}
.blog-newsletter-form {
  display: flex;
  gap: 10px;
  align-items: center;
  min-width: 380px;
}
@media (max-width: 820px) {
  .blog-newsletter-form { min-width: 0; width: 100%; flex-direction: column; }
  .blog-newsletter-form input, .blog-newsletter-form button { width: 100%; }
}
.blog-newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  background: #fff;
  border: 1.5px solid #e5e5e5;
  border-radius: 10px;
  font-size: 14px;
  color: #333;
}
.blog-newsletter-form input::placeholder { color: #aaa; }

/* ================================================================
   SOC Operations Pipeline — motion-heavy, arrow-free
   ================================================================ */
.soc-diagram-shell {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 8px 8px 0;
}

/* Ambient floating particles */
.soc-bg-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.soc-bg-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(254,94,4,0.35);
  box-shadow: 0 0 10px rgba(254,94,4,0.5);
  animation: socDrift 14s linear infinite;
}
.soc-bg-particles span:nth-child(1)  { top: 8%;  left: 6%;  animation-duration: 16s; }
.soc-bg-particles span:nth-child(2)  { top: 22%; left: 92%; animation-duration: 12s; animation-delay: -2s; }
.soc-bg-particles span:nth-child(3)  { top: 55%; left: 3%;  animation-duration: 18s; animation-delay: -4s; }
.soc-bg-particles span:nth-child(4)  { top: 78%; left: 95%; animation-duration: 13s; animation-delay: -1s; }
.soc-bg-particles span:nth-child(5)  { top: 12%; left: 48%; animation-duration: 15s; animation-delay: -6s; width: 3px; height: 3px; }
.soc-bg-particles span:nth-child(6)  { top: 40%; left: 88%; animation-duration: 17s; animation-delay: -3s; width: 5px; height: 5px; }
.soc-bg-particles span:nth-child(7)  { top: 66%; left: 14%; animation-duration: 14s; animation-delay: -5s; }
.soc-bg-particles span:nth-child(8)  { top: 88%; left: 52%; animation-duration: 16s; animation-delay: -7s; width: 3px; height: 3px; }
.soc-bg-particles span:nth-child(9)  { top: 30%; left: 28%; animation-duration: 19s; animation-delay: -2s; }
.soc-bg-particles span:nth-child(10) { top: 75%; left: 38%; animation-duration: 13s; animation-delay: -4s; width: 5px; height: 5px; }
.soc-bg-particles span:nth-child(11) { top: 48%; left: 72%; animation-duration: 15s; animation-delay: -8s; }
.soc-bg-particles span:nth-child(12) { top: 18%; left: 78%; animation-duration: 14s; animation-delay: -1s; }
@keyframes socDrift {
  0%   { transform: translate(0, 0) scale(1);    opacity: 0.55; }
  25%  { transform: translate(18px, -22px) scale(1.2); opacity: 0.9; }
  50%  { transform: translate(-14px, -8px) scale(0.85); opacity: 0.4; }
  75%  { transform: translate(22px, 16px) scale(1.1);  opacity: 0.75; }
  100% { transform: translate(0, 0) scale(1);    opacity: 0.55; }
}

/* Inter-tier particle stream SVG covers the entire shell */
.soc-flow-streams {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: visible;
}

/* Tiers */
.soc-tier { position: relative; margin-bottom: 100px; }
.soc-tier:last-child { margin-bottom: 0; }
.soc-tier-label {
  display: block;
  text-align: center;
  color: #FE5E04;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

/* Generic SOC node card */
.soc-node {
  position: relative;
  background: linear-gradient(135deg, rgba(22,22,42,0.95) 0%, rgba(18,18,32,0.95) 100%);
  border: 1px solid rgba(254,94,4,0.2);
  border-radius: 12px;
  padding: 16px 14px;
  text-align: center;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  animation: socNodePulse 6s ease-in-out infinite;
  animation-delay: calc(var(--soc-n, 0) * 0.6s);
}
.soc-node h4 {
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  margin-top: 6px;
  margin-bottom: 2px;
  position: relative;
  z-index: 1;
}
.soc-node p {
  color: rgba(255,255,255,0.5);
  font-size: 10.5px;
  line-height: 1.35;
  position: relative;
  z-index: 1;
}
.soc-node-icon {
  width: 26px;
  height: 26px;
  color: #FE5E04;
  margin: 0 auto 8px;
  display: block;
  animation: socIconBob 3s ease-in-out infinite;
  animation-delay: calc(var(--soc-n, 0) * 0.3s);
  position: relative;
  z-index: 1;
}
.soc-node:hover {
  transform: translateY(-4px);
  border-color: rgba(254,94,4,0.55);
  box-shadow: 0 12px 32px -10px rgba(254,94,4,0.45);
}

/* Scan line that sweeps vertically across the node */
.soc-node-scan {
  position: absolute;
  top: -40%;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(180deg, transparent 0%, rgba(254,94,4,0.25) 50%, transparent 100%);
  filter: blur(2px);
  animation: socScan 3.5s ease-in-out infinite;
  animation-delay: calc(var(--soc-n, 0) * 0.5s);
  pointer-events: none;
  z-index: 0;
}
@keyframes socScan {
  0%   { top: -50%;  opacity: 0; }
  20%  { opacity: 0.8; }
  50%  { top: 80%;   opacity: 0.8; }
  70%  { opacity: 0; }
  100% { top: -50%;  opacity: 0; }
}
@keyframes socNodePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(254,94,4,0); border-color: rgba(254,94,4,0.2); }
  8%, 14%  { box-shadow: 0 0 24px -4px rgba(254,94,4,0.55); border-color: rgba(254,94,4,0.65); }
}
@keyframes socIconBob {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-3px) scale(1.08); }
}

/* Wide node (tier 3) */
.soc-node-wide {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  text-align: left;
  padding: 20px 18px;
}
.soc-node-icon-wrap {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(254,94,4,0.12);
  border: 1px solid rgba(254,94,4,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: socIconBob 3s ease-in-out infinite;
  animation-delay: calc(var(--soc-n, 0) * 0.4s);
  position: relative;
  z-index: 1;
}
.soc-node-icon-wrap svg, .soc-node-icon-wrap i[data-lucide] {
  width: 22px; height: 22px; color: #FE5E04;
}
.soc-node-wide h4 { text-align: left; margin-top: 0; font-size: 15px; }
.soc-node-wide p { text-align: left; font-size: 12px; }

/* Tier 2 — Central SOC hub */
.soc-hub-wrap {
  position: relative;
  background: linear-gradient(135deg, rgba(26,26,53,0.92) 0%, rgba(18,18,31,0.92) 100%);
  border: 2px solid rgba(254,94,4,0.35);
  border-radius: 20px;
  padding: 28px;
  overflow: hidden;
  box-shadow: 0 0 60px -20px rgba(254,94,4,0.35), inset 0 1px 0 rgba(255,255,255,0.05);
}
.soc-hub-wrap::before, .soc-hub-wrap::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.soc-hub-wrap::before {
  top: -20%; left: -10%;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(254,94,4,0.18) 0%, transparent 70%);
  animation: socHubAura 8s ease-in-out infinite alternate;
}
.soc-hub-wrap::after {
  bottom: -20%; right: -10%;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(254,138,61,0.15) 0%, transparent 70%);
  animation: socHubAura 10s ease-in-out infinite alternate-reverse;
}
@keyframes socHubAura {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(20px,-10px) scale(1.2); }
}

.soc-hub-side {
  text-align: center;
  animation: socSideFloat 4s ease-in-out infinite;
  animation-delay: calc(var(--soc-n, 0) * 1s);
}
.soc-hub-side h4 {
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 15px;
}
.soc-hub-side p { color: rgba(255,255,255,0.6); font-size: 12px; line-height: 1.5; }
.soc-side-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(254,94,4,0.22), rgba(254,94,4,0.06));
  border: 1px solid rgba(254,94,4,0.35);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  position: relative;
}
.soc-side-icon::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px dashed rgba(254,94,4,0.35);
  animation: socRotate 12s linear infinite;
}
.soc-side-icon svg, .soc-side-icon i[data-lucide] {
  width: 30px; height: 30px; color: #FE5E04;
  animation: socIconBob 3.5s ease-in-out infinite;
}
@keyframes socSideFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes socRotate { to { transform: rotate(360deg); } }

/* Central core with rings + orbits */
.soc-hub-core { position: relative; padding: 20px 0; }
.soc-core-rings {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 160px;
  pointer-events: none;
}
.soc-core-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.soc-core-ring-1 {
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(254,94,4,0.18) 0%, transparent 70%);
  animation: socCoreExpand 2.4s ease-out infinite;
}
.soc-core-ring-2 {
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(254,94,4,0.14) 0%, transparent 70%);
  animation: socCoreExpand 2.4s ease-out infinite;
  animation-delay: 0.8s;
}
.soc-core-ring-3 {
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(254,94,4,0.1) 0%, transparent 70%);
  animation: socCoreExpand 2.4s ease-out infinite;
  animation-delay: 1.6s;
}
.soc-core-ring-dashed {
  width: 140px; height: 140px;
  border: 1px dashed rgba(254,94,4,0.4);
  animation: socRotate 14s linear infinite;
}
@keyframes socCoreExpand {
  0%   { transform: translate(-50%, -50%) scale(0.5); opacity: 0.8; }
  100% { transform: translate(-50%, -50%) scale(1.8); opacity: 0; }
}

.soc-core-orbit {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 160px;
  pointer-events: none;
  animation: socRotate 9s linear infinite;
}
.soc-core-satellite {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #FE5E04;
  box-shadow: 0 0 12px rgba(254,94,4,0.8);
  transform-origin: 0 0;
}
.soc-core-satellite:nth-child(1) { transform: translate(60px, 0); }
.soc-core-satellite:nth-child(2) { transform: rotate(120deg) translate(60px, 0); background: #FF8A3D; }
.soc-core-satellite:nth-child(3) { transform: rotate(240deg) translate(60px, 0); background: #FFB07A; width: 8px; height: 8px; }

.soc-core-badge {
  position: relative;
  z-index: 2;
  width: 88px; height: 88px;
  margin: 35px auto 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FE5E04 0%, #e55504 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(254,94,4,0.6), inset 0 2px 0 rgba(255,255,255,0.2);
  animation: socCoreBadge 2.5s ease-in-out infinite;
}
.soc-core-badge svg, .soc-core-badge i[data-lucide] {
  width: 28px; height: 28px; color: #fff; margin-bottom: 2px;
}
.soc-core-badge span {
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@keyframes socCoreBadge {
  0%, 100% { transform: scale(1); box-shadow: 0 0 40px rgba(254,94,4,0.6), inset 0 2px 0 rgba(255,255,255,0.2); }
  50%      { transform: scale(1.05); box-shadow: 0 0 56px rgba(254,94,4,0.85), inset 0 2px 0 rgba(255,255,255,0.3); }
}
.soc-core-title {
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 4px;
}
.soc-core-sub {
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  line-height: 1.4;
}

/* Mobile: hide stream SVG (absolute positions won't match tier layout) */
@media (max-width: 768px) {
  .soc-flow-streams { display: none; }
  .soc-tier { margin-bottom: 48px; }
}

/* ================================================================
   Methodology Spotlight Showcase (all service pages)
   Horizontal rail of numbered stations + auto-advancing active card
   ================================================================ */
.method-showcase-section {
  background:
    radial-gradient(ellipse at 30% 0%, rgba(254,94,4,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 100%, rgba(99,102,241,0.05) 0%, transparent 55%),
    linear-gradient(180deg, #0b0a1a 0%, #11101d 100%);
  border-top: 1px solid rgba(254,94,4,0.15);
}
.method-showcase-section::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(254,94,4,0.5), transparent);
  z-index: 1;
  pointer-events: none;
}
/* Force readable colors inside the dark methodology header
   — framework names authored with .text-dark render invisible otherwise. */
.method-showcase-section .text-dark,
.method-showcase-section strong {
  color: #ffffff !important;
}
.method-showcase-section p { color: rgba(255,255,255,0.7); }
.method-showcase { position: relative; }

/* Rail + stations */
.method-rail {
  position: relative;
  margin: 0 auto 48px;
  padding: 42px 0 36px;
  max-width: 1120px;
}
.method-rail-track {
  position: absolute;
  top: 64px;
  left: 4%;
  right: 4%;
  height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 1px;
}
.method-rail-progress {
  position: absolute;
  top: 64px;
  left: 4%;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, #FE5E04 0%, #FF8A3D 100%);
  border-radius: 1px;
  box-shadow: 0 0 12px rgba(254,94,4,0.7);
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.method-rail-flow {
  position: absolute;
  top: 60px;
  left: 4%;
  right: 4%;
  width: 92%;
  height: 10px;
  z-index: 1;
  pointer-events: none;
}
.method-rail-flow svg, .method-rail-flow {
  overflow: visible;
}

.method-stations {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  padding: 0 4%;
}
.method-station {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: inherit;
  font-family: inherit;
  max-width: 160px;
}
.method-station-num {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  background: rgba(22,22,42,0.9);
  border: 2px solid rgba(255,255,255,0.15);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.method-station-num::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(254,94,4,0.35) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.method-station-label {
  font-family: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.3;
  color: rgba(255,255,255,0.45);
  text-align: center;
  padding: 0 4px;
  transition: color 0.3s ease;
}
.method-station:hover .method-station-num {
  border-color: rgba(254,94,4,0.4);
  color: #fff;
}
.method-station:hover .method-station-label { color: rgba(255,255,255,0.8); }

.method-station.is-active .method-station-num {
  width: 64px;
  height: 64px;
  margin-top: -9px;
  font-size: 22px;
  color: #fff;
  background: linear-gradient(135deg, #FE5E04 0%, #FF8A3D 100%);
  border-color: transparent;
  box-shadow:
    0 0 32px rgba(254,94,4,0.55),
    0 8px 24px -8px rgba(254,94,4,0.5),
    inset 0 1px 0 rgba(255,255,255,0.3);
  animation: methodStationPulse 2s ease-in-out infinite;
}
.method-station.is-active .method-station-num::before { opacity: 1; }
.method-station.is-active .method-station-label {
  color: #fff;
  font-weight: 700;
}
@keyframes methodStationPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

/* Card stage */
.method-card-stage {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  min-height: 220px;
}
.method-card {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(22,22,42,0.9) 0%, rgba(15,15,30,0.9) 100%);
  border: 1px solid rgba(254,94,4,0.25);
  border-radius: 20px;
  padding: 36px 40px 34px;
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  box-shadow: 0 24px 60px -20px rgba(254,94,4,0.3), inset 0 1px 0 rgba(255,255,255,0.06);
  overflow: hidden;
}
.method-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, #FE5E04, #FF8A3D);
}
.method-card.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  position: relative;
}
.method-card-step {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #FE5E04;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 10px;
}
.method-card-title {
  font-family: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 14px;
}
.method-card-desc {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
}

/* Controls */
.method-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 28px;
}
.method-control {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.method-control:hover {
  background: linear-gradient(135deg, #FE5E04, #FF8A3D);
  border-color: transparent;
  transform: scale(1.08);
}
.method-control svg { width: 18px; height: 18px; }
.method-dots {
  display: flex;
  gap: 8px;
}
.method-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: all 0.3s ease;
}
.method-dot.is-active {
  background: linear-gradient(135deg, #FE5E04, #FF8A3D);
  width: 28px;
  border-radius: 4px;
}

/* Mobile — stations wrap and labels hide */
@media (max-width: 768px) {
  .method-stations { flex-wrap: wrap; justify-content: center; gap: 14px; }
  .method-station-label { display: none; }
  .method-rail-track, .method-rail-progress, .method-rail-flow { display: none; }
  .method-card-stage { min-height: 260px; }
  .method-card { padding: 28px 24px; }
  .method-card-title { font-size: 22px; }
  .method-card-desc { font-size: 14.5px; }
}

/* ================================================================
   Laptop Mockup (AI Dashboard page — CISO Dashboard Overview)
   ================================================================ */
.laptop-mockup {
  position: relative;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 10px;
}
.laptop-screen {
  position: relative;
  background: #0b0a1a;
  border: 14px solid #1a1a24;
  border-radius: 20px 20px 4px 4px;
  overflow: hidden;
  box-shadow:
    0 40px 80px -20px rgba(0,0,0,0.6),
    inset 0 0 0 1px rgba(255,255,255,0.06);
}
.laptop-cam {
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2a2a34;
  border: 1px solid rgba(255,255,255,0.15);
  z-index: 3;
}
/* Hinge — thin bar below screen */
.laptop-hinge {
  height: 10px;
  background: linear-gradient(180deg, #1a1a24 0%, #2a2a34 100%);
  border-radius: 0 0 4px 4px;
  margin: 0 -4px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 2px 6px rgba(0,0,0,0.3);
}
/* Base — keyboard trapezoid */
.laptop-base {
  position: relative;
  height: 18px;
  margin: 0 auto;
  width: calc(100% + 40px);
  margin-left: -20px;
  background: linear-gradient(180deg, #2a2a34 0%, #1a1a24 100%);
  border-radius: 0 0 12px 12px;
  box-shadow: 0 10px 24px -6px rgba(0,0,0,0.45);
}
.laptop-base::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 6px;
  background: #0b0a1a;
  border-radius: 0 0 8px 8px;
  border: 1px solid rgba(255,255,255,0.05);
  border-top: none;
}

/* Live-updating metric number animation */
.live-metric {
  display: inline-block;
  transition: color 0.12s ease, transform 0.1s ease, text-shadow 0.12s ease;
}
.live-metric.is-flash {
  color: #FE5E04 !important;
  text-shadow: 0 0 18px rgba(254,94,4,0.55);
  transform: scale(1.08);
}
.live-bar { transition: width 0.22s cubic-bezier(0.4, 0, 0.2, 1); }

/* ================================================================
   About — Why O2Cyber pillar grid (unified Mission/Vision/Expertise)
   ================================================================ */
.pillar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 900px) { .pillar-grid { grid-template-columns: repeat(3, 1fr); } }

.pillar-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 20px;
  padding: 32px 28px 28px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.pillar-card:hover {
  transform: translateY(-6px);
  border-color: rgba(254,94,4,0.35);
  box-shadow: 0 20px 50px -15px rgba(254,94,4,0.3);
}
.pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #FE5E04 0%, #FF8A3D 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 8px 20px -6px rgba(254,94,4,0.5);
}
.pillar-icon svg, .pillar-icon i[data-lucide] {
  width: 26px; height: 26px; color: #fff;
}
.pillar-image {
  width: 100%;
  max-width: 280px;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 12px 30px -12px rgba(0,0,0,0.25);
}
.pillar-title {
  font-family: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #1E1E1E;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.pillar-desc {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

/* ================================================================
   About — "We Adopt Security Standards" (strobes-style grid)
   ================================================================ */
.standards-section {
  background:
    radial-gradient(ellipse at 20% 20%, rgba(99,102,241,0.05) 0%, transparent 45%),
    radial-gradient(ellipse at 80% 80%, rgba(254,94,4,0.05) 0%, transparent 45%),
    linear-gradient(180deg, #0b0a1a 0%, #11101d 100%);
  position: relative;
}
.standards-section::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(254,94,4,0.5), transparent);
  pointer-events: none;
}
.standards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 720px) { .standards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .standards-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; } }

.standard-card {
  background: rgba(22,22,42,0.75);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 28px 26px;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
}
.standard-card:hover {
  transform: translateY(-4px);
  border-color: rgba(254,94,4,0.45);
  box-shadow: 0 16px 40px -12px rgba(254,94,4,0.35);
}
.standard-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(254,94,4,0.15), rgba(254,94,4,0.05));
  border: 1px solid rgba(254,94,4,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.standard-icon svg, .standard-icon i[data-lucide] {
  width: 20px; height: 20px; color: #FE5E04;
}
.standard-title {
  font-family: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.standard-desc {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  line-height: 1.55;
}

/* ================================================================
   IAG "How We Deploy" — animated L→R flow across 4 steps
   ================================================================ */
.iag-deploy-flow { position: relative; }
.iag-flow-rail {
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 24px;
  z-index: 2;
  pointer-events: none;
}
.iag-flow-rail svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(0 0 10px rgba(254,94,4,0.5));
}
.iag-step-circle {
  position: relative;
  animation: iagStepPulse 4s ease-in-out infinite;
  animation-delay: calc(var(--iag-step) * 1s);
}
@keyframes iagStepPulse {
  0%, 18%, 100% {
    box-shadow: 0 10px 20px -6px rgba(254,94,4,0.25);
    transform: scale(1);
  }
  5%, 14% {
    box-shadow:
      0 0 0 6px rgba(254,94,4,0.25),
      0 0 36px rgba(254,94,4,0.6),
      0 10px 20px -6px rgba(254,94,4,0.35);
    transform: scale(1.08);
  }
}

/* ================================================================
   "What's Included" — riskprofiler takedown-management style
   (image left + scrollable list of items right)
   ================================================================ */
.wi-split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 1024px) {
  .wi-split-grid {
    grid-template-columns: 1.05fr 1fr;
    gap: 56px;
  }
}

/* Left visual */
.wi-visual {
  position: relative;
}
@media (min-width: 1024px) {
  .wi-visual {
    position: sticky;
    top: 110px;
  }
}
.wi-visual-wrap {
  position: relative;
  border-radius: 20px;
  overflow: visible;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}
.wi-visual-glow {
  position: absolute;
  inset: 10% 12%;
  background: radial-gradient(ellipse, rgba(254,94,4,0.18) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.wi-visual-wrap img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
}

/* Right: scrollable list */
.wi-list-wrap {
  position: relative;
}
.wi-list-scroll {
  display: grid;
  gap: 14px;
  max-height: none;
  padding-right: 0;
}
@media (min-width: 1024px) {
  /* Auto-scrolling vertical marquee for What's Included list */
  .wi-list-scroll {
    max-height: 460px;
    overflow: hidden;
    padding-right: 0;
    position: relative;
    mask-image: linear-gradient(180deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  }
  .wi-list-scroll.wi-marquee-active {
    display: block;
  }
  .wi-list-scroll.wi-marquee-active .wi-marquee-track {
    display: flex;
    flex-direction: column;
    gap: 14px;
    animation: wiMarqueeScroll var(--wi-marquee-duration, 24s) linear infinite;
  }
  .wi-list-scroll.wi-marquee-active:hover .wi-marquee-track {
    animation-play-state: paused;
  }
  @keyframes wiMarqueeScroll {
    from { transform: translateY(0); }
    to { transform: translateY(-50%); }
  }
  /* Fallback styles when marquee inactive (JS not loaded) — restore manual scroll */
  .wi-list-scroll:not(.wi-marquee-active) {
    overflow-y: auto;
    padding-right: 14px;
    scrollbar-width: thin;
    scrollbar-color: rgba(254,94,4,0.35) transparent;
    mask-image: none;
    -webkit-mask-image: none;
  }
  .wi-list-scroll:not(.wi-marquee-active)::-webkit-scrollbar { width: 6px; }
  .wi-list-scroll:not(.wi-marquee-active)::-webkit-scrollbar-track { background: transparent; }
  .wi-list-scroll:not(.wi-marquee-active)::-webkit-scrollbar-thumb {
    background: rgba(254,94,4,0.35);
    border-radius: 3px;
  }
  .wi-list-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(254,94,4,0.6);
  }
}

.wi-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.wi-item:hover {
  border-color: rgba(254,94,4,0.35);
  box-shadow: 0 8px 24px -8px rgba(254,94,4,0.25);
  transform: translateY(-2px);
}
.wi-item-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(254,94,4,0.12), rgba(254,94,4,0.04));
  border: 1px solid rgba(254,94,4,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}
.wi-item-icon svg,
.wi-item-icon i[data-lucide] {
  width: 20px;
  height: 20px;
  color: #FE5E04;
}
.wi-item-body { flex: 1; min-width: 0; }
.wi-item-title {
  font-family: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1E1E1E;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.wi-item-desc {
  font-size: 14px;
  line-height: 1.5;
  color: #555;
}

/* Highlight band — 3 cards modeled on riskprofiler "AI Overwatch" section */
.wi-highlight-section {
  margin: 72px auto 0;
  text-align: center;
  max-width: 1280px;
}
.wi-highlight-heading {
  font-family: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 800;
  color: #1E1E1E;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.wi-accent {
  background: linear-gradient(135deg, #FE5E04 0%, #FF8A3D 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.wi-highlight-sub {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  max-width: 720px;
  margin: 0 auto 40px;
}
.wi-highlight-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .wi-highlight-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
.wi-highlight-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 18px;
  padding: 36px 28px 32px;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.wi-highlight-card:hover {
  transform: translateY(-4px);
  border-color: rgba(254,94,4,0.35);
  box-shadow: 0 16px 40px -12px rgba(254,94,4,0.25);
}
.wi-highlight-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(254,94,4,0.14), rgba(254,94,4,0.04));
  border: 1px solid rgba(254,94,4,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.wi-highlight-icon svg,
.wi-highlight-icon i[data-lucide] {
  width: 26px;
  height: 26px;
  color: #FE5E04;
}
.wi-highlight-title {
  font-family: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1E1E1E;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.wi-highlight-desc {
  color: #555;
  font-size: 14.5px;
  line-height: 1.6;
}

/* ================================================================
   DLP Eye Diagram — Eye at top, 9 boxes below, animated data flow
   ================================================================ */
.dlp-eye-diagram {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 8px;
}
.dlp-eye-wrap {
  position: relative;
  width: 420px;
  height: 200px;
  margin: 0 auto 0;
  filter: drop-shadow(0 10px 40px rgba(254,94,4,0.35));
}
.dlp-eye-svg {
  width: 100%;
  height: 100%;
  display: block;
}
.dlp-eye-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 2;
}
.dlp-eye-center svg,
.dlp-eye-center i[data-lucide] {
  width: 30px;
  height: 30px;
  color: #FE5E04;
  margin-bottom: 4px;
}
.dlp-eye-title {
  font-family: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.dlp-eye-sub {
  margin-top: 2px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
}
/* Scan line sweeping across the iris */
.dlp-eye-scan {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
.dlp-eye-scan::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #FE5E04, transparent);
  box-shadow: 0 0 10px #FE5E04;
  animation: dlpEyeScan 3s ease-in-out infinite;
}
@keyframes dlpEyeScan {
  0%, 100% { transform: translateY(0); opacity: 0.9; }
  50%      { transform: translateY(102px); opacity: 0.6; }
}

/* Connectors between eye and boxes */
.dlp-connectors {
  display: block;
  width: 100%;
  height: 120px;
  margin: -4px 0 -2px;
}

/* 9 boxes row */
.dlp-box-row {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 14px;
}
.dlp-box {
  background: linear-gradient(180deg, rgba(22,22,42,0.95) 0%, rgba(15,15,30,0.95) 100%);
  border: 1px solid rgba(254,94,4,0.22);
  border-radius: 14px;
  padding: 18px 10px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  animation: dlpBoxPulse 9s ease-in-out infinite;
  animation-delay: calc(var(--dlp-n) * 0.27s);
}
.dlp-box:hover {
  transform: translateY(-4px);
  border-color: rgba(254,94,4,0.6);
  box-shadow: 0 12px 32px -10px rgba(254,94,4,0.4);
}
.dlp-box svg,
.dlp-box i[data-lucide] {
  width: 28px;
  height: 28px;
  color: #FE5E04;
}
.dlp-box span {
  font-family: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
}
@keyframes dlpBoxPulse {
  0%, 92%, 100% {
    border-color: rgba(254,94,4,0.22);
    box-shadow: none;
  }
  5%, 10% {
    border-color: rgba(254,94,4,0.75);
    box-shadow: 0 0 24px -4px rgba(254,94,4,0.55), inset 0 0 12px -4px rgba(254,94,4,0.25);
  }
}

/* Tablet: 3 × 3 grid */
@media (max-width: 1024px) {
  .dlp-box-row { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .dlp-connectors { display: none; }
  .dlp-eye-diagram::after {
    content: '';
    display: block;
    width: 2px;
    height: 32px;
    margin: 4px auto 14px;
    background: linear-gradient(180deg, rgba(254,94,4,0.8), transparent);
  }
}
@media (max-width: 640px) {
  .dlp-box-row { grid-template-columns: repeat(2, 1fr); }
  .dlp-eye-wrap { width: 320px; height: 160px; }
}

/* ================================================================
   Vendor Risk Diagram — Original S-curve layout with orange palette
   + sequenced flow pulse (Assessment → Onboarding → Scoring →
     Asset Discovery → Threat Intel → Incident Response → Integrations)
   ================================================================ */
.vr-diagram-section {
  background: linear-gradient(180deg, #0b0a1a 0%, #11101d 100%);
}
.vr-diagram-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 30%, rgba(254,94,4,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(254,94,4,0.06) 0%, transparent 50%);
  pointer-events: none;
}

/* Individual node — matches original layout, orange theme */
.vr-node { position: relative; }
.vr-node-icon {
  width: 56px; height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FE5E04 0%, #FF8A3D 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 20px rgba(254,94,4,0.35);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  animation: vrNodePulse 7s ease-in-out infinite;
  /* --vr-flow is 0..6; each step is 1s of the 7s cycle */
  animation-delay: calc(var(--vr-flow) * 1s);
}
.vr-node-icon svg, .vr-node-icon i[data-lucide] { width: 22px; height: 22px; color: #fff; }
.vr-node:hover .vr-node-icon {
  transform: scale(1.08);
  box-shadow: 0 0 40px rgba(254,94,4,0.75);
}
@keyframes vrNodePulse {
  0%, 86%, 100% {
    box-shadow: 0 0 20px rgba(254,94,4,0.35);
    transform: scale(1);
  }
  7%, 14% {
    box-shadow: 0 0 40px rgba(254,94,4,0.85), 0 0 80px rgba(254,94,4,0.45);
    transform: scale(1.18);
  }
}

/* Horizontal animated arrow bar between the two rows */
.vr-arrow-bar {
  position: relative;
  height: 16px;
}
.vr-arrow-svg {
  position: absolute;
  inset: 0 4% 0 4%;
  width: 92%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
  z-index: 0;
}
.vr-arrow-bar > i[data-lucide] {
  position: relative;
  z-index: 1;
}

/* ================================================================
   SIEM Diagram — Redesigned (no arrows, left→right flow, bigger cells)
   ================================================================ */
.siem-diagram-shell {
  position: relative;
  padding: 28px 0 8px;
}
.siem-flow-rail {
  position: absolute;
  top: 44%;
  left: 0;
  right: 0;
  height: 6px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.9;
}
.siem-flow-rail svg { width: 100%; height: 100%; overflow: visible; }

.siem-diagram-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: stretch;
}
@media (min-width: 1024px) {
  .siem-diagram-grid {
    grid-template-columns: 1fr 1.25fr 1fr;
    gap: 28px;
  }
}

.siem-panel {
  position: relative;
  background: linear-gradient(180deg, rgba(20,20,40,0.85) 0%, rgba(15,15,30,0.85) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 20px;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  display: flex;
  flex-direction: column;
}
.siem-panel-title {
  display: flex; align-items: center; gap: 10px;
  color: #fff;
  font-family: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}
.siem-panel-title svg { color: #FE5E04; width: 20px; height: 20px; }

.siem-src-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  flex: 1;
  align-content: space-between;
}
.siem-src-grid-right { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 1280px) {
  .siem-src-grid-right { grid-template-columns: repeat(3, 1fr); }
}
/* Right-panel cells fill the full panel height (fewer cells = taller cells) */
.siem-src-grid-right { grid-auto-rows: 1fr; align-content: stretch; gap: 14px; }
.siem-src-grid-right .siem-src-cell {
  aspect-ratio: auto;
  padding: 20px 10px;
  gap: 12px;
}
.siem-src-grid-right .siem-src-cell svg,
.siem-src-grid-right .siem-src-cell i[data-lucide] {
  width: 34px; height: 34px;
}
.siem-src-grid-right .siem-src-cell span {
  font-size: 13px;
}
.siem-src-cell {
  aspect-ratio: 1 / 0.95;
  background: linear-gradient(135deg, rgba(254,94,4,0.06) 0%, rgba(20,20,40,0.8) 100%);
  border: 1px solid rgba(254,94,4,0.18);
  border-radius: 12px;
  padding: 14px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  transition: all 0.25s ease;
}
.siem-src-cell:hover {
  transform: translateY(-2px);
  border-color: rgba(254,94,4,0.5);
  background: linear-gradient(135deg, rgba(254,94,4,0.12) 0%, rgba(20,20,40,0.9) 100%);
  box-shadow: 0 8px 24px -8px rgba(254,94,4,0.35);
}
.siem-src-cell svg, .siem-src-cell i[data-lucide] {
  width: 26px; height: 26px; color: #FE5E04;
}
.siem-src-cell span {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.01em;
  line-height: 1.2;
}

/* Center column: O2Cyber hub */
.siem-col-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.siem-hub {
  position: relative;
  background: linear-gradient(135deg, rgba(26,26,53,0.95) 0%, rgba(18,18,31,0.95) 100%);
  border: 2px solid rgba(254,94,4,0.45);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 0 60px -10px rgba(254,94,4,0.35), inset 0 1px 0 rgba(255,255,255,0.06);
  overflow: hidden;
}
.siem-hub-badge {
  position: absolute;
  top: -12px;
  right: -12px;
  background: linear-gradient(135deg, #FE5E04 0%, #FF8A3D 100%);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.1em;
  box-shadow: 0 4px 12px rgba(254,94,4,0.4);
}
.siem-hub-icon {
  display: block;
  width: 52px; height: 52px;
  color: #FE5E04;
  margin: 0 auto 10px;
}
.siem-hub-title {
  font-family: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.siem-hub-sub {
  color: rgba(255,255,255,0.55);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}
.siem-hub-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.siem-hub-feature {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.siem-hub-feature svg, .siem-hub-feature i[data-lucide] { width: 20px; height: 20px; color: #FE5E04; }
.siem-hub-feature span { font-size: 11px; color: rgba(255,255,255,0.8); }

/* Insights — 3 glass cards (riskprofiler-style) below O2Cyber */
.siem-insights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.siem-insight-card {
  position: relative;
  background: linear-gradient(135deg, rgba(22,22,42,0.85) 0%, rgba(15,15,30,0.85) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 18px 18px 16px;
  transition: all 0.3s ease;
}
.siem-insight-card:hover {
  border-color: rgba(254,94,4,0.4);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px -12px rgba(254,94,4,0.35);
}
.siem-insight-num {
  position: absolute;
  top: 14px; right: 16px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: rgba(254,94,4,0.6);
  letter-spacing: 0.1em;
}
.siem-insight-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(254,94,4,0.15), rgba(254,94,4,0.05));
  border: 1px solid rgba(254,94,4,0.25);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.siem-insight-icon svg, .siem-insight-icon i[data-lucide] { width: 18px; height: 18px; color: #FE5E04; }
.siem-insight-title {
  font-family: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.siem-insight-accent {
  background: linear-gradient(135deg, #FE5E04 0%, #FF8A3D 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.siem-insight-desc {
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(255,255,255,0.65);
}

/* Insights pills — traveling dot + text-fill sync */
.insights-pills-block {
  margin: 48px auto 0;
  max-width: 1100px;
  padding: 0 8px;
}
.insights-pills-heading {
  font-family: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #FE5E04;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  text-align: center;
  margin-bottom: 22px;
}
.insights-pills-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: center;
}
.insights-pills-rail {
  position: absolute;
  top: 50%;
  left: 4%;
  right: 4%;
  height: 4px;
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
}
.insights-pills-rail line { vector-effect: non-scaling-stroke; }

.insights-pill {
  position: relative;
  z-index: 1;
  background: rgba(20,20,40,0.85);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  padding: 16px 28px;
  text-align: center;
  overflow: hidden;
  animation: insightsPillBorder 4s ease-in-out infinite;
  animation-delay: var(--pill-start);
}
.insights-pill-text {
  position: relative;
  display: inline-block;
  font-family: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.28);
  letter-spacing: -0.005em;
  white-space: nowrap;
}
/* Gradient overlay that wipes L→R to reveal bright text, synced with dot */
.insights-pill-text::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #fff 0%, #fff 50%, #FE5E04 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  clip-path: inset(0 100% 0 0);
  animation: insightsPillFill 4s ease-in-out infinite;
  animation-delay: var(--pill-start);
  pointer-events: none;
}

/* Traveling dot — rides from left edge of pill to right edge, then handed off */
.insights-pill-dot {
  position: absolute;
  top: 50%;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #FE5E04;
  box-shadow: 0 0 16px rgba(254,94,4,0.9), 0 0 6px rgba(254,94,4,0.9);
  transform: translate(-50%, -50%) scale(0);
  animation: insightsPillDot 4s ease-in-out infinite;
  animation-delay: var(--pill-start);
  pointer-events: none;
}

@keyframes insightsPillBorder {
  0%, 33%, 100% { border-color: rgba(255,255,255,0.1); box-shadow: none; }
  8%, 22% {
    border-color: rgba(254,94,4,0.65);
    box-shadow: 0 0 30px -6px rgba(254,94,4,0.55), inset 0 0 16px -4px rgba(254,94,4,0.2);
  }
}
@keyframes insightsPillFill {
  0%, 4% { clip-path: inset(0 100% 0 0); }
  18% { clip-path: inset(0 0 0 0); }
  33%, 100% { clip-path: inset(0 0 0 0); }
}
@keyframes insightsPillDot {
  0% { left: -14px; transform: translate(-50%, -50%) scale(0); }
  3% { left: -14px; transform: translate(-50%, -50%) scale(1); }
  18% { left: 100%; transform: translate(-50%, -50%) scale(1); }
  22% { left: calc(100% + 14px); transform: translate(-50%, -50%) scale(0); }
  100% { left: calc(100% + 14px); transform: translate(-50%, -50%) scale(0); }
}

@media (max-width: 860px) {
  .insights-pills-row { grid-template-columns: 1fr; gap: 18px; }
  .insights-pills-rail { display: none; }
}

/* Left → Right flow halo pulses around each column */
.siem-flow-halo {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: 0 0 0 0 rgba(254,94,4,0);
  animation: siemHaloPulse 4.5s ease-in-out infinite;
  z-index: 0;
}
.siem-flow-halo-1 { animation-delay: 0s; }
.siem-flow-halo-2 { animation-delay: 1.5s; }
.siem-flow-halo-3 { animation-delay: 3s; }
@keyframes siemHaloPulse {
  0%, 100% { box-shadow: inset 0 0 0 1px rgba(254,94,4,0.15), 0 0 0 0 rgba(254,94,4,0); }
  25% { box-shadow: inset 0 0 0 1px rgba(254,94,4,0.55), 0 0 30px 2px rgba(254,94,4,0.35); }
  50% { box-shadow: inset 0 0 0 1px rgba(254,94,4,0.15), 0 0 0 0 rgba(254,94,4,0); }
}

/* Make sure children render above halos */
.siem-panel > *:not(.siem-flow-halo),
.siem-hub > *:not(.siem-flow-halo) {
  position: relative;
  z-index: 1;
}

/* ================================================================
   Solution/Service Hero — riskprofiler takedown-management style
   Two-column (text left + image right) with orange gradient BG
   ================================================================ */
.hero-split {
  position: relative;
  overflow: hidden;
  padding: 170px 0 130px;
  min-height: 720px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse at 85% 50%, rgba(254,94,4,0.32) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 20%, rgba(254,138,61,0.14) 0%, transparent 50%),
    linear-gradient(135deg, #180a03 0%, #2a1408 45%, #180a03 100%);
}
/* Soft divider band that cleanly separates hero from the next section */
.hero-split::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 80px;
  background: linear-gradient(180deg, transparent 0%, rgba(8,9,20,0.85) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero-split::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
  pointer-events: none;
}
.hero-split-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.hero-split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-split-grid { grid-template-columns: 1.1fr 1fr; gap: 60px; }
}
.hero-split-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(254,94,4,0.12);
  border: 1px solid rgba(254,94,4,0.35);
  color: #FFB07A;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 22px;
}
.hero-split-title {
  font-family: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 24px;
}
.hero-split-title .hero-accent {
  background: linear-gradient(135deg, #FE5E04 0%, #FF8A3D 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero-split-sub {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin-bottom: 32px;
}
.hero-split-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-split-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.hero-split-breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.hero-split-breadcrumb a:hover { color: #FE5E04; }
.hero-split-breadcrumb .crumb-current { color: #FE5E04; font-weight: 500; }
.hero-split-breadcrumb svg { width: 14px; height: 14px; opacity: 0.5; }

.hero-split-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
.hero-split-visual::before {
  content: '';
  position: absolute;
  inset: 5% 10%;
  background: radial-gradient(ellipse, rgba(254,94,4,0.45) 0%, rgba(254,94,4,0.18) 40%, transparent 70%);
  filter: blur(60px);
  z-index: 0;
}
.hero-split-image-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow:
    0 40px 80px -20px rgba(0,0,0,0.6),
    0 0 120px -20px rgba(254,94,4,0.4),
    inset 0 1px 0 rgba(255,255,255,0.08);
  background: linear-gradient(135deg, rgba(22,22,42,0.9), rgba(12,12,22,0.9));
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.5s ease;
}
.hero-split-image-wrap:hover {
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg);
}
/* When a diagram (.hdiag) is inside — drop the 3D tilt so centered
   elements sit visually centered, no perspective skew.
   Also remove the dark "box" wrapper styling so the diagram blends
   seamlessly into the hero section background. */
.hero-split-image-wrap:has(.hdiag),
.hero-split-image-wrap:has(.hdiag):hover {
  transform: none;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}
.hero-split-image-wrap:has(.hdiag) .hdiag {
  background: transparent;
  border-radius: 0;
  overflow: visible;
}
.hero-split-image-wrap img,
.hero-split-image-wrap .hero-split-video {
  display: block;
  width: 100%;
  height: auto;
}
.hero-split-image-wrap .hero-split-video {
  background: #ffffff;
}

/* ================================================================
   Services Carousel (home) — riskprofiler "Use Cases" style
   ================================================================ */
/* Stacked card-deck (riskprofiler.io style) — auto-cycling slide-up effect.
   New cards slide up from the bottom of the stage. The previous card stays
   in the deck but is offset slightly upward so only its TOP sliver
   (badge + title) is visible above the active card, like a stacked deck. */
.services-carousel-wrap {
  position: relative;
  /* Reserve vertical space above the active card so the prev card sliver
     has somewhere to appear */
  padding-top: 96px;
}
.services-carousel {
  position: relative;
  min-height: 480px;
  overflow: visible;
  perspective: 1800px;
}
@media (min-width: 900px) {
  .services-carousel { min-height: 440px; }
}
@media (min-width: 1280px) {
  .services-carousel { min-height: 420px; }
}
.services-card {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: block;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(22,22,42,0.96) 0%, rgba(15,15,30,0.96) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 0 80px -30px rgba(254,94,4,0.35), inset 0 1px 0 rgba(255,255,255,0.04);
  overflow: hidden;
  text-decoration: none;
  /* Default state: parked below the stage, ready to slide up */
  transform: translate3d(0, 110%, 0) scale(0.98);
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  transition:
    transform 0.85s cubic-bezier(0.22, 0.88, 0.34, 1),
    opacity 0.55s ease,
    box-shadow 0.55s ease,
    border-color 0.55s ease;
  will-change: transform, opacity;
}
/* Active card (front of the deck) — fully visible at top:0 */
.services-card.is-active {
  transform: translate3d(0, 0, 0) scale(1);
  opacity: 1;
  z-index: 6;
  pointer-events: auto;
  box-shadow:
    0 30px 80px -25px rgba(0,0,0,0.55),
    0 0 100px -20px rgba(254,94,4,0.45),
    inset 0 1px 0 rgba(255,255,255,0.06);
}
.services-card.is-active:hover {
  border-color: rgba(254,94,4,0.3);
  box-shadow:
    0 30px 80px -22px rgba(0,0,0,0.6),
    0 0 120px -18px rgba(254,94,4,0.55),
    inset 0 1px 0 rgba(255,255,255,0.08);
}
/* Previous card — sits BEHIND the active card with its top edge poking up
   above the active card. Only its top ~70px sliver is visible. */
.services-card.is-prev-1 {
  /* Pull up by 70px (in addition to the small scale) so top portion shows
     above the active card's top edge */
  transform: translate3d(0, -70px, 0) scale(0.97);
  opacity: 0.85;
  z-index: 5;
}
.services-card.is-prev-2 {
  transform: translate3d(0, -90px, 0) scale(0.94);
  opacity: 0.5;
  z-index: 4;
  filter: blur(0.5px);
}
.services-card.is-prev-3 {
  transform: translate3d(0, -100px, 0) scale(0.91);
  opacity: 0.25;
  z-index: 3;
  filter: blur(1px);
}
/* Future / inactive cards stay parked below the stage */
.services-card.is-next {
  transform: translate3d(0, 110%, 0) scale(0.98);
  opacity: 0;
  z-index: 1;
}
.services-card-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 900px) {
  .services-card-inner { grid-template-columns: 1.1fr 1fr; }
}
.services-card-text {
  padding: 40px 36px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.services-card-badge {
  display: inline-block;
  width: fit-content;
  padding: 4px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #FE5E04 0%, #FF8A3D 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.services-card-title {
  font-family: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.services-card-accent {
  background: linear-gradient(135deg, #FE5E04 0%, #FF8A3D 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.services-card-features {
  display: grid;
  gap: 18px;
  margin-bottom: 24px;
}
.services-feature h4 {
  font-family: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}
.services-feature p {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  line-height: 1.55;
}
.services-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #FE5E04;
  font-size: 14px;
  font-weight: 600;
  transition: gap 0.2s ease;
}
.services-card:hover .services-card-cta { gap: 12px; }
.services-card-visual {
  position: relative;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at center, rgba(254,94,4,0.10) 0%, transparent 70%);
  min-height: 300px;
}
.services-card-visual-glow {
  position: absolute;
  inset: 20% 15%;
  background: radial-gradient(ellipse, rgba(254,94,4,0.25) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

/* Generic mock container */
.services-card-mock {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 360px;
  padding: 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.6);
}

/* Pen-test mock */
.mock-header { display: flex; gap: 6px; margin-bottom: 14px; }
.mock-header span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.15); }
.mock-header span:first-child { background: #FE5E04; }
.mock-row {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 8px; margin-bottom: 8px;
  background: rgba(255,255,255,0.03); color: rgba(255,255,255,0.75);
  font-size: 12.5px; font-family: 'JetBrains Mono', ui-monospace, monospace;
  border: 1px solid rgba(255,255,255,0.05);
}
.mock-row svg { color: rgba(255,255,255,0.5); }
.mock-row-critical { border-color: rgba(254,94,4,0.4); background: rgba(254,94,4,0.08); color: #FFB07A; }
.mock-row-critical svg { color: #FE5E04; }
.mock-row-ok { border-color: rgba(34,197,94,0.3); background: rgba(34,197,94,0.06); color: #86efac; }
.mock-row-ok svg { color: #22c55e; }

/* Vuln stats */
.mock-stat { display: inline-block; margin-right: 20px; margin-bottom: 16px; }
.mock-stat-num { display: block; font-size: 32px; font-weight: 700; color: #fff; font-family: 'Space Grotesk', sans-serif; letter-spacing: -0.02em; }
.mock-stat-critical { color: #FE5E04; }
.mock-stat-label { font-size: 11px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.1em; }
.mock-bar { height: 8px; background: rgba(255,255,255,0.06); border-radius: 4px; margin-bottom: 10px; overflow: hidden; }
.mock-bar span { display: block; height: 100%; background: linear-gradient(90deg, #FE5E04, #FF8A3D); border-radius: 4px; }

/* Assessment ring */
.mock-score-ring { position: relative; width: 140px; height: 140px; margin: 0 auto 16px; }
.mock-score-ring svg { width: 100%; height: 100%; }
.mock-score-text {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif; font-size: 36px; font-weight: 700; color: #fff;
}
.mock-score-text span { font-size: 14px; color: rgba(255,255,255,0.5); font-weight: 400; }
.mock-list { display: grid; gap: 6px; }
.mock-list-item {
  display: flex; justify-content: space-between;
  padding: 8px 12px; background: rgba(255,255,255,0.03);
  border-radius: 6px; font-size: 12px; color: rgba(255,255,255,0.7);
}
.mock-list-item b { color: #FE5E04; }

/* Implementation steps */
.mock-step {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px; margin-bottom: 8px; border-radius: 8px;
  background: rgba(255,255,255,0.03); font-size: 13px; color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.05);
}
.mock-step svg { color: rgba(255,255,255,0.3); }
.mock-step-done { color: #86efac; border-color: rgba(34,197,94,0.2); }
.mock-step-done svg { color: #22c55e; }
.mock-step-active {
  color: #FFB07A; border-color: rgba(254,94,4,0.35); background: rgba(254,94,4,0.06);
}
.mock-step-active svg { color: #FE5E04; animation: mockSpin 2s linear infinite; }
@keyframes mockSpin { to { transform: rotate(360deg); } }

/* Vendor mock */
.mock-vendor-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 14px; margin-bottom: 8px; border-radius: 8px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
}
.mock-vendor-name { color: #fff; font-weight: 500; font-size: 13px; }
.mock-vendor-score {
  padding: 4px 10px; border-radius: 6px;
  font-size: 12px; font-weight: 700; font-family: 'Space Grotesk', sans-serif;
}
.mock-vendor-good { background: rgba(34,197,94,0.15); color: #86efac; }
.mock-vendor-ok { background: rgba(254,94,4,0.15); color: #FFB07A; }
.mock-vendor-bad { background: rgba(239,68,68,0.15); color: #fca5a5; }

/* vCISO mock */
.mock-ciso-kpi {
  display: flex; justify-content: space-between;
  padding: 14px; margin-bottom: 10px; border-radius: 10px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
}
.mock-ciso-kpi span { color: rgba(255,255,255,0.6); font-size: 13px; }
.mock-ciso-kpi b { color: #FE5E04; font-size: 13px; font-weight: 600; }

/* Compliance mock */
.mock-badge-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.mock-cert {
  padding: 18px 12px; text-align: center; border-radius: 10px;
  background: linear-gradient(135deg, rgba(254,94,4,0.12), rgba(254,94,4,0.04));
  border: 1px solid rgba(254,94,4,0.25);
  font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 13px; color: #fff;
}

/* Carousel Controls */
.services-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}
.services-carousel-btn {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
}
.services-carousel-btn:hover {
  background: linear-gradient(135deg, #FE5E04, #FF8A3D);
  border-color: transparent;
  transform: scale(1.05);
}
.services-carousel-dots { display: flex; gap: 8px; }
.services-carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer; transition: all 0.2s ease;
  border: none; padding: 0;
}
.services-carousel-dot.is-active {
  background: linear-gradient(135deg, #FE5E04, #FF8A3D);
  width: 24px; border-radius: 4px;
}

/* ======================================================
   Cybersecurity Background Patterns
   ====================================================== */

/* Circuit board pattern — for orange sections */
/* ---- Asymmetric O2-Inspired Background Patterns ---- */

/* Pattern for orange sections: Large scattered O2 text watermarks */
.bg-pattern-circuit {
    position: relative;
}
.bg-pattern-circuit::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='300' viewBox='0 0 400 300'%3E%3Ctext x='50' y='120' font-family='Space Grotesk,sans-serif' font-size='180' font-weight='800' fill='white' opacity='0.3'%3EO2%3C/text%3E%3Ccircle cx='320' cy='60' r='40' fill='none' stroke='white' stroke-width='1.5' opacity='0.15'/%3E%3Ccircle cx='350' cy='240' r='25' fill='none' stroke='white' stroke-width='1' opacity='0.1'/%3E%3C/svg%3E");
    background-size: 500px 400px;
    background-position: 80% 20%;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
}
.bg-pattern-circuit > *:not(.deco-arc):not(.deco-band):not(.deco-o2-text) {
    position: relative;
    z-index: 1;
}

/* Pattern for dark sections: Scattered circles and arcs */
.bg-pattern-hex {
    position: relative;
}
.bg-pattern-hex::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='400' viewBox='0 0 600 400'%3E%3Ccircle cx='500' cy='80' r='120' fill='none' stroke='%23FE5E04' stroke-width='1.5' opacity='0.4'/%3E%3Ccircle cx='500' cy='80' r='80' fill='none' stroke='%23FE5E04' stroke-width='1' opacity='0.25'/%3E%3Ccircle cx='80' cy='320' r='90' fill='none' stroke='%23FE5E04' stroke-width='1.5' opacity='0.3'/%3E%3Cpath d='M 150 50 Q 300 10 450 80' fill='none' stroke='%23FE5E04' stroke-width='1' opacity='0.15'/%3E%3Ctext x='420' y='350' font-family='Space Grotesk,sans-serif' font-size='120' font-weight='800' fill='%23FE5E04' opacity='0.06'%3EO2%3C/text%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
}
.bg-pattern-hex > *:not(.deco-arc):not(.deco-band):not(.deco-o2-text) {
    position: relative;
    z-index: 1;
}

/* Pattern for stat sections: Flowing curves with O2 */
.bg-pattern-dataflow {
    position: relative;
}
.bg-pattern-dataflow::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='300' viewBox='0 0 800 300'%3E%3Cpath d='M 0 150 Q 200 50 400 150 T 800 150' fill='none' stroke='%23FE5E04' stroke-width='2' opacity='0.4'/%3E%3Cpath d='M 0 180 Q 200 80 400 180 T 800 180' fill='none' stroke='%23FE5E04' stroke-width='1' opacity='0.2'/%3E%3Ctext x='600' y='100' font-family='Space Grotesk,sans-serif' font-size='100' font-weight='800' fill='%23FE5E04' opacity='0.08'%3EO2%3C/text%3E%3Ccircle cx='100' cy='80' r='50' fill='none' stroke='%23FE5E04' stroke-width='1' opacity='0.15'/%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
}
.bg-pattern-dataflow > *:not(.deco-arc):not(.deco-band):not(.deco-o2-text) {
    position: relative;
    z-index: 1;
}

/* Pattern for light sections: Subtle O2 + shield outline */
.bg-pattern-shield {
    position: relative;
}
.bg-pattern-shield::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='500' viewBox='0 0 600 500'%3E%3Ctext x='350' y='200' font-family='Space Grotesk,sans-serif' font-size='250' font-weight='800' fill='%23FE5E04' opacity='0.12'%3EO2%3C/text%3E%3Cpath d='M300 430s100-50 100-125V180l-100-37.5L200 180v125c0 75 100 125 100 125z' fill='none' stroke='%23FE5E04' stroke-width='2' opacity='0.1'/%3E%3Ccircle cx='100' cy='100' r='60' fill='none' stroke='%23FE5E04' stroke-width='1' opacity='0.08'/%3E%3C/svg%3E");
    background-size: 700px 600px;
    background-position: right center;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
}
.bg-pattern-shield > *:not(.deco-arc):not(.deco-band):not(.deco-o2-text) {
    position: relative;
    z-index: 1;
}

/* SIEM Circular Diagram */
.siem-radial-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.siem-center-hub {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a1a35 0%, #12121f 100%);
    border: 3px solid rgba(254,94,4,0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 60px rgba(254,94,4,0.15);
    margin: 0 auto;
    position: relative;
    z-index: 2;
    animation: siem-pulse 3s ease-in-out infinite;
}

.siem-center-hub::after {
    content: '';
    position: absolute;
    inset: -15px;
    border-radius: 50%;
    border: 2px dashed rgba(254,94,4,0.15);
    animation: siem-rotate 60s linear infinite;
}

@keyframes siem-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes siem-pulse {
    0%, 100% { box-shadow: 0 0 40px rgba(254,94,4,0.1); }
    50% { box-shadow: 0 0 80px rgba(254,94,4,0.25); }
}

.siem-ring-label {
    position: absolute;
    background: rgba(26,26,46,0.9);
    border: 1px solid rgba(254,94,4,0.25);
    border-radius: 10px;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #FE5E04;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.siem-ring-label:hover {
    border-color: #FE5E04;
    box-shadow: 0 0 15px rgba(254,94,4,0.15);
    transform: scale(1.05);
}

.siem-side-panel {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 1.5rem;
}

/* ============================================================
   ROUND 3: ENTERPRISE VISUAL OVERHAUL
   ============================================================ */

/* --- Gradient Backgrounds --- */
.bg-gradient-hero {
    background: linear-gradient(135deg, #1a0a02 0%, #2d1205 40%, #0a0a1a 100%);
}
.bg-gradient-orange {
    background: linear-gradient(135deg, #e54d00 0%, #FE5E04 25%, #FF7B2E 50%, #FE5E04 75%, #d44400 100%);
}
.bg-gradient-dark {
    background: linear-gradient(135deg, #080810 0%, #141428 30%, #1a1230 50%, #141428 70%, #080810 100%);
}
.bg-gradient-light {
    background: linear-gradient(180deg, #F8F6F3 0%, #F0EAE0 40%, #EDE5DA 60%, #F5F0EB 100%);
}
.bg-gradient-warm {
    background: linear-gradient(135deg, #FFF4EB 0%, #FFE8D6 35%, #FFDFC4 65%, #FFF0E6 100%);
}

/* --- Gradient Buttons --- */
.btn-gradient {
    background: linear-gradient(135deg, #FE5E04, #FF8A3D);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(254, 94, 4, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}
.btn-gradient:hover {
    box-shadow: 0 6px 25px rgba(254, 94, 4, 0.5);
    transform: translateY(-2px);
}

/* --- Gradient Text --- */
.text-gradient {
    background: linear-gradient(135deg, #FE5E04, #FFB347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Logo Arc Background Decorations (injected via JS) --- */
.bg-logo-arcs {
    position: relative;
    overflow: hidden;
}
/* Content z-index is handled by individual elements via Tailwind (relative z-10) */

/* Arc decoration elements (injected by JS) */
.deco-arc {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* Variant 1: Top-right warm glow */
.deco-arc.arc-tr-glow {
    width: 700px;
    height: 700px;
    top: -250px;
    right: -200px;
    background: radial-gradient(circle, rgba(254, 94, 4, 0.18) 0%, rgba(254, 94, 4, 0.06) 45%, transparent 70%);
    filter: blur(30px);
}

/* Variant 2: Bottom-left warm glow */
.deco-arc.arc-bl-glow {
    width: 600px;
    height: 600px;
    bottom: -200px;
    left: -150px;
    background: radial-gradient(circle, rgba(254, 94, 4, 0.14) 0%, rgba(254, 94, 4, 0.04) 45%, transparent 70%);
    filter: blur(30px);
}

/* Variant 3: Large ring outline (like Securonix) */
.deco-arc.arc-ring {
    width: 500px;
    height: 500px;
    border: 4px solid rgba(254, 94, 4, 0.15);
    background: none;
    filter: none;
}
.deco-arc.arc-ring-tr {
    top: -180px;
    right: -120px;
}
.deco-arc.arc-ring-bl {
    bottom: -200px;
    left: -130px;
}
.deco-arc.arc-ring-tl {
    top: -150px;
    left: -180px;
}
.deco-arc.arc-ring-br {
    bottom: -150px;
    right: -180px;
}

/* Variant 4: Small accent dot cluster */
.deco-arc.arc-dot-cluster {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    background: radial-gradient(circle, rgba(254, 94, 4, 0.12) 0%, transparent 60%);
    filter: blur(20px);
}

/* Variant 5: Curved arc stroke (logo-inspired) */
.deco-arc.arc-stroke {
    width: 600px;
    height: 600px;
    top: -150px;
    right: -100px;
    border: 5px solid rgba(254, 94, 4, 0.12);
    border-right-color: transparent;
    border-bottom-color: transparent;
    transform: rotate(-30deg);
    background: none;
    filter: none;
}
.deco-arc.arc-stroke-2 {
    width: 450px;
    height: 450px;
    bottom: -120px;
    left: -80px;
    border: 4px solid rgba(254, 94, 4, 0.1);
    border-left-color: transparent;
    border-top-color: transparent;
    transform: rotate(20deg);
    background: none;
    filter: none;
}

/* Variant 6: Diagonal gradient band */
.deco-band {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}
.deco-band.band-diagonal {
    width: 200%;
    height: 2px;
    background: linear-gradient(90deg, transparent 10%, rgba(254, 94, 4, 0.12) 30%, rgba(254, 94, 4, 0.2) 50%, rgba(254, 94, 4, 0.12) 70%, transparent 90%);
    transform: rotate(-4deg);
    top: 35%;
    left: -50%;
}
.deco-band.band-diagonal-2 {
    width: 200%;
    height: 2px;
    background: linear-gradient(90deg, transparent 10%, rgba(254, 94, 4, 0.08) 30%, rgba(254, 94, 4, 0.15) 50%, rgba(254, 94, 4, 0.08) 70%, transparent 90%);
    transform: rotate(3deg);
    bottom: 30%;
    left: -50%;
}

/* Dynamic image animations for About page */
@keyframes float-gentle {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}
@keyframes float-rotate {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(1deg); }
}
@keyframes pulse-scale {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}
.img-float {
    animation: float-gentle 6s ease-in-out infinite;
}
.img-float-rotate {
    animation: float-rotate 7s ease-in-out infinite;
}
.img-pulse {
    animation: pulse-scale 5s ease-in-out infinite;
}
.img-float-delay {
    animation: float-gentle 6s ease-in-out infinite;
    animation-delay: 1.5s;
}

/* O2 text watermark deco */
.deco-o2-text {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    font-size: 200px;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 3px rgba(254, 94, 4, 0.1);
    letter-spacing: -0.02em;
}
.deco-o2-text.o2-tr {
    top: -30px;
    right: -40px;
}
.deco-o2-text.o2-bl {
    bottom: -30px;
    left: -20px;
    font-size: 160px;
}

/* --- Enterprise Typography --- */
.heading-xl {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
}
.heading-lg {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.15;
}

/* --- Gradient Dividers --- */
.divider-gradient {
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(254, 94, 4, 0.5), transparent);
    border: none;
    margin: 0;
}

/* --- Glassmorphism Card --- */
.card-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
}
.card-glass:hover {
    border-color: rgba(254, 94, 4, 0.3);
    box-shadow: 0 8px 32px rgba(254, 94, 4, 0.15);
    transform: translateY(-4px);
}
.card-glass .card-reveal {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(254, 94, 4, 0.95) 0%, rgba(254, 94, 4, 0.8) 60%, transparent 100%);
    padding: 1.5rem;
    padding-top: 3rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}
.card-glass:hover .card-reveal {
    transform: translateY(0);
}

/* Dark glass card variant for light/orange backgrounds */
.card-glass-dark {
    background: rgba(10, 10, 20, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
}
.card-glass-dark:hover {
    border-color: rgba(254, 94, 4, 0.3);
    box-shadow: 0 4px 20px rgba(254, 94, 4, 0.15);
    transform: translateY(-3px);
}
.card-glass-dark .card-reveal {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(10, 10, 20, 0.98) 0%, rgba(10, 10, 20, 0.9) 70%, transparent 100%);
    padding: 1.25rem;
    padding-top: 2.5rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}
.card-glass-dark:hover .card-reveal {
    transform: translateY(0);
}

/* --- Gradient Border Card (for services) --- */
.card-gradient-border {
    background: #12121f;
    border: 1px solid transparent;
    border-radius: 16px;
    background-image: linear-gradient(#12121f, #12121f), linear-gradient(135deg, #FE5E04, #FF8A3D, #FE5E04);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}
.card-gradient-border:hover {
    background-image: linear-gradient(#1a1a2e, #1a1a2e), linear-gradient(135deg, #FF8A3D, #FFB347, #FF8A3D);
    box-shadow: 0 0 25px rgba(254, 94, 4, 0.1);
    transform: translateY(-2px);
}

/* --- Animated Marquee --- */
.marquee-container {
    overflow: hidden;
    position: relative;
}
.marquee-container::before,
.marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.marquee-container::before {
    left: 0;
    background: linear-gradient(90deg, var(--marquee-bg, #FAFAFA), transparent);
}
.marquee-container::after {
    right: 0;
    background: linear-gradient(-90deg, var(--marquee-bg, #FAFAFA), transparent);
}
.marquee-track {
    display: flex;
    gap: 2rem;
    animation: marquee-scroll var(--marquee-duration, 30s) linear infinite;
    width: max-content;
}
.marquee-track:hover {
    animation-play-state: paused;
}
@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.badge-cert {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    background: white;
    border: 1px solid #e5e7eb;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1E1E1E;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    white-space: nowrap;
}
.badge-tech {
    display: inline-flex;
    align-items: center;
    padding: 0.625rem 1.5rem;
    border-radius: 12px;
    background: white;
    border: 1px solid #e5e7eb;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1E1E1E;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    white-space: nowrap;
}

/* --- Tabbed Content (Enterprise) --- */
.tab-bar-enterprise {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    border-bottom: 2px solid rgba(254, 94, 4, 0.1);
}
.tab-bar-enterprise .tab-btn {
    padding: 0.75rem 1rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    color: #888;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: none;
}
.tab-bar-enterprise .tab-btn:hover {
    color: #FE5E04;
}
.tab-bar-enterprise .tab-btn.active {
    color: #FE5E04;
    border-bottom-color: #FE5E04;
}
.tab-panel-enterprise {
    display: none;
    padding: 2rem 0;
    animation: fadeIn 0.4s ease;
}
.tab-panel-enterprise.active {
    display: block;
}

/* --- Flowing Arrow Animation (for SIEM) --- */
.flow-arrow-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 60px;
}
.flow-arrow-line {
    position: absolute;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(254, 94, 4, 0.4), rgba(254, 94, 4, 0.6), rgba(254, 94, 4, 0.4), transparent);
}
@media (min-width: 1024px) {
    .flow-arrow-line {
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, transparent, rgba(254, 94, 4, 0.4), rgba(254, 94, 4, 0.6), rgba(254, 94, 4, 0.4), transparent);
    }
}
.flow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #FE5E04;
    position: absolute;
    box-shadow: 0 0 10px rgba(254, 94, 4, 0.5);
}
@media (min-width: 1024px) {
    .flow-dot { animation: flow-move-h 2s linear infinite; }
    .flow-dot:nth-child(2) { animation-delay: 0.4s; }
    .flow-dot:nth-child(3) { animation-delay: 0.8s; }
    .flow-dot:nth-child(4) { animation-delay: 1.2s; }
    .flow-dot:nth-child(5) { animation-delay: 1.6s; }
}
@media (max-width: 1023px) {
    .flow-dot { animation: flow-move-v 2s linear infinite; }
    .flow-dot:nth-child(2) { animation-delay: 0.4s; }
    .flow-dot:nth-child(3) { animation-delay: 0.8s; }
    .flow-dot:nth-child(4) { animation-delay: 1.2s; }
    .flow-dot:nth-child(5) { animation-delay: 1.6s; }
}
@keyframes flow-move-h {
    from { left: 0; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    to { left: calc(100% - 8px); opacity: 0; }
}
@keyframes flow-move-v {
    from { top: 0; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    to { top: calc(100% - 8px); opacity: 0; }
}

/* --- Subtle Noise Texture for Light Sections --- */
.bg-texture-dots {
    position: relative;
}
.bg-texture-dots::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.07;
    background-image: radial-gradient(circle, rgba(254, 94, 4, 0.15) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    z-index: 0;
}
.bg-texture-dots > *:not(.deco-arc):not(.deco-band):not(.deco-o2-text) {
    position: relative;
    z-index: 1;
}

/* ======================================================
   UPGRADED CERTIFICATION BADGES (SVG icon + text)
   ====================================================== */

.badge-cert-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: 12px;
    background: white;
    border: 1px solid #e5e7eb;
    font-size: 0.8rem;
    font-weight: 700;
    color: #1E1E1E;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    white-space: nowrap;
    transition: all 0.3s ease;
}
.badge-cert-icon:hover {
    border-color: #FE5E04;
    box-shadow: 0 4px 12px rgba(254, 94, 4, 0.1);
    transform: translateY(-2px);
}
.badge-cert-icon svg {
    width: 20px;
    height: 20px;
    color: #FE5E04;
}
.badge-tech-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #ffffff, #f8f8f8);
    border: 1px solid #e5e7eb;
    font-size: 0.85rem;
    font-weight: 700;
    color: #1E1E1E;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    white-space: nowrap;
    transition: all 0.3s ease;
}
.badge-tech-icon:hover {
    border-color: #FE5E04;
    box-shadow: 0 4px 12px rgba(254, 94, 4, 0.1);
    transform: translateY(-2px);
}
.badge-tech-icon svg {
    width: 22px;
    height: 22px;
    color: #FE5E04;
}

/* --- Animated Dashed Lines (for hub-spoke diagrams) --- */
@keyframes dash-flow {
    from { stroke-dashoffset: 20; }
    to { stroke-dashoffset: 0; }
}
.animate-dash {
    stroke-dasharray: 6 4;
    animation: dash-flow 1.5s linear infinite;
}

/* --- Data Source Pulse Dots (for SIEM) --- */
@keyframes data-pulse {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}
.data-pulse-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #FE5E04;
    position: absolute;
    animation: data-pulse 2s ease-in-out infinite;
}

/* --- SIEM Hub Glow Pulse --- */
@keyframes hub-glow-pulse {
    0%, 100% { box-shadow: 0 0 40px rgba(254, 94, 4, 0.08), 0 0 0 0 rgba(254, 94, 4, 0.15); border-color: rgba(254, 94, 4, 0.4); }
    50% { box-shadow: 0 0 60px rgba(254, 94, 4, 0.2), 0 0 20px 4px rgba(254, 94, 4, 0.1); border-color: rgba(254, 94, 4, 0.6); }
}
.siem-hub-glow {
    animation: hub-glow-pulse 3s ease-in-out infinite;
}
