/**
 * AeroCore Enterprise Ultra-Design System v2.0.0
 * Concept: "Pure Water, Azure Blue & Sky Serenity"
 * Clean, luminous, zero darkness, inspired by crystal water droplets.
 */

:root {
  --aerocore-font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --aerocore-primary: #0284c7;
  --aerocore-primary-hover: #0369a1;
  --aerocore-primary-rgb: 2, 132, 199;
  --aerocore-azure: #0ea5e9;
  --aerocore-sky: #38bdf8;
  --aerocore-water: #e0f2fe;
  --aerocore-accent: #10b981;
  --aerocore-dark: #0f172a;
  --aerocore-slate-50: #f8fafc;
  --aerocore-slate-100: #f1f5f9;
  --aerocore-slate-200: #e2e8f0;
  --aerocore-slate-600: #475569;
  --aerocore-slate-900: #0f172a;
  --aerocore-border: 1px solid #e2e8f0;
  --aerocore-radius-sm: 8px;
  --aerocore-radius-md: 14px;
  --aerocore-radius-lg: 18px;
  --aerocore-radius-xl: 24px;
  --aerocore-shadow-sm: 0 1px 3px 0 rgba(2, 132, 199, 0.05);
  --aerocore-shadow-md: 0 4px 16px -2px rgba(2, 132, 199, 0.08);
  --aerocore-shadow-lg: 0 12px 28px -4px rgba(2, 132, 199, 0.1), 0 4px 10px -2px rgba(15, 23, 42, 0.03);
  --aerocore-shadow-xl: 0 20px 35px -6px rgba(2, 132, 199, 0.14);
}

/* ==========================================================================
   GLOBAL RESET & LUMINOUS CANVAS
   ========================================================================== */
body {
  font-family: var(--aerocore-font) !important;
  color: #1e293b;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--aerocore-font) !important;
  font-weight: 700 !important;
  letter-spacing: -0.025em !important;
  color: #0f172a;
}

/* ==========================================================================
   TOPBAR & HEADER (CRYSTAL WATER GLASSMORPHISM)
   ========================================================================== */
.topbar {
  background: #0f172a !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: #94a3b8 !important;
  font-size: 0.8125rem !important;
  padding: 6px 0 !important;
}

.topbar a {
  color: #cbd5e1 !important;
  text-decoration: none !important;
}

.topbar a:hover {
  color: #38bdf8 !important;
}

.site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 1020 !important;
  background: rgba(255, 255, 255, 0.94) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  border-bottom: 1px solid rgba(14, 165, 233, 0.1) !important;
  box-shadow: 0 4px 20px -2px rgba(2, 132, 199, 0.04) !important;
}

.site-logo {
  height: 38px !important;
  width: auto !important;
  max-width: 200px !important;
  object-fit: contain !important;
  display: block !important;
}

.site-nav .nav-link {
  color: #334155 !important;
  font-weight: 600 !important;
  font-size: 0.9375rem !important;
  padding: 0.65rem 1rem !important;
  border-radius: var(--aerocore-radius-sm) !important;
  transition: all 0.15s ease !important;
}

.site-nav .nav-link:hover,
.site-nav .nav-link.active {
  color: #0284c7 !important;
  background-color: #f0f9ff !important;
}

/* ==========================================================================
   HERO SECTION (THE ACCLAIMED LUMINOUS BLUE WATER AESTHETIC)
   ========================================================================== */
.aerocore-hero-section {
  position: relative;
  padding: 5rem 0 6rem;
  background: radial-gradient(circle at 50% 0%, rgba(14, 165, 233, 0.12) 0%, rgba(255, 255, 255, 0) 70%),
              linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%);
  overflow: hidden;
  border-bottom: 1px solid #e0f2fe;
}

.aerocore-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: #ffffff;
  border: 1px solid #bae6fd;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #0369a1;
  box-shadow: 0 2px 6px rgba(2, 132, 199, 0.06);
  margin-bottom: 1.5rem;
}

.aerocore-pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: aeroPulseAnimation 2s infinite;
}

@keyframes aeroPulseAnimation {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.aerocore-hero-title {
  font-size: clamp(2.5rem, 5vw, 4.25rem) !important;
  font-weight: 800 !important;
  line-height: 1.12 !important;
  letter-spacing: -0.035em !important;
  color: #0f172a !important;
  margin-bottom: 1.25rem;
}

.aerocore-hero-title span.highlight {
  background: linear-gradient(135deg, #0284c7 0%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.aerocore-hero-lead {
  font-size: clamp(1.1rem, 2vw, 1.28rem) !important;
  color: #475569 !important;
  line-height: 1.6 !important;
  max-width: 760px;
  margin: 0 auto 2.5rem;
}

/* DOMAIN SEARCH BAR */
.aerocore-search-wrapper {
  max-width: 820px;
  margin: 0 auto;
}

.aerocore-search-card {
  background: #ffffff;
  border: 1px solid #bae6fd;
  border-radius: var(--aerocore-radius-xl);
  padding: 8px 8px 8px 24px;
  box-shadow: 0 12px 32px -4px rgba(2, 132, 199, 0.12), 0 4px 12px -2px rgba(2, 132, 199, 0.05);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.25s ease;
}

.aerocore-search-card:focus-within {
  border-color: #0284c7;
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.2), 0 12px 32px -4px rgba(2, 132, 199, 0.15);
}

.aerocore-search-card input {
  border: none !important;
  outline: none !important;
  background: transparent !important;
  font-size: 1.15rem !important;
  font-weight: 500 !important;
  color: inherit !important;
  flex: 1;
  padding: 10px 0 !important;
}

.aerocore-search-card input::placeholder {
  color: #94a3b8 !important;
}

.aerocore-search-submit {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%) !important;
  color: #ffffff !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  padding: 12px 28px !important;
  border-radius: var(--aerocore-radius-md) !important;
  border: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  transition: all 0.2s ease !important;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.35) !important;
}

.aerocore-search-submit:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

/* TLD CHIPS */
.aerocore-tld-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 1.5rem;
}

.aerocore-tld-chip {
  background: #ffffff;
  border: 1px solid #e0f2fe;
  border-radius: 9999px;
  padding: 6px 16px;
  font-size: 0.875rem;
  color: #334155;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 1px 3px rgba(2, 132, 199, 0.05);
  transition: all 0.2s ease;
}

.aerocore-tld-chip:hover {
  transform: translateY(-2px);
  border-color: #0284c7;
  color: #0284c7;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.15);
}

.aerocore-tld-chip strong {
  font-weight: 700;
  color: #0f172a;
}

.aerocore-tld-chip .tld-price {
  color: #0284c7;
  font-weight: 700;
}

/* ==========================================================================
   PLANS & PRICING (LUMINOUS, CLEAN & AIRY SAAS CARDS)
   ========================================================================== */
.plans-rack {
  padding: 5.5rem 0 !important;
  background: #f8fafc !important;
}

.rack-bar {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: var(--aerocore-radius-lg) !important;
  padding: 8px 12px !important;
  box-shadow: var(--aerocore-shadow-sm) !important;
  margin-bottom: 2.5rem !important;
}

.aerocore-plan-card {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: var(--aerocore-radius-xl) !important;
  padding: 2.5rem 2rem !important;
  box-shadow: 0 4px 16px -2px rgba(15, 23, 42, 0.04) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  display: flex !important;
  flex-direction: column !important;
  position: relative !important;
  height: 100% !important;
}

.aerocore-plan-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 35px -4px rgba(2, 132, 199, 0.14) !important;
  border-color: #bae6fd !important;
}

.aerocore-plan-card.is-popular {
  border: 2px solid #0284c7 !important;
  box-shadow: 0 16px 32px -4px rgba(2, 132, 199, 0.18) !important;
  transform: scale(1.02);
}

.aerocore-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 16px;
  border-radius: 9999px;
  box-shadow: 0 4px 10px rgba(2, 132, 199, 0.4);
}

.aerocore-plan-price {
  font-size: 2.75rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.035em !important;
  color: #0f172a !important;
}

/* ==========================================================================
   ABOUT US CALLOUT (REFRESHED: LUMINOUS SKY BLUE WATER GRADIENT)
   ========================================================================== */
.aerocore-about-banner {
  background: linear-gradient(135deg, #0369a1 0%, #0284c7 50%, #0ea5e9 100%) !important;
  border-radius: var(--aerocore-radius-xl) !important;
  padding: 3.5rem 3rem !important;
  box-shadow: 0 20px 40px -10px rgba(2, 132, 199, 0.35) !important;
  position: relative !important;
  overflow: hidden !important;
}

.aerocore-about-banner::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  background: radial-gradient(circle at 100% 50%, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.aerocore-line-accent {
  width: 24px;
  height: 2px;
  background-color: #ffffff;
  display: inline-block;
}

/* ==========================================================================
   MODERN BLOG CARDS (CRISP WHITE & AIRY)
   ========================================================================== */
.aerocore-blog-card {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: var(--aerocore-radius-lg) !important;
  padding: 2.25rem !important;
  box-shadow: 0 2px 10px rgba(2, 132, 199, 0.04) !important;
  transition: all 0.25s ease !important;
}

.aerocore-blog-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 14px 28px -4px rgba(2, 132, 199, 0.12) !important;
  border-color: #bae6fd !important;
}

/* ==========================================================================
   STATISTICS DECK (REFRESHED: CRISP WHITE, PURE WATER ACCENTS)
   No more dark gloom! Beautiful, clean, high-conversion metric cards.
   ========================================================================== */
.aerocore-stat-deck {
  background: #ffffff !important;
  border: 1px solid #e0f2fe !important;
  border-radius: var(--aerocore-radius-xl) !important;
  padding: 3.5rem 2rem !important;
  box-shadow: 0 20px 45px -10px rgba(2, 132, 199, 0.08) !important;
  position: relative !important;
  overflow: hidden !important;
}

.aerocore-stat-col {
  padding: 1.5rem 2rem !important;
  border-right: 1px solid #f1f5f9 !important;
}

@media (max-width: 991.98px) {
  .aerocore-stat-col {
    border-right: none !important;
    border-bottom: 1px solid #f1f5f9 !important;
  }
}

.aerocore-stat-inner {
  position: relative;
  z-index: 2;
}

.aerocore-stat-watermark {
  position: absolute;
  right: -10px;
  bottom: -20px;
  font-size: 5rem;
  color: rgba(2, 132, 199, 0.04);
  pointer-events: none;
  z-index: 1;
}

.aerocore-stat-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--aerocore-radius-md);
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0284c7;
  font-size: 1.35rem;
}

.aerocore-stat-number {
  font-size: 2.75rem !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  letter-spacing: -0.03em !important;
  line-height: 1.1 !important;
  margin-bottom: 6px !important;
}

.aerocore-stat-title {
  font-size: 0.8125rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  color: #64748b !important;
  text-transform: uppercase !important;
}

/* ==========================================================================
   CLIENT AREA (DASHBOARD & SIDEBAR)
   Clean, Pure White Canvas with Inspiring Azure Water Harmony
   ========================================================================== */

/* 1. Client Sidebar (Clean White & Water Blue Accent) */
.client-sidebar {
  background: #ffffff !important;
  border-right: 1px solid #e2e8f0 !important;
  box-shadow: 2px 0 12px rgba(2, 132, 199, 0.03) !important;
}

.client-sidebar-head {
  border-bottom: 1px solid #f1f5f9 !important;
}

.client-sidebar-link {
  color: #475569 !important;
  border-radius: var(--aerocore-radius-sm) !important;
  font-weight: 500 !important;
  transition: all 0.2s ease !important;
  margin: 3px 10px !important;
}

.client-sidebar-link:hover {
  color: #0284c7 !important;
  background: #f0f9ff !important;
}

.client-sidebar-link.active {
  color: #0284c7 !important;
  background: #e0f2fe !important;
  font-weight: 700 !important;
}

.client-sidebar-link.active:before {
  background-color: #0284c7 !important;
  width: 4px !important;
  border-radius: 4px;
}

.client-sidebar-badge {
  background: #0284c7 !important;
  color: #ffffff !important;
  border-radius: 9999px !important;
  font-weight: 700 !important;
  padding: 2px 8px !important;
  box-shadow: 0 2px 6px rgba(2, 132, 199, 0.3) !important;
}

.client-sidebar-foot {
  border-top: 1px solid #f1f5f9 !important;
}

/* 2. Client Dashboard Hero Command Band (Inspiring Ocean-to-Azure Sky) */
.dash-hero {
  background: linear-gradient(135deg, #0284c7 0%, #2563eb 55%, #38bdf8 100%) !important;
  border-radius: var(--aerocore-radius-xl) !important;
  padding: 3rem 2.5rem !important;
  box-shadow: 0 20px 40px -10px rgba(2, 132, 199, 0.35) !important;
  position: relative !important;
  overflow: hidden !important;
  border: none !important;
}

.dash-eyebrow {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  font-size: 0.75rem !important;
}

.dash-greeting {
  color: #ffffff !important;
  font-weight: 800 !important;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem) !important;
  letter-spacing: -0.025em !important;
  margin-bottom: 0.5rem !important;
}

.dash-health {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 0.95rem !important;
}

.dash-pulse {
  background: #10b981 !important;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.3) !important;
}

.dash-btn-glass {
  background: rgba(255, 255, 255, 0.18) !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  color: #ffffff !important;
  border-radius: 9999px !important;
  padding: 8px 20px !important;
  font-weight: 600 !important;
  backdrop-filter: blur(8px) !important;
}

.dash-btn-glass:hover {
  background: rgba(255, 255, 255, 0.3) !important;
  color: #ffffff !important;
  transform: translateY(-1px) !important;
}

.dash-btn-light {
  background: #ffffff !important;
  color: #0284c7 !important;
  border-radius: 9999px !important;
  padding: 8px 20px !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12) !important;
}

.dash-btn-light:hover {
  background: #f8fafc !important;
  color: #0369a1 !important;
  transform: translateY(-1px) !important;
}

.dash-balance-card {
  background: rgba(255, 255, 255, 0.15) !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  border-radius: var(--aerocore-radius-lg) !important;
  padding: 1.5rem 1.75rem !important;
  backdrop-filter: blur(12px) !important;
  min-width: 17rem !important;
}

.dash-balance-label {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
}

.dash-balance-value {
  color: #ffffff !important;
  font-size: 2.25rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
}

.dash-balance-note {
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: 0.8rem !important;
}

/* 3. Dashboard Quick Stat Cards */
.dash-stat {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: var(--aerocore-radius-lg) !important;
  padding: 1.5rem 1.75rem !important;
  box-shadow: 0 4px 16px -2px rgba(2, 132, 199, 0.05) !important;
  transition: all 0.25s ease !important;
  position: relative !important;
  overflow: hidden !important;
}

.dash-stat:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 28px -4px rgba(2, 132, 199, 0.12) !important;
  border-color: #bae6fd !important;
}

.dash-stat-ico {
  width: 42px !important;
  height: 42px !important;
  border-radius: var(--aerocore-radius-sm) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.25rem !important;
}

.dash-stat-ico.bg-primary-subtle {
  background: #e0f2fe !important;
  color: #0284c7 !important;
}

.dash-stat-ico.bg-info-subtle {
  background: #e0f2fe !important;
  color: #0ea5e9 !important;
}

.dash-stat-ico.bg-warning-subtle {
  background: #fef3c7 !important;
  color: #d97706 !important;
}

.dash-stat-ico.bg-success-subtle {
  background: #dcfce7 !important;
  color: #059669 !important;
}

.dash-stat-watermark {
  color: rgba(2, 132, 199, 0.04) !important;
  font-size: 5.5rem !important;
}

.dash-stat-value {
  font-size: 2.15rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
  color: #0f172a !important;
  margin: 0.5rem 0 !important;
}

.dash-stat-label {
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  color: #475569 !important;
}

/* 4. Dashboard Bento & Panels (Services & Domains Tables) */
.dash-panel {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: var(--aerocore-radius-lg) !important;
  padding: 1.75rem !important;
  box-shadow: 0 4px 16px -2px rgba(2, 132, 199, 0.04) !important;
}

.dash-panel-head {
  border-bottom: 1px solid #f1f5f9 !important;
  padding-bottom: 0.85rem !important;
  margin-bottom: 1rem !important;
}

.dash-panel-title {
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: #0f172a !important;
}

.dash-panel-link {
  color: #0284c7 !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: color 0.15s ease !important;
}

.dash-panel-link:hover {
  color: #0369a1 !important;
  text-decoration: underline !important;
}

.dash-service, .dash-row {
  border-top: 1px solid #f1f5f9 !important;
  padding: 0.85rem 0.6rem !important;
  border-radius: 10px !important;
  transition: background-color 0.15s ease !important;
}

.dash-service:hover, .dash-row:hover {
  background-color: #f8fafc !important;
}

.dash-service-name, .dash-row-title {
  color: #0f172a !important;
  font-weight: 600 !important;
  text-decoration: none !important;
}

.dash-service-name:hover, .dash-row-title:hover {
  color: #0284c7 !important;
}

.dash-service-meta, .dash-row-sub {
  color: #64748b !important;
}

.dash-gauge-track {
  stroke: #e0f2fe !important;
}

.dash-gauge-fill {
  stroke: #0284c7 !important;
}

.dash-meter {
  background: #e0f2fe !important;
}

.dash-meter > span {
  background: #0284c7 !important;
}

/* 5. Client Topbar & Navigation Shell */
.client-topbar {
  background: rgba(255, 255, 255, 0.96) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  border-bottom: 1px solid #e2e8f0 !important;
  box-shadow: 0 2px 12px rgba(2, 132, 199, 0.04) !important;
}

.client-topbar .header-icon-btn {
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  color: #475569 !important;
}

.client-topbar .header-icon-btn:hover {
  background: #f0f9ff !important;
  color: #0284c7 !important;
  border-color: #bae6fd !important;
}

.client-topbar-badge {
  background: #0284c7 !important;
  color: #ffffff !important;
}

.account-switcher-toggle {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 9999px !important;
  padding: 4px 12px !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04) !important;
}

.account-switcher-toggle:hover {
  border-color: #7dd3fc !important;
  background: #f0f9ff !important;
}

.account-switcher-ava {
  background: #e0f2fe !important;
  color: #0284c7 !important;
  font-weight: 700 !important;
}

body[data-client-nav=sidebar] .client-main {
  background-color: #f8fafc !important;
}

.client-footer {
  background: #ffffff !important;
  border-top: 1px solid #e2e8f0 !important;
  color: #64748b !important;
}

/* 6. Standard Dashboard Sidebar/Rail (dashboard-standard.tpl) */
.dashx-card {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: var(--aerocore-radius-lg) !important;
  box-shadow: 0 4px 16px -2px rgba(2, 132, 199, 0.04) !important;
  padding: 1.5rem !important;
  margin-bottom: 1.25rem !important;
}

.dashx-identity-name {
  color: #0f172a !important;
  font-weight: 700 !important;
  font-size: 1.15rem !important;
}

.dashx-identity-email {
  color: #64748b !important;
  font-size: 0.85rem !important;
}

.dashx-quick-item {
  color: #475569 !important;
  border-radius: 10px !important;
  padding: 0.65rem 0.85rem !important;
  transition: all 0.18s ease !important;
  text-decoration: none !important;
}

.dashx-quick-item:hover {
  background: #f0f9ff !important;
  color: #0284c7 !important;
  transform: translateX(2px) !important;
}

/* 7. Inner Client Area Tables & Summary Cards (services, invoices, tickets, domains) */
.list-summary {
  display: grid !important;
  gap: 1rem !important;
}

.list-tile {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: var(--aerocore-radius-md) !important;
  box-shadow: 0 2px 10px rgba(2, 132, 199, 0.04) !important;
  transition: all 0.2s ease !important;
  padding: 1.2rem 1.4rem !important;
}

.list-tile:hover {
  border-color: #7dd3fc !important;
  box-shadow: 0 8px 20px rgba(2, 132, 199, 0.08) !important;
  transform: translateY(-2px) !important;
}

.list-tile-value {
  color: #0f172a !important;
  font-weight: 800 !important;
  font-size: 1.5rem !important;
}

.list-tile-label {
  color: #64748b !important;
  font-weight: 600 !important;
}

.wcp-table .table-responsive {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: var(--aerocore-radius-lg) !important;
  box-shadow: 0 4px 16px -2px rgba(2, 132, 199, 0.04) !important;
  overflow: hidden !important;
}

.wcp-table thead th {
  background: #f8fafc !important;
  color: #475569 !important;
  font-weight: 700 !important;
  font-size: 0.8125rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  border-bottom: 1px solid #e2e8f0 !important;
  padding: 1rem 1.25rem !important;
}

.wcp-table tbody td {
  border-bottom: 1px solid #f1f5f9 !important;
  color: #334155 !important;
  padding: 1.1rem 1.25rem !important;
  vertical-align: middle !important;
}

.wcp-table tbody tr:hover td {
  background-color: #f0f9ff !important;
}

/* ==========================================================================
   HOMEPAGE DOWN-SCROLL SECTIONS (ZERO DARK GLOOM, PURE AZURE AIRINESS)
   ========================================================================== */

/* Plans Rack */
.plans-rack {
  background: #ffffff !important;
  color: #0f172a !important;
  padding: 5rem 0 !important;
}

.plans-rack .section-head h2 {
  color: #0f172a !important;
  font-size: clamp(2rem, 4vw, 2.75rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
}

.plans-rack .section-lead {
  color: #64748b !important;
  font-size: 1.05rem !important;
}

.rack-bar {
  background: #f1f5f9 !important;
  border-radius: 9999px !important;
  padding: 6px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  margin-bottom: 2.5rem !important;
  border: 1px solid #e2e8f0 !important;
}

.rack-bar .nav-link {
  color: #475569 !important;
  border-radius: 9999px !important;
  font-weight: 600 !important;
  padding: 8px 20px !important;
  transition: all 0.2s ease !important;
}

.rack-bar .nav-link:hover {
  color: #0284c7 !important;
}

.rack-bar .nav-link.active {
  background: #0284c7 !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3) !important;
}

.billing-toggle {
  background: #e2e8f0 !important;
  border-radius: 9999px !important;
  padding: 4px !important;
}

.billing-option {
  border-radius: 9999px !important;
  font-size: 0.8125rem !important;
  font-weight: 600 !important;
  padding: 5px 14px !important;
  color: #64748b !important;
  border: none !important;
  background: transparent !important;
  transition: all 0.2s ease !important;
}

.billing-option.active {
  background: #ffffff !important;
  color: #0284c7 !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08) !important;
}

/* Newsletter Panel (Refreshed Luminous Water Harmony) */
.newsletter-band {
  background-color: #f8fafc !important;
}

.newsletter-panel {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%) !important;
  border: 1px solid #bae6fd !important;
  border-radius: var(--aerocore-radius-xl) !important;
  box-shadow: 0 16px 36px -6px rgba(2, 132, 199, 0.12) !important;
  padding: 3.5rem 3rem !important;
  color: #0f172a !important;
}

.newsletter-panel h2 {
  color: #0f172a !important;
  font-weight: 800 !important;
  letter-spacing: -0.025em !important;
}

.newsletter-kicker {
  color: #0284c7 !important;
  font-weight: 700 !important;
}

.newsletter-sub {
  color: #475569 !important;
  font-size: 1rem !important;
}

.newsletter-panel .form-control {
  background: #ffffff !important;
  border: 1px solid #cbd5e1 !important;
  color: #0f172a !important;
  border-radius: var(--aerocore-radius-md) !important;
  padding: 0.75rem 1.25rem !important;
}

.newsletter-panel .form-control:focus {
  border-color: #0284c7 !important;
  box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.2) !important;
}

.newsletter-panel .btn-secondary {
  background: #0284c7 !important;
  border-color: #0284c7 !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  border-radius: var(--aerocore-radius-md) !important;
  padding: 0.75rem 1.75rem !important;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.3) !important;
  transition: all 0.2s ease !important;
}

.newsletter-panel .btn-secondary:hover {
  background: #0369a1 !important;
  border-color: #0369a1 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 8px 20px rgba(2, 132, 199, 0.35) !important;
}

.newsletter-band .form-check-label {
  color: #64748b !important;
}

.newsletter-band .form-check-label a {
  color: #0284c7 !important;
  font-weight: 600 !important;
}

/* ==========================================================================
   FOOTER (CLEAN, CHARCOAL & AZURE ENTERPRISE TRUST)
   ========================================================================== */
.site-footer {
  background: #0f172a !important;
  color: #94a3b8 !important;
  padding-top: 4.5rem !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.site-footer a {
  color: #94a3b8 !important;
  text-decoration: none !important;
  transition: color 0.15s ease !important;
}

.site-footer a:hover {
  color: #38bdf8 !important;
}

.site-footer .footer-heading {
  color: #ffffff !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
}

.site-footer .footer-base {
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

/* ==========================================================================
   PAGE HERO & SUB-PAGE BANDS (CRYSTAL WATER AESTHETIC ACROSS ALL PAGES)
   ========================================================================== */
.page-hero, .aerocore-page-hero {
  background: radial-gradient(circle at 50% 0%, rgba(14, 165, 233, 0.12) 0%, rgba(255, 255, 255, 0) 70%),
              linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%) !important;
  border-bottom: 1px solid #e0f2fe !important;
  padding: 4rem 0 3.5rem !important;
  color: #0f172a !important;
}

.page-hero .page-hero-title, .aerocore-page-hero .page-hero-title {
  color: #0f172a !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
}

.page-hero .page-hero-lead, .aerocore-page-hero .page-hero-lead {
  color: #64748b !important;
}

.page-hero .breadcrumb-item a, .aerocore-page-hero .breadcrumb-item a {
  color: #0284c7 !important;
  text-decoration: none !important;
}

.page-hero .breadcrumb-item.active, .aerocore-page-hero .breadcrumb-item.active {
  color: #94a3b8 !important;
}

/* Eliminate dark gloomy bands in all sub-pages */
.band-dark {
  background: #f8fafc !important;
  color: #0f172a !important;
  border-top: 1px solid #e2e8f0 !important;
  border-bottom: 1px solid #e2e8f0 !important;
}

.band-dark .section-head h2, .band-dark h2 {
  color: #0f172a !important;
}

.band-dark .section-head .section-lead, .band-dark p {
  color: #64748b !important;
}

.stat-band {
  background: #ffffff !important;
  color: #0f172a !important;
}

.stat-band .stat-value {
  color: #0f172a !important;
}

.stat-band .stat-label {
  color: #64748b !important;
}

/* ==========================================================================
   GLOBAL ANYCAST DATACENTER & PING NETWORK (CRYSTAL CLEAR HIGH CONTRAST)
   ========================================================================== */
.aerocore-datacenter-box {
  background: linear-gradient(135deg, #07192f 0%, #0c274c 50%, #034673 100%) !important;
  border-radius: var(--aerocore-radius-xl) !important;
  padding: 3.5rem 3rem !important;
  box-shadow: 0 20px 45px -10px rgba(2, 132, 199, 0.3) !important;
  border: 1px solid rgba(56, 189, 248, 0.3) !important;
  position: relative !important;
  overflow: hidden !important;
  color: #ffffff !important;
}

.aerocore-datacenter-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(56, 189, 248, 0.15) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.aerocore-datacenter-box h2 {
  color: #ffffff !important;
  font-weight: 800 !important;
  letter-spacing: -0.025em !important;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem) !important;
}

.aerocore-datacenter-box p {
  color: #cbd5e1 !important;
  font-size: 1rem !important;
  line-height: 1.65 !important;
}

.aerocore-tech-pill {
  display: inline-flex !important;
  align-items: center !important;
  padding: 8px 16px !important;
  border-radius: 9999px !important;
  font-size: 0.8125rem !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
}

.aerocore-ping-node {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border-radius: var(--aerocore-radius-md) !important;
  padding: 1.15rem 1.25rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  transition: all 0.25s ease !important;
}

.aerocore-ping-node:hover {
  background: rgba(255, 255, 255, 0.16) !important;
  border-color: #38bdf8 !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 24px -4px rgba(2, 132, 199, 0.4) !important;
}

.aerocore-ping-node h4 {
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  margin-bottom: 2px !important;
}

.aerocore-ping-node small {
  color: #94a3b8 !important;
  font-size: 0.78rem !important;
}

.aerocore-ping-badge {
  background: #10b981 !important;
  color: #ffffff !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  padding: 4px 10px !important;
  border-radius: 9999px !important;
  font-family: monospace !important;
  letter-spacing: -0.02em !important;
  box-shadow: 0 2px 6px rgba(16, 185, 129, 0.4) !important;
}

.btn-ping {
  background: rgba(255, 255, 255, 0.15) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  color: #ffffff !important;
  border-radius: 8px !important;
  transition: all 0.2s ease !important;
}

.btn-ping:hover {
  background: #38bdf8 !important;
  color: #0f172a !important;
  border-color: #38bdf8 !important;
}

/* ==========================================================================
   FAQ ACCORDION (CRISP WHITE, ULTRA-READABLE & HIGH CONVERTING)
   ========================================================================== */
.aerocore-accordion .accordion-item {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: var(--aerocore-radius-md) !important;
  margin-bottom: 1rem !important;
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.04) !important;
  overflow: hidden !important;
  transition: all 0.2s ease !important;
}

.aerocore-accordion .accordion-item:hover {
  border-color: #bae6fd !important;
  box-shadow: 0 6px 18px rgba(2, 132, 199, 0.08) !important;
}

.aerocore-accordion .accordion-button {
  background: #ffffff !important;
  color: #0f172a !important;
  font-weight: 700 !important;
  font-size: 1.05rem !important;
  padding: 1.25rem 1.5rem !important;
  box-shadow: none !important;
}

.aerocore-accordion .accordion-button:not(.collapsed) {
  background: #f0f9ff !important;
  color: #0284c7 !important;
}

.aerocore-accordion .accordion-body {
  background: #ffffff !important;
  color: #475569 !important;
  font-size: 0.95rem !important;
  line-height: 1.7 !important;
  padding: 1.25rem 1.5rem 1.5rem !important;
  border-top: 1px solid #f1f5f9 !important;
}

/* ==========================================================================
   PARTNER LOGOS BAR & BADGES
   ========================================================================== */
.brand-strip {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 2.5rem 3.5rem !important;
}

.brand-strip .brand-logo {
  height: 32px !important;
  max-width: 120px !important;
  object-fit: contain !important;
  filter: grayscale(1) contrast(0.5) brightness(0.6) !important;
  opacity: 0.75 !important;
  transition: all 0.25s ease !important;
}

.brand-strip .brand-item:hover .brand-logo {
  filter: none !important;
  opacity: 1 !important;
  transform: scale(1.08) !important;
}

.aerocore-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 6px 14px !important;
  border-radius: 9999px !important;
  font-size: 0.8125rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  background: #e0f2fe !important;
  color: #0284c7 !important;
  border: 1px solid #bae6fd !important;
}

.aerocore-badge-pulse {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: #0ea5e9 !important;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.3) !important;
  display: inline-block !important;
  animation: aeroPulseAnimation 2s infinite !important;
}
