/* ==========================================================================
   TECHNOSOFT MASTERS INC. - Official Website Stylesheet
   Theme: Futuristic IT Network Cyber Navy (Full Dark Theme)
   Tagline: INNOVATE • AUTOMATE • ELEVATE
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* --- CSS Variables & Design System --- */
:root {
  /* Futuristic Cyber Navy Palette */
  --bg-primary: #020612;
  --bg-secondary: #050f24;
  --bg-tertiary: #081636;
  --bg-card: rgba(5, 12, 28, 0.88);
  --bg-card-hover: rgba(8, 18, 42, 0.96);
  --bg-glass: rgba(4, 10, 24, 0.82);
  --bg-glass-heavy: rgba(3, 8, 20, 0.94);

  /* Gold & Amber Palette */
  --gold-primary: #f59e0b;
  --gold-light: #fbbf24;
  --gold-warm: #f3c64c;
  --gold-hover: #d97706;
  --gold-dark: #b45309;
  --gold-glow: rgba(245, 158, 11, 0.4);
  --gold-subtle: rgba(245, 158, 11, 0.1);
  --gold-border: rgba(245, 158, 11, 0.35);

  /* Blue & Cyan Palette */
  --blue-primary: #0072f5;
  --blue-light: #0284c7;
  --blue-cyan: #00d2ff;
  --blue-deep: #004ecc;
  --blue-glow: rgba(0, 210, 255, 0.4);
  --blue-subtle: rgba(0, 114, 245, 0.12);
  --blue-border: rgba(0, 210, 255, 0.3);

  /* Gradients */
  --grad-blue-gold: linear-gradient(135deg, #00d2ff 0%, #0072f5 50%, #f59e0b 100%);
  --grad-gold: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
  --grad-gold-text: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
  --grad-blue-text: linear-gradient(135deg, #00d2ff 0%, #0072f5 50%, #004ecc 100%);
  --grad-accent-btn: linear-gradient(135deg, #0072f5 0%, #004ecc 100%);
  --grad-gold-btn: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  --grad-dark-card: linear-gradient(180deg, rgba(8, 18, 42, 0.9) 0%, rgba(4, 10, 24, 0.95) 100%);

  /* Text Colors */
  --text-main: #ffffff;
  --text-muted: #cbd5e1;
  --text-dim: #94a3b8;
  --text-gold: #f59e0b;
  --text-blue: #00d2ff;

  /* Borders & Shadows */
  --border-subtle: rgba(0, 210, 255, 0.16);
  --border-glow: rgba(0, 210, 255, 0.35);
  --shadow-card: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 114, 245, 0.15);
  --shadow-card-hover: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(0, 210, 255, 0.25);
  --shadow-gold: 0 8px 30px rgba(245, 158, 11, 0.35);
  --shadow-blue: 0 8px 30px rgba(0, 114, 245, 0.4);

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-brand: 'Cinzel', 'Plus Jakarta Sans', serif;

  /* Layout */
  --container-max: 1240px;
  --header-height: 84px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 26px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Base & Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #020612;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #0072f5 0%, #f59e0b 100%);
  border-radius: 5px;
  border: 2px solid #020612;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #00d2ff 0%, #fbbf24 100%);
}

::selection {
  background: rgba(0, 210, 255, 0.35);
  color: #ffffff;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  color-scheme: dark;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Ambient Deep Cyber Lighting */
body::before {
  content: '';
  position: fixed;
  top: -15vw;
  left: 10vw;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(0, 114, 245, 0.08) 0%, rgba(0, 210, 255, 0.03) 45%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(60px);
}

body::after {
  content: '';
  position: fixed;
  bottom: -15vw;
  right: 5vw;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.06) 0%, rgba(0, 114, 245, 0.04) 45%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(60px);
}

/* Dynamic Interactive Mouse Ambient Spotlight */
#cursor-spotlight {
  position: fixed;
  top: 0;
  left: 0;
  width: 600px;
  height: 600px;
  margin-top: -300px;
  margin-left: -300px;
  background: radial-gradient(circle, rgba(0, 210, 255, 0.07) 0%, rgba(245, 158, 11, 0.04) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

/* Subtle Geometric Pattern Overlay */
.bg-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(to right, rgba(0, 210, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 210, 255, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse at center, black 50%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 50%, transparent 85%);
  pointer-events: none;
  z-index: 1;
}

/* Section Divider with Glowing Accent */
.section-divider {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 210, 255, 0.3) 25%, rgba(245, 158, 11, 0.5) 50%, rgba(0, 210, 255, 0.3) 75%, transparent 100%);
  position: relative;
  z-index: 2;
}

.section-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-warm);
  box-shadow: 0 0 12px var(--gold-warm), 0 0 20px rgba(0, 210, 255, 0.6);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
  z-index: 2;
}

section {
  position: relative;
  padding: 110px 0;
  z-index: 2;
}

.section-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 60px auto;
  position: relative;
}

.section-header::before {
  content: '';
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(500px, 90vw);
  height: 180px;
  background: radial-gradient(ellipse, rgba(0, 210, 255, 0.12) 0%, rgba(245, 158, 11, 0.08) 50%, transparent 75%);
  pointer-events: none;
  filter: blur(40px);
  z-index: -1;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border-radius: var(--radius-full);
  background: rgba(4, 10, 24, 0.85);
  border: 1px solid var(--blue-border);
  color: #00d2ff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5), 0 0 14px rgba(0, 210, 255, 0.2);
  backdrop-filter: blur(10px);
}

.section-tag.gold-tag {
  background: rgba(4, 10, 24, 0.85);
  border-color: var(--gold-border);
  color: var(--gold-warm);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5), 0 0 14px rgba(245, 158, 11, 0.2);
}

.tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00d2ff;
  box-shadow: 0 0 8px #00d2ff;
  animation: pulse-glow 2s infinite ease-in-out;
}

.gold-tag .tag-dot {
  background: var(--gold-warm);
  box-shadow: 0 0 8px var(--gold-warm);
}

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.4); opacity: 1; }
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 2.8vw, 2.45rem);
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: -0.018em;
  margin-bottom: 18px;
  color: #ffffff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.7);
}

@keyframes gold-shimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.gradient-text-gold {
  background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 35%, #fde68a 50%, #f59e0b 65%, #fbbf24 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gold-shimmer 6s linear infinite;
  display: inline-block;
  font-weight: 800;
}

.gradient-text-blue {
  background: linear-gradient(135deg, #00d2ff 0%, #0072f5 50%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 800;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==========================================================================
   LUMINOUS GLASS CARDS (Cyber Navy Mode)
   ========================================================================== */
.glass-card {
  background: rgba(5, 12, 28, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 210, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 34px;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 114, 245, 0.15);
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2.5px;
  background: linear-gradient(90deg, transparent, #00d2ff, #f59e0b, transparent);
  opacity: 0.6;
  transition: var(--transition-smooth);
  pointer-events: none;
}

.glass-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    60deg,
    transparent 40%,
    rgba(255, 255, 255, 0.08) 45%,
    rgba(0, 210, 255, 0.1) 50%,
    rgba(245, 158, 11, 0.08) 55%,
    transparent 60%
  );
  transform: translateX(-100%) rotate(25deg);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.glass-card:hover::after {
  transform: translateX(100%) rotate(25deg);
}

.glass-card:hover {
  background: rgba(8, 18, 42, 0.96);
  border-color: rgba(0, 210, 255, 0.5);
  transform: translateY(-7px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 210, 255, 0.28);
}

.glass-card:hover::before {
  opacity: 1;
  height: 3.5px;
}

.glass-card.gold-hover:hover {
  border-color: rgba(245, 158, 11, 0.55);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(245, 158, 11, 0.3);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  text-align: center;
  z-index: 1;
}

.btn-primary {
  background: var(--grad-accent-btn);
  color: #ffffff;
  box-shadow: 0 4px 22px rgba(0, 114, 245, 0.55);
  border: 1px solid rgba(0, 210, 255, 0.5);
}

.btn-primary:hover {
  box-shadow: 0 8px 30px rgba(0, 114, 245, 0.8), 0 0 20px rgba(0, 210, 255, 0.6);
  transform: translateY(-3px) scale(1.02);
  color: #ffffff;
}

.btn-gold {
  background: var(--grad-gold-btn);
  color: #000000;
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-gold:hover {
  box-shadow: 0 8px 28px rgba(245, 158, 11, 0.7);
  transform: translateY(-2px) scale(1.03);
  color: #000000;
}

.btn-secondary {
  background: rgba(4, 10, 22, 0.8);
  border: 1.5px solid rgba(0, 210, 255, 0.35);
  color: #ffffff;
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

.btn-secondary:hover {
  background: rgba(8, 18, 40, 0.95);
  border-color: #00d2ff;
  color: #00d2ff;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(0, 210, 255, 0.35);
}

.btn-icon {
  display: inline-flex;
  transition: transform var(--transition-fast);
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(2, 6, 18, 0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 210, 255, 0.12);
  transition: var(--transition-smooth);
}

.site-header.scrolled {
  background: rgba(2, 6, 18, 0.95);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(245, 158, 11, 0.3);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.8);
  height: 74px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  z-index: 1002;
}

.brand-emblem-wrap {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, #00d2ff, #f59e0b);
  box-shadow: 0 0 18px rgba(0, 210, 255, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.brand-logo:hover .brand-emblem-wrap {
  transform: scale(1.06);
  box-shadow: 0 0 26px rgba(245, 158, 11, 0.6);
}

.brand-emblem {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #ffffff;
}

.brand-text-block {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #ffffff;
  line-height: 1.15;
  display: flex;
  align-items: center;
  gap: 4px;
}

.brand-name .gold-highlight {
  color: #f59e0b;
}

.brand-tagline-sub {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-top: 3px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #cbd5e1;
  position: relative;
  padding: 6px 0;
  transition: var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #00d2ff, #f59e0b);
  border-radius: 2px;
  transition: width var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: #00d2ff;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.drawer-cta-wrap {
  display: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-toggle {
  display: none;
  background: rgba(4, 10, 22, 0.85);
  border: 1.5px solid rgba(0, 210, 255, 0.3);
  border-radius: var(--radius-sm);
  color: #ffffff;
  padding: 8px 10px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  z-index: 1002;
  transition: var(--transition-fast);
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #ffffff;
  transition: var(--transition-fast);
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background-color: #f59e0b;
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background-color: #f59e0b;
}

/* ==========================================================================
   FUTURISTIC HERO SECTION
   ========================================================================== */
.hero-section {
  min-height: 100vh;
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 90px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: var(--hero-bg-deep);
  color: #ffffff;
}

.hero-canvas-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

#hero-network-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-bg-deep {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 45%, #081636 0%, #050f24 45%, #020612 100%);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.hero-light-beams {
  position: absolute;
  top: -20%;
  right: 15%;
  width: 50vw;
  height: 70vh;
  background: radial-gradient(ellipse at center, rgba(0, 210, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(50px);
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 4;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 20px;
  background: rgba(4, 10, 24, 0.85);
  border: 1.5px solid rgba(0, 210, 255, 0.35);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 22px;
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6), 0 0 16px rgba(0, 210, 255, 0.2);
}

.hero-badge-accent {
  color: #ffffff;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 3.4vw, 2.85rem);
  font-weight: 800;
  line-height: 1.24;
  letter-spacing: -0.018em;
  margin-bottom: 22px;
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.hero-headline .highlight-word {
  background: linear-gradient(135deg, #00d2ff 0%, #0072f5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 16px rgba(0, 210, 255, 0.6));
}

.hero-supporting-text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #cbd5e1;
  margin-bottom: 34px;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.hero-secondary-tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-style: italic;
  color: #f59e0b;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}

.tagline-glow-bar {
  display: inline-block;
  width: 3px;
  height: 18px;
  background: #f59e0b;
  box-shadow: 0 0 10px #f59e0b;
  border-radius: 2px;
}

.hero-partner-chips {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.partner-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: var(--radius-full);
  background: rgba(4, 10, 24, 0.85);
  border: 1px solid rgba(0, 210, 255, 0.3);
  font-size: 0.8rem;
  font-weight: 700;
  color: #e2e8f0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  transition: var(--transition-fast);
}

.partner-chip:hover {
  border-color: #f59e0b;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
}

.hero-visual-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 540px;
}

.hero-hud-card {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 450px;
  background: rgba(4, 10, 22, 0.88);
  border: 1.5px solid rgba(0, 210, 255, 0.38);
  border-radius: 24px;
  padding: 32px 30px;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.85), 0 0 35px rgba(0, 114, 245, 0.35);
  animation: float-subtle 6s ease-in-out infinite;
}

@keyframes float-subtle {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.hud-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 210, 255, 0.15);
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.hud-brand-mini {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hud-emblem {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #f59e0b;
  box-shadow: 0 0 16px rgba(245, 158, 11, 0.5);
}

.hud-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.hud-sub {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #00d2ff;
  text-transform: uppercase;
}

.hud-status-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.15);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(34, 197, 94, 0.4);
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.3);
}

.status-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: pulse-glow 2s infinite ease-in-out;
}

.hud-metrics-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hud-metric-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8, 18, 38, 0.75);
  border: 1px solid rgba(0, 210, 255, 0.2);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.hud-metric-row:hover {
  background: rgba(12, 26, 56, 0.9);
  border-color: rgba(0, 210, 255, 0.5);
  box-shadow: 0 4px 16px rgba(0, 210, 255, 0.2);
}

.hud-metric-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: #e2e8f0;
  font-weight: 600;
}

.hud-icon {
  color: #f59e0b;
  display: flex;
}

.hud-metric-value {
  font-size: 0.8125rem;
  font-weight: 800;
  color: #00d2ff;
  letter-spacing: 0.02em;
}

.hud-footer-tagline {
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #94a3b8;
}

.hud-footer-tagline span {
  color: #f59e0b;
  font-weight: 700;
}

.floating-chip {
  position: absolute;
  padding: 9px 18px;
  background: rgba(4, 10, 24, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(0, 210, 255, 0.45);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 16px rgba(0, 210, 255, 0.3);
  z-index: 4;
  animation: float-chip 5s ease-in-out infinite;
}

.floating-chip-1 {
  top: 15px;
  right: -15px;
  animation-delay: 0.5s;
}

.floating-chip-2 {
  bottom: 15px;
  left: -20px;
  animation-delay: 2.5s;
}

@keyframes float-chip {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.02); }
}

.chip-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00d2ff, #0072f5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

/* ==========================================================================
   ABOUT SECTION (Dark Cyber Mode)
   ========================================================================== */
.about-section {
  background: 
    radial-gradient(circle at 10% 20%, rgba(0, 114, 245, 0.08), transparent 45%),
    radial-gradient(circle at 90% 80%, rgba(245, 158, 11, 0.06), transparent 45%),
    #050f24;
  position: relative;
}

.about-main-card {
  background: rgba(4, 10, 24, 0.9);
  backdrop-filter: blur(20px);
  border: 1.5px solid rgba(0, 210, 255, 0.22);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}

.about-main-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(0, 210, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.about-grid-lead {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.about-copy {
  font-size: 1.04rem;
  line-height: 1.75;
  color: #cbd5e1;
}

.about-copy p {
  margin-bottom: 18px;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.about-logo-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: rgba(6, 14, 32, 0.9);
  border: 1.5px solid rgba(245, 158, 11, 0.4);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(245, 158, 11, 0.2);
}

.about-logo-img {
  width: 220px;
  height: 220px;
  object-fit: contain;
  border-radius: 50%;
  margin-bottom: 18px;
  box-shadow: 0 0 35px rgba(0, 210, 255, 0.35);
  border: 2.5px solid rgba(245, 158, 11, 0.6);
}

.about-logo-caption {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.08rem;
  color: #ffffff;
  letter-spacing: 0.04em;
}

.about-logo-sub {
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--gold-warm);
  letter-spacing: 0.14em;
  margin-top: 4px;
}

.about-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.highlight-card {
  padding: 32px 26px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  position: relative;
  background: rgba(4, 10, 24, 0.9);
  border: 1px solid rgba(0, 210, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.highlight-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(0, 114, 245, 0.15);
  border: 1px solid rgba(0, 210, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00d2ff;
  margin-bottom: 20px;
  transition: var(--transition-fast);
}

.highlight-card.gold-card .highlight-icon-wrap {
  background: rgba(245, 158, 11, 0.15);
  border-color: rgba(245, 158, 11, 0.4);
  color: #f59e0b;
}

.highlight-card:hover .highlight-icon-wrap {
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(0, 210, 255, 0.5);
}

.highlight-card.gold-card:hover .highlight-icon-wrap {
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.5);
}

.highlight-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}

.highlight-desc {
  font-size: 0.9rem;
  color: #cbd5e1;
  line-height: 1.65;
}

/* ==========================================================================
   SERVICES SECTION (Dark Cyber Mode)
   ========================================================================== */
.services-section {
  background: 
    radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.06), transparent 45%),
    radial-gradient(circle at 20% 80%, rgba(0, 114, 245, 0.08), transparent 45%),
    #020612;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 32px 28px;
  background: rgba(5, 12, 28, 0.88);
  border: 1px solid rgba(0, 210, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.service-icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(0, 114, 245, 0.2), rgba(245, 158, 11, 0.12));
  border: 1.5px solid rgba(0, 210, 255, 0.35);
  color: #00d2ff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  transition: var(--transition-fast);
}

.service-card:hover .service-icon-box {
  transform: scale(1.08) rotate(3deg);
  border-color: #f59e0b;
  color: #f59e0b;
  box-shadow: 0 0 25px rgba(245, 158, 11, 0.45);
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
  transition: var(--transition-fast);
}

.service-card:hover .service-title {
  color: #00d2ff;
}

.service-description {
  font-size: 0.9rem;
  color: #cbd5e1;
  line-height: 1.65;
  flex-grow: 1;
  margin-bottom: 18px;
}

.service-features-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.service-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.825rem;
  color: #cbd5e1;
  font-weight: 600;
}

.service-feature-item svg {
  color: #f59e0b;
  flex-shrink: 0;
}

/* ==========================================================================
   SOLUTIONS SECTION (Dark Cyber Mode)
   ========================================================================== */
.solutions-section {
  background: 
    radial-gradient(circle at 15% 30%, rgba(0, 114, 245, 0.08), transparent 45%),
    radial-gradient(circle at 85% 70%, rgba(245, 158, 11, 0.06), transparent 45%),
    #050f24;
  position: relative;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.solution-card {
  padding: 34px 28px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  background: rgba(4, 10, 24, 0.9);
  border: 1px solid rgba(0, 210, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  transition: var(--transition-smooth);
}

.solution-card:hover {
  background: rgba(8, 18, 42, 0.96);
  border-color: rgba(0, 210, 255, 0.5);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 25px rgba(0, 210, 255, 0.25);
}

.solution-badge-num {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 800;
  color: #f59e0b;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  background: rgba(245, 158, 11, 0.12);
  border: 1.5px solid rgba(245, 158, 11, 0.35);
  width: fit-content;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.solution-badge-num::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f59e0b;
  box-shadow: 0 0 6px #f59e0b;
}

.solution-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: #ffffff;
  margin-bottom: 10px;
}

.solution-desc {
  font-size: 0.9rem;
  color: #cbd5e1;
  line-height: 1.65;
}

/* ==========================================================================
   WHY CHOOSE US SECTION
   ========================================================================== */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  padding: 32px 26px;
  border-radius: var(--radius-lg);
  background: rgba(4, 10, 24, 0.9);
  border: 1px solid rgba(0, 210, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #f59e0b, transparent);
  opacity: 0;
  transition: var(--transition-fast);
}

.why-card:hover {
  background: rgba(8, 18, 42, 0.96);
  border-color: rgba(245, 158, 11, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.8), 0 0 25px rgba(245, 158, 11, 0.25);
}

.why-card:hover::before {
  opacity: 1;
}

.why-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.12);
  border: 1.5px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f59e0b;
  margin-bottom: 18px;
  transition: var(--transition-fast);
}

.why-card:hover .why-icon-box {
  transform: scale(1.08);
  background: #f59e0b;
  color: #000000;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.55);
}

.why-title {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}

.why-desc {
  font-size: 0.9rem;
  color: #cbd5e1;
  line-height: 1.65;
}

/* ==========================================================================
   CALL TO ACTION (CTA) SECTION
   ========================================================================== */
.cta-section {
  padding: 50px 0 90px 0;
}

.cta-box {
  background: radial-gradient(ellipse at center, #081636 0%, #030818 100%);
  border: 1.5px solid rgba(245, 158, 11, 0.45);
  border-radius: var(--radius-xl);
  padding: 56px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 65px -15px rgba(0, 0, 0, 0.85), 0 0 40px rgba(0, 114, 245, 0.3), 0 0 25px rgba(245, 158, 11, 0.25);
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(0, 210, 255, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.cta-box::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 250px;
  background: radial-gradient(ellipse, rgba(245, 158, 11, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2.9vw, 2.45rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.25;
}

.cta-text {
  font-size: 1.05rem;
  color: #cbd5e1;
  margin-bottom: 32px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* ==========================================================================
   CONTACT SECTION & LOCATION (Dark Cyber Mode)
   ========================================================================== */
.contact-section {
  background: 
    radial-gradient(circle at 10% 80%, rgba(0, 114, 245, 0.08), transparent 45%),
    radial-gradient(circle at 90% 20%, rgba(245, 158, 11, 0.06), transparent 45%),
    #050f24;
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-details-card {
  padding: 34px 30px;
  border-radius: var(--radius-xl);
  background: rgba(4, 10, 24, 0.9);
  border: 1.5px solid rgba(245, 158, 11, 0.35);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.contact-company-title {
  font-family: var(--font-heading);
  font-size: 1.24rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.contact-company-tagline {
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #f59e0b;
  text-transform: uppercase;
  margin-bottom: 28px;
  display: block;
}

.contact-items-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.contact-item-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(0, 114, 245, 0.15);
  border: 1.5px solid rgba(0, 210, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00d2ff;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.contact-item:hover .contact-item-icon {
  background: rgba(245, 158, 11, 0.2);
  border-color: #f59e0b;
  color: #f59e0b;
  transform: scale(1.08);
}

.contact-item-text {
  display: flex;
  flex-direction: column;
}

.contact-item-label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  margin-bottom: 4px;
}

.contact-item-value {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  transition: var(--transition-fast);
}

.contact-item-value:hover {
  color: #00d2ff;
}

.location-map-card {
  border-radius: var(--radius-xl);
  background: rgba(4, 10, 24, 0.9);
  border: 1.5px solid rgba(0, 210, 255, 0.2);
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.map-header {
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(6, 14, 32, 0.95);
  border-bottom: 1px solid rgba(0, 210, 255, 0.15);
}

.map-header-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 800;
  color: #ffffff;
}

.map-header-title svg {
  color: #f59e0b;
}

.map-directions-btn {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #00d2ff;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.map-directions-btn:hover {
  color: #f59e0b;
  text-decoration: underline;
}

#location-map {
  width: 100%;
  height: 240px;
  background: #050f24;
}

.contact-form-card {
  padding: 44px;
  border-radius: var(--radius-xl);
  background: rgba(4, 10, 24, 0.9);
  border: 1.5px solid rgba(0, 210, 255, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}

.form-header {
  margin-bottom: 28px;
}

.form-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}

.form-subtitle {
  font-size: 0.9rem;
  color: #cbd5e1;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.form-label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #cbd5e1;
  letter-spacing: 0.02em;
}

.form-label span.req {
  color: #ef4444;
}

.form-input,
.form-textarea,
select.form-input {
  width: 100%;
  padding: 13px 18px;
  background: rgba(2, 6, 18, 0.85);
  border: 1.5px solid rgba(0, 210, 255, 0.25);
  border-radius: var(--radius-md);
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: var(--transition-fast);
}

select.form-input option {
  background: #050f24;
  color: #ffffff;
  padding: 8px;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-input:focus,
.form-textarea:focus,
select.form-input:focus {
  border-color: #00d2ff;
  background: rgba(4, 10, 26, 0.95);
  box-shadow: 0 0 0 3px rgba(0, 210, 255, 0.25);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #64748b;
}

.form-status-message {
  display: none;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.55;
  margin-bottom: 20px;
}

.form-status-message a {
  color: #00d2ff;
  text-decoration: underline;
  font-weight: 700;
  transition: var(--transition-fast);
}

.form-status-message a:hover {
  color: #f59e0b;
}

.form-status-message.success {
  display: flex;
  background: rgba(34, 197, 94, 0.15);
  border: 1.5px solid rgba(34, 197, 94, 0.45);
  color: #4ade80;
}

.form-status-message.error {
  display: flex;
  background: rgba(239, 68, 68, 0.15);
  border: 1.5px solid rgba(239, 68, 68, 0.45);
  color: #f87171;
}

.form-direct-email-note {
  margin-top: 18px;
  text-align: center;
  font-size: 0.8125rem;
  color: #94a3b8;
}

.form-direct-email-note a {
  color: #00d2ff;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition-fast);
}

.form-direct-email-note a:hover {
  text-decoration: underline;
  color: #f59e0b;
}

/* ==========================================================================
   FOOTER SECTION (Dark Cyber Mode)
   ========================================================================== */
.site-footer {
  background: #020612;
  border-top: 1px solid rgba(0, 210, 255, 0.15);
  padding: 80px 0 36px 0;
  position: relative;
  z-index: 2;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00d2ff, #f59e0b, transparent);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid #f59e0b;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.45);
  object-fit: cover;
}

.footer-company-name {
  font-family: var(--font-heading);
  font-size: 1.22rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.03em;
}

.footer-tagline-primary {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  background: var(--grad-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}

.footer-secondary-tagline {
  font-size: 0.85rem;
  font-style: italic;
  color: #f59e0b;
  border-left: 2.5px solid #f59e0b;
  padding-left: 12px;
  margin-top: 6px;
  font-weight: 700;
}

.footer-brand-desc {
  font-size: 0.9rem;
  color: #cbd5e1;
  line-height: 1.65;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: #f59e0b;
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-link {
  font-size: 0.9375rem;
  color: #cbd5e1;
  font-weight: 500;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-nav-link:hover {
  color: #00d2ff;
  transform: translateX(4px);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: #cbd5e1;
}

.footer-contact-item svg {
  color: #f59e0b;
  flex-shrink: 0;
  margin-top: 4px;
}

.footer-contact-item a:hover {
  color: #00d2ff;
}

.footer-bottom-bar {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.875rem;
  color: #94a3b8;
}

.footer-bottom-legal {
  display: flex;
  align-items: center;
  gap: 24px;
}

.back-to-top-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #00d2ff;
  font-weight: 700;
  cursor: pointer;
  background: transparent;
  transition: var(--transition-fast);
}

.back-to-top-btn:hover {
  color: #f59e0b;
  transform: translateY(-2px);
}

/* ==========================================================================
   TECHNOLOGY BLUEPRINT VISUAL COMPONENT
   ========================================================================== */
.tech-blueprint-box {
  margin-top: 54px;
  background: rgba(4, 10, 24, 0.9);
  border: 1.5px solid rgba(0, 210, 255, 0.3);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  position: relative;
  overflow: hidden;
}

.tech-blueprint-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #00d2ff, #f59e0b, transparent);
}

.blueprint-header {
  text-align: center;
  margin-bottom: 32px;
}

.blueprint-tag {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #f59e0b;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.blueprint-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
}

.blueprint-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.blueprint-step-card {
  background: rgba(6, 14, 32, 0.85);
  border: 1px solid rgba(0, 210, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  transition: var(--transition-fast);
}

.blueprint-step-card:hover {
  border-color: #f59e0b;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(245, 158, 11, 0.3);
}

.blueprint-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00d2ff, #f59e0b);
  color: #000000;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px auto;
  box-shadow: 0 0 16px rgba(0, 210, 255, 0.5);
}

.blueprint-step-name {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}

.blueprint-step-desc {
  font-size: 0.82rem;
  color: #cbd5e1;
  line-height: 1.5;
}

/* ==========================================================================
   STRATEGIC TECHNOLOGY PARTNERS SECTION (Dark Cyber Mode)
   ========================================================================== */
.partners-section {
  padding: 50px 0 70px 0;
  background: #020612;
  position: relative;
  z-index: 2;
}

.partners-wrap {
  background: rgba(4, 10, 24, 0.9);
  border: 1.5px solid rgba(0, 210, 255, 0.3);
  border-radius: var(--radius-xl);
  padding: 46px 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 114, 245, 0.15);
  position: relative;
  overflow: hidden;
}

.partners-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #00d2ff, #f59e0b, transparent);
}

.partners-lead-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  background: rgba(245, 158, 11, 0.12);
  border: 1.5px solid rgba(245, 158, 11, 0.35);
  color: #f59e0b;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.partners-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f59e0b;
  box-shadow: 0 0 6px #f59e0b;
}

.partners-heading {
  font-family: var(--font-heading);
  font-size: 1.38rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.partners-subtext {
  font-size: 0.94rem;
  color: #cbd5e1;
  line-height: 1.65;
  max-width: 780px;
  margin-bottom: 30px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.partner-card {
  padding: 30px 26px;
  border-radius: var(--radius-lg);
  background: rgba(5, 12, 28, 0.88);
  border: 1px solid rgba(0, 210, 255, 0.2);
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  transition: var(--transition-smooth);
}

.partner-card:hover {
  border-color: #f59e0b;
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8), 0 0 25px rgba(245, 158, 11, 0.3);
}

.partner-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.partner-logo-box {
  display: flex;
  align-items: center;
  gap: 14px;
}

.partner-brand-icon {
  flex-shrink: 0;
}

.partner-brand-text {
  display: flex;
  flex-direction: column;
}

.partner-name {
  font-family: var(--font-heading);
  font-size: 1.24rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
}

.partner-status {
  font-size: 0.74rem;
  font-weight: 800;
  color: #f59e0b;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.partner-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #4ade80;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.partner-desc {
  font-size: 0.9rem;
  color: #cbd5e1;
  line-height: 1.65;
  margin-bottom: 20px;
  flex-grow: 1;
}

.partner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.partner-tag {
  font-size: 0.76rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  background: rgba(0, 114, 245, 0.15);
  border: 1px solid rgba(0, 210, 255, 0.3);
  color: #00d2ff;
}

.partner-card:nth-child(2) .partner-tag {
  background: rgba(255, 119, 0, 0.15);
  border-color: rgba(255, 119, 0, 0.4);
  color: #ff9900;
}

/* --- Networking Hardware & Products Showcase --- */
.networking-hardware-showcase {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.networking-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 28px auto;
}

.networking-tag {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #00d2ff;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.networking-title {
  font-family: var(--font-heading);
  font-size: 1.28rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.networking-sub {
  font-size: 0.9rem;
  color: #cbd5e1;
  line-height: 1.6;
}

.networking-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-card {
  background: rgba(5, 12, 28, 0.88);
  border: 1px solid rgba(0, 210, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  transition: var(--transition-smooth);
}

.product-card:hover {
  background: rgba(8, 18, 42, 0.96);
  border-color: rgba(0, 210, 255, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 210, 255, 0.25);
}

.product-icon-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.product-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.unifi-badge {
  background: rgba(0, 114, 245, 0.15);
  color: #00d2ff;
  border: 1px solid rgba(0, 210, 255, 0.35);
}

.hp-badge {
  background: rgba(0, 179, 136, 0.15);
  color: #00e5a3;
  border: 1px solid rgba(0, 179, 136, 0.35);
}

.tplink-badge {
  background: rgba(0, 150, 214, 0.15);
  color: #38bdf8;
  border: 1px solid rgba(0, 150, 214, 0.35);
}

.multi-badge {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.35);
}

.product-brand-title {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 800;
  color: #ffffff;
}

.product-hardware-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.82rem;
  color: #cbd5e1;
  line-height: 1.45;
}

/* --- Scroll Reveal Utilities --- */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ==========================================================================
   INTERACTIVE DETAIL MODAL & CARD EXPLORER (Dark Cyber Mode)
   ========================================================================== */
.partner-card,
.service-card,
.product-card {
  cursor: pointer;
}

.card-explore-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: rgba(245, 158, 11, 0.12);
  border: 1.5px solid rgba(245, 158, 11, 0.35);
  color: #f59e0b;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  transition: var(--transition-fast);
  width: fit-content;
}

.partner-card:hover .card-explore-pill,
.service-card:hover .card-explore-pill,
.product-card:hover .card-explore-pill {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #000000;
  border-color: #f59e0b;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.45);
}

.detail-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(2, 6, 18, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.detail-modal-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.detail-modal-container {
  background: rgba(4, 10, 24, 0.95);
  border: 1.5px solid rgba(0, 210, 255, 0.38);
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.9), 0 0 35px rgba(0, 114, 245, 0.35);
  max-width: 820px;
  width: 100%;
  max-height: 88vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.detail-modal-overlay.is-active .detail-modal-container {
  transform: scale(1) translateY(0);
}

.detail-modal-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #00d2ff, #f59e0b, transparent);
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(8, 18, 40, 0.85);
  border: 1px solid rgba(0, 210, 255, 0.25);
  color: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  z-index: 10;
}

.modal-close-btn:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: rgba(239, 68, 68, 0.5);
  color: #ef4444;
  transform: rotate(90deg);
}

.modal-content-wrap {
  padding: 38px 36px;
  overflow-y: auto;
  max-height: calc(88vh - 40px);
}

.modal-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  background: rgba(245, 158, 11, 0.12);
  border: 1.5px solid rgba(245, 158, 11, 0.35);
  color: #f59e0b;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.48rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.3;
}

.modal-overview {
  font-size: 0.96rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 26px;
}

.modal-section-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #f59e0b;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 26px;
}

.modal-feature-card {
  background: rgba(8, 18, 40, 0.75);
  border: 1px solid rgba(0, 210, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 16px 14px;
}

.modal-feature-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal-feature-desc {
  font-size: 0.82rem;
  color: #cbd5e1;
  line-height: 1.5;
}

.modal-tech-stack-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.modal-tech-pill {
  font-size: 0.76rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  background: rgba(0, 114, 245, 0.15);
  border: 1.5px solid rgba(0, 210, 255, 0.3);
  color: #00d2ff;
}

.modal-actions-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
}

/* --- Interactive Hero Badges & Modal Triggers --- */
.hero-badge[data-modal-target],
.hero-secondary-tagline[data-modal-target],
.partner-chip[data-modal-target],
.floating-chip[data-modal-target],
.hud-header[data-modal-target],
.hud-metric-row[data-modal-target] {
  cursor: pointer;
  user-select: none;
  transition: all var(--transition-smooth);
}

.hero-badge[data-modal-target]:hover {
  border-color: #f59e0b;
  box-shadow: 0 4px 25px rgba(245, 158, 11, 0.35), 0 0 15px rgba(0, 210, 255, 0.3);
  transform: translateY(-2px) scale(1.02);
}

.hero-secondary-tagline[data-modal-target]:hover {
  color: #fbbf24;
  text-shadow: 0 0 12px rgba(245, 158, 11, 0.6);
  transform: translateX(4px);
}

.hero-secondary-tagline[data-modal-target]:hover .tagline-glow-bar {
  box-shadow: 0 0 16px #fbbf24;
  background: #ffffff;
}

.partner-chip[data-modal-target]:hover {
  border-color: #f59e0b;
  color: #ffffff;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 6px 22px rgba(245, 158, 11, 0.4), 0 0 14px rgba(0, 210, 255, 0.3);
}

.floating-chip[data-modal-target]:hover {
  border-color: #f59e0b;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.9), 0 0 25px rgba(245, 158, 11, 0.45);
  transform: translateY(-8px) scale(1.06);
}

.hud-header[data-modal-target]:hover {
  background: rgba(8, 18, 42, 0.9);
  border-radius: var(--radius-sm);
  padding: 6px;
  margin: -6px -6px 14px -6px;
  box-shadow: 0 0 15px rgba(0, 210, 255, 0.2);
}

.hud-header[data-modal-target]:hover .hud-title {
  color: #f59e0b;
}

.hud-metric-row[data-modal-target]:hover {
  background: rgba(12, 28, 62, 0.95);
  border-color: #f59e0b;
  transform: translateX(4px) scale(1.02);
  box-shadow: 0 4px 20px rgba(0, 210, 255, 0.3), 0 0 15px rgba(245, 158, 11, 0.2);
}

/* --- Enhanced Interactive Elements inside Modal Window --- */
.modal-feature-card {
  background: rgba(8, 18, 40, 0.85);
  border: 1.5px solid rgba(0, 210, 255, 0.22);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  cursor: pointer;
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
}

.modal-feature-card:hover {
  background: rgba(12, 28, 62, 0.98);
  border-color: #00d2ff;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 210, 255, 0.3);
}

.modal-feature-cta {
  margin-top: 10px;
  font-size: 0.75rem;
  font-weight: 800;
  color: #f59e0b;
  opacity: 0;
  transform: translateX(-4px);
  transition: all var(--transition-fast);
}

.modal-feature-card:hover .modal-feature-cta {
  opacity: 1;
  transform: translateX(0);
}

.modal-tech-pill {
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: var(--radius-full);
  background: rgba(0, 114, 245, 0.18);
  border: 1.5px solid rgba(0, 210, 255, 0.35);
  color: #00d2ff;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.modal-tech-pill:hover {
  background: linear-gradient(135deg, #0072f5, #00d2ff);
  color: #ffffff;
  border-color: #00d2ff;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 18px rgba(0, 210, 255, 0.45);
}

.hud-address-link {
  color: #cbd5e1;
  font-size: 0.75rem;
  transition: var(--transition-fast);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hud-address-link:hover {
  color: #f59e0b;
  text-shadow: 0 0 10px rgba(245, 158, 11, 0.6);
}

/* ==========================================================================
   MULTI-LEVEL DEEP DRILLDOWN EXPLORER STYLING
   ========================================================================== */
.modal-breadcrumb-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 210, 255, 0.15);
  font-size: 0.8125rem;
  color: #94a3b8;
  flex-wrap: wrap;
}

.breadcrumb-back-btn {
  background: rgba(0, 114, 245, 0.15);
  border: 1px solid rgba(0, 210, 255, 0.3);
  color: #00d2ff;
  border-radius: var(--radius-full);
  padding: 4px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.breadcrumb-back-btn:hover {
  background: #00d2ff;
  color: #000000;
  transform: translateX(-3px);
  box-shadow: 0 0 12px rgba(0, 210, 255, 0.5);
}

.breadcrumb-sep {
  color: #64748b;
}

.breadcrumb-item.active {
  color: #f59e0b;
  font-weight: 700;
}

/* Sub-Files Grid */
.modal-subfiles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.modal-subfile-card {
  background: rgba(8, 18, 42, 0.85);
  border: 1.5px solid rgba(0, 210, 255, 0.25);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  cursor: pointer;
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
}

.modal-subfile-card:hover {
  background: rgba(12, 28, 62, 0.98);
  border-color: #f59e0b;
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.8), 0 0 22px rgba(245, 158, 11, 0.3);
}

.subfile-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.subfile-badge {
  font-size: 0.7rem;
  font-weight: 800;
  color: #00d2ff;
  background: rgba(0, 210, 255, 0.12);
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 210, 255, 0.25);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.subfile-num {
  font-size: 0.7rem;
  font-weight: 800;
  color: #f59e0b;
  letter-spacing: 0.1em;
}

.subfile-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.35;
}

.subfile-summary {
  font-size: 0.84rem;
  color: #cbd5e1;
  line-height: 1.55;
  margin-bottom: 14px;
  flex-grow: 1;
}

.subfile-explore-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  font-weight: 800;
  color: #f59e0b;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition-fast);
}

.modal-subfile-card:hover .subfile-explore-cta {
  color: #00d2ff;
}

/* Level 3 Drilldown Specs List */
.drilldown-specs-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 26px;
}

.drilldown-spec-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: #e2e8f0;
  background: rgba(8, 18, 42, 0.6);
  border: 1px solid rgba(0, 210, 255, 0.15);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  line-height: 1.5;
}

.spec-check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.18);
  border: 1px solid rgba(34, 197, 94, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Level 3 Lifecycle Grid */
.drilldown-lifecycle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 26px;
}

.lifecycle-step-card {
  background: rgba(6, 14, 32, 0.85);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: var(--radius-md);
  padding: 16px 14px;
  position: relative;
}

.lifecycle-step-num {
  font-size: 0.74rem;
  font-weight: 800;
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.15);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 6px;
}

.lifecycle-step-title {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}

.lifecycle-step-desc {
  font-size: 0.8rem;
  color: #cbd5e1;
  line-height: 1.45;
}

/* Level 3 Code Box */
.drilldown-code-box {
  background: #01040a;
  border: 1.5px solid rgba(0, 210, 255, 0.35);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.8);
}

.code-box-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8, 18, 42, 0.9);
  padding: 8px 14px;
  border-bottom: 1px solid rgba(0, 210, 255, 0.15);
}

.code-dots {
  display: flex;
  gap: 6px;
}

.code-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.code-dot.red { background: #ef4444; }
.code-dot.yellow { background: #f59e0b; }
.code-dot.green { background: #22c55e; }

.code-lang-label {
  font-size: 0.72rem;
  font-weight: 800;
  color: #00d2ff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.code-block {
  padding: 16px;
  margin: 0;
  font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
  font-size: 0.8rem;
  line-height: 1.55;
  color: #38bdf8;
  overflow-x: auto;
  white-space: pre-wrap;
}

/* Compliance Row */
.drilldown-compliance-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 12px 14px;
  background: rgba(4, 10, 24, 0.7);
  border: 1px dashed rgba(0, 210, 255, 0.2);
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
}

.compliance-title {
  font-size: 0.76rem;
  font-weight: 800;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.compliance-tag {
  font-size: 0.74rem;
  font-weight: 700;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

/* Sibling Files Row */
.sibling-files-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.sibling-file-btn {
  font-family: inherit;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: rgba(8, 18, 42, 0.85);
  border: 1px solid rgba(0, 210, 255, 0.25);
  color: #cbd5e1;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.sibling-file-btn:hover {
  background: rgba(0, 114, 245, 0.25);
  border-color: #00d2ff;
  color: #ffffff;
  transform: translateY(-2px);
}

.sibling-file-btn.active {
  background: linear-gradient(135deg, #0072f5, #00d2ff);
  border-color: #00d2ff;
  color: #ffffff;
  box-shadow: 0 0 14px rgba(0, 210, 255, 0.4);
}
