/* ==========================================================================
   Design Tokens
   ========================================================================== */
:root {
  --brand-blue: #0B4FDE;
  --brand-blue-dark: #1450C7;
  --brand-navy: #0A1830;
  --brand-cyan: #00C2FF;
  --neutral-light: #F5F8FC;
  --neutral-gray: #5B6B82;
  --border-color: #E3E9F2;
  --gradient-primary: linear-gradient(135deg, var(--brand-blue), var(--brand-cyan));
  --navbar-height: 80px;
}

/* ==========================================================================
   Base
   ========================================================================== */
body {
  font-family: 'Inter', sans-serif;
  color: var(--brand-navy);
  padding-top: var(--navbar-height);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

a {
  color: var(--brand-blue);
}

::selection {
  background: var(--brand-cyan);
  color: var(--brand-navy);
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: 0.75rem;
}

.eyebrow-light {
  color: var(--brand-cyan);
}

/* ==========================================================================
   Buttons / CTAs
   ========================================================================== */
.btn-cta-primary {
  background: var(--gradient-primary);
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 8px 24px rgba(11, 79, 222, 0.25);
}

.btn-cta-primary:hover,
.btn-cta-primary:focus {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(11, 79, 222, 0.35);
}

.btn-cta-outline {
  background: transparent;
  border: 2px solid var(--brand-blue);
  color: var(--brand-blue);
  font-weight: 600;
  padding: 0.6875rem 1.75rem;
  border-radius: 50px;
  transition: all 0.25s ease;
}

.btn-cta-outline:hover,
.btn-cta-outline:focus {
  background: var(--brand-blue);
  color: #fff;
  transform: translateY(-2px);
}

.btn-cta-ghost {
  background: transparent;
  border: none;
  color: var(--brand-navy);
  font-weight: 600;
  padding: 0.75rem 1rem;
}

.btn-cta-ghost:hover,
.btn-cta-ghost:focus {
  color: var(--brand-blue);
}

/* Hero CTAs sit on a dark background */
.hero .btn-cta-outline {
  border-color: #fff;
  color: #fff;
}

.hero .btn-cta-outline:hover {
  background: #fff;
  color: var(--brand-navy);
}

/* ==========================================================================
   Navbar
   ========================================================================== */
#mainNavbar {
  height: var(--navbar-height);
  display: flex;
  align-items: center;
  background: rgba(10, 24, 48, 0.85);
  backdrop-filter: blur(10px);
  transition: height 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  z-index: 1030;
}

#mainNavbar.navbar-shrink {
  height: 64px;
  background: rgba(10, 24, 48, 0.97);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

#mainNavbar .navbar-brand {
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
}

#mainNavbar .nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 0.5rem 0.85rem !important;
  position: relative;
  transition: color 0.2s ease;
}

#mainNavbar .nav-link.active,
#mainNavbar .nav-link:hover,
#mainNavbar .nav-link:focus {
  color: #fff;
}

#mainNavbar .nav-link.active::after {
  content: '';
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.1rem;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

/* Dropdown toggle carets: smaller, standard, rotate on open */
#mainNavbar .dropdown-toggle::after {
  vertical-align: 0.15em;
  border-top-width: 0.32em;
  border-right-width: 0.32em;
  border-left-width: 0.32em;
  opacity: 0.7;
  transition: transform 0.2s ease;
}

#mainNavbar .dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

/* Dropdown menus: always in the flow, faded/lifted via opacity+transform so both
   hover (desktop, via JS hover-intent) and Bootstrap's own .show class (click,
   keyboard, mobile) animate smoothly through the same mechanism. */
#mainNavbar .dropdown-menu {
  display: block;
  border: none;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(10, 24, 48, 0.18);
  padding: 0.5rem;
  margin-top: 0.6rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  pointer-events: none;
}

#mainNavbar .dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

#mainNavbar .dropdown-menu-cols-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(200px, 1fr));
  gap: 0.125rem 0.5rem;
  min-width: 420px;
}

#mainNavbar .dropdown-menu-cols-2 .dropdown-col-span {
  grid-column: 1 / -1;
}

#mainNavbar .dropdown-item {
  border-radius: 8px;
  padding: 0.5rem 0.9rem;
  font-size: 0.9rem;
  transition: background 0.15s ease, color 0.15s ease;
}

#mainNavbar .dropdown-item:hover,
#mainNavbar .dropdown-item:focus {
  background: var(--neutral-light);
  color: var(--brand-blue);
}

@media (max-width: 991.98px) {
  #mainNavbar .navbar-collapse {
    background: var(--brand-navy);
    border-radius: 12px;
    padding: 1rem;
    margin-top: 0.5rem;
    max-height: calc(100vh - var(--navbar-height) - 1rem);
    overflow-y: auto;
  }

  #mainNavbar .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    transition: none;
    display: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.04);
    margin-top: 0.25rem;
  }

  #mainNavbar .dropdown-menu.show {
    display: block;
  }

  #mainNavbar .dropdown-menu-cols-2 {
    grid-template-columns: 1fr;
    min-width: 0;
  }

  #mainNavbar .dropdown-item {
    color: rgba(255, 255, 255, 0.75);
  }

  #mainNavbar .dropdown-item:hover,
  #mainNavbar .dropdown-item:focus {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
  }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--brand-navy) 0%, #10254a 100%);
  color: #fff;
  overflow: hidden;
}

.hero-home {
  padding: 8rem 0 6rem;
}

.hero-inner {
  padding: 3.5rem 0 3rem;
}

.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.35;
  animation: floatBlob 12s ease-in-out infinite;
}

.hero-blob-1 {
  width: 420px;
  height: 420px;
  background: var(--brand-blue);
  top: -120px;
  right: -100px;
}

.hero-blob-2 {
  width: 320px;
  height: 320px;
  background: var(--brand-cyan);
  bottom: -100px;
  left: -80px;
  animation-delay: -6s;
}

@keyframes floatBlob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -30px) scale(1.08); }
}

.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.78);
  max-width: 42rem;
  margin: 0 auto;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.hero-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 50px;
  padding: 0.45rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
}

.hero-highlights i {
  color: var(--brand-cyan);
}

@media (min-width: 992px) {
  .hero-highlights {
    justify-content: flex-start;
  }
}

.hero-title-sm {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  margin-bottom: 0.75rem;
}

.hero-subtitle-sm {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 42rem;
}

.breadcrumb-nav .breadcrumb-item,
.breadcrumb-nav .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.65);
}

.breadcrumb-nav .breadcrumb-item.active {
  color: #fff;
}

.breadcrumb-nav .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.45);
}

/* ==========================================================================
   Contact-center hero visual (network graphic + live glass stat cards)
   ========================================================================== */
.cc-visual {
  position: relative;
  max-width: 460px;
  margin: 0 auto;
}

.cc-visual-graphic {
  width: 100%;
  height: auto;
  display: block;
  animation: ccGraphicFloat 7s ease-in-out infinite;
}

.cc-node circle {
  animation: ccNodePulse 2.4s ease-in-out infinite;
  animation-delay: var(--cc-delay, 0s);
  transform-origin: center;
  transform-box: fill-box;
}

@keyframes ccNodePulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.5); }
}

@keyframes ccGraphicFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.cc-glass-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 14px;
  padding: 0.75rem 1.1rem;
  box-shadow: 0 12px 32px rgba(10, 24, 48, 0.25);
  color: #fff;
  animation: ccCardFloat 6s ease-in-out infinite;
  white-space: nowrap;
}

.cc-glass-card i {
  font-size: 1.1rem;
  color: var(--brand-cyan);
}

.cc-glass-value {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  line-height: 1.2;
}

.cc-glass-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.cc-live-dot {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2ecc71;
  flex-shrink: 0;
}

.cc-live-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #2ecc71;
  animation: ccLivePulse 1.8s ease-out infinite;
}

@keyframes ccLivePulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(2.8); opacity: 0; }
}

.cc-card-agents {
  top: -6%;
  left: -8%;
  animation-delay: 0s;
}

.cc-card-response {
  top: 42%;
  right: -12%;
  animation-delay: 1.5s;
}

.cc-card-csat {
  bottom: -4%;
  left: 4%;
  animation-delay: 3s;
}

@keyframes ccCardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 991.98px) {
  .cc-visual {
    max-width: 360px;
  }

  .cc-glass-card {
    padding: 0.5rem 0.75rem;
  }

  .cc-glass-value {
    font-size: 0.9375rem;
  }
}

@media (max-width: 575.98px) {
  .cc-card-agents { left: -2%; }
  .cc-card-response { right: -4%; }
  .cc-card-csat { left: 8%; }
}

@media (prefers-reduced-motion: reduce) {
  .cc-visual-graphic,
  .cc-glass-card,
  .cc-node circle,
  .cc-live-dot::after {
    animation: none !important;
  }
}

/* ==========================================================================
   Section header
   ========================================================================== */
.section-header {
  max-width: 42rem;
  margin-bottom: 3rem;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  color: var(--neutral-gray);
  font-size: 1.0625rem;
  max-width: 42rem;
}

/* ==========================================================================
   Content cards (service / solution)
   ========================================================================== */
.content-card {
  display: block;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.content-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(10, 24, 48, 0.1);
  border-color: transparent;
}

.content-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--neutral-light);
  color: var(--brand-blue);
  font-size: 1.375rem;
  margin-bottom: 1.25rem;
  transition: background 0.25s ease, color 0.25s ease;
}

.content-card-icon-gradient {
  background: var(--gradient-primary);
  color: #fff;
}

.content-card:hover .content-card-icon:not(.content-card-icon-gradient) {
  background: var(--gradient-primary);
  color: #fff;
}

.content-card-title {
  font-size: 1.1875rem;
  margin-bottom: 0.625rem;
  color: var(--brand-navy);
}

.content-card-excerpt {
  color: var(--neutral-gray);
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}

.content-card-link {
  color: var(--brand-blue);
  font-weight: 600;
  font-size: 0.9375rem;
}

.content-card-link i {
  margin-left: 0.375rem;
  transition: transform 0.2s ease;
}

.content-card:hover .content-card-link i {
  transform: translateX(4px);
}

/* ==========================================================================
   Industry cards
   ========================================================================== */
.industry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.75rem 1rem;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(10, 24, 48, 0.1);
}

.industry-card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--neutral-light);
  color: var(--brand-blue);
  font-size: 1.25rem;
}

.industry-card-title {
  font-weight: 600;
  color: var(--brand-navy);
  font-size: 0.9375rem;
}

/* ==========================================================================
   Stat counters
   ========================================================================== */
.stat-counter {
  text-align: center;
}

.stat-counter-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-counter-label {
  color: var(--neutral-gray);
  font-size: 0.9375rem;
  margin-top: 0.25rem;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
}

.testimonial-quote-icon {
  color: var(--brand-cyan);
  font-size: 1.5rem;
  opacity: 0.6;
}

.testimonial-text {
  font-size: 1.0625rem;
  color: var(--brand-navy);
  margin-top: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

/* ==========================================================================
   Case studies
   ========================================================================== */
.case-study-card {
  display: block;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.case-study-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(10, 24, 48, 0.1);
}

.case-study-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--neutral-light);
}

.case-study-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-study-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
}

.case-study-card-body {
  padding: 1.5rem;
}

.case-study-card-result {
  color: var(--brand-blue);
  font-weight: 600;
  font-size: 0.9375rem;
}

/* ==========================================================================
   Blog cards
   ========================================================================== */
.blog-card {
  display: block;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(10, 24, 48, 0.1);
}

.blog-card-media {
  aspect-ratio: 16 / 10;
  background: var(--neutral-light);
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-card-category {
  color: var(--brand-blue);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   Team
   ========================================================================== */
.team-card {
  text-align: center;
}

.team-card-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.25rem;
  border: 4px solid var(--neutral-light);
}

.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card-name {
  font-size: 1.0625rem;
  margin-bottom: 0.125rem;
}

.team-card-role {
  color: var(--neutral-gray);
  font-size: 0.9375rem;
  margin-bottom: 0.75rem;
}

/* ==========================================================================
   Legal / long-form content
   ========================================================================== */
.legal-content {
  color: var(--brand-navy);
  line-height: 1.8;
}

.legal-content ul {
  padding-left: 1.25rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

/* ==========================================================================
   Logo strip
   ========================================================================== */
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

.logo-strip-item {
  height: 32px;
  filter: grayscale(1);
  opacity: 0.55;
  transition: filter 0.25s ease, opacity 0.25s ease;
}

.logo-strip-item:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.faq-accordion .accordion-item {
  border: 1px solid var(--border-color);
  border-radius: 12px !important;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  font-weight: 600;
  color: var(--brand-navy);
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--neutral-light);
  color: var(--brand-blue);
  box-shadow: none;
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: var(--border-color);
}

/* ==========================================================================
   Social icons
   ========================================================================== */
.social-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: background 0.25s ease, transform 0.25s ease;
}

.social-icon:hover {
  background: var(--gradient-primary);
  transform: translateY(-3px);
  color: #fff;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--brand-navy);
  color: rgba(255, 255, 255, 0.75);
}

.footer-heading {
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--brand-cyan);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}

.footer-legal-links a:hover {
  color: var(--brand-cyan);
}

/* ==========================================================================
   Forms
   ========================================================================== */
.contact-form .form-control,
.contact-form .form-select,
.newsletter-form .form-control {
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 0.7rem 1rem;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus,
.newsletter-form .form-control:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(11, 79, 222, 0.12);
}

.newsletter-form .btn-cta-primary {
  border-radius: 0 10px 10px 0;
}

.newsletter-form .form-control {
  border-radius: 10px 0 0 10px;
}

/* ==========================================================================
   Admin panel — shares design tokens/type with the public site, but a more
   compact, standard admin density (smaller type, tighter padding).
   ========================================================================== */
.admin-body {
  background: var(--neutral-light);
  /* Undo the public site's fixed-navbar offset — admin has no fixed top navbar. */
  padding-top: 0;
}

.admin-sidebar {
  width: 220px;
  flex-shrink: 0;
  background: linear-gradient(180deg, var(--brand-navy) 0%, #0d1f3d 100%);
  padding: 1.25rem 1rem;
}

.admin-brand {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  margin-bottom: 1.5rem;
}

.admin-brand-tag {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-cyan);
  margin-top: 0.125rem;
}

.admin-nav-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  border-left: 3px solid transparent;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.admin-nav-link i {
  width: 16px;
  text-align: center;
  font-size: 0.8125rem;
}

.admin-nav-link:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.admin-nav-link.active {
  background: rgba(255, 255, 255, 0.06);
  border-left-color: var(--brand-cyan);
  color: #fff;
  font-weight: 600;
}

.admin-topbar {
  background: #fff;
  border-bottom: 1px solid var(--border-color);
  padding: 0.75rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-main {
  padding: 1.25rem;
}

.admin-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
}

.admin-card-header {
  padding: 0.875rem 1.125rem;
  border-bottom: 1px solid var(--border-color);
  font-weight: 600;
  font-size: 0.875rem;
}

.admin-stat-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.admin-stat-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}

.admin-stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.1;
}

.admin-stat-label {
  font-size: 0.8125rem;
  color: var(--neutral-gray);
}

.admin-table th {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--neutral-gray);
  font-weight: 600;
  border-bottom-width: 1px !important;
  background: var(--neutral-light);
}

.admin-table td,
.admin-table th {
  padding: 0.6rem 1rem;
  vertical-align: middle;
  font-size: 0.875rem;
}

.admin-unread-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-blue);
  margin-right: 0.375rem;
}

@media (max-width: 767.98px) {
  .admin-sidebar {
    width: 200px;
    padding: 1.25rem 0.75rem;
  }

  .admin-main {
    padding: 1rem;
  }
}

/* ==========================================================================
   Accessibility
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .hero-blob {
    animation: none;
  }
}
