/* ==========================================================================
   IGNITE TECHNOLOGY GROUP - PRISM FRAMER COMPONENTS
   Floating Pill Nav, Bento Cards, Buttons, Accordion, Marquee, Comparison
   ========================================================================== */

/* --------------------------------------------------------------------------
   SANJAYA FRAMER SIGNATURE HEADER (https://sanjaya.framer.ai/)
   Fixed top header, 1px hairline bottom border, Geist nav links, 
   and 8px-radius Ghost consultation button
   -------------------------------------------------------------------------- */
.sanjaya-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 84px;
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: height 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  background-color: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.sanjaya-header.scrolled {
  height: 74px;
  background-color: rgba(0, 0, 0, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.85);
}

/* Hairline bottom border */
.sanjaya-header-border {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.sanjaya-header.scrolled .sanjaya-header-border {
  opacity: 0.8;
}

.sanjaya-header-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Left Brand Logo */
.sanjaya-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  height: 32px;
  transition: opacity 0.2s ease;
  flex-shrink: 0;
}

.sanjaya-logo:hover {
  opacity: 0.85;
}

.sanjaya-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Center Navigation Links */
.sanjaya-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.sanjaya-nav-link {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #9ca3af;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 6px;
  transition: color 0.2s cubic-bezier(0.44, 0, 0.56, 1),
              background-color 0.2s cubic-bezier(0.44, 0, 0.56, 1);
  display: inline-flex;
  align-items: center;
  position: relative;
}

.sanjaya-nav-link:hover {
  color: #ffffff;
  background-color: rgba(37, 99, 235, 0.08);
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.1);
}

.sanjaya-nav-link.active {
  color: #ffffff;
}

/* Right Actions */
.sanjaya-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Consultation CTA Button with Spectrum Accent Glow (Matched to Brand Image) */
.sanjaya-btn-consult {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #ffffff;
  background: linear-gradient(rgba(12, 16, 28, 0.85), rgba(12, 16, 28, 0.85)) padding-box,
              linear-gradient(135deg, rgba(245, 158, 11, 0.6), rgba(147, 51, 234, 0.65), rgba(37, 99, 235, 0.75), rgba(6, 182, 212, 0.7)) border-box;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 0 18px rgba(37, 99, 235, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.15);
  transition: background 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.sanjaya-btn-consult:hover {
  background: linear-gradient(rgba(18, 24, 44, 0.95), rgba(18, 24, 44, 0.95)) padding-box,
              linear-gradient(135deg, #f59e0b, #9333ea, #2563eb, #06b6d4) border-box;
  box-shadow: 0 4px 25px rgba(6, 182, 212, 0.45), 0 0 12px rgba(147, 51, 234, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.sanjaya-btn-consult:active {
  transform: translateY(0);
}

/* Mobile Toggle (Hamburger Button - 40x40 rounded rect) */
.sanjaya-mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  cursor: pointer;
  padding: 0;
  position: relative;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.sanjaya-mobile-toggle:hover {
  background-color: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
}

.sanjaya-bar {
  display: block;
  width: 18px;
  height: 1.5px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.25s ease;
}

/* Hamburger active transformation into X */
.sanjaya-mobile-toggle.open .bar-top {
  transform: translateY(6.5px) rotate(45deg);
}

.sanjaya-mobile-toggle.open .bar-mid {
  opacity: 0;
  transform: scaleX(0);
}

.sanjaya-mobile-toggle.open .bar-bot {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Drawer */
.sanjaya-mobile-drawer {
  position: absolute;
  top: 68px;
  left: 0;
  right: 0;
  width: 100%;
  background-color: rgba(1, 0, 4, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding: 24px;
  display: none;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.65);
}

.sanjaya-mobile-drawer.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sanjaya-mobile-links {
  display: flex;
  flex-direction: column;
}

.sanjaya-mobile-link {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  color: #a8a8a8;
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.sanjaya-mobile-link:last-child {
  border-bottom: none;
}

.sanjaya-mobile-link:hover {
  color: #ffffff;
  padding-left: 6px;
}

.sanjaya-mobile-cta {
  padding-top: 8px;
}

.sanjaya-mobile-cta .sanjaya-btn-consult {
  width: 100%;
  padding: 13px;
  font-size: 15px;
}

/* Responsive breakpoint for Sanjaya Header */
@media (max-width: 960px) {
  .sanjaya-nav {
    display: none;
  }
  
  .sanjaya-header-actions .sanjaya-btn-consult {
    display: none;
  }
  
  .sanjaya-mobile-toggle {
    display: flex;
  }
  
  .sanjaya-mobile-drawer {
    display: flex;
  }
}

/* --------------------------------------------------------------------------
   BUTTONS (PRISM CAPSULE STYLE)
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition-smooth);
  position: relative;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.btn-primary {
  background: var(--gradient-primary-btn);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.45), inset 0 1px 1px rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.btn-primary:hover {
  background: var(--gradient-primary-btn-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(6, 182, 212, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(14px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.825rem;
}

.btn-lg {
  padding: 0.95rem 2.2rem;
  font-size: 1rem;
}

/* --------------------------------------------------------------------------
   PILLS & STATUS BADGES
   -------------------------------------------------------------------------- */
.badge-capsule {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(14px);
  color: var(--text-highlight);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--color-emerald);
  box-shadow: 0 0 10px var(--color-emerald);
  position: relative;
}

.status-dot.pulse::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid var(--color-emerald);
  animation: pulseAnimation 2s infinite ease-out;
}

@keyframes pulseAnimation {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* --------------------------------------------------------------------------
   PRISM BENTO GLASS CARDS
   -------------------------------------------------------------------------- */
.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 2.25rem;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.bento-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 35px rgba(147, 51, 234, 0.16);
}

/* Colored Rim Highlights */
.bento-card.rim-blue:hover {
  border-color: rgba(56, 189, 248, 0.45);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 35px rgba(37, 99, 235, 0.25);
}

.bento-card.rim-purple:hover {
  border-color: rgba(192, 132, 252, 0.45);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 35px rgba(147, 51, 234, 0.25);
}

.bento-card.rim-teal:hover {
  border-color: rgba(34, 211, 238, 0.45);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 35px rgba(6, 182, 212, 0.25);
}

.bento-card.rim-amber:hover {
  border-color: rgba(251, 191, 36, 0.45);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 35px rgba(245, 158, 11, 0.25);
}

/* --------------------------------------------------------------------------
   INFINITE CLIENT LOGO MARQUEE (PRISM STYLE)
   -------------------------------------------------------------------------- */
.marquee-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 1.75rem 0;
  mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: max-content;
  animation: marqueeScroll 24s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.marquee-brand {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: color var(--transition-fast);
}

.marquee-brand:hover {
  color: #fff;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
}

/* --------------------------------------------------------------------------
   COMPARISON MATRIX ("WHY IGNITE" VS "LEGACY VENDORS")
   -------------------------------------------------------------------------- */
.comparison-container {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.comparison-card {
  border-radius: var(--radius-xl);
  padding: 2.75rem 2.25rem;
  display: flex;
  flex-direction: column;
}

.comparison-card.ignite {
  background: rgba(14, 20, 34, 0.85);
  border: 1px solid rgba(6, 182, 212, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 40px rgba(6, 182, 212, 0.15);
  position: relative;
}

.comparison-card.legacy {
  background: rgba(10, 13, 20, 0.5);
  border: 1px solid var(--border-subtle);
  opacity: 0.75;
}

.comparison-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-top: 2rem;
}

.comparison-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.95rem;
}

.check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid var(--color-emerald);
  color: var(--color-emerald-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.cross-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #f87171;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* --------------------------------------------------------------------------
   WORK PROCESS / ROADMAP (PRISM'S STEP CARDS)
   -------------------------------------------------------------------------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.process-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  position: relative;
  transition: all var(--transition-smooth);
}

.process-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.25);
  background: var(--bg-card-hover);
}

.process-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-teal);
  margin-bottom: 1rem;
}

.process-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.process-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   FAQ ACCORDION (SMOOTH INTERACTIVE EXPAND)
   -------------------------------------------------------------------------- */
.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.faq-item.active {
  border-color: rgba(6, 182, 212, 0.4);
  background: rgba(14, 20, 34, 0.85);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text-white);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--color-purple);
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding: 0 1.5rem 1.25rem 1.5rem;
}

.faq-answer p {
  font-size: 0.925rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   MODAL & TOAST
   -------------------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 5, 10, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: #0b101c;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xl);
  max-width: 520px;
  width: 100%;
  padding: 2.25rem;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85), 0 0 50px rgba(147, 51, 234, 0.25);
  transform: translateY(20px) scale(0.96);
  transition: all var(--transition-smooth);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.active .modal-box {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: all var(--transition-fast);
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  transform: rotate(90deg);
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-label {
  display: block;
  font-size: 0.825rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 0.35rem;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--bg-glass-input);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: inherit;
  font-size: 0.925rem;
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-teal);
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.3);
}

select.form-control option {
  background-color: #0b101c;
  color: #fff;
}

.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #0d1424;
  border: 1px solid var(--color-teal);
  color: #fff;
  padding: 0.9rem 1.4rem;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(6, 182, 212, 0.3);
  z-index: 2000;
  transform: translateY(100px);
  opacity: 0;
  transition: all var(--transition-smooth);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ==========================================================================
   SECTION 1: TRUSTED COMPANIES ACROSS INDUSTRIES (MATCHED TO IMAGE 2)
   Minimalist dark bordered box grid with monospace tag & hover elevation
   ========================================================================== */
.trusted-clients-section {
  position: relative;
  width: 100%;
  padding: 90px 24px 100px;
  background-color: transparent;
  background-image:
    radial-gradient(ellipse 60% 50% at 15% 30%, rgba(30, 64, 175, 0.25) 0%, transparent 70%),
    radial-gradient(ellipse 55% 45% at 85% 70%, rgba(4, 120, 87, 0.2) 0%, transparent 70%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.012) 0px, rgba(255, 255, 255, 0.012) 1px, transparent 1px, transparent 38px);
  overflow: hidden;
  border-top: 1px solid rgba(56, 189, 248, 0.14);
  border-bottom: 1px solid rgba(56, 189, 248, 0.14);
}

.trusted-clients-container {
  max-width: 1200px;
  margin: 0 auto;
}

.trusted-section-tag {
  font-family: var(--font-mono, 'Geist Mono', monospace);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ignite-cyan, #38bdf8);
  text-align: center;
  margin: 0 auto 36px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: max-content;
  padding: 6px 18px;
  background: rgba(30, 64, 175, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 9999px;
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.15);
}

.trusted-section-tag::before,
.trusted-section-tag::after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 1px;
  background: var(--gradient-ignite-star);
}

/* 2-Row x 5-Column Luxury Box Grid */
.clients-box-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid rgba(56, 189, 248, 0.2);
  background: rgba(8, 14, 30, 0.7);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(37, 99, 235, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.client-grid-box {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 116px;
  padding: 24px;
  border-right: 1px solid rgba(56, 189, 248, 0.12);
  border-bottom: 1px solid rgba(56, 189, 248, 0.12);
  background: rgba(6, 11, 24, 0.75);
  position: relative;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
  text-decoration: none;
}

.client-grid-box:nth-child(5n) {
  border-right: none;
}

.client-grid-box:nth-child(n + 6) {
  border-bottom: none;
}

/* Featured / Active State (Matching NAKULA in Image 2) */
.client-grid-box.highlighted {
  background: linear-gradient(145deg, rgba(16, 32, 68, 0.95) 0%, rgba(8, 16, 36, 0.98) 100%);
  box-shadow: inset 0 0 0 1px rgba(56, 189, 248, 0.45), 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 24px rgba(56, 189, 248, 0.25);
  z-index: 2;
}

.client-grid-box:hover {
  background: linear-gradient(145deg, rgba(20, 40, 84, 0.95) 0%, rgba(10, 20, 44, 0.98) 100%);
  box-shadow: inset 0 0 0 1px rgba(56, 189, 248, 0.65), 0 14px 35px rgba(0, 0, 0, 0.8), 0 0 28px rgba(0, 191, 165, 0.3);
  z-index: 3;
  transform: translateY(-2px);
}

.client-brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #ffffff;
  opacity: 0.88;
  transition: opacity 0.25s ease, transform 0.25s ease;
  user-select: none;
}

.client-grid-box:hover .client-brand-logo,
.client-grid-box.highlighted .client-brand-logo {
  opacity: 1;
  transform: scale(1.05);
}

.brand-text-bold {
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.brand-text-mono {
  font-family: var(--font-mono, 'Geist Mono', monospace);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
}

.brand-text-serif {
  font-family: 'Times New Roman', Georgia, serif;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #ffffff;
}

.brand-glyph {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   SECTION 2: RESEARCH-LED FULL-STACK AI SHOWCASE (CREATIVE PREMIUM DESIGN)
   Dual kinetic stream carousel with glowing neon cards & 3D tilt micro-interactions
   ========================================================================== */
.research-ai-section {
  position: relative;
  width: 100%;
  padding: 110px 0 140px;
  background: transparent;
  background-image:
    radial-gradient(ellipse 70% 45% at 20% 20%, rgba(30, 64, 175, 0.28) 0%, transparent 70%),
    radial-gradient(ellipse 65% 50% at 80% 75%, rgba(4, 120, 87, 0.22) 0%, transparent 70%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.012) 0px, rgba(255, 255, 255, 0.012) 1px, transparent 1px, transparent 38px);
  overflow: hidden;
  border-top: 1px solid rgba(56, 189, 248, 0.12);
  border-bottom: 1px solid rgba(56, 189, 248, 0.12);
}

/* Top Ambient Radial Glow */
.research-ambient-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 450px;
  background: radial-gradient(ellipse, rgba(56, 189, 248, 0.15) 0%, rgba(37, 99, 235, 0.12) 40%, transparent 70%);
  pointer-events: none;
  filter: blur(80px);
  z-index: 1;
}

.research-header {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 60px auto;
  position: relative;
  z-index: 2;
  padding: 0 24px;
}

.research-title {
  font-family: var(--font-display, 'Syne', sans-serif);
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.035em;
  background: linear-gradient(180deg, #ffffff 40%, #bae6fd 85%, #67e8f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 16px 0 18px;
}

.research-subtitle {
  font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif);
  font-size: 17px;
  line-height: 1.65;
  color: #94a3b8;
  max-width: 660px;
  margin: 0 auto;
}

/* Dual Kinetic Stream Containers with Edge Gradient Mask */
.research-stream-container {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 22px;
  z-index: 2;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.research-stream-track {
  display: flex;
  gap: 22px;
  width: max-content;
  will-change: transform;
}

.stream-left {
  animation: scrollStreamLeft 45s linear infinite;
}

.stream-right {
  animation: scrollStreamRight 48s linear infinite;
}

.research-stream-container:hover .research-stream-track {
  animation-play-state: paused;
}

@keyframes scrollStreamLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 11px)); }
}

@keyframes scrollStreamRight {
  0% { transform: translateX(calc(-50% - 11px)); }
  100% { transform: translateX(0); }
}

/* Individual Research Capability Card (Image 1 Content) */
.research-card {
  width: 380px;
  flex-shrink: 0;
  padding: 26px 28px;
  background: linear-gradient(145deg, rgba(10, 18, 38, 0.88) 0%, rgba(4, 9, 22, 0.95) 100%);
  border: 1px solid rgba(56, 189, 248, 0.16);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.research-card:hover {
  border-color: rgba(56, 189, 248, 0.5);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.85), 0 0 30px rgba(37, 99, 235, 0.25);
  transform: translateY(-3px);
}

.research-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.research-icon-capsule {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.research-icon-capsule.amber {
  background: rgba(245, 158, 11, 0.18);
  border: 1px solid rgba(245, 158, 11, 0.45);
  color: var(--ignite-gold, #fbbf24);
  box-shadow: 0 0 16px rgba(245, 158, 11, 0.3);
}

.research-icon-capsule.cyan {
  background: rgba(56, 189, 248, 0.18);
  border: 1px solid rgba(56, 189, 248, 0.45);
  color: var(--ignite-cyan, #38bdf8);
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.3);
}

.research-icon-capsule.purple {
  background: rgba(147, 51, 234, 0.18);
  border: 1px solid rgba(147, 51, 234, 0.45);
  color: var(--ignite-lilac, #c084fc);
  box-shadow: 0 0 16px rgba(147, 51, 234, 0.3);
}

.research-icon-capsule.teal {
  background: rgba(0, 191, 165, 0.18);
  border: 1px solid rgba(0, 191, 165, 0.45);
  color: var(--ignite-teal, #00bfa5);
  box-shadow: 0 0 16px rgba(0, 191, 165, 0.3);
}

.research-icon-capsule.blue {
  background: rgba(37, 99, 235, 0.18);
  border: 1px solid rgba(37, 99, 235, 0.45);
  color: var(--ignite-cyan, #38bdf8);
  box-shadow: 0 0 16px rgba(37, 99, 235, 0.3);
}

.research-badge-label {
  font-family: var(--font-mono, 'Geist Mono', monospace);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7dd3fc;
  padding: 4px 10px;
  background: rgba(30, 64, 175, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 9999px;
}

.research-card-title {
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
  line-height: 1.35;
  margin-bottom: 8px;
}

.research-card-desc {
  font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif);
  font-size: 14px;
  line-height: 1.6;
  color: #94a3b8;
  margin: 0;
}

/* Responsive Breakpoints for Section 1 & Section 2 */
@media (max-width: 1024px) {
  .clients-box-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .client-grid-box:nth-child(5n) {
    border-right: 1px solid rgba(255, 255, 255, 0.09);
  }
  .client-grid-box:nth-child(3n) {
    border-right: none;
  }
  .client-grid-box:nth-child(n + 6) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }
  .client-grid-box:nth-child(n + 9) {
    border-bottom: none;
  }
}

@media (max-width: 640px) {
  .clients-box-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .client-grid-box:nth-child(3n) {
    border-right: 1px solid rgba(255, 255, 255, 0.09);
  }
  .client-grid-box:nth-child(2n) {
    border-right: none;
  }
  .client-grid-box:nth-child(n + 9) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }
  .client-grid-box:nth-child(n + 9) {
    border-bottom: none;
  }
  .research-card {
    width: 320px;
    padding: 20px;
  }
}

/* ==========================================================================
   SECTION 3: SANJAYA STACKING CARDS ON SCROLL ("OUR WORKS")
   Hardware-accelerated sticky stacking, scaling & dimming as seen on sanjaya.framer.ai
   ========================================================================== */
.works-stack-section {
  position: relative;
  width: 100%;
  padding: 110px 24px 180px;
  background-color: transparent;
  background-image:
    radial-gradient(ellipse 65% 50% at 15% 25%, rgba(30, 64, 175, 0.28) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 85% 70%, rgba(4, 120, 87, 0.22) 0%, transparent 70%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.012) 0px, rgba(255, 255, 255, 0.012) 1px, transparent 1px, transparent 38px);
  overflow: visible;
  border-top: 1px solid rgba(56, 189, 248, 0.12);
}

/* Top Ambient Glow */
.works-ambient-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 450px;
  background: radial-gradient(ellipse at center, rgba(56, 189, 248, 0.12) 0%, rgba(37, 99, 235, 0.08) 40%, transparent 70%);
  pointer-events: none;
  filter: blur(90px);
  z-index: 1;
}

/* Header Container */
.works-header-container {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 90px auto;
  position: relative;
  z-index: 2;
  padding: 0 16px;
}

.works-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 18px;
  background: rgba(30, 64, 175, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: 9999px;
  font-family: var(--font-mono, 'Geist Mono', monospace);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ignite-cyan, #38bdf8);
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.15);
  margin-bottom: 22px;
}

.works-title {
  font-family: var(--font-display, 'Syne', sans-serif);
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.035em;
  background: linear-gradient(180deg, #ffffff 40%, #bae6fd 85%, #67e8f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 16px 0;
}

.works-subtitle {
  font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif);
  font-size: 17px;
  line-height: 1.6;
  color: #94a3b8;
  max-width: 620px;
  margin: 0 auto;
}

/* Cards Stack Container - Scroll Track */
.cards-stack-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 3;
  height: 270vh; /* Luxurious scroll track for 3-card sequence and assembled hold */
}

/* Cards Stack Stage - Pinned sticky viewport container */
.cards-stack-stage {
  position: sticky;
  top: 104px;
  width: 100%;
  height: 600px;
  z-index: 5;
}

/* Individual Stack Cards inside the stage */
.stack-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform-origin: center top;
  will-change: transform, filter;
  transition: filter 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Tiered Offsets - Exactly 12px step (User requirement: ~10px tiered deck) */
.stack-card:nth-child(1) {
  top: 0;
  z-index: 10;
}

.stack-card:nth-child(2) {
  top: 12px;
  z-index: 20;
}

.stack-card:nth-child(3) {
  top: 24px;
  z-index: 30;
}

/* Card Inner Bento with Glowing Top Accent Bar */
.stack-card-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  background: linear-gradient(145deg, rgba(12, 22, 46, 0.94) 0%, rgba(5, 10, 24, 0.98) 100%);
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9), 0 0 35px rgba(37, 99, 235, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  min-height: 560px;
  position: relative;
}

.stack-card-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-ignite-star);
  z-index: 10;
  box-shadow: 0 0 14px rgba(56, 189, 248, 0.5);
}

/* Left Column Visual / Macro Hardware Render */
.card-visual {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 480px;
  overflow: hidden;
  background: #030610;
}

.card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.stack-card:hover .card-visual img {
  transform: scale(1.03);
}

/* Right Column Content */
.card-content {
  padding: 44px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(145deg, rgba(10, 18, 38, 0.95) 0%, rgba(5, 11, 24, 0.98) 100%);
  position: relative;
}

.card-top-info {
  display: flex;
  flex-direction: column;
}

.card-meta {
  font-family: var(--font-mono, 'Geist Mono', monospace);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7dd3fc;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(56, 189, 248, 0.12);
}

.card-brand {
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #ffffff;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-brand.brand-batavia {
  font-family: var(--font-mono, 'Geist Mono', monospace);
  font-size: 20px;
  letter-spacing: 0.12em;
}

.card-brand.brand-mandala {
  font-family: 'Times New Roman', Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.card-brand.brand-pandawa {
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 22px;
  font-weight: 700;
}

.card-headline {
  font-family: var(--font-display, 'Syne', sans-serif);
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 0 0 16px 0;
}

.card-description {
  font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif);
  font-size: 15.5px;
  line-height: 1.6;
  color: #94a3b8;
  margin: 0 0 28px 0;
}

/* View Case Study CTA Button */
.card-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.28) 0%, rgba(0, 191, 165, 0.22) 100%);
  border: 1px solid rgba(56, 189, 248, 0.35);
  color: #ffffff;
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: all 0.25s ease;
  width: max-content;
}

.card-cta-btn:hover {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.45) 0%, rgba(0, 191, 165, 0.35) 100%);
  border-color: rgba(56, 189, 248, 0.65);
  transform: translateX(2px);
  box-shadow: 0 6px 25px rgba(37, 99, 235, 0.35);
}

.card-cta-btn .cta-arrow {
  font-size: 14px;
  transition: transform 0.2s ease;
}

.card-cta-btn:hover .cta-arrow {
  transform: translateX(3px);
}

/* Stats Row */
.card-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(56, 189, 248, 0.12);
  margin-top: 36px;
}

.card-stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  /* font-family: var(--font-display, 'Syne', sans-serif); */
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, #ffffff 40%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 6px;
  display: block;
}

.stat-label {
  font-family: var(--font-mono, 'Geist Mono', monospace);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7dd3fc;
  display: block;
  line-height: 1.35;
}

/* Responsive Breakpoints for Stacking Cards */
@media (max-width: 1024px) {
  .cards-stack-container {
    height: auto;
  }
  .cards-stack-stage {
    position: relative;
    top: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 36px;
  }
  .stack-card {
    position: relative !important;
    top: auto !important;
    transform: none !important;
    filter: none !important;
  }
  .stack-card:nth-child(1),
  .stack-card:nth-child(2),
  .stack-card:nth-child(3) {
    top: auto !important;
  }
  .stack-card-inner {
    grid-template-columns: 1fr;
  }
  .card-visual {
    min-height: 340px;
  }
  .card-content {
    padding: 36px 32px;
  }
}

@media (max-width: 640px) {
  .works-stack-section {
    padding: 80px 16px 120px;
  }
  .works-header-container {
    margin-bottom: 50px;
  }
  .cards-stack-stage {
    gap: 28px;
  }
  .card-content {
    padding: 28px 20px;
  }
  .card-headline {
    font-size: 22px;
  }
  .card-visual {
    min-height: 260px;
  }
  .card-stats-row {
    gap: 16px;
    margin-top: 24px;
    padding-top: 20px;
  }
  .stat-num {
    font-size: 24px;
  }
}

/* ==========================================================================
   SECTION 4: REAL RESULTS AT ENTERPRISE SCALE (ENTERPRISE IMPACT BENTO)
   Asymmetrical Bento Showcase with RefiJet, Perch Group & TIH (Telesure)
   ========================================================================== */
.enterprise-results-section {
  position: relative;
  width: 100%;
  padding: 130px 24px 150px;
  background-color: transparent;
  background-image:
    radial-gradient(ellipse 70% 50% at 20% 20%, rgba(30, 64, 175, 0.28) 0%, transparent 70%),
    radial-gradient(ellipse 65% 50% at 80% 75%, rgba(4, 120, 87, 0.22) 0%, transparent 70%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.012) 0px, rgba(255, 255, 255, 0.012) 1px, transparent 1px, transparent 38px);
  overflow: hidden;
  border-top: 1px solid rgba(56, 189, 248, 0.12);
}

.results-ambient-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(56, 189, 248, 0.14) 0%, rgba(37, 99, 235, 0.08) 40%, transparent 70%);
  pointer-events: none;
  filter: blur(100px);
  z-index: 1;
}

.results-header-container {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 70px auto;
  position: relative;
  z-index: 2;
  padding: 0 16px;
}

.results-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(30, 64, 175, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: 9999px;
  font-family: var(--font-mono, 'Geist Mono', monospace);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ignite-cyan, #38bdf8);
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.15);
  margin-bottom: 22px;
}

.kicker-spark {
  color: var(--ignite-gold, #fbbf24);
  font-size: 12px;
}

.results-title {
  font-family: var(--font-display, 'Syne', sans-serif);
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.035em;
  background: linear-gradient(180deg, #ffffff 40%, #bae6fd 85%, #67e8f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 16px 0;
}

.results-subtitle {
  font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif);
  font-size: 17px;
  line-height: 1.6;
  color: #94a3b8;
  max-width: 680px;
  margin: 0 auto 30px auto;
}

.results-hub-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  border-radius: 9999px;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.25) 0%, rgba(0, 191, 165, 0.2) 100%);
  border: 1px solid rgba(56, 189, 248, 0.35);
  color: #ffffff;
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.results-hub-cta:hover {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.45) 0%, rgba(0, 191, 165, 0.35) 100%);
  border-color: rgba(56, 189, 248, 0.7);
  box-shadow: 0 6px 25px rgba(37, 99, 235, 0.4);
  transform: translateY(-2px);
}

.results-hub-cta .hub-arrow {
  color: var(--ignite-cyan, #38bdf8);
  font-size: 14px;
  transition: transform 0.25s ease;
}

.results-hub-cta:hover .hub-arrow {
  transform: translate(3px, -3px);
}

/* --------------------------------------------------------------------------
   BENTO CONTAINER & ASYMMETRICAL TILES
   -------------------------------------------------------------------------- */
.results-bento-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  z-index: 2;
}

/* 1. Flagship Card (RefiJet) */
.bento-flagship-card {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  background: linear-gradient(145deg, rgba(12, 22, 46, 0.94) 0%, rgba(5, 10, 24, 0.98) 100%);
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.85), 0 0 40px rgba(37, 99, 235, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  position: relative;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.bento-flagship-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-ignite-star);
  z-index: 10;
  box-shadow: 0 0 14px rgba(56, 189, 248, 0.5);
}

.bento-flagship-card:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.45);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.9), 0 0 50px rgba(37, 99, 235, 0.25);
}

.flagship-content {
  padding: 48px 52px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.story-meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.story-industry-tag {
  font-family: var(--font-mono, 'Geist Mono', monospace);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ignite-cyan, #38bdf8);
  padding: 4px 12px;
  background: rgba(30, 64, 175, 0.2);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 9999px;
}

.story-status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ignite-emerald, #10b981);
  box-shadow: 0 0 8px var(--ignite-emerald, #10b981);
}

.story-client-name {
  font-family: var(--font-display, 'Syne', sans-serif);
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.story-headline {
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: #f1f5f9;
  margin-bottom: 24px;
}

.story-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid rgba(56, 189, 248, 0.12);
  border-bottom: 1px solid rgba(56, 189, 248, 0.12);
  margin-bottom: 28px;
}

.story-stat-item {
  display: flex;
  flex-direction: column;
}

.story-stat-number {
  font-family: var(--font-display, 'Syne', sans-serif);
  font-size: clamp(1.8rem, 2.5vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(180deg, #ffffff 40%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}

.story-stat-label {
  font-family: var(--font-mono, 'Geist Mono', monospace);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7dd3fc;
}

.story-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.28) 0%, rgba(0, 191, 165, 0.22) 100%);
  border: 1px solid rgba(56, 189, 248, 0.35);
  color: #ffffff;
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: all 0.25s ease;
  width: max-content;
}

.story-cta-btn:hover {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.45) 0%, rgba(0, 191, 165, 0.35) 100%);
  border-color: rgba(56, 189, 248, 0.65);
  transform: translateX(3px);
  box-shadow: 0 6px 25px rgba(37, 99, 235, 0.35);
}

.story-cta-btn .cta-arrow {
  font-size: 14px;
  transition: transform 0.2s ease;
}

.story-cta-btn:hover .cta-arrow {
  transform: translateX(3px);
}

/* Flagship Visual */
.flagship-visual {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 420px;
  overflow: hidden;
  background: #030610;
}

.flagship-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-flagship-card:hover .flagship-visual img {
  transform: scale(1.04);
}

.floating-telemetry-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(6, 11, 24, 0.88);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 12px;
  padding: 12px 18px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.telemetry-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.telemetry-title {
  font-family: var(--font-mono, 'Geist Mono', monospace);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
}

.telemetry-meta {
  font-family: var(--font-mono, 'Geist Mono', monospace);
  font-size: 11px;
  color: var(--ignite-cyan, #38bdf8);
}

/* 2. Dual Impact Pillars (Perch Group & Telesure) */
.results-pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.bento-pillar-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(145deg, rgba(12, 22, 46, 0.94) 0%, rgba(5, 10, 24, 0.98) 100%);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(37, 99, 235, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  position: relative;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.bento-pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-ignite-star);
  z-index: 10;
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.45);
}

.bento-pillar-card:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.45);
  box-shadow: 0 30px 75px rgba(0, 0, 0, 0.9), 0 0 40px rgba(37, 99, 235, 0.22);
}

.pillar-visual {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
  background: #030610;
}

.pillar-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-pillar-card:hover .pillar-visual img {
  transform: scale(1.04);
}

.pillar-floating-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: rgba(6, 11, 24, 0.88);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 9999px;
  font-family: var(--font-mono, 'Geist Mono', monospace);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ignite-cyan, #38bdf8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.pillar-content {
  padding: 36px 40px 42px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.pillar-client-name {
  font-family: var(--font-display, 'Syne', sans-serif);
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.pillar-headline {
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.45;
  color: #e2e8f0;
  margin-bottom: 24px;
  min-height: 50px;
}

.pillar-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(56, 189, 248, 0.12);
  border-bottom: 1px solid rgba(56, 189, 248, 0.12);
  margin-bottom: 24px;
}

/* Responsive Breakpoints for Section 4 */
@media (max-width: 1024px) {
  .bento-flagship-card {
    grid-template-columns: 1fr;
  }
  .flagship-visual {
    min-height: 320px;
  }
  .flagship-content {
    padding: 36px 32px;
  }
  .results-pillars-grid {
    grid-template-columns: 1fr;
  }
  .pillar-headline {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .enterprise-results-section {
    padding: 80px 16px 100px;
  }
  .results-header-container {
    margin-bottom: 40px;
  }
  .flagship-content {
    padding: 28px 20px;
  }
  .pillar-content {
    padding: 28px 20px;
  }
  .pillar-visual {
    height: 200px;
  }
  .floating-telemetry-badge {
    position: static;
    margin: 16px;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }
}





/* ============================================================================
   UNIFIED SECTION HEADINGS: "Outfit" Font + Semibold (600) + Refined Size
   Applied uniformly across ALL sections (hero section sivay)
   ============================================================================ */
.research-title,
.works-title,
.results-title,
.testimonials-title,
.industries-heading,
.security-heading,
.cta-banner-heading {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: clamp(1.85rem, 3.2vw, 2.65rem) !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  letter-spacing: -0.02em !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: none !important;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7) !important;
  margin: 0 0 14px 0 !important;
}

.research-title .text-spectrum-glow,
.works-title .text-spectrum-glow,
.results-title .text-spectrum-glow,
.testimonials-title .text-spectrum-glow,
.industries-heading .text-spectrum-glow,
.security-heading .text-spectrum-glow,
.cta-banner-heading .text-spectrum-glow,
.research-title .title-highlight,
.works-title .title-highlight,
.results-title .title-highlight,
.testimonials-title .title-highlight,
.industries-heading .title-highlight,
.security-heading .title-highlight,
.cta-banner-heading .title-highlight,
.title-highlight {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-weight: 600 !important;
  background: linear-gradient(135deg, #fbbf24 0%, #c084fc 35%, #60a5fa 70%, #22d3ee 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  display: inline-block !important;
  filter: drop-shadow(0 0 20px rgba(6, 182, 212, 0.4)) !important;
}

/* ============================================================================
   SECTION 5: TESTIMONIALS — VERTICAL 3-COLUMN TICKER
   Col 1 & 3 scroll UP, Col 2 scrolls DOWN
   Fixed-height container with top/bottom fade masks
   ============================================================================ */

@keyframes col-scroll-up {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

@keyframes col-scroll-down {
  0%   { transform: translateY(-50%); }
  100% { transform: translateY(0); }
}

/* Section Shell */
.testimonials-section {
  position: relative;
  padding: 7rem 0 7rem;
  overflow: hidden;
  background: transparent;
}

.testimonials-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 60% at 15% 50%, rgba(56,114,232,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 85% 50%, rgba(16,185,168,0.06) 0%, transparent 70%);
}

/* Header */
.testimonials-header {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem 3.5rem;
  max-width: 640px;
  margin: 0 auto;
}

.testimonials-title {
  font-family: var(--font-display, 'Syne', sans-serif);
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.035em;
  background: linear-gradient(180deg, #ffffff 40%, #bae6fd 85%, #67e8f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 1rem 0 1.2rem;
}

.testimonials-subtitle {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(180,195,230,0.72);
  max-width: 520px;
  margin: 0 auto;
}

/* ---- Columns Container ---- */
.testi-columns-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  height: 640px;
  overflow: hidden;
}

/* Top & bottom gradient masks removed as requested */
.testi-columns-container::before,
.testi-columns-container::after {
  display: none !important;
}
.testi-columns-container::before {
  top: 0;
  background: linear-gradient(to bottom, #02040a 0%, rgba(2,4,10,0.7) 50%, transparent 100%);
}
.testi-columns-container::after {
  bottom: 0;
  background: linear-gradient(to top, #02040a 0%, rgba(2,4,10,0.7) 50%, transparent 100%);
}

/* Each column */
.testi-col {
  overflow: hidden;
  position: relative;
}

/* The scrolling track inside each column */
.testi-col-track {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  will-change: transform;
}

.col-up {
  animation: col-scroll-up 28s linear infinite;
}
.col-up-slow {
  animation-duration: 36s;
}
.col-down {
  animation: col-scroll-down 32s linear infinite;
}

/* Pause on hover */
.testi-columns-container:hover .col-up,
.testi-columns-container:hover .col-down {
  animation-play-state: paused;
}

/* ---- Individual Testimonial Card ---- */
.testi-card {
  flex-shrink: 0;
  width: 100%;
  padding: 1.6rem 1.6rem 1.4rem;
  border-radius: 16px;
  background: rgba(12,18,38,0.75);
  border: 1px solid rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.05);
  transition: border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.testi-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(56,114,232,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.testi-card:hover::before { opacity: 1; }
.testi-card:hover {
  border-color: rgba(56,114,232,0.2);
  box-shadow: 0 8px 36px rgba(0,0,0,0.4), 0 0 0 1px rgba(56,114,232,0.1), inset 0 1px 0 rgba(255,255,255,0.07);
}

.testi-card--accent {
  background: rgba(8,18,36,0.78);
  border-color: rgba(16,185,168,0.08);
}
.testi-card--accent::before {
  background: linear-gradient(135deg, rgba(16,185,168,0.05) 0%, transparent 60%);
}
.testi-card--accent:hover {
  border-color: rgba(16,185,168,0.22);
  box-shadow: 0 8px 36px rgba(0,0,0,0.4), 0 0 0 1px rgba(16,185,168,0.1), inset 0 1px 0 rgba(255,255,255,0.07);
}

.testi-stars {
  font-size: 0.78rem;
  letter-spacing: 2px;
  color: #3872e8;
  margin-bottom: 0.8rem;
}
.testi-card--accent .testi-stars { color: #10b9a8; }

.testi-quote {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(210,220,245,0.85);
  margin: 0 0 1.25rem;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(56,114,232,0.35);
  flex-shrink: 0;
}
.testi-card--accent .testi-avatar { border-color: rgba(16,185,168,0.35); }

.testi-info { display: flex; flex-direction: column; gap: 0.12rem; }

.testi-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.83rem;
  font-weight: 700;
  color: #e8eeff;
}

.testi-role {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.74rem;
  color: rgba(140,160,205,0.68);
}

/* Responsive */
@media (max-width: 900px) {
  .testi-columns-container {
    grid-template-columns: repeat(2, 1fr);
    height: 560px;
  }
  .testi-col:last-child { display: none; }
}
@media (max-width: 600px) {
  .testi-columns-container {
    grid-template-columns: 1fr;
    height: 480px;
    padding: 0 1rem;
  }
  .testi-col:not(:first-child) { display: none; }
}

/* ============================================================================
   SECTION 6: INDUSTRIES WE TRANSFORM
   Left content + right horizontally scrollable card strip
   ============================================================================ */

.industries-section {
  position: relative;
  width: 100%;
  padding: 8rem 0;
  overflow: hidden;
  background-color: transparent;
  background-image:
    radial-gradient(ellipse 65% 50% at 20% 20%, rgba(30, 64, 175, 0.22) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 75%, rgba(4, 120, 87, 0.18) 0%, transparent 70%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.012) 0px, rgba(255, 255, 255, 0.012) 1px, transparent 1px, transparent 38px);
  border-top: 1px solid rgba(56, 189, 248, 0.12);
}

.industries-ambient {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 450px;
  background: radial-gradient(ellipse at center, rgba(56, 189, 248, 0.12) 0%, rgba(37, 99, 235, 0.08) 50%, transparent 75%);
  pointer-events: none;
  filter: blur(90px);
  z-index: 1;
}

.industries-container {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
}

.industries-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 3.5rem auto;
}

.industries-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(30, 64, 175, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: 9999px;
  font-family: var(--font-mono, 'Geist Mono', monospace);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ignite-cyan, #38bdf8);
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.15);
  margin-bottom: 22px;
}

.industries-heading {
  font-family: var(--font-display, 'Syne', sans-serif);
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.035em;
  background: linear-gradient(180deg, #ffffff 40%, #bae6fd 85%, #67e8f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 18px 0;
  text-align: center;
}

.industries-subtext {
  font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif);
  font-size: 17px;
  line-height: 1.65;
  color: #94a3b8;
  max-width: 660px;
  margin: 0 auto 2.5rem auto;
  text-align: center;
}

/* Filter Tabs */
.industry-tabs-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.ind-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(180, 205, 240, 0.75);
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.ind-tab-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(56, 189, 248, 0.3);
  color: #ffffff;
  transform: translateY(-1px);
}

.ind-tab-btn.active {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.35) 0%, rgba(0, 191, 165, 0.25) 100%);
  border: 1px solid rgba(56, 189, 248, 0.55);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.tab-icon {
  font-size: 14px;
}

/* Bento Showcase Grid */
.ind-bento-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.75rem;
  align-items: stretch;
}

/* Left Featured Card */
.ind-feature-card {
  position: relative;
  min-height: 520px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(56, 189, 248, 0.25);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(37, 99, 235, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.25rem;
  background-color: #050a16;
}

.ind-feature-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 0.4s ease, transform 0.8s ease;
  z-index: 0;
}

.ind-feature-card:hover .ind-feature-bg {
  transform: scale(1.03);
}

.ind-feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(2, 4, 10, 0.75) 0%,
    rgba(3, 8, 20, 0.6) 35%,
    rgba(2, 4, 10, 0.95) 100%
  );
  z-index: 1;
}

.ind-feature-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.ind-feature-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.ind-sector-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono, 'Geist Mono', monospace);
  font-size: 11px;
  font-weight: 700;
  color: var(--ignite-cyan, #38bdf8);
  background: rgba(8, 16, 36, 0.75);
  border: 1px solid rgba(56, 189, 248, 0.35);
  padding: 4px 14px;
  border-radius: 9999px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.ind-live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono, 'Geist Mono', monospace);
  font-size: 11px;
  color: #34d399;
  background: rgba(4, 120, 87, 0.2);
  border: 1px solid rgba(16, 185, 129, 0.35);
  padding: 4px 12px;
  border-radius: 9999px;
  backdrop-filter: blur(10px);
}

.ind-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #10b981;
  box-shadow: 0 0 10px #10b981;
}

.ind-feature-main {
  margin: auto 0;
  padding: 2.5rem 0 1.5rem 0;
}

.ind-feature-title {
  font-family: var(--font-display, 'Syne', sans-serif);
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.ind-metric-banner {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.ind-hero-stat {
  font-family: var(--font-display, 'Syne', sans-serif);
  font-size: clamp(3rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #ffffff 30%, #38bdf8 70%, #00bfa5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ind-stat-subtitle {
  font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif);
  font-size: 1.05rem;
  color: rgba(200, 220, 255, 0.85);
  font-weight: 500;
  max-width: 320px;
}

/* Audio / Dialogue Stream Simulator */
.ind-dialogue-box {
  background: rgba(8, 14, 30, 0.8);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 16px;
  padding: 1.15rem 1.35rem;
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.dialogue-turn {
  margin-bottom: 0.65rem;
  font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif);
  font-size: 0.85rem;
  line-height: 1.55;
}

.dialogue-turn:last-child {
  margin-bottom: 0;
}

.turn-speaker {
  font-family: var(--font-mono, 'Geist Mono', monospace);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-right: 6px;
}

.speaker-user { color: #94a3b8; }
.speaker-ai { color: #38bdf8; }

.turn-text {
  color: #e2e8f0;
}

.dialogue-audio-bar {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.audio-bars {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  height: 16px;
}

.audio-bar-seg {
  width: 3px;
  background-color: var(--ignite-cyan, #38bdf8);
  border-radius: 2px;
  animation: barBounce 1.2s ease-in-out infinite alternate;
}

.audio-bar-seg:nth-child(1) { height: 6px; animation-delay: 0.1s; }
.audio-bar-seg:nth-child(2) { height: 14px; animation-delay: 0.3s; }
.audio-bar-seg:nth-child(3) { height: 8px; animation-delay: 0.2s; }
.audio-bar-seg:nth-child(4) { height: 16px; animation-delay: 0.4s; }
.audio-bar-seg:nth-child(5) { height: 10px; animation-delay: 0.15s; }

@keyframes barBounce {
  0% { height: 4px; }
  100% { height: 16px; }
}

.audio-status-tag {
  font-family: var(--font-mono, 'Geist Mono', monospace);
  font-size: 0.72rem;
  color: rgba(140, 165, 210, 0.75);
  margin-left: 8px;
}

/* Right Side: Capabilities Stack */
.ind-matrix-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ind-card-cell {
  background: rgba(8, 14, 30, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 1.35rem 1.5rem;
  backdrop-filter: blur(14px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: flex-start;
  gap: 1.15rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.ind-card-cell:hover {
  background: rgba(12, 22, 48, 0.85);
  border-color: rgba(56, 189, 248, 0.4);
  transform: translateX(4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5), 0 0 25px rgba(37, 99, 235, 0.2);
}

.ind-cell-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, rgba(0, 191, 165, 0.15) 100%);
  border: 1px solid rgba(56, 189, 248, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

.ind-cell-body {
  flex-grow: 1;
}

.ind-cell-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.35rem;
}

.ind-cell-title {
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 1rem;
  font-weight: 700;
  color: #f1f5f9;
}

.ind-cell-stat {
  font-family: var(--font-mono, 'Geist Mono', monospace);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ignite-cyan, #38bdf8);
}

.ind-cell-desc {
  font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif);
  font-size: 0.84rem;
  line-height: 1.5;
  color: rgba(160, 180, 215, 0.7);
}

/* CTA Action Card inside stack */
.ind-cta-card {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.25) 0%, rgba(0, 191, 165, 0.18) 100%);
  border: 1px solid rgba(56, 189, 248, 0.4);
  border-radius: 20px;
  padding: 1.4rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.ind-cta-text h4 {
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 4px 0;
}

.ind-cta-text p {
  font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif);
  font-size: 0.82rem;
  color: rgba(180, 205, 245, 0.75);
  margin: 0;
}

.ind-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 9999px;
  background: var(--gradient-primary-btn);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 18px rgba(37, 99, 235, 0.45);
  transition: all 0.25s ease;
}

.ind-cta-btn:hover {
  background: var(--gradient-primary-btn-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(56, 189, 248, 0.6);
}

/* ============================================================================
   SECTION 7: ENTERPRISE CYBER VAULT & SOVEREIGN ARCHITECTURE
   Modern Stealth Obsidian Bento + Interactive HSM Terminal
   ============================================================================ */
.security-section {
  position: relative;
  width: 100%;
  padding: 8rem 0 8.5rem;
  overflow: hidden;
  background-color: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.security-ambient {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(80px);
  z-index: 1;
}

.security-container {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
}

.security-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 3.5rem auto;
}

.security-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9999px;
  font-family: var(--font-mono, 'Geist Mono', monospace);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e2e8f0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  margin-bottom: 22px;
}

.security-subtext {
  font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif);
  font-size: 16.5px;
  line-height: 1.65;
  color: #94a3b8;
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
}

/* ============================================================================
   TIER 1: INTERACTIVE CYBER COMMAND DECK (BENTO)
   ============================================================================ */
.sec-command-deck {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 1.75rem;
  margin-bottom: 3.5rem;
  align-items: stretch;
}

/* Left: HSM Terminal */
.sec-hsm-terminal {
  background: rgba(10, 10, 14, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  backdrop-filter: blur(20px);
  padding: 1.85rem;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.sec-hsm-terminal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.18) 50%, transparent 100%);
}

.sec-terminal-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.terminal-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.t-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.dot-red { background: #ef4444; opacity: 0.75; }
.dot-yellow { background: #f59e0b; opacity: 0.75; }
.dot-green { background: #10b981; opacity: 0.75; }

.terminal-live-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono, 'Geist Mono', monospace);
  font-size: 11px;
  font-weight: 700;
  color: #34d399;
  letter-spacing: 0.08em;
}

.radar-ping {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
  animation: radarPulse 2s infinite ease-in-out;
}

@keyframes radarPulse {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 14px #10b981; }
  100% { transform: scale(0.9); opacity: 0.6; }
}

.terminal-node-tag {
  font-family: var(--font-mono, 'Geist Mono', monospace);
  font-size: 10px;
  color: #64748b;
  letter-spacing: 0.1em;
}

/* Architecture Tabs */
.sec-arch-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 1.5rem;
}

.sec-tab-btn {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
  color: #94a3b8;
  font-family: 'Outfit', sans-serif;
  text-align: left;
}

.sec-tab-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.12);
}

.sec-tab-btn.active {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

.tab-idx {
  font-family: var(--font-mono, 'Geist Mono', monospace);
  font-size: 11px;
  color: #38bdf8;
  font-weight: 700;
}

.tab-name {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

/* View Screens */
.sec-hud-viewport {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sec-tab-panel {
  display: none;
  flex-direction: column;
  gap: 1.25rem;
  animation: secPanelFade 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sec-tab-panel.active {
  display: flex;
}

@keyframes secPanelFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.hud-chip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.hud-chip {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.chip-label {
  font-family: var(--font-mono, 'Geist Mono', monospace);
  font-size: 9.5px;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.08em;
}

.chip-val {
  font-family: var(--font-mono, 'Geist Mono', monospace);
  font-size: 12px;
  font-weight: 700;
  color: #f1f5f9;
}

.text-accent-green {
  color: #34d399 !important;
}

/* Flow Diagram */
.hud-flow-diagram {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  padding: 1.25rem 1rem;
}

.flow-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  flex: 1;
}

.flow-stage-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
}

.flow-stage.stage-highlight .flow-stage-icon {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.35);
  color: #34d399;
  box-shadow: 0 0 16px rgba(16, 185, 129, 0.25);
}

.flow-stage-name {
  font-family: 'Outfit', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  color: #f1f5f9;
}

.flow-stage-sub {
  font-family: var(--font-mono, 'Geist Mono', monospace);
  font-size: 10px;
  color: #64748b;
}

.flow-connector {
  flex: 0.6;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.flow-beam {
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #38bdf8, transparent);
  animation: flowBeam 2.5s infinite linear;
}

@keyframes flowBeam {
  0% { left: -50%; }
  100% { left: 100%; }
}

/* Crypto Log */
.hud-crypto-log {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--font-mono, 'Geist Mono', monospace);
  font-size: 11px;
}

.crypto-log-row {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #94a3b8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.log-ts { color: #64748b; font-size: 10px; }
.log-tag { color: #38bdf8; font-weight: 700; }
.log-msg { color: #cbd5e1; flex: 1; overflow: hidden; text-overflow: ellipsis; }
.log-badge-ok {
  font-size: 9.5px;
  font-weight: 700;
  color: #34d399;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 2px 6px;
  border-radius: 4px;
}
.log-badge-sec {
  font-size: 9.5px;
  font-weight: 700;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.25);
  padding: 2px 6px;
  border-radius: 4px;
}

/* Sovereignty View */
.hud-sovereign-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.sov-card {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 14px;
}

.sov-card-icon { font-size: 20px; margin-bottom: 6px; }
.sov-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}
.sov-card-p {
  font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif);
  font-size: 12px;
  line-height: 1.5;
  color: #94a3b8;
  margin: 0;
}

/* Uptime Board View */
.hud-uptime-board {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.uptime-board-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ubh-title {
  font-family: var(--font-mono, 'Geist Mono', monospace);
  font-size: 10.5px;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.08em;
}

.ubh-stat {
  font-family: var(--font-mono, 'Geist Mono', monospace);
  font-size: 13px;
  font-weight: 700;
  color: #34d399;
}

.uptime-bar-grid {
  display: grid;
  grid-template-columns: repeat(30, 1fr);
  gap: 3px;
  height: 28px;
}

.bar-unit {
  background: #10b981;
  border-radius: 2px;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.bar-unit:hover {
  opacity: 1;
  box-shadow: 0 0 8px #10b981;
}

.uptime-caption {
  font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif);
  font-size: 11.5px;
  color: #94a3b8;
  margin: 0;
}

/* Right Bento Side Cards */
.sec-side-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sec-side-card {
  background: rgba(10, 10, 14, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 1.85rem;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.65);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sec-side-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.75);
}

.sec-side-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.ssc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.ssc-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #38bdf8;
}

.ssc-badge {
  font-family: var(--font-mono, 'Geist Mono', monospace);
  font-size: 10.5px;
  font-weight: 700;
  color: #34d399;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 3px 10px;
  border-radius: 9999px;
  letter-spacing: 0.05em;
}

.ssc-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.95rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

.ssc-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 0.55rem;
}

.ssc-desc {
  font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif);
  font-size: 0.88rem;
  line-height: 1.6;
  color: #94a3b8;
  margin-bottom: 1.25rem;
}

.ssc-meta-row {
  display: flex;
  gap: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ssc-meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.smi-val {
  font-family: var(--font-mono, 'Geist Mono', monospace);
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
}

.smi-lbl {
  font-family: var(--font-mono, 'Geist Mono', monospace);
  font-size: 10px;
  color: #64748b;
}

/* ============================================================================
   TIER 2: 6 COMPLIANCE HOLOGRAPHIC BADGES VAULT GRID
   ============================================================================ */
.security-badges-vault {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.compliance-vault-card {
  background: rgba(10, 10, 14, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 1.75rem 1.6rem;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.compliance-vault-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(16, 16, 22, 0.95);
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.75);
}

.compliance-vault-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
}

.vault-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.vault-emblem {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.vault-emblem svg {
  width: 24px;
  height: 24px;
}

.vault-audit-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono, 'Geist Mono', monospace);
  font-size: 10px;
  font-weight: 700;
  color: #34d399;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 3px 9px;
  border-radius: 9999px;
  white-space: nowrap;
}

.vault-body {
  margin-bottom: 1.5rem;
}

.vault-cert-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.3rem;
  letter-spacing: -0.015em;
}

.vault-cert-authority {
  display: block;
  font-family: var(--font-mono, 'Geist Mono', monospace);
  font-size: 10.5px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.vault-cert-desc {
  font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif);
  font-size: 0.88rem;
  line-height: 1.6;
  color: #94a3b8;
  margin: 0;
}

.vault-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.vault-badge-tag {
  font-family: var(--font-mono, 'Geist Mono', monospace);
  font-size: 9.5px;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.08em;
}

.vault-link {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #f1f5f9;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.vault-link:hover {
  color: #38bdf8;
  transform: translateX(2px);
}

@media (max-width: 1024px) {
  .sec-command-deck {
    grid-template-columns: 1fr;
  }
  .security-badges-vault {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .sec-arch-tabs {
    grid-template-columns: 1fr;
  }
  .hud-chip-grid {
    grid-template-columns: 1fr;
  }
  .hud-flow-diagram {
    flex-direction: column;
    gap: 12px;
  }
  .flow-connector {
    width: 2px;
    height: 24px;
  }
  .hud-sovereign-cards {
    grid-template-columns: 1fr;
  }
  .security-badges-vault {
    grid-template-columns: 1fr;
  }
}

/* ============================================================================
   SECTION 8: CALL TO ACTION ("A New Age of Customer Service")
   With Ignite Signature Theme Palette (Midnight, Sapphire & Cyan Aura)
   ============================================================================ */
.cta-banner-section {
  position: relative;
  width: 100%;
  padding: 8.5rem 1.5rem 8.5rem;
  background-color: transparent;
  background-image:
    radial-gradient(ellipse 65% 55% at 20% 30%, rgba(30, 64, 175, 0.28) 0%, transparent 70%),
    radial-gradient(ellipse 65% 55% at 80% 70%, rgba(4, 120, 87, 0.22) 0%, transparent 70%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.012) 0px, rgba(255, 255, 255, 0.012) 1px, transparent 1px, transparent 38px);
  overflow: hidden;
  border-top: 1px solid rgba(56, 189, 248, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cta-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.cta-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0.4;
  pointer-events: none;
}

.cta-glow-left {
  top: 50%;
  left: -10%;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(37, 99, 235, 0.45) 0%, rgba(30, 64, 175, 0.15) 55%, transparent 75%);
}

.cta-glow-right {
  top: 50%;
  right: -10%;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(0, 191, 165, 0.4) 0%, rgba(4, 120, 87, 0.15) 55%, transparent 75%);
}

.cta-banner-container {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono, 'Geist Mono', monospace);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ignite-cyan, #38bdf8);
  background: rgba(30, 64, 175, 0.18);
  border: 1px solid rgba(56, 189, 248, 0.35);
  padding: 6px 18px;
  border-radius: 9999px;
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.18);
  margin-bottom: 24px;
}

.cta-banner-heading {
  font-family: var(--font-display, 'Syne', sans-serif);
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.035em;
  background: linear-gradient(180deg, #ffffff 40%, #bae6fd 85%, #67e8f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 20px 0;
  text-align: center;
}

.cta-banner-subtext {
  font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif);
  font-size: 1.15rem;
  color: rgba(180, 205, 245, 0.82);
  line-height: 1.65;
  margin: 0 auto 36px auto;
  max-width: 540px;
  text-align: center;
}

.cta-banner-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.cta-main-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 34px;
  border-radius: 9999px;
  background: var(--gradient-primary-btn, linear-gradient(135deg, #1d4ed8 0%, #2563eb 50%, #00bfa5 100%));
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(37, 99, 235, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.4);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.cta-main-btn:hover {
  background: var(--gradient-primary-btn-hover, linear-gradient(135deg, #2563eb 0%, #38bdf8 50%, #10b981 100%));
  transform: translateY(-2px);
  box-shadow: 0 8px 34px rgba(56, 189, 248, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.6);
}

.cta-sec-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(56, 189, 248, 0.25);
  color: #e2e8f0;
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  backdrop-filter: blur(10px);
}

.cta-sec-btn:hover {
  background: rgba(30, 64, 175, 0.2);
  border-color: rgba(56, 189, 248, 0.5);
  color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .ind-bento-grid {
    grid-template-columns: 1fr;
  }
  .security-pillars-bar {
    grid-template-columns: 1fr;
  }
  .security-badges-vault {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .security-badges-vault {
    grid-template-columns: 1fr;
  }
  .ind-feature-card {
    min-height: 420px;
    padding: 1.5rem;
  }
  .ind-hero-stat {
    font-size: 2.8rem;
  }
  .ind-cta-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================================================
   LUXURY ENTERPRISE FOOTER
   ============================================================================ */
.site-footer {
  position: relative;
  background-color: rgba(1, 3, 8, 0.7); backdrop-filter: blur(16px);
  color: #94a3b8;
  padding: 5.5rem 0 3rem;
  overflow: hidden;
}

.footer-ambient {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 350px;
  background: radial-gradient(ellipse at top center, rgba(56, 114, 232, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.footer-container {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.15fr;
  gap: 4rem;
  margin-bottom: 4.5rem;
}

/* Brand Column */
.footer-brand-col {
  display: flex;
  flex-direction: column;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 1.25rem;
  text-decoration: none;
}

.footer-logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.footer-tagline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(160, 180, 220, 0.65);
  max-width: 320px;
  margin-bottom: 2rem;
}

.footer-controls {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-lang-picker {
  position: relative;
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9999px;
  padding: 6px 14px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.footer-lang-picker:hover {
  border-color: rgba(56, 189, 248, 0.35);
  background: rgba(255, 255, 255, 0.06);
}

.lang-icon {
  font-size: 14px;
  margin-right: 6px;
}

.lang-select {
  background: transparent;
  border: none;
  color: #e2e8f0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 16px;
}

.lang-select option {
  background: #090e1c;
  color: #ffffff;
}

.lang-chevron {
  position: absolute;
  right: 12px;
  font-size: 10px;
  color: #94a3b8;
  pointer-events: none;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(180, 200, 235, 0.75);
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-link:hover {
  background: rgba(56, 114, 232, 0.18);
  border-color: rgba(56, 189, 248, 0.4);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Nav Columns */
.footer-col {}

.footer-col-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.02em;
  margin: 0 0 1.35rem 0;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  color: rgba(160, 180, 220, 0.65);
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-link:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.footer-contact-email,
.footer-contact-phone {
  color: #e2e8f0;
  font-weight: 500;
}

.footer-link-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hiring-pill {
  font-family: var(--font-mono, 'Geist Mono', monospace);
  font-size: 10px;
  font-weight: 700;
  color: #10b9a8;
  background: rgba(16, 185, 168, 0.12);
  border: 1px solid rgba(16, 185, 168, 0.3);
  padding: 1px 7px;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Status Card */
.footer-status-card {
  margin-top: 2rem;
  padding: 1rem 1.15rem;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.status-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #10b9a8;
  box-shadow: 0 0 10px #10b9a8;
}

.status-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #e2e8f0;
}

.status-uptime {
  display: block;
  font-family: var(--font-mono, 'Geist Mono', monospace);
  font-size: 0.72rem;
  color: rgba(140, 165, 210, 0.6);
  padding-left: 16px;
}

/* Footer Bottom Bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-copy {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  color: rgba(140, 160, 200, 0.5);
}

.footer-meta-tags {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.meta-tag {
  font-family: var(--font-mono, 'Geist Mono', monospace);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(140, 165, 210, 0.65);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 3px 8px;
  border-radius: 6px;
}

.back-to-top-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(180, 200, 235, 0.75);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.back-to-top-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  transform: translateY(-2px);
}

.top-arrow {
  font-size: 13px;
  transition: transform 0.2s ease;
}

.back-to-top-btn:hover .top-arrow {
  transform: translateY(-2px);
}

/* Responsive Footer */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* ============================================================================
   GLOBAL CONTAINER UNIFICATION (EXACT SAME MAX-WIDTH ACROSS ALL SECTIONS)
   ============================================================================ */
.sanjaya-header-container,
.sanjaya-hero-content,
.trusted-clients-container,
.research-header,
.cards-stack-container,
.results-bento-container,
.testi-columns-container,
.industries-container,
.security-container,
.footer-container {
  max-width: 1240px !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  box-sizing: border-box !important;
}

/* ============================================================================
   GLOBAL UNIFIED CARD SURFACES (ELIMINATES BLUE CARDS - 100% SLEEK OBSIDIAN BLACK)
   ============================================================================ */
.research-card,
.research-stat-card,
.stack-card-inner,
.card-content,
.bento-flagship-card,
.bento-pillar-card,
.testi-card,
.testi-card--accent,
.ind-feature-card,
.ind-dialogue-box,
.ind-card-cell,
.ind-cta-card,
.sec-hsm-terminal,
.sec-side-card,
.compliance-vault-card,
.client-grid-box,
.footer-status-card {
  background: rgba(10, 10, 14, 0.92) !important;
  background-color: #0a0a0e !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6) !important;
}

.research-card:hover,
.stack-card-inner:hover,
.bento-flagship-card:hover,
.bento-pillar-card:hover,
.testi-card:hover,
.ind-card-cell:hover,
.sec-side-card:hover,
.compliance-vault-card:hover,
.client-grid-box:hover {
  border-color: rgba(255, 255, 255, 0.22) !important;
  background: rgba(15, 15, 20, 0.96) !important;
  background-color: #0f0f14 !important;
}

/* Optimize Sliding Testimonials Track for Maximum Scroll Performance */
.testi-col-track {
  will-change: transform;
  transform: translate3d(0, 0, 0);
}
