/* ==========================================================================
   BronzIQ IT Solutions - Production cPanel Static Stylesheet
   Pure Vanilla CSS - Optimized for Fast Loading, Responsive & Zero Build Step
   ========================================================================== */

:root {
  --primary: #0b57d0;
  --primary-hover: #094ab3;
  --primary-light: #eff6ff;
  --navy-dark: #070d1e;
  --navy-card: #0d1733;
  --navy-border: #1e293b;
  --cyan: #00a3e0;
  --emerald: #059669;
  --emerald-light: #ecfdf5;
  --purple: #7c3aed;
  --purple-light: #f5f3ff;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 14px rgba(0,0,0,0.07);
  --shadow-xl: 0 12px 28px rgba(0,0,0,0.12);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-family);
  background-color: #ffffff;
  color: var(--slate-900);
  line-height: 1.6;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  position: relative;
}

@media (max-width: 1099px) {
  body {
    padding-bottom: 68px;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea {
  font-family: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Typography Utility */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #38bdf8;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.3);
  padding: 4px 12px;
  border-radius: 9999px;
}

.eyebrow-blue {
  color: var(--primary);
  background: var(--primary-light);
  border: 1px solid #bfdbfe;
}

.headline-large {
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.headline-medium {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--slate-900);
}

.headline-dark {
  color: #ffffff;
}

.gradient-text {
  background: linear-gradient(135deg, #60a5fa 0%, #38bdf8 50%, #67e8f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lead-text {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--slate-300);
  line-height: 1.7;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(11, 87, 208, 0.35);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(11, 87, 208, 0.45);
}

.btn-outline-white {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

.btn-emerald {
  background-color: var(--emerald);
  color: #ffffff;
}
.btn-emerald:hover {
  background-color: #047857;
}

.btn-purple {
  background-color: var(--purple);
  color: #ffffff;
}
.btn-purple:hover {
  background-color: #6d28d9;
}

/* Sticky Header */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--slate-200);
  transition: padding 0.3s ease;
  box-sizing: border-box;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  gap: 8px;
  box-sizing: border-box;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .header-inner {
    height: 70px;
    gap: 16px;
  }
}

/* Brand Logo */
.logo {
  display: inline-flex;
  flex-direction: column;
  user-select: none;
}
.logo-row {
  display: flex;
  align-items: center;
  gap: 6px;
}
.logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, #1d4ed8, #0284c7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.3);
}
.logo-text {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--slate-900);
}
.logo-text-white {
  color: #ffffff;
}
.logo-accent {
  color: var(--primary);
  position: relative;
}
.logo-tagline {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-500);
  margin-top: 2px;
}
.logo-tagline-white {
  color: var(--slate-400);
}

/* Navigation Links */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 4px;
}

@media (min-width: 1100px) {
  .desktop-nav {
    display: flex;
  }
}

.nav-link {
  padding: 8px 12px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--slate-700);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 12px;
  right: 12px;
  height: 2px;
  background-color: var(--primary);
  border-radius: 2px;
}

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

@media (min-width: 640px) {
  .header-actions {
    gap: 12px;
  }
}

.search-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 7px 14px;
  background: var(--slate-100);
  border: 1px solid var(--slate-200);
  border-radius: 9999px;
  font-size: 12px;
  color: var(--slate-600);
  transition: all 0.2s;
  flex-shrink: 0;
  cursor: pointer;
}

.search-trigger:hover {
  background: var(--slate-200);
  color: var(--slate-900);
}

.search-trigger svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* Mobile Talk to Our Team Quick Call Icon Button */
.header-call-btn {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: #ffffff;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
}

.header-call-btn:hover {
  background: var(--primary-dark);
  transform: scale(1.05);
}

.header-call-btn:active {
  transform: scale(0.96);
}

.header-call-btn svg {
  width: 17px;
  height: 17px;
}

/* Desktop Talk to Our Team CTA (strictly hidden on mobile/tablet to prevent hiding hamburger menu) */
.header-desktop-cta {
  display: none !important;
}

@media (min-width: 1100px) {
  .header-call-btn {
    display: none !important;
  }
  .header-desktop-cta {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
  }
}

.hamburger-btn {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  color: var(--slate-800);
  background: transparent;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}

.hamburger-btn:hover {
  background: var(--slate-100);
  color: var(--primary);
}

.hamburger-btn svg {
  width: 22px;
  height: 22px;
}

@media (min-width: 1100px) {
  .hamburger-btn {
    display: none !important;
  }
}

@media (max-width: 639px) {
  .search-trigger {
    width: 36px;
    height: 36px;
    padding: 0 !important;
    border-radius: 50% !important;
  }
  .search-trigger span,
  .search-trigger kbd {
    display: none !important;
  }
  .search-trigger svg {
    width: 16px;
    height: 16px;
  }
  .logo-text {
    font-size: 20px;
  }
  .logo-icon {
    width: 28px;
    height: 28px;
  }
}

@media (min-width: 1100px) {
  .hamburger-btn {
    display: none;
  }
}

/* Mobile Drawer */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 61px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  padding: 20px;
  z-index: 99;
  overflow-y: auto;
  flex-direction: column;
  justify-content: space-between;
  border-top: 1px solid var(--slate-200);
}

@media (min-width: 640px) {
  .mobile-drawer {
    top: 71px;
  }
}

.mobile-drawer.open {
  display: flex;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  font-size: 15px;
  font-weight: 600;
  color: var(--slate-800);
  border-radius: var(--radius-sm);
}

.mobile-nav-link.active {
  background: var(--primary-light);
  color: var(--primary);
}

/* Mobile 5-Icon Bottom Bar (WA0010 user requirement) */
.mobile-bottom-nav {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--slate-200);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.06);
  z-index: 90;
  padding: 4px 4px calc(4px + env(safe-area-inset-bottom, 0px)) 4px;
  overflow: hidden;
}

@media (min-width: 1100px) {
  .mobile-bottom-nav {
    display: none;
  }
}

.mobile-bottom-nav-inner {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  box-sizing: border-box;
}

.bottom-tab-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-size: 10px;
  font-weight: 500;
  color: var(--slate-500);
  transition: all 0.2s;
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 3px 2px;
}

.bottom-tab-btn span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  font-size: 10px;
  line-height: 1.1;
  text-align: center;
}

.bottom-tab-btn.active {
  color: var(--primary);
  font-weight: 700;
}

.bottom-tab-btn.active::before {
  content: '';
  position: absolute;
  top: 0;
  width: 20px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 9999px;
}

.bottom-tab-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Sections */
.section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.section-dark {
  background-color: var(--navy-dark);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.section-light {
  background-color: #ffffff;
}

.section-gray {
  background-color: var(--slate-50);
  border-bottom: 1px solid var(--slate-200);
}

.section-title-wrap {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px auto;
}

.section-title-wrap .eyebrow {
  margin-bottom: 12px;
}

/* Grid Systems */
.grid {
  display: grid;
  gap: 24px;
}

.grid-cols-2 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-5 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-6 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-8 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

@media (min-width: 640px) {
  .grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-cols-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-cols-6 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid-cols-8 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .grid-cols-8 { grid-template-columns: repeat(8, minmax(0, 1fr)); }
}

/* Card Styles */
.card {
  background: #ffffff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card:hover {
  border-color: #93c5fd;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all 0.25s;
}

.card:hover .card-icon {
  background: var(--primary);
  color: #ffffff;
}

.card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 10px;
}

.card-desc {
  font-size: 13.5px;
  color: var(--slate-600);
  line-height: 1.6;
}

.card-footer {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--slate-100);
}

.learn-more-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  transition: gap 0.2s;
}

.learn-more-link:hover {
  gap: 10px;
}

/* Hero Section Layout */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  min-height: 520px;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

/* Animations & Professional Scroll Interactions */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}

.animate-float {
  animation: float 5s ease-in-out infinite;
}

.animate-float-delayed {
  animation: float 6s ease-in-out 1.5s infinite;
}

/* Entrance Cascading Animations */
@keyframes heroFadeUp {
  0% {
    opacity: 0;
    transform: translateY(28px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroScaleIn {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-animate-1 { animation: heroFadeUp 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.08s both; }
.hero-animate-2 { animation: heroFadeUp 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.18s both; }
.hero-animate-3 { animation: heroFadeUp 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.28s both; }
.hero-animate-4 { animation: heroFadeUp 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.38s both; }
.hero-animate-scale { animation: heroScaleIn 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both; }

/* Scroll Reveal Classes (Progressive Enhancement - Fail-Safe) */
.reveal,
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale {
  opacity: 1;
  transform: none;
}

/* Prepared for entrance only when JS initializes */
html.js-ready .reveal:not(.is-revealed),
html.js-ready .reveal-up:not(.is-revealed) {
  opacity: 0;
  transform: translateY(20px);
  will-change: transform, opacity;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

html.js-ready .reveal-left:not(.is-revealed) {
  opacity: 0;
  transform: translateX(-24px);
  will-change: transform, opacity;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

html.js-ready .reveal-right:not(.is-revealed) {
  opacity: 0;
  transform: translateX(24px);
  will-change: transform, opacity;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

html.js-ready .reveal-scale:not(.is-revealed) {
  opacity: 0;
  transform: scale(0.96);
  will-change: transform, opacity;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Activated State on First Viewport Intersection */
.is-revealed,
.reveal.is-revealed,
.reveal-up.is-revealed,
.reveal-left.is-revealed,
.reveal-right.is-revealed,
.reveal-scale.is-revealed {
  opacity: 1 !important;
  transform: none !important;
}

/* Stagger Helpers */
.delay-1 { transition-delay: 0.08s !important; }
.delay-2 { transition-delay: 0.16s !important; }
.delay-3 { transition-delay: 0.24s !important; }
.delay-4 { transition-delay: 0.32s !important; }
.delay-5 { transition-delay: 0.40s !important; }
.delay-6 { transition-delay: 0.48s !important; }

/* Interactive Hover Lift on Cards */
.card {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(11, 87, 208, 0.09), 0 4px 12px rgba(0, 0, 0, 0.05);
  border-color: rgba(11, 87, 208, 0.3);
}

/* Key Metrics / Stat Counter Bar */
.metrics-bar {
  background: linear-gradient(135deg, #070d1e 0%, #0a1738 50%, #070d1e 100%);
  border-top: 1px solid rgba(56, 189, 248, 0.2);
  border-bottom: 1px solid rgba(56, 189, 248, 0.2);
  padding: 44px 0;
  position: relative;
  overflow: hidden;
}

.metrics-bar::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 20%;
  width: 500px;
  height: 250px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(50px);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}

@media (min-width: 640px) {
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

@media (min-width: 1024px) {
  .metrics-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
  .metrics-grid-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}

.metric-item {
  text-align: center;
  padding: 12px;
  position: relative;
}

.metric-number-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 6px;
}

.metric-number {
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #ffffff;
  line-height: 1;
  background: linear-gradient(135deg, #ffffff 40%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (min-width: 640px) {
  .metric-number {
    font-size: 44px;
  }
}

.metric-suffix {
  font-size: 24px;
  font-weight: 800;
  color: #38bdf8;
}

.metric-label {
  font-size: 13px;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.metric-sublabel {
  font-size: 11px;
  color: #64748b;
  margin-top: 3px;
}

/* Light Stat Cards for Content Sections */
.stat-card-light {
  background: #ffffff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.stat-card-light:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(11, 87, 208, 0.35);
}

.stat-card-light .stat-val {
  font-size: 34px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 6px;
}

.stat-card-light .stat-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--slate-800);
}

.stat-card-light .stat-desc {
  font-size: 12px;
  color: var(--slate-500);
  margin-top: 4px;
  line-height: 1.5;
}

/* Hub and Spoke Graphic */
.hub-spoke-wrap {
  position: relative;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 1;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@media (min-width: 640px) {
  .hub-spoke-wrap {
    max-width: 440px;
    overflow: visible;
  }
}

.hub-center {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1d4ed8, #0284c7);
  padding: 3px;
  box-shadow: 0 0 40px rgba(2, 132, 199, 0.4);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .hub-center {
    width: 120px;
    height: 120px;
    box-shadow: 0 0 50px rgba(2, 132, 199, 0.5);
  }
}

.hub-center-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #081330;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.spoke-node {
  position: absolute;
  z-index: 15;
  background: rgba(13, 23, 51, 0.95);
  border: 1px solid rgba(56, 189, 248, 0.4);
  border-radius: var(--radius-sm);
  padding: 5px 9px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
}

@media (min-width: 640px) {
  .spoke-node {
    padding: 8px 12px;
    font-size: 12px;
    gap: 8px;
  }
}

/* Neon Globe Hero Background Image */
.hero-neon-globe-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  max-width: 440px;
  max-height: 440px;
  object-fit: contain;
  pointer-events: none;
  z-index: 2;
  opacity: 0.92;
  filter: drop-shadow(0 0 35px rgba(56, 189, 248, 0.45));
  animation: heroGlobeRotate 75s linear infinite;
}

@keyframes heroGlobeRotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  50% {
    transform: translate(-50%, -50%) rotate(180deg) scale(1.03);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Dell Boomi Integration Hub Hero Image */
.hero-boomi-hub-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 45px rgba(2, 132, 199, 0.35);
  border: 1px solid rgba(56, 189, 248, 0.3);
  display: block;
  margin: 0 auto;
}

/* Services Tech Cubes 3D Graphic */
.hero-services-cubes-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 45px rgba(2, 132, 199, 0.3);
  border: 1px solid rgba(56, 189, 248, 0.25);
  display: block;
  margin: 0 auto;
}


/* Modals */
.modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-backdrop.open {
  display: flex;
}

.modal-card {
  background: #ffffff;
  width: 100%;
  max-width: 580px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  animation: modalIn 0.2s ease-out;
  max-height: 90vh;
  overflow-y: auto;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.modal-header {
  background: var(--navy-dark);
  color: #ffffff;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.modal-body {
  padding: 24px;
}

/* Form inputs */
.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--slate-700);
  margin-bottom: 6px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--slate-300);
  border-radius: var(--radius-sm);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary);
}

/* Scroll To Top with Circular Scroll Progress */
.scroll-to-top {
  position: fixed;
  bottom: 80px;
  right: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #0f172a;
  color: #ffffff;
  border: 1px solid rgba(51, 65, 85, 0.8);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.35), 0 8px 10px -6px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 80;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(0.88);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, background 0.2s ease, border-color 0.2s ease;
  padding: 0;
}

@media (min-width: 1100px) {
  .scroll-to-top {
    bottom: 28px;
    right: 24px;
  }
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.scroll-to-top:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px) scale(1.08);
}

.scroll-to-top:active {
  transform: translateY(0) scale(0.96);
}

.scroll-progress-circle {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  pointer-events: none;
  padding: 2.5px;
  box-sizing: border-box;
}

.scroll-circle-bg {
  stroke: #334155;
}

.scroll-circle-bar {
  stroke: #38bdf8;
  transition: stroke 0.2s ease;
}

.scroll-to-top:hover .scroll-circle-bar {
  stroke: #ffffff;
}

.scroll-arrow-icon {
  position: relative;
  z-index: 2;
  transition: transform 0.2s ease;
}

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

/* Footer */
.site-footer {
  background: var(--navy-dark);
  color: var(--slate-300);
  border-top: 1px solid var(--slate-800);
  padding-top: 60px;
  padding-bottom: 100px;
}

@media (min-width: 1100px) {
  .site-footer {
    padding-bottom: 40px;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2.2fr 1fr 1fr 1fr 1.6fr;
  }
}

.footer-heading {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--slate-800);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  color: var(--slate-500);
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
  }
}

/* Split Promo Featured Cards (Manpower & Payroll - WA0010.jpg) */
.split-promo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 900px) {
  .split-promo-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.split-promo-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-200);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.split-promo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.split-promo-card.manpower-card {
  border-top: 4px solid var(--emerald);
}

.split-promo-card.payroll-card {
  border-top: 4px solid var(--purple);
}

.split-promo-body {
  padding: 32px 28px 24px 28px;
}

.split-promo-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.split-promo-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.split-promo-card.manpower-card .split-promo-icon {
  background: var(--emerald-light);
  color: var(--emerald);
}

.split-promo-card.payroll-card .split-promo-icon {
  background: var(--purple-light);
  color: var(--purple);
}

.split-promo-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--slate-900);
  letter-spacing: -0.3px;
  margin-bottom: 3px;
}

.split-promo-tagline {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.split-promo-card.manpower-card .split-promo-tagline {
  color: var(--emerald);
}

.split-promo-card.payroll-card .split-promo-tagline {
  color: var(--purple);
}

.split-promo-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 16px;
}

@media (min-width: 600px) {
  .split-promo-content-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
  }
}

.promo-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.promo-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--slate-700);
}

.promo-check-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.manpower-card .promo-check-icon {
  background: #ecfdf5;
  color: var(--emerald);
}

.payroll-card .promo-check-icon {
  background: #faf5ff;
  color: var(--purple);
}

.promo-media-box {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  aspect-ratio: 4 / 3;
}

.promo-media-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.split-promo-card:hover .promo-media-box img {
  transform: scale(1.05);
}

.promo-overlay-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.promo-badge-stat {
  font-size: 13px;
  font-weight: 800;
  display: block;
}

.manpower-card .promo-badge-stat {
  color: #34d399;
}

.payroll-card .promo-badge-stat {
  color: #c084fc;
}

.promo-badge-desc {
  font-size: 10px;
  color: #cbd5e1;
}

.split-promo-footer {
  padding: 18px 28px;
  background: var(--slate-50);
  border-top: 1px solid var(--slate-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

