/*
 * ╔══════════════════════════════════════════════════════════════╗
 * ║  DAMLAHOSTING — Modern Dark Tech Design System               ║
 * ║  File: aerocore-pro.css                                      ║
 * ║  Concept: "Electric Depth — Dark Canvas & Blue Gradient"     ║
 * ║  Inspired by: Vercel, Linear, Resend.com                     ║
 * ╚══════════════════════════════════════════════════════════════╝
 */

/* ════════════════════════════════════════════════════════════════
   1. DESIGN TOKENS — OVERRIDE
   ════════════════════════════════════════════════════════════════ */
:root {
  /* — Primary: electric blue (more vibrant) — */
  --aerocore-primary:        #3b82f6;
  --aerocore-primary-hover:  #2563eb;
  --aerocore-primary-rgb:    59, 130, 246;
  --aerocore-azure:          #22d3ee;
  --aerocore-sky:            #93c5fd;
  --aerocore-water:          rgba(59, 130, 246, 0.08);

  /* — Extended palette — */
  --pro-indigo:    #6366f1;
  --pro-cyan:      #22d3ee;
  --pro-violet:    #a78bfa;
  --pro-emerald:   #10b981;
  --pro-amber:     #f59e0b;

  /* — Dark surface layers — */
  --pro-canvas:    #020817;
  --pro-surface:   #0f172a;
  --pro-surface-2: #1e293b;
  --pro-surface-3: #273549;
  --pro-card:      rgba(13, 20, 36, 0.9);

  /* — Glass system — */
  --pro-glass-bg:     rgba(15, 23, 42, 0.65);
  --pro-glass-border: rgba(255, 255, 255, 0.08);
  --pro-glass-hover:  rgba(255, 255, 255, 0.04);

  /* — Gradients — */
  --pro-grad-primary: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
  --pro-grad-hero:    linear-gradient(135deg, #60a5fa 0%, #818cf8 50%, #c4b5fd 100%);
  --pro-grad-cta:     linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
  --pro-grad-green:   linear-gradient(135deg, #10b981 0%, #059669 100%);

  /* — Text on dark — */
  --pro-text-bright: #f1f5f9;
  --pro-text-mid:    #cbd5e1;
  --pro-text-muted:  #64748b;
  --pro-text-dimmer: #334155;

  /* — Borders — */
  --pro-border:       rgba(255, 255, 255, 0.07);
  --pro-border-blue:  rgba(59, 130, 246, 0.35);
  --pro-border-glow:  rgba(99, 102, 241, 0.5);

  /* — Shadows — */
  --pro-shadow-sm:   0 1px 4px rgba(0, 0, 0, 0.4);
  --pro-shadow-md:   0 4px 20px rgba(0, 0, 0, 0.35);
  --pro-shadow-lg:   0 12px 40px rgba(0, 0, 0, 0.45);
  --pro-shadow-blue: 0 0 40px rgba(59, 130, 246, 0.2);
  --pro-shadow-glow: 0 8px 32px rgba(59, 130, 246, 0.35);

  /* — Override aerocore shadow tokens — */
  --aerocore-shadow-sm: 0 1px 3px rgba(59, 130, 246, 0.06);
  --aerocore-shadow-md: 0 4px 16px rgba(59, 130, 246, 0.12);
  --aerocore-shadow-lg: 0 12px 32px rgba(59, 130, 246, 0.18);
  --aerocore-shadow-xl: 0 20px 50px rgba(59, 130, 246, 0.22);
}

/* ════════════════════════════════════════════════════════════════
   2. TOPBAR — REFINED DARK
   ════════════════════════════════════════════════════════════════ */
.topbar {
  background: rgba(2, 8, 23, 0.98) !important;
  border-bottom: 1px solid rgba(59, 130, 246, 0.1) !important;
}
.topbar a:hover {
  color: #60a5fa !important;
}
.topbar .text-primary,
.topbar i.text-primary {
  color: #3b82f6 !important;
}

/* ════════════════════════════════════════════════════════════════
   3. SITE HEADER — DARK GLASS
   ════════════════════════════════════════════════════════════════ */
.site-header {
  background: rgba(2, 8, 23, 0.88) !important;
  backdrop-filter: blur(20px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(160%) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04),
    0 4px 24px rgba(0, 0, 0, 0.35) !important;
}

/* Logo styling */
.site-header .site-logo {
  height: 40px !important;
  width: auto !important;
  object-fit: contain !important;
  transition: transform 0.2s ease !important;
}
.site-header .site-logo:hover {
  transform: scale(1.02) !important;
}
.site-header .site-brand-text {
  color: #f1f5f9 !important;
  font-weight: 700 !important;
}

/* Nav links — light on dark */
.site-nav .nav-link {
  color: #94a3b8 !important;
  font-weight: 500 !important;
  font-size: 0.9rem !important;
  transition: color 0.18s ease, background 0.18s ease !important;
  border-radius: 8px !important;
}
.site-nav .nav-link:hover,
.site-nav .nav-link:focus {
  color: #f1f5f9 !important;
  background: rgba(255, 255, 255, 0.06) !important;
}
.site-nav .nav-link.active {
  color: #60a5fa !important;
}

/* Chevrons */
.nav-chevron {
  color: #475569 !important;
  transition: transform 0.2s ease, color 0.2s ease !important;
}
.site-nav .nav-link:hover .nav-chevron {
  color: #93c5fd !important;
}

/* Dropdown panels */
.nav-dropdown {
  background: rgba(10, 16, 32, 0.97) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow:
    0 0 0 1px rgba(59, 130, 246, 0.06),
    0 20px 50px rgba(0, 0, 0, 0.55) !important;
  border-radius: 16px !important;
  backdrop-filter: blur(16px) !important;
}
.nav-dropdown .dropdown-item {
  color: #94a3b8 !important;
  border-radius: 10px !important;
  transition: all 0.18s ease !important;
}
.nav-dropdown .dropdown-item:hover,
.nav-dropdown .dropdown-item:focus {
  background: rgba(59, 130, 246, 0.08) !important;
  color: #f1f5f9 !important;
}
.nav-dropdown .item-title {
  color: #cbd5e1 !important;
  font-weight: 600 !important;
}
.nav-dropdown .item-desc {
  color: #475569 !important;
  font-size: 0.78rem !important;
}

/* Icon discs in dropdown */
.nav-dropdown .icon-disc {
  background: rgba(59, 130, 246, 0.09) !important;
  border: 1px solid rgba(59, 130, 246, 0.18) !important;
  color: #60a5fa !important;
  transition: all 0.22s ease !important;
}
.nav-dropdown .dropdown-item:hover .icon-disc {
  background: var(--pro-grad-primary) !important;
  border-color: transparent !important;
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4) !important;
  transform: scale(1.08) !important;
}

/* Mega menu section labels */
.nav-mega-label {
  color: #334155 !important;
  font-size: 0.68rem !important;
  letter-spacing: 0.12em !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  padding: 0 0.5rem !important;
  margin-bottom: 0.25rem !important;
}

/* Header action buttons */
.site-header .btn-outline-primary {
  border-color: rgba(255, 255, 255, 0.15) !important;
  color: #94a3b8 !important;
  background: transparent !important;
}
.site-header .btn-outline-primary:hover {
  border-color: rgba(59, 130, 246, 0.6) !important;
  color: #60a5fa !important;
  background: rgba(59, 130, 246, 0.08) !important;
}
.site-header .btn-primary {
  background: var(--pro-grad-primary) !important;
  border: none !important;
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.35) !important;
  transition: all 0.22s ease !important;
}
.site-header .btn-primary:hover {
  background: var(--pro-grad-cta) !important;
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5) !important;
  transform: translateY(-1px) !important;
}
.site-header .btn-soft,
.site-header .header-icon-btn {
  background: rgba(255, 255, 255, 0.05) !important;
  color: #64748b !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
}
.site-header .btn-soft:hover,
.site-header .header-icon-btn:hover {
  background: rgba(255, 255, 255, 0.09) !important;
  color: #f1f5f9 !important;
  border-color: rgba(255, 255, 255, 0.14) !important;
}

/* ════════════════════════════════════════════════════════════════
   4. HERO SECTION — DARK GRADIENT CANVAS
   ════════════════════════════════════════════════════════════════ */
.aerocore-hero-section {
  padding: 7rem 0 8.5rem !important;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(99, 102, 241, 0.22) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 85% 40%, rgba(59, 130, 246, 0.14) 0%, transparent 50%),
    radial-gradient(ellipse 35% 30% at 15% 80%, rgba(167, 139, 250, 0.1) 0%, transparent 50%),
    #020817 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

/* Dot grid overlay */
.aerocore-hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(148, 163, 184, 0.055) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 1;
}

/* Top glow orb */
.aerocore-hero-section::after {
  content: '';
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.18) 0%, rgba(99, 102, 241, 0.08) 40%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  border-radius: 50%;
}

/* Hero badge pill */
.aerocore-hero-badge {
  background: rgba(59, 130, 246, 0.07) !important;
  border: 1px solid rgba(59, 130, 246, 0.22) !important;
  color: #93c5fd !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  font-size: 0.8rem !important;
  font-weight: 500 !important;
}
.aerocore-hero-badge .badge {
  background: rgba(59, 130, 246, 0.18) !important;
  color: #93c5fd !important;
  font-weight: 600 !important;
}
.aerocore-pulse-dot {
  background: #10b981 !important;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6) !important;
}

/* Hero main title */
.aerocore-hero-title {
  color: #f8fafc !important;
  font-size: clamp(1.9rem, 5vw, 4.4rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.035em !important;
  line-height: 1.15 !important;
  text-shadow: 0 0 100px rgba(59, 130, 246, 0.25) !important;
  contain: layout;
}
.aerocore-hero-title span.highlight {
  background: var(--pro-grad-hero) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

/* Hero lead paragraph */
.aerocore-hero-lead {
  color: #94a3b8 !important;
  font-size: 1.05rem !important;
  max-width: 620px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  line-height: 1.7 !important;
  contain: layout;
}

/* Domain search card */
.aerocore-search-card {
  background: rgba(13, 20, 36, 0.75) !important;
  border: 1px solid rgba(59, 130, 246, 0.22) !important;
  border-radius: 16px !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03),
    0 24px 60px rgba(0, 0, 0, 0.55),
    var(--pro-shadow-blue) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}
.aerocore-search-card input {
  color: #e2e8f0 !important;
  background: transparent !important;
}
.aerocore-search-card input::placeholder {
  color: #334155 !important;
}
.aerocore-search-card > i {
  color: #334155 !important;
}
.aerocore-search-card:focus-within {
  border-color: rgba(59, 130, 246, 0.45) !important;
  box-shadow:
    0 0 0 3px rgba(59, 130, 246, 0.12),
    0 24px 60px rgba(0, 0, 0, 0.5) !important;
}

/* Search submit */
.aerocore-search-submit {
  background: var(--pro-grad-primary) !important;
  border: none !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.4) !important;
  color: #fff !important;
  font-weight: 600 !important;
  transition: all 0.22s ease !important;
}
.aerocore-search-submit:hover {
  background: var(--pro-grad-cta) !important;
  box-shadow: 0 6px 24px rgba(59, 130, 246, 0.55) !important;
  transform: translateY(-1px) !important;
}

/* TLD chips */
.aerocore-tld-chip {
  background: rgba(13, 20, 36, 0.65) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: #64748b !important;
  backdrop-filter: blur(8px) !important;
  transition: all 0.2s ease !important;
}
.aerocore-tld-chip:hover {
  background: rgba(59, 130, 246, 0.08) !important;
  border-color: rgba(59, 130, 246, 0.28) !important;
  color: #93c5fd !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.2) !important;
}
.aerocore-tld-chip .tld-price {
  color: #60a5fa !important;
  font-weight: 700 !important;
}
.aerocore-tld-chip strong {
  color: #cbd5e1 !important;
}

/* Trust badges row */
.aerocore-hero-section .d-flex.text-secondary {
  color: #475569 !important;
}
.aerocore-hero-section .bi-shield-check { color: #34d399 !important; }
.aerocore-hero-section .bi-lightning-charge { color: #60a5fa !important; }
.aerocore-hero-section .bi-arrow-repeat { color: #22d3ee !important; }
.aerocore-hero-section .bi-award { color: #fbbf24 !important; }

/* Section Head Typography & Eyebrow Badge */
.section-head {
  text-align: center !important;
  margin-bottom: 2.75rem !important;
}

.section-head .eyebrow,
.section-head .section-label {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.4rem !important;
  background: rgba(59, 130, 246, 0.1) !important;
  border: 1px solid rgba(59, 130, 246, 0.25) !important;
  color: #60a5fa !important;
  border-radius: 999px !important;
  padding: 0.28rem 0.9rem !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  margin-bottom: 0.85rem !important;
}

.section-head h2,
.section-head .tracking-tight {
  color: #f8fafc !important;
  font-size: clamp(1.75rem, 3.5vw, 2.35rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
  margin-bottom: 0.65rem !important;
}

.section-head .section-lead {
  color: #94a3b8 !important;
  font-size: 1.05rem !important;
  max-width: 680px !important;
  margin: 0 auto !important;
  line-height: 1.65 !important;
}

/* ════════════════════════════════════════════════════════════════
   5. HOMEPAGE CONTENT SECTIONS — DARK THEME
   ════════════════════════════════════════════════════════════════ */

/* --- Features Section --- */
.aerocore-features-section {
  background: #020817 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}
.aerocore-features-section .section-label {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.4rem !important;
  background: rgba(59, 130, 246, 0.09) !important;
  border: 1px solid rgba(59, 130, 246, 0.22) !important;
  color: #60a5fa !important;
  border-radius: 999px !important;
  padding: 0.3rem 0.85rem !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.09em !important;
  text-transform: uppercase !important;
  margin-bottom: 1rem !important;
}
.aerocore-features-section h2 { color: #f1f5f9 !important; }
.aerocore-features-section p,
.aerocore-features-section .lead { color: #64748b !important; }
.aerocore-features-section .text-body-secondary { color: #475569 !important; }

/* Feature Cards — Dark Glass */
.aerocore-feature-card,
.why-card {
  background: rgba(15, 23, 42, 0.6) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 18px !important;
  padding: 1.75rem !important;
  height: 100% !important;
  transition: all 0.28s cubic-bezier(.25,.46,.45,.94) !important;
  position: relative !important;
  overflow: hidden !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25) !important;
}
.aerocore-feature-card::before,
.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}
.aerocore-feature-card:hover,
.why-card:hover {
  background: rgba(15, 23, 42, 0.85) !important;
  border-color: rgba(59, 130, 246, 0.25) !important;
  transform: translateY(-5px) !important;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.4),
    0 0 25px rgba(59, 130, 246, 0.15) !important;
}
.aerocore-feature-card:hover::before,
.why-card:hover::before { opacity: 1 !important; }
.aerocore-feature-card h3,
.aerocore-feature-card h4,
.why-card h3,
.why-card .why-title { color: #f1f5f9 !important; font-size: 1.05rem !important; font-weight: 600 !important; }
.aerocore-feature-card p,
.why-card p,
.why-card .why-desc { color: #94a3b8 !important; font-size: 0.9rem !important; margin-bottom: 0 !important; line-height: 1.6 !important; }

/* Icon disc in feature cards */
.aerocore-icon-wrap {
  width: 48px !important;
  height: 48px !important;
  border-radius: 12px !important;
  background: rgba(59, 130, 246, 0.08) !important;
  border: 1px solid rgba(59, 130, 246, 0.18) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.2rem !important;
  color: #60a5fa !important;
  margin-bottom: 1.1rem !important;
  transition: all 0.28s ease !important;
  flex-shrink: 0 !important;
}
.aerocore-feature-card:hover .aerocore-icon-wrap {
  background: var(--pro-grad-primary) !important;
  border-color: transparent !important;
  color: #fff !important;
  box-shadow: 0 6px 18px rgba(59, 130, 246, 0.4) !important;
  transform: scale(1.06) !important;
}

/* --- Statistics Section --- */
.aerocore-stats-section {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
    #020817 !important;
  border-top: 1px solid rgba(59, 130, 246, 0.08) !important;
  border-bottom: 1px solid rgba(59, 130, 246, 0.08) !important;
}
.aerocore-stat-deck {
  background: rgba(15, 23, 42, 0.7) !important;
  border: 1px solid rgba(59, 130, 246, 0.12) !important;
  border-radius: 20px !important;
  backdrop-filter: blur(16px) !important;
  transition: all 0.28s ease !important;
}
.aerocore-stat-inner {
  padding: 2rem 1.5rem !important;
  overflow: hidden !important;
}
.aerocore-stat-col {
  border-right: 1px solid rgba(255, 255, 255, 0.06) !important;
}
@media (max-width: 991.98px) {
  .aerocore-stat-col:nth-child(2) {
    border-right: none !important;
  }
  .aerocore-stat-col:nth-child(1),
  .aerocore-stat-col:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  }
}
.aerocore-stat-icon {
  width: 44px !important;
  height: 44px !important;
  border-radius: 12px !important;
  background: rgba(59, 130, 246, 0.1) !important;
  border: 1px solid rgba(59, 130, 246, 0.25) !important;
  color: #60a5fa !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.25rem !important;
  transition: all 0.2s ease !important;
}
.aerocore-stat-deck:hover .aerocore-stat-icon {
  background: var(--pro-grad-primary) !important;
  color: #fff !important;
  border-color: transparent !important;
}
.aerocore-stat-number {
  font-size: clamp(1.8rem, 3vw, 2.5rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
  color: #f8fafc !important;
  line-height: 1.1 !important;
  margin-bottom: 0.35rem !important;
}
.aerocore-stat-title {
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: #64748b !important;
}
.aerocore-stat-watermark {
  position: absolute !important;
  right: -10px !important;
  bottom: -15px !important;
  font-size: 5.5rem !important;
  color: #fff !important;
  opacity: 0.03 !important;
  pointer-events: none !important;
}

/* --- About Us Banner --- */
.aerocore-about-band {
  background:
    linear-gradient(135deg, #1a1040 0%, #0f1f3d 50%, #0f172a 100%) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  position: relative !important;
  overflow: hidden !important;
}
.aerocore-about-band::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.aerocore-about-band h2 { color: #f8fafc !important; }
.aerocore-about-band p,
.aerocore-about-band .lead { color: #94a3b8 !important; }
.aerocore-about-band .btn-outline-light {
  border-color: rgba(255, 255, 255, 0.25) !important;
  color: #e2e8f0 !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  transition: all 0.22s ease !important;
}
.aerocore-about-band .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.45) !important;
}
.aerocore-about-band .btn-primary,
.aerocore-about-band .btn-light {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: #f1f5f9 !important;
  backdrop-filter: blur(8px) !important;
  font-weight: 600 !important;
  transition: all 0.22s ease !important;
}
.aerocore-about-band .btn-primary:hover,
.aerocore-about-band .btn-light:hover {
  background: rgba(255, 255, 255, 0.16) !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
}

/* --- Datacenter Section --- */
.aerocore-datacenter-section {
  background:
    radial-gradient(ellipse at 5% 90%, rgba(99, 102, 241, 0.12) 0%, transparent 45%),
    radial-gradient(ellipse at 95% 10%, rgba(59, 130, 246, 0.1) 0%, transparent 40%),
    #020817 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}
.aerocore-datacenter-section h2 { color: #f1f5f9 !important; }
.aerocore-datacenter-section p { color: #64748b !important; }
.aerocore-datacenter-section .section-label {
  background: rgba(59, 130, 246, 0.09) !important;
  border: 1px solid rgba(59, 130, 246, 0.2) !important;
  color: #60a5fa !important;
  border-radius: 999px !important;
  padding: 0.3rem 0.85rem !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.09em !important;
  text-transform: uppercase !important;
  display: inline-block !important;
}

.aerocore-datacenter-box {
  background: rgba(13, 20, 36, 0.85) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 24px !important;
  padding: 3rem 2.5rem !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(59, 130, 246, 0.1) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
}
.aerocore-tech-pill {
  display: inline-flex !important;
  align-items: center !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 999px !important;
  padding: 0.4rem 0.95rem !important;
  color: #cbd5e1 !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
}
.aerocore-ping-badge {
  background: rgba(16, 185, 129, 0.12) !important;
  border: 1px solid rgba(16, 185, 129, 0.3) !important;
  color: #34d399 !important;
  font-family: monospace !important;
  font-weight: 700 !important;
  padding: 0.2rem 0.6rem !important;
  border-radius: 8px !important;
  font-size: 0.8rem !important;
}

/* Ping nodes */
.aerocore-ping-node {
  background: rgba(15, 23, 42, 0.7) !important;
  border: 1px solid rgba(255, 255, 255, 0.07) !important;
  border-radius: 16px !important;
  padding: 1rem 1.25rem !important;
  transition: all 0.28s ease !important;
  position: relative !important;
  overflow: hidden !important;
}
.aerocore-ping-node:hover {
  background: rgba(15, 23, 42, 0.9) !important;
  border-color: rgba(59, 130, 246, 0.25) !important;
  transform: translateY(-4px) !important;
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(59, 130, 246, 0.1) !important;
}
.btn-ping {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: #64748b !important;
  transition: all 0.2s ease !important;
}
.btn-ping:hover {
  background: rgba(59, 130, 246, 0.1) !important;
  border-color: rgba(59, 130, 246, 0.3) !important;
  color: #60a5fa !important;
}

/* --- FAQ Section --- */
.aerocore-faq-section {
  background:
    radial-gradient(ellipse at 50% 100%, rgba(59, 130, 246, 0.07) 0%, transparent 50%),
    #020817 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}
.aerocore-faq-section h2 { color: #f1f5f9 !important; }
.aerocore-faq-section p { color: #64748b !important; }
.aerocore-faq-section .section-label {
  background: rgba(59, 130, 246, 0.09) !important;
  border: 1px solid rgba(59, 130, 246, 0.2) !important;
  color: #60a5fa !important;
  border-radius: 999px !important;
  padding: 0.3rem 0.85rem !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.09em !important;
  text-transform: uppercase !important;
  display: inline-block !important;
}

/* FAQ Items */
.aerocore-faq-item,
.aerocore-accordion .accordion-item,
#aerocoreFaqAccordion .accordion-item {
  background: rgba(13, 20, 36, 0.75) !important;
  border: 1px solid rgba(255, 255, 255, 0.07) !important;
  border-radius: 16px !important;
  margin-bottom: 0.85rem !important;
  overflow: hidden !important;
  backdrop-filter: blur(16px) !important;
  transition: all 0.25s ease !important;
}
.aerocore-faq-item:hover,
.aerocore-accordion .accordion-item:hover,
#aerocoreFaqAccordion .accordion-item:hover {
  border-color: rgba(59, 130, 246, 0.35) !important;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(59, 130, 246, 0.1) !important;
}
.aerocore-accordion .accordion-button,
#aerocoreFaqAccordion .accordion-button {
  background: transparent !important;
  color: #f1f5f9 !important;
  font-weight: 600 !important;
  font-size: 1.05rem !important;
  padding: 1.25rem 1.5rem !important;
  box-shadow: none !important;
}
.aerocore-accordion .accordion-button:not(.collapsed),
#aerocoreFaqAccordion .accordion-button:not(.collapsed) {
  background: rgba(59, 130, 246, 0.08) !important;
  color: #60a5fa !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
}
.aerocore-accordion .accordion-button::after,
#aerocoreFaqAccordion .accordion-button::after {
  filter: invert(1) brightness(1.5) !important;
}
.aerocore-accordion .accordion-body,
#aerocoreFaqAccordion .accordion-body {
  background: transparent !important;
  color: #94a3b8 !important;
  font-size: 0.95rem !important;
  line-height: 1.75 !important;
  padding: 1.25rem 1.5rem !important;
}
.aerocore-faq-question {
  color: #cbd5e1 !important;
  font-weight: 600 !important;
}
.aerocore-faq-question:hover { color: #f1f5f9 !important; }
.aerocore-faq-answer {
  color: #94a3b8 !important;
  line-height: 1.7 !important;
}

/* ════════════════════════════════════════════════════════════════
   6. PLANS / PRICING — ULTRA MODERN DARK TECH GLASS RACK
   ════════════════════════════════════════════════════════════════ */
.aerocore-plans-section,
.aerocore-plans-section-server,
.plans-rack {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(59, 130, 246, 0.15) 0%, transparent 65%),
    radial-gradient(ellipse 40% 30% at 80% 80%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
    #020817 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.aerocore-plans-section h2,
.plans-rack h2,
.plans-rack .tracking-tight {
  color: #f8fafc !important;
}

.aerocore-plan-card {
  background: rgba(13, 20, 36, 0.75) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 20px !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  transition: all 0.3s cubic-bezier(.25,.46,.45,.94) !important;
  position: relative !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05),
    0 16px 40px rgba(0, 0, 0, 0.5) !important;
}

.aerocore-plan-card:hover {
  background: rgba(15, 23, 42, 0.9) !important;
  border-color: rgba(59, 130, 246, 0.45) !important;
  transform: translateY(-6px) !important;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.6),
    0 0 35px rgba(59, 130, 246, 0.25) !important;
}

.aerocore-plan-card.is-popular {
  background: rgba(15, 23, 42, 0.95) !important;
  border: 1px solid rgba(59, 130, 246, 0.6) !important;
  box-shadow:
    0 0 0 1px rgba(59, 130, 246, 0.35),
    0 24px 60px rgba(0, 0, 0, 0.7),
    0 0 45px rgba(59, 130, 246, 0.3) !important;
}

.plan-popular-badge {
  background: var(--pro-grad-primary) !important;
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.08em !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

/* WISECP Native Plan Rack Overrides */
.rack-shell {
  background: rgba(13, 20, 36, 0.8) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 24px !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5) !important;
  backdrop-filter: blur(20px) !important;
}

.rack-bar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.rack-bar .nav-pills .nav-link {
  color: #94a3b8 !important;
  border-radius: 12px !important;
  font-weight: 600 !important;
  transition: all 0.2s ease !important;
}

.rack-bar .nav-pills .nav-link:hover {
  color: #f1f5f9 !important;
  background: rgba(255, 255, 255, 0.05) !important;
}

.rack-bar .nav-pills .nav-link.active {
  color: #fff !important;
  background: var(--pro-grad-primary) !important;
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4) !important;
}

.billing-toggle {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 999px !important;
  padding: 4px !important;
}

.billing-toggle .billing-option {
  color: #94a3b8 !important;
  border-radius: 999px !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
}

.billing-toggle .billing-option.active {
  background: var(--pro-grad-primary) !important;
  color: #fff !important;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.35) !important;
}

.plan-card {
  background: rgba(15, 23, 42, 0.75) !important;
  border: 1px solid rgba(255, 255, 255, 0.07) !important;
  border-radius: 20px !important;
  color: #cbd5e1 !important;
}

.plan-card:hover {
  border-color: rgba(59, 130, 246, 0.4) !important;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 0 30px rgba(59, 130, 246, 0.2) !important;
}

/* ════════════════════════════════════════════════════════════════
   6.1. HORIZONTAL SERVER PLAN ROWS (VDS / VPS / DEDICATED)
   ════════════════════════════════════════════════════════════════ */
.aerocore-plan-rows {
  display: flex !important;
  flex-direction: column !important;
  gap: 1.25rem !important;
}

.aerocore-plan-row-card {
  background: rgba(13, 20, 36, 0.85) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 20px !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05),
    0 12px 32px rgba(0, 0, 0, 0.45) !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  position: relative !important;
  overflow: hidden !important;
}

.aerocore-plan-row-card:hover {
  border-color: rgba(59, 130, 246, 0.45) !important;
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.55),
    0 0 30px rgba(59, 130, 246, 0.2) !important;
  transform: translateY(-3px) !important;
}

.aerocore-plan-row-card.is-popular {
  border: 1px solid rgba(59, 130, 246, 0.6) !important;
  box-shadow:
    0 0 0 1px rgba(59, 130, 246, 0.35),
    0 20px 50px rgba(0, 0, 0, 0.6),
    0 0 35px rgba(59, 130, 246, 0.25) !important;
}

.aerocore-plan-row-card.is-popular::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: var(--pro-grad-primary);
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.8);
}

.aerocore-plan-row-body {
  display: grid !important;
  grid-template-columns: 240px 1fr auto !important;
  align-items: center !important;
  gap: 1.5rem !important;
  padding: 1.35rem 1.75rem !important;
}

@media (max-width: 991.98px) {
  .aerocore-plan-row-body {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
    padding: 1.25rem !important;
  }
}

.aerocore-server-icon {
  width: 44px !important;
  height: 44px !important;
  border-radius: 12px !important;
  background: rgba(59, 130, 246, 0.1) !important;
  border: 1px solid rgba(59, 130, 246, 0.25) !important;
  color: #60a5fa !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.25rem !important;
  flex-shrink: 0 !important;
  transition: all 0.2s ease !important;
}

.aerocore-plan-row-card:hover .aerocore-server-icon {
  background: var(--pro-grad-primary) !important;
  color: #fff !important;
  border-color: transparent !important;
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4) !important;
}

.aerocore-plan-row-header h3 {
  color: #f8fafc !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
}

.aerocore-spec-box {
  display: inline-flex !important;
  flex-direction: column !important;
  padding: 0.5rem 0.85rem !important;
  border-radius: 12px !important;
  background: rgba(2, 8, 23, 0.6) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  text-align: center !important;
  min-width: 90px !important;
  transition: all 0.2s ease !important;
}

.aerocore-spec-box:hover {
  border-color: rgba(59, 130, 246, 0.4) !important;
  background: rgba(59, 130, 246, 0.08) !important;
}

.aerocore-spec-box .spec-value {
  font-size: 0.92rem !important;
  font-weight: 700 !important;
  color: #f8fafc !important;
  white-space: nowrap !important;
}

.aerocore-spec-box .spec-label {
  font-size: 0.7rem !important;
  font-weight: 600 !important;
  color: #94a3b8 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  margin-top: 1px !important;
}

.aerocore-spec-pill {
  display: inline-flex !important;
  align-items: center !important;
  padding: 0.35rem 0.85rem !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: #cbd5e1 !important;
  font-size: 0.82rem !important;
  font-weight: 500 !important;
  transition: all 0.2s ease !important;
}

.aerocore-spec-pill:hover {
  background: rgba(59, 130, 246, 0.08) !important;
  border-color: rgba(59, 130, 246, 0.35) !important;
  color: #f1f5f9 !important;
}

.aerocore-plan-row-pricing {
  display: flex !important;
  align-items: center !important;
  gap: 1.25rem !important;
  justify-content: flex-end !important;
}

.aerocore-plan-price {
  font-size: 1.65rem !important;
  font-weight: 800 !important;
  color: #f8fafc !important;
  letter-spacing: -0.03em !important;
  font-variant-numeric: tabular-nums !important;
}

.aerocore-plan-row-expanded {
  background: rgba(2, 8, 23, 0.65) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 0 0 20px 20px !important;
}

/* Category location / family tabs */
.aerocore-cat-nav {
  display: flex !important;
  flex-wrap: wrap !important;
}

.aerocore-tab-btn {
  background: rgba(13, 20, 36, 0.75) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: #94a3b8 !important;
  font-weight: 600 !important;
  font-size: 0.88rem !important;
  padding: 0.55rem 1.15rem !important;
  border-radius: 12px !important;
  transition: all 0.2s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  backdrop-filter: blur(12px) !important;
}

.aerocore-tab-btn:hover {
  color: #f1f5f9 !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(59, 130, 246, 0.3) !important;
  transform: translateY(-1px) !important;
}

.aerocore-tab-btn.active {
  background: var(--pro-grad-primary) !important;
  color: #fff !important;
  border-color: transparent !important;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.4) !important;
}

/* ════════════════════════════════════════════════════════════════
   6.2. VERTICAL PRODUCT GRID (HOSTING PACKAGES)
   ════════════════════════════════════════════════════════════════ */
.plan-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 1.5rem !important;
  align-items: stretch !important;
}

.plan-grid > div {
  display: flex !important;
  flex-direction: column !important;
}

.plan-grid .aerocore-plan-card {
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  padding: 2rem 1.75rem !important;
}

.aerocore-popular-badge {
  position: absolute !important;
  top: -12px !important;
  right: 20px !important;
  background: var(--pro-grad-primary) !important;
  color: #fff !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  padding: 0.3rem 0.85rem !important;
  border-radius: 999px !important;
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.5) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  z-index: 2 !important;
}

.aerocore-feature-item {
  display: flex !important;
  align-items: center !important;
  gap: 0.65rem !important;
  color: #cbd5e1 !important;
  font-size: 0.88rem !important;
}

.aerocore-feature-item i {
  color: #3b82f6 !important;
  font-size: 0.95rem !important;
  flex-shrink: 0 !important;
}

.plan-billing-table {
  color: #cbd5e1 !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
}

.plan-billing-table thead tr th {
  color: #64748b !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  font-size: 0.75rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  padding-bottom: 0.5rem !important;
}

.plan-billing-table tbody tr td {
  padding: 0.45rem 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
}

.billing-compare {
  color: #60a5fa !important;
  transition: all 0.2s ease !important;
}

.billing-compare:hover {
  color: #93c5fd !important;
}

/* ════════════════════════════════════════════════════════════════
   6.3. CATEGORY HUB, CARDS & EXTRAS
   ════════════════════════════════════════════════════════════════ */
.cat-hub {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 1rem !important;
}

.cat-card {
  background: rgba(13, 20, 36, 0.75) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 16px !important;
  color: #cbd5e1 !important;
  backdrop-filter: blur(16px) !important;
  transition: all 0.25s ease !important;
  padding: 1.15rem 1.35rem !important;
}

.cat-card:hover {
  background: rgba(15, 23, 42, 0.95) !important;
  border-color: rgba(59, 130, 246, 0.45) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(59, 130, 246, 0.15) !important;
  color: #f8fafc !important;
}

.cat-card-title {
  color: #f8fafc !important;
  font-weight: 700 !important;
}

.cat-card-desc {
  color: #94a3b8 !important;
}

.cat-card-price-amount {
  color: #60a5fa !important;
}

.cat-card-chevron {
  color: #475569 !important;
}

.cat-card:hover .cat-card-chevron {
  color: #60a5fa !important;
}

/* Generic bootstrap card on dark tech */
.card {
  background: rgba(13, 20, 36, 0.75) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 16px !important;
  color: #cbd5e1 !important;
  backdrop-filter: blur(16px) !important;
}

.card-body {
  color: #cbd5e1 !important;
}

.card h1, .card h2, .card h3, .card h4, .card h5, .card h6 {
  color: #f8fafc !important;
}

/* Category Content (SEO Articles under category pages) */
.category-content {
  color: #cbd5e1 !important;
  line-height: 1.8 !important;
  background: rgba(13, 20, 36, 0.6) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 20px !important;
  padding: 2.5rem !important;
}

.category-content h1,
.category-content h2,
.category-content h3,
.category-content h4 {
  color: #f8fafc !important;
  margin-top: 1.5rem !important;
  margin-bottom: 0.75rem !important;
}

.category-content p {
  color: #94a3b8 !important;
}

.category-content strong {
  color: #f1f5f9 !important;
}

.category-content a:not(.btn) {
  color: #60a5fa !important;
}

/* ════════════════════════════════════════════════════════════════
   7. BLOG & NEWS — BLOG SECTION ON HOMEPAGE
   ════════════════════════════════════════════════════════════════ */
/* Homepage blog section wrapper */
.aerocore-blog-section {
  background: #0b0f1a !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}
.aerocore-blog-section h2 { color: #f1f5f9 !important; }
.aerocore-blog-section .text-danger { color: #60a5fa !important; }
.aerocore-blog-section .text-secondary { color: #475569 !important; }
.aerocore-blog-section .text-dark { color: #e2e8f0 !important; }
.aerocore-blog-section .h5 { color: #cbd5e1 !important; }

/* Blog cards */
.aerocore-blog-card {
  background: rgba(15, 23, 42, 0.65) !important;
  border: 1px solid rgba(255, 255, 255, 0.07) !important;
  border-radius: 18px !important;
  padding: 1.75rem !important;
  overflow: hidden !important;
  transition: all 0.28s cubic-bezier(.25,.46,.45,.94) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25) !important;
}
.aerocore-blog-card:hover {
  background: rgba(15, 23, 42, 0.85) !important;
  border-color: rgba(59, 130, 246, 0.3) !important;
  transform: translateY(-5px) !important;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.4),
    0 0 25px rgba(59, 130, 246, 0.15) !important;
  text-decoration: none !important;
}
.aerocore-blog-card h3,
.aerocore-blog-card .h5,
.aerocore-blog-card .h4 {
  color: #f1f5f9 !important;
  font-weight: 700 !important;
}
.aerocore-blog-card p { color: #64748b !important; }
.aerocore-blog-date { color: #475569 !important; }

/* ════════════════════════════════════════════════════════════════
   8. PAGE HERO (INNER PAGES) — DARK
   ════════════════════════════════════════════════════════════════ */
.aerocore-page-hero,
.page-hero,
section.page-hero {
  background:
    radial-gradient(ellipse 70% 100% at 50% 0%, rgba(59, 130, 246, 0.13) 0%, transparent 60%),
    #020817 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  color: #f1f5f9 !important;
  padding: 3.5rem 0 !important;
}
.aerocore-page-hero h1,
.page-hero h1,
.aerocore-page-hero .page-hero-title,
.page-hero .page-hero-title {
  color: #f8fafc !important;
  letter-spacing: -0.03em !important;
}
.aerocore-page-hero .text-body-secondary,
.page-hero .text-body-secondary,
.aerocore-page-hero .lead,
.page-hero .lead,
.aerocore-page-hero .page-hero-lead,
.page-hero .page-hero-lead {
  color: #94a3b8 !important;
  font-size: 1.05rem !important;
}
/* Breadcrumb on dark */
.aerocore-page-hero .breadcrumb-item,
.page-hero .breadcrumb-item {
  color: #64748b !important;
}
.aerocore-page-hero .breadcrumb-item a,
.page-hero .breadcrumb-item a {
  color: #60a5fa !important;
  text-decoration: none !important;
  transition: color 0.18s ease !important;
}
.aerocore-page-hero .breadcrumb-item a:hover,
.page-hero .breadcrumb-item a:hover {
  color: #93c5fd !important;
  text-decoration: underline !important;
}
.aerocore-page-hero .breadcrumb-item.active,
.page-hero .breadcrumb-item.active {
  color: #cbd5e1 !important;
  font-weight: 500 !important;
}
.aerocore-page-hero .breadcrumb-item + .breadcrumb-item::before,
.page-hero .breadcrumb-item + .breadcrumb-item::before {
  color: #475569 !important;
}

/* ════════════════════════════════════════════════════════════════
   9. GLOBAL BUTTONS — GRADIENT UPDATE
   ════════════════════════════════════════════════════════════════ */
.btn-primary {
  background: var(--pro-grad-primary) !important;
  border: none !important;
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.3) !important;
  font-weight: 600 !important;
  transition: all 0.22s ease !important;
}
.btn-primary:hover,
.btn-primary:focus {
  background: var(--pro-grad-cta) !important;
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.48) !important;
  transform: translateY(-1px) !important;
}
.btn-primary:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.35) !important;
}

.btn-outline-primary {
  border: 1px solid rgba(59, 130, 246, 0.45) !important;
  color: #60a5fa !important;
  background: rgba(59, 130, 246, 0.06) !important;
  font-weight: 600 !important;
  transition: all 0.22s ease !important;
}
.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background: var(--pro-grad-primary) !important;
  border-color: transparent !important;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4) !important;
  transform: translateY(-1px) !important;
}

/* Search submit (already styled above, consistency) */
.aerocore-search-submit,
.aerocore-tab-btn.active {
  background: var(--pro-grad-primary) !important;
}

/* ════════════════════════════════════════════════════════════════
   10. CONTACT & NEWSLETTER BANDS
   ════════════════════════════════════════════════════════════════ */
.band-contact {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(59, 130, 246, 0.06) 0%, transparent 60%),
    #020817 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}
.band-contact h2,
.band-contact .h2 { color: #f1f5f9 !important; }
.band-contact p { color: #64748b !important; }

.band-newsletter,
.newsletter-band,
.aerocore-newsletter {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 60%),
    #020817 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}
.band-newsletter h2,
.band-newsletter h3,
.newsletter-panel h2 { color: #f1f5f9 !important; }
.band-newsletter p,
.newsletter-panel .newsletter-sub { color: #64748b !important; }

.newsletter-panel {
  background: rgba(13, 20, 36, 0.8) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 24px !important;
  padding: 3rem !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
}
.newsletter-panel .newsletter-kicker {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.4rem !important;
  color: #60a5fa !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  margin-bottom: 0.5rem !important;
}
.newsletter-controls {
  display: flex !important;
  gap: 0.5rem !important;
  background: rgba(2, 8, 23, 0.7) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 14px !important;
  padding: 5px !important;
  transition: all 0.2s ease !important;
}
.newsletter-controls:focus-within {
  border-color: rgba(59, 130, 246, 0.5) !important;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15) !important;
}
.newsletter-controls input.form-control {
  background: transparent !important;
  border: none !important;
  color: #f1f5f9 !important;
  box-shadow: none !important;
}
.newsletter-controls input.form-control::placeholder {
  color: #475569 !important;
}
.newsletter-controls button {
  background: var(--pro-grad-primary) !important;
  border: none !important;
  border-radius: 10px !important;
  color: #fff !important;
  font-weight: 600 !important;
  transition: all 0.2s ease !important;
}
.newsletter-controls button:hover {
  background: var(--pro-grad-cta) !important;
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4) !important;
}

/* ════════════════════════════════════════════════════════════════
   11. CTA BAND (INNER PAGE BOTTOM CTA)
   ════════════════════════════════════════════════════════════════ */
.aerocore-cta-band,
.cta-band,
section[class*="cta"] {
  background:
    linear-gradient(135deg, #1a1040 0%, #0f1f3d 60%, #0f172a 100%) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}
.aerocore-cta-band h2,
.cta-band h2 { color: #f8fafc !important; }
.aerocore-cta-band p,
.cta-band p { color: #94a3b8 !important; }

/* ════════════════════════════════════════════════════════════════
   12. FOOTER — REFINED
   ════════════════════════════════════════════════════════════════ */
.aerocore-footer,
.site-footer {
  background: #020817 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
}
.footer-heading {
  color: #e2e8f0 !important;
  letter-spacing: 0.07em !important;
  font-size: 0.72rem !important;
  text-transform: uppercase !important;
  font-weight: 700 !important;
}
.footer-link {
  color: #334155 !important;
  transition: color 0.18s ease !important;
}
.footer-link:hover {
  color: #60a5fa !important;
}
.footer-brand-desc { color: #1e293b !important; }
.footer-phone { color: #60a5fa !important; }
.footer-base {
  border-top: 1px solid rgba(255, 255, 255, 0.04) !important;
  color: #1e293b !important;
}
.footer-appearance-btn {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.07) !important;
  color: #334155 !important;
  transition: all 0.18s ease !important;
}
.footer-appearance-btn:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #94a3b8 !important;
}
.aerocore-compliance-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.04) !important;
  color: #1e293b !important;
  font-size: 0.75rem !important;
}
.scroll-top {
  background: rgba(13, 20, 36, 0.92) !important;
  border: 1px solid rgba(59, 130, 246, 0.28) !important;
  color: #60a5fa !important;
  backdrop-filter: blur(10px) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.45) !important;
  transition: all 0.22s ease !important;
}
.scroll-top:hover {
  background: rgba(59, 130, 246, 0.15) !important;
  border-color: #3b82f6 !important;
  box-shadow: 0 6px 24px rgba(59, 130, 246, 0.3) !important;
}

/* ════════════════════════════════════════════════════════════════
   13. BODY & BACKGROUND — LIGHT SECTIONS STAY WHITE
   ════════════════════════════════════════════════════════════════ */
/* Dark Tech Canvas for Body & Content */
body {
  background-color: #020817 !important;
  color: #94a3b8 !important;
}

/* Page content (kb-prose, doc-sheet) stays readable */
.kb-prose {
  color: #cbd5e1 !important;
}
.kb-prose h1, .kb-prose h2, .kb-prose h3,
.kb-prose h4, .kb-prose h5, .kb-prose h6 {
  color: #f8fafc !important;
}
.kb-prose p { color: #94a3b8 !important; }

/* ════════════════════════════════════════════════════════════════
   14. PLATFORM & TECHNOLOGY PARTNERS MARQUEE
   ════════════════════════════════════════════════════════════════ */
.aerocore-partners-section {
  background: rgba(10, 16, 32, 0.5) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  padding: 2.25rem 0 !important;
  overflow: hidden !important;
  position: relative;
}

.aerocore-partners-title {
  color: #64748b !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  text-align: center;
}

.aerocore-partners-marquee {
  width: 100%;
  overflow: hidden !important;
  position: relative;
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.aerocore-partners-track {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  width: max-content !important;
  animation: aerocore-partner-loop 35s linear infinite !important;
  will-change: transform;
}

.aerocore-partners-track:hover {
  animation-play-state: paused !important;
}

.aerocore-partners-set {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  flex-shrink: 0 !important;
  align-items: center !important;
  gap: 3.5rem !important;
  padding-right: 3.5rem !important;
}

.aerocore-partner-item {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  height: 36px !important;
}

.aerocore-partner-logo {
  height: 26px !important;
  max-height: 26px !important;
  width: auto !important;
  max-width: 105px !important;
  object-fit: contain !important;
  filter: brightness(0) invert(1) !important;
  opacity: 0.32 !important;
  transition: opacity 0.25s ease, filter 0.25s ease, transform 0.25s ease !important;
}

.aerocore-partner-item:hover .aerocore-partner-logo {
  opacity: 0.85 !important;
  transform: translateY(-1px) scale(1.04) !important;
}

@keyframes aerocore-partner-loop {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* Also neutralize any legacy .brand-dock if rendered */
.brand-dock {
  overflow: hidden !important;
}
.brand-dock .brand-track {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  width: max-content !important;
}
.brand-dock .brand-set {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  flex-shrink: 0 !important;
}


/* ════════════════════════════════════════════════════════════════
   15. AUTH PAGES — ELECTRIC DEPTH
   ════════════════════════════════════════════════════════════════ */
.auth-cyber-bg {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(99, 102, 241, 0.2) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 45%),
    #020817 !important;
}
.auth-form-inner {
  background: rgba(10, 16, 32, 0.95) !important;
  border: 1px solid rgba(255, 255, 255, 0.07) !important;
  box-shadow:
    0 0 0 1px rgba(59, 130, 246, 0.06),
    0 24px 60px rgba(0, 0, 0, 0.55) !important;
}

/* ════════════════════════════════════════════════════════════════
   16. DARK MODE — FULL DARK BODY
   ════════════════════════════════════════════════════════════════ */
[data-bs-theme="dark"] {
  color-scheme: dark;
}
[data-bs-theme="dark"] body {
  background-color: #020817 !important;
  color: #94a3b8 !important;
}
[data-bs-theme="dark"] .kb-prose { color: #94a3b8 !important; }
[data-bs-theme="dark"] .kb-prose h1,
[data-bs-theme="dark"] .kb-prose h2,
[data-bs-theme="dark"] .kb-prose h3 { color: #f1f5f9 !important; }
[data-bs-theme="dark"] .page-doc-sheet {
  background: rgba(15, 23, 42, 0.5) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 16px !important;
}

/* ════════════════════════════════════════════════════════════════
   17. SELECTION & FOCUS STYLING
   ════════════════════════════════════════════════════════════════ */
::selection {
  background: rgba(59, 130, 246, 0.28) !important;
  color: #f1f5f9 !important;
}
*:focus-visible {
  outline: 2px solid rgba(59, 130, 246, 0.55) !important;
  outline-offset: 2px !important;
  border-radius: 4px !important;
}

/* ════════════════════════════════════════════════════════════════
   18. SMOOTH TRANSITIONS GLOBAL
   ════════════════════════════════════════════════════════════════ */
*,
*::before,
*::after {
  transition-timing-function: cubic-bezier(.25,.46,.45,.94);
}

/* ════════════════════════════════════════════════════════════════
   19. INNER PAGES (DOCUMENTS, CONTRACTS, ABOUT, SIBLINGS NAV)
   ════════════════════════════════════════════════════════════════ */
.page-doc-sheet {
  padding: 2.25rem 2.5rem !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 20px !important;
  background-color: rgba(13, 20, 36, 0.75) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
}

.page-doc-sheet .kb-prose {
  color: #cbd5e1 !important;
  line-height: 1.8 !important;
}

.page-doc-sheet .kb-prose h1,
.page-doc-sheet .kb-prose h2,
.page-doc-sheet .kb-prose h3,
.page-doc-sheet .kb-prose h4 {
  color: #f8fafc !important;
  letter-spacing: -0.02em !important;
  margin-top: 1.75rem !important;
  margin-bottom: 0.85rem !important;
}

.page-doc-sheet .kb-prose p {
  color: #94a3b8 !important;
  margin-bottom: 1.25rem !important;
}

.page-doc-sheet .kb-prose strong {
  color: #f1f5f9 !important;
}

.page-doc-sheet .kb-prose a {
  color: #60a5fa !important;
  text-decoration: underline !important;
}

.about-nav {
  border-inline-start: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.about-nav-title {
  color: #64748b !important;
  letter-spacing: 0.1em !important;
}

.about-nav-link {
  color: #94a3b8 !important;
}

.about-nav-link:hover {
  color: #f1f5f9 !important;
}

.about-nav-link.active {
  color: #60a5fa !important;
  font-weight: 700 !important;
}

.about-nav-link.active:before {
  background-color: #3b82f6 !important;
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.6) !important;
}

/* Contact Page Methods & Offices */
.contact-method-card,
.contact-office {
  background: rgba(13, 20, 36, 0.75) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 18px !important;
  backdrop-filter: blur(16px) !important;
  padding: 1.75rem !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}

.contact-office h3,
.contact-office-city {
  color: #f8fafc !important;
  font-weight: 700 !important;
}

.contact-office-addr {
  color: #94a3b8 !important;
}

.contact-office-meta a {
  color: #60a5fa !important;
}

/* ════════════════════════════════════════════════════════════════
   20. PERFORMANCE & CORE WEB VITALS (SPEED INDEX & LCP OPTIMIZATION)
   ════════════════════════════════════════════════════════════════ */
/* PageSpeed: Eliminate 2.5s paint delay caused by legacy js-reveal */
html.js-reveal [data-reveal],
.js-reveal [data-reveal],
[data-reveal],
[data-reveal="left"],
[data-reveal="right"],
[data-reveal="up"],
[data-reveal="down"] {
  opacity: 1 !important;
  transform: none !important;
  translate: 0 0 !important;
  pointer-events: auto !important;
  visibility: visible !important;
}

/* Font smoothing & rendering performance */
html, body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Mobile DOM paint & layout optimization */
@media (max-width: 991.98px) {
  .aerocore-datacenter-section,
  .aerocore-news-section,
  .aerocore-faq-section,
  .aerocore-footer {
    content-visibility: auto;
    contain-intrinsic-size: 1px 450px;
  }
}

/* Neutralize legacy world-map mask on footer */
.site-footer::before,
.site-footer:before {
  content: none !important;
  display: none !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
  background-image: none !important;
}

/* Stable dimensions for topbar & header icons to prevent micro-shifts */
.topbar-icon,
.topbar-icon i {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 1.75rem !important;
  height: 1.75rem !important;
}

/* Mobile responsive typography adjustments for zero CLS */
@media (max-width: 767.98px) {
  .aerocore-hero-title {
    font-size: 1.85rem !important;
    line-height: 1.25 !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 0.75rem !important;
  }
  .aerocore-hero-lead {
    font-size: 0.92rem !important;
    line-height: 1.55 !important;
    margin-bottom: 1.25rem !important;
  }
}

/* ════════════════════════════════════════════════════════════════
   21. UNIVERSAL DARK TECH HARMONIZATION (SUBPAGES, FAQS, 5651)
   ════════════════════════════════════════════════════════════════ */

/* Neutralize all light section backgrounds across the site */
.bg-surface,
section.bg-surface,
div.bg-surface,
.bg-light,
section.bg-light,
div.bg-light {
  background-color: transparent !important;
  background: transparent !important;
}

/* Category & Product Accordions (#category-faq, .accordion) */
.accordion,
#category-faq,
[id^="category-faq-"],
.hotspot-faq {
  --bs-accordion-bg: transparent !important;
  --bs-accordion-border-color: rgba(255, 255, 255, 0.08) !important;
  --bs-accordion-color: #cbd5e1 !important;
  --bs-accordion-btn-color: #f1f5f9 !important;
  --bs-accordion-btn-bg: rgba(13, 20, 36, 0.75) !important;
  --bs-accordion-active-bg: rgba(59, 130, 246, 0.12) !important;
  --bs-accordion-active-color: #60a5fa !important;
}

.accordion-item,
#category-faq .accordion-item,
[id^="category-faq-"] .accordion-item,
.hotspot-faq .accordion-item {
  background: rgba(13, 20, 36, 0.75) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 16px !important;
  margin-bottom: 0.85rem !important;
  overflow: hidden !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25) !important;
  transition: all 0.25s ease !important;
}

.accordion-item:hover,
#category-faq .accordion-item:hover,
[id^="category-faq-"] .accordion-item:hover {
  border-color: rgba(59, 130, 246, 0.35) !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(59, 130, 246, 0.1) !important;
}

.accordion-button,
#category-faq .accordion-button,
[id^="category-faq-"] .accordion-button {
  background: rgba(13, 20, 36, 0.6) !important;
  color: #f1f5f9 !important;
  font-weight: 600 !important;
  font-size: 1.05rem !important;
  padding: 1.25rem 1.5rem !important;
  box-shadow: none !important;
  border: none !important;
}

.accordion-button:not(.collapsed),
#category-faq .accordion-button:not(.collapsed),
[id^="category-faq-"] .accordion-button:not(.collapsed) {
  background: rgba(59, 130, 246, 0.12) !important;
  color: #60a5fa !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.accordion-button::after,
#category-faq .accordion-button::after,
[id^="category-faq-"] .accordion-button::after {
  filter: invert(1) brightness(1.5) !important;
}

.accordion-body,
#category-faq .accordion-body,
[id^="category-faq-"] .accordion-body {
  background: transparent !important;
  color: #94a3b8 !important;
  font-size: 0.95rem !important;
  line-height: 1.7 !important;
  padding: 1.35rem 1.5rem !important;
}

/* Category Page Feature Cards */
.card,
.card-body {
  background-color: rgba(13, 20, 36, 0.75) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
  color: #cbd5e1 !important;
}
.card h1, .card h2, .card h3, .card h4, .card h5, .card h6 {
  color: #f8fafc !important;
}
.card .text-body-secondary,
.card .text-muted {
  color: #94a3b8 !important;
}

/* Section Titles & Eyebrows */
.section-head .eyebrow {
  background: rgba(59, 130, 246, 0.1) !important;
  color: #60a5fa !important;
  border: 1px solid rgba(59, 130, 246, 0.25) !important;
  padding: 0.25rem 0.75rem !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  display: inline-block !important;
}

.section-head h2,
.section-head .tracking-tight {
  color: #f8fafc !important;
  letter-spacing: -0.03em !important;
  font-weight: 800 !important;
}

.link-arrow {
  color: #60a5fa !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.4rem !important;
  transition: all 0.2s ease !important;
}
.link-arrow:hover {
  color: #93c5fd !important;
  transform: translateX(4px) !important;
}

/* ════════════════════════════════════════════════════════════════
   5651 LOGLAMA & BULUT HOTSPOT PAGE FULL DARK TECH STYLING
   ════════════════════════════════════════════════════════════════ */
.hotspot-wrapper {
  color: #cbd5e1 !important;
}

/* Hero Banner Card */
.hotspot-hero-card {
  background: radial-gradient(ellipse at 15% 10%, rgba(59, 130, 246, 0.18) 0%, rgba(13, 20, 36, 0.92) 55%, rgba(2, 8, 23, 0.98) 100%) !important;
  border: 1px solid rgba(56, 189, 248, 0.3) !important;
  border-radius: 24px !important;
  padding: 3rem 2.5rem !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(56, 189, 248, 0.12) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  margin-bottom: 3.5rem !important;
}

.hotspot-hero-card h2,
.hotspot-hero-card .text-dark {
  color: #f8fafc !important;
  letter-spacing: -0.03em !important;
}

.hotspot-hero-card p.text-muted,
.hotspot-hero-card .text-muted {
  color: #94a3b8 !important;
  font-size: 1.05rem !important;
  line-height: 1.7 !important;
}

.hotspot-hero-card .bg-primary-subtle {
  background: rgba(59, 130, 246, 0.15) !important;
  color: #60a5fa !important;
  border: 1px solid rgba(59, 130, 246, 0.3) !important;
}

/* Telemetry Terminal inside Hero */
.hotspot-telemetry-card {
  background: rgba(10, 16, 31, 0.95) !important;
  border: 1px solid rgba(56, 189, 248, 0.35) !important;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 25px rgba(56, 189, 248, 0.15) !important;
}

.hotspot-telemetry-header {
  background: rgba(15, 23, 42, 0.9) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.hotspot-telemetry-footer {
  background: rgba(10, 16, 31, 0.8) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
}

/* Warning & Feature Cards */
.hotspot-warning-card,
.step-card,
.sector-card {
  background: rgba(13, 20, 36, 0.75) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 18px !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  color: #cbd5e1 !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
  transition: all 0.28s ease !important;
}

.hotspot-warning-card:hover,
.step-card:hover,
.sector-card:hover {
  transform: translateY(-5px) !important;
  border-color: rgba(59, 130, 246, 0.35) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45), 0 0 20px rgba(59, 130, 246, 0.12) !important;
}

.hotspot-warning-card h3,
.hotspot-warning-card h4,
.hotspot-warning-card h5,
.step-card h4,
.step-card h5,
.sector-card h5 {
  color: #f8fafc !important;
}

.hotspot-warning-card p,
.step-card p,
.sector-card p {
  color: #94a3b8 !important;
}

/* Plan Cards on 5651 */
.hotspot-plan-card {
  background: rgba(13, 20, 36, 0.85) !important;
  border: 1px solid rgba(255, 255, 255, 0.09) !important;
  border-radius: 22px !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  color: #cbd5e1 !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.hotspot-plan-card:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(56, 189, 248, 0.4) !important;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.55), 0 0 25px rgba(56, 189, 248, 0.15) !important;
}

.hotspot-plan-card.featured {
  background: linear-gradient(180deg, rgba(20, 32, 58, 0.95) 0%, rgba(13, 20, 36, 0.98) 100%) !important;
  border: 2px solid #38bdf8 !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 35px rgba(56, 189, 248, 0.25) !important;
}

.hotspot-plan-card .hotspot-plan-title {
  color: #f8fafc !important;
  font-weight: 800 !important;
}

.hotspot-plan-card .hotspot-plan-capacity {
  color: #38bdf8 !important;
  font-weight: 700 !important;
}

.hotspot-plan-card .hotspot-plan-features li {
  color: #cbd5e1 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

/* Icon Boxes on 5651 */
.hotspot-icon-danger { background: rgba(239, 68, 68, 0.15) !important; color: #f87171 !important; border: 1px solid rgba(239, 68, 68, 0.3) !important; }
.hotspot-icon-primary { background: rgba(56, 189, 248, 0.15) !important; color: #38bdf8 !important; border: 1px solid rgba(56, 189, 248, 0.3) !important; }
.hotspot-icon-success { background: rgba(16, 185, 129, 0.15) !important; color: #34d399 !important; border: 1px solid rgba(16, 185, 129, 0.3) !important; }
.hotspot-icon-warning { background: rgba(245, 158, 11, 0.15) !important; color: #fbbf24 !important; border: 1px solid rgba(245, 158, 11, 0.3) !important; }

/* Bottom CTA Box */
.hotspot-cta-box {
  background: radial-gradient(ellipse at 50% 0%, rgba(59, 130, 246, 0.22) 0%, rgba(13, 20, 36, 0.95) 80%) !important;
  border: 1px solid rgba(56, 189, 248, 0.3) !important;
  border-radius: 24px !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(56, 189, 248, 0.15) !important;
  backdrop-filter: blur(20px) !important;
  color: #cbd5e1 !important;
}

.hotspot-cta-box h3 {
  color: #f8fafc !important;
}

.hotspot-cta-box p {
  color: #94a3b8 !important;
}

/* ════════════════════════════════════════════════════════════════
   22. 5651 BUTTONS CONTRAST & LEGACY CATEGORY CONTENT STYLING
   ════════════════════════════════════════════════════════════════ */

/* Force high contrast crisp text on all buttons inside 5651 & category content */
.hotspot-hero-card .btn-success,
.category-content .btn-success,
a.btn-success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.45) !important;
  font-weight: 700 !important;
}
.hotspot-hero-card .btn-success:hover,
.category-content .btn-success:hover,
a.btn-success:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 6px 22px rgba(16, 185, 129, 0.6) !important;
  transform: translateY(-2px) !important;
}
.hotspot-hero-card .btn-success *,
.category-content .btn-success *,
a.btn-success * {
  color: #ffffff !important;
}

.hotspot-hero-card .btn-primary,
.category-content .btn-primary,
a.btn-primary {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.45) !important;
  font-weight: 700 !important;
}
.hotspot-hero-card .btn-primary:hover,
.category-content .btn-primary:hover,
a.btn-primary:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 6px 22px rgba(59, 130, 246, 0.6) !important;
  transform: translateY(-2px) !important;
}
.hotspot-hero-card .btn-primary *,
.category-content .btn-primary *,
a.btn-primary * {
  color: #ffffff !important;
}

.hotspot-hero-card .btn-outline-primary,
.category-content .btn-outline-primary,
a.btn-outline-primary {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  font-weight: 700 !important;
}
.hotspot-hero-card .btn-outline-primary:hover,
.category-content .btn-outline-primary:hover,
a.btn-outline-primary:hover {
  background: rgba(59, 130, 246, 0.2) !important;
  color: #38bdf8 !important;
  border-color: rgba(56, 189, 248, 0.6) !important;
  transform: translateY(-2px) !important;
}
.hotspot-hero-card .btn-outline-primary *,
.category-content .btn-outline-primary *,
a.btn-outline-primary * {
  color: #ffffff !important;
}
.hotspot-hero-card .btn-outline-primary i,
.category-content .btn-outline-primary i {
  color: #38bdf8 !important;
}

/* 5651 Eyebrow & Badges */
.hotspot-hero-card .bg-primary-subtle,
.hotspot-wrapper .bg-primary-subtle {
  background: rgba(59, 130, 246, 0.16) !important;
  color: #60a5fa !important;
  border: 1px solid rgba(59, 130, 246, 0.35) !important;
}

/* ════════════════════════════════════════════════════════════════
   23. ALMANYA & VPS SUBPAGE - INCLUDED BAND & BROKEN IMAGES FIX
   ════════════════════════════════════════════════════════════════ */

/* Ensure .band-dark & .stat-band are dark across all templates */
.band-dark,
section.band-dark,
.stat-band,
section.stat-band,
.aerocore-included-section {
  background: transparent !important;
  background-color: transparent !important;
  border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  color: #cbd5e1 !important;
}

.band-dark .section-head h2,
.band-dark h2,
.band-dark .tracking-tight,
.aerocore-included-section h2 {
  color: #f8fafc !important;
}

.band-dark .section-lead,
.band-dark p,
.aerocore-included-section p {
  color: #94a3b8 !important;
}

.band-dark .eyebrow,
.aerocore-included-section .eyebrow {
  background: rgba(59, 130, 246, 0.1) !important;
  color: #60a5fa !important;
  border: 1px solid rgba(59, 130, 246, 0.25) !important;
  padding: 0.25rem 0.75rem !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  display: inline-block !important;
}

/* Hide broken legacy images in description texts */
.category-content img[src*="{SITE-URL}"],
.category-content img[src*="templates/website/images"],
.category-content img[src*="seal_maximum_security"],
.category-content img[src*="site-transfer.png"],
.category-content img[src*="bireysel-hosting.png"],
.hostingozellikler img,
.hostozellk img {
  display: none !important;
}

/* Modernize legacy .hostingozellikler & .hostozellk into sleek Dark Tech grid */
.hostingozellikler {
  color: #cbd5e1 !important;
}

.hostingozellikler h4 {
  color: #f8fafc !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
  margin-top: 2rem !important;
  margin-bottom: 0.75rem !important;
}

.hostingozellikler p {
  color: #94a3b8 !important;
  font-size: 0.98rem !important;
  line-height: 1.75 !important;
}

.hostingozellikler ul {
  padding-left: 1.25rem !important;
  margin-bottom: 1.5rem !important;
}

.hostingozellikler ul li {
  color: #cbd5e1 !important;
  line-height: 1.75 !important;
  margin-bottom: 0.6rem !important;
}

.hostingozellikler ul li strong {
  color: #f8fafc !important;
}

/* Legacy 4-feature box (.hostozellk) modernized into glass cards */
.hostingozellikler #wrapper {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 1.25rem !important;
  margin-top: 1.5rem !important;
  margin-bottom: 2rem !important;
}

.hostozellk,
#hostrightozellk {
  width: 100% !important;
  float: none !important;
  background: rgba(13, 20, 36, 0.75) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 20px !important;
  padding: 1.75rem 2rem !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
  transition: all 0.28s ease !important;
}

.hostozellk:hover,
#hostrightozellk:hover {
  border-color: rgba(59, 130, 246, 0.35) !important;
  transform: translateY(-4px) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45), 0 0 20px rgba(59, 130, 246, 0.12) !important;
}

.hostozellk h4,
#hostrightozellk h4 {
  color: #f8fafc !important;
  font-weight: 700 !important;
  font-size: 1.15rem !important;
  margin-top: 0 !important;
  margin-bottom: 0.65rem !important;
}

.hostozellk p,
#hostrightozellk p {
  color: #94a3b8 !important;
  font-size: 0.92rem !important;
  line-height: 1.65 !important;
  margin-bottom: 0 !important;
}

/* ════════════════════════════════════════════════════════════════
   24. FLOATING WHATSAPP SUPPORT WIDGET (DESKTOP & MOBILE)
   ════════════════════════════════════════════════════════════════ */
.aerocore-wa-widget {
  position: fixed !important;
  bottom: 22px !important;
  right: 22px !important;
  z-index: 1045 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.aerocore-wa-button {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 58px !important;
  height: 58px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%) !important;
  color: #ffffff !important;
  box-shadow: 
    0 10px 25px -4px rgba(37, 211, 102, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.25),
    0 4px 12px rgba(0, 0, 0, 0.35) !important;
  text-decoration: none !important;
  transition: transform 0.28s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.28s ease !important;
}

.aerocore-wa-button:hover {
  transform: scale(1.08) translateY(-2px) !important;
  box-shadow: 
    0 14px 32px -4px rgba(37, 211, 102, 0.65),
    0 0 0 2px rgba(255, 255, 255, 0.4),
    0 6px 16px rgba(0, 0, 0, 0.45) !important;
}

.aerocore-wa-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.85rem !important;
  color: #ffffff !important;
  line-height: 1 !important;
}

.aerocore-wa-icon i {
  color: #ffffff !important;
}

/* Pulsing radar ring */
.aerocore-wa-pulse {
  position: absolute !important;
  inset: -4px !important;
  border-radius: 50% !important;
  border: 2px solid rgba(37, 211, 102, 0.7) !important;
  animation: wa-pulse 2.2s cubic-bezier(0.24, 0, 0.38, 1) infinite !important;
  pointer-events: none !important;
}

@keyframes wa-pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.25);
    opacity: 0;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

/* Unread Badge */
.aerocore-wa-badge {
  position: absolute !important;
  top: -2px !important;
  right: -2px !important;
  width: 20px !important;
  height: 20px !important;
  border-radius: 50% !important;
  background: #ef4444 !important;
  color: #ffffff !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 2px solid #020817 !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4) !important;
  z-index: 2 !important;
}

/* Desktop Hover Interactive Popup Card */
.aerocore-wa-popup {
  position: absolute !important;
  right: 70px !important;
  bottom: 0 !important;
  width: 260px !important;
  background: rgba(13, 20, 36, 0.94) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 18px !important;
  padding: 1.15rem 1.25rem !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55), 0 0 25px rgba(37, 211, 102, 0.15) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateX(12px) scale(0.95) !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  pointer-events: none !important;
  z-index: 1046 !important;
  text-align: start !important;
}

.aerocore-wa-button:hover .aerocore-wa-popup {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateX(0) scale(1) !important;
  pointer-events: auto !important;
}

.aerocore-wa-popup-header {
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  margin-bottom: 0.4rem !important;
}

.aerocore-wa-dot {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: #25d366 !important;
  box-shadow: 0 0 8px rgba(37, 211, 102, 0.8) !important;
  flex-shrink: 0 !important;
}

.aerocore-wa-online {
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  color: #34d399 !important;
}

.aerocore-wa-popup-body strong {
  display: block !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  color: #f8fafc !important;
  margin-bottom: 0.25rem !important;
}

.aerocore-wa-popup-body p {
  font-size: 0.8rem !important;
  line-height: 1.45 !important;
  color: #94a3b8 !important;
  margin-bottom: 0.65rem !important;
}

.aerocore-wa-popup-cta {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  color: #25d366 !important;
  padding-top: 0.5rem !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

/* Adjust scroll-to-top button so it never overlaps WhatsApp button */
.scroll-top {
  bottom: 90px !important;
  right: 28px !important;
  width: 44px !important;
  height: 44px !important;
  z-index: 1040 !important;
}

/* Mobile responsive adjustments */
@media (max-width: 767.98px) {
  .aerocore-wa-widget {
    bottom: 18px !important;
    right: 18px !important;
  }
  .aerocore-wa-button {
    width: 54px !important;
    height: 54px !important;
  }
  .aerocore-wa-icon {
    font-size: 1.7rem !important;
  }
  /* On touch mobile, keep tap action clean and instantaneous */
  .aerocore-wa-popup {
    display: none !important;
  }
  .scroll-top {
    bottom: 84px !important;
    right: 23px !important;
    width: 42px !important;
    height: 42px !important;
  }
}

/* ════════════════════════════════════════════════════════════════
   PAGESPEED & MOBILE CORE WEB VITALS OPTIMIZATIONS
   ════════════════════════════════════════════════════════════════ */

/* Skip rendering off-screen footer & contact bands during initial load */
.site-footer,
.band-contact,
.band-newsletter,
.aerocore-compliance-bar {
  content-visibility: auto;
  contain-intrinsic-size: 1px 400px;
}

/* Ensure smooth text rendering with zero layout shift */
body, h1, h2, h3, h4, h5, h6, p, a, span {
  text-rendering: optimizeSpeed;
}

/* Page hero text instant rendering (LCP element) */
.page-hero-title,
.page-hero-lead,
.ref-hero-cat,
.page-hero .reveal {
  animation: none !important;
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

/* Mobile Performance: Eliminate 56 non-composited animations & long tasks */
@media (max-width: 768px) {
  .reveal,
  .reveal-2,
  .reveal-3,
  .reveal-4,
  .reveal-5,
  [data-reveal],
  .fade-up {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Hardware compositing for floating elements (avoids non-composited flags) */
.aerocore-wa-widget,
.aerocore-wa-button,
.aerocore-wa-pulse,
.scroll-top {
  will-change: transform, opacity;
  transform: translateZ(0);
}

