/* ============================================================
   Site layout width — header/footer vs page content
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root {
  --dmiq-site-max-width: 1680px;
  --dmiq-content-max-width: 1200px;
  --dmiq-site-gutter: clamp(20px, 2.5vw, 40px);
  --dmiq-logo-charcoal: #2C3440;
  --dmiq-logo-slate: #3d4a5c;
  --dmiq-logo-blue: #0096FF;
  --dmiq-logo-cyan: #06b6d4;
  --dmiq-page-hero-gradient: linear-gradient(135deg,
    #2C3440 0%,
    #243041 28%,
    #1a3d5c 58%,
    #0d4a6e 100%);
  --dmiq-page-hero-gradient-strong: linear-gradient(135deg,
    #2C3440 0%,
    #3d4a5c 32%,
    #0096FF 72%,
    #06b6d4 100%);
}

@media (min-width: 1200px) {
  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl,
  .container-xxl {
    max-width: var(--dmiq-site-max-width);
  }

  .main .container,
  .main .container-sm,
  .main .container-md,
  .main .container-lg,
  .main .container-xl,
  .main .container-xxl {
    max-width: var(--dmiq-content-max-width);
  }
}

.main .container,
.footer .container {
  width: 100%;
}

/* ============================================================
   DataMatrixIQ — Animated Hero (VedArc-style layout)
   ============================================================ */

#hero.hero-animated {
  position: relative;
  padding: 0;
  margin-top: 60px;
  width: 100%;
  min-height: clamp(480px, 72vh, 720px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-animated__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #0d1f3c;
}

.hero-animated__media-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-animated__media {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: hue-rotate(198deg) saturate(1.05) brightness(1.38) contrast(0.98);
  transform: scale(1.06);
  animation: heroMediaDrift 5s linear infinite;
  will-change: transform;
}

.hero-animated__video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  max-width: none;
  opacity: 1;
  filter: hue-rotate(195deg) saturate(1.15) brightness(0.92);
  object-fit: cover;
  object-position: center center;
  transform: translate(-50%, -50%) scale(1.12);
  transform-origin: center center;
  animation: heroKenBurns 24s ease-in-out infinite;
}

@keyframes heroKenBurns {
  0%, 100% { transform: translate(-50%, -50%) scale(1.12); }
  50%      { transform: translate(-50%, -50%) scale(1.18); }
}

.hero-animated__tint {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(125deg, rgba(191, 219, 254, 0.45) 0%, rgba(147, 197, 253, 0.32) 45%, rgba(96, 165, 250, 0.18) 100%);
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.hero-animated__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(20, 80, 180, 0.35) 0%,
    rgba(10, 40, 120, 0.55) 100%
  );
  animation: heroOverlayPulse 10s ease-in-out infinite;
}

@keyframes heroOverlayPulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.75; }
}

@keyframes heroMediaDrift {
  0%   { transform: scale(1.06); }
  100% { transform: scale(1.24); }
}

.hero-animated__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: clamp(2.5rem, 5vw, 4rem) var(--dmiq-site-gutter);
}

.hero-animated__content {
  max-width: 680px;
  animation: hc-fadein 0.8s ease both;
}

.hero-animated__content h1 {
  font-family: 'Nunito', sans-serif !important;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff !important;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35) !important;
  margin-bottom: 20px;
}

.hero-animated__accent {
  color: #ffffff !important;
  background: none;
  -webkit-text-fill-color: #ffffff;
  background-clip: unset;
}

.hero-animated__content p {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 1.05rem;
  color: #ffffff !important;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-animated__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

@keyframes hc-fadein {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero buttons (shared) */
.hc-btns,
.hero-animated__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hc-btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 13px 32px;
  background: #3b82f6;
  color: #ffffff !important;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(59, 130, 246, 0.38);
  transition: all 0.28s;
  position: relative;
  overflow: hidden;
}
.hc-btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s;
}
.hc-btn-primary:hover::after { left: 100%; }
.hc-btn-primary:hover {
  background: #1d6fe8;
  box-shadow: 0 6px 28px rgba(59, 130, 246, 0.50);
  transform: translateY(-2px);
  color: #ffffff !important;
}

.hc-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 28px;
  background: transparent;
  color: rgba(240, 244, 251, 0.9) !important;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.28s;
  backdrop-filter: blur(4px);
}
.hc-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff !important;
}

@media (max-width: 768px) {
  #hero.hero-animated { min-height: 420px; }
  .hero-animated__inner { padding: 2rem var(--dmiq-site-gutter); }
  .hero-animated__content h1 { font-size: 1.75rem; }
  .hero-animated__content p { font-size: 0.95rem; }
  .hc-btn-primary,
  .hc-btn-ghost { padding: 11px 22px; font-size: 13px; }
}

@media (max-width: 480px) {
  .hero-animated__actions { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-animated__content { animation: none; }
  .hero-animated__media {
    animation: none;
    transform: scale(1.06);
  }
  .hero-animated__video {
    animation: none;
    transform: translate(-50%, -50%) scale(1.12);
  }
  .hero-animated__overlay { animation: none; }
}


/* ============================================================
   DataMatrixIQ — Sirius7.com-Matched Theme
   Default: Light cool-grey  |  Accent: Blue + Teal
   
   Exact sirius7.com :root tokens converted to hex:
     background  hsl(216 28% 95%)  → #eff1f6
     card        hsl(214 32% 97%)  → #f5f6fa
     ghost/alt   hsl(216 30% 92%)  → #e5eaf1
     text dark   hsl(222 47% 11%)  → #0f1729
     muted       hsl(215 20% 42%)  → #566881
     border      hsl(217 25% 85%)  → #cfd5e2
     primary     hsl(217 91% 60%)  → #3b82f6
     secondary   hsl(185 80% 40%)  → #0891b2 (teal/cyan)
     footer      hsl(222 47%  6%)  → #070d1a (dark)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Public+Sans:wght@400;500;600&display=swap');

/* ─── Token Overrides ────────────────────────────────────── */
:root {
  --s7-bg         : #eff1f6;   /* page background */
  --s7-bg-alt     : #e5eaf1;   /* section ghost   */
  --s7-card       : #f5f6fa;   /* card surface    */
  --s7-card-from  : #f7f8fd;   /* card gradient   */
  --s7-card-to    : #eef1f8;
  --s7-border     : #cfd5e2;
  --s7-blue       : #3b82f6;
  --s7-teal       : #0891b2;
  --s7-text       : #0f1729;
  --s7-muted      : #566881;
  --s7-heading    : #0f1729;
  --s7-footer-bg  : #070d1a;
  --s7-footer-card: #0d1629;
  --s7-footer-border: #1a2540;
}

/* Override template CSS custom properties */
:root {
  --background-color : #eff1f6;
  --default-color    : #0f1729;
  --heading-color    : #0f1729;
  --accent-color     : #3b82f6;
  --surface-color    : #ffffff;
  --contrast-color   : #ffffff;

  --nav-color                     : #0f1729;
  --nav-hover-color               : #3b82f6;
  --nav-mobile-background-color   : #ffffff;
  --nav-dropdown-background-color : #ffffff;
  --nav-dropdown-color            : #0f1729;
  --nav-dropdown-hover-color      : #3b82f6;
}

.light-background {
  --background-color : #e5eaf1;
  --surface-color    : #ffffff;
}

.dark-background {
  --background-color : #070d1a;
  --default-color    : #c8d4e8;
  --heading-color    : #f0f4fb;
  --surface-color    : #0d1629;
  --contrast-color   : #ffffff;
}

/* ─── Base ───────────────────────────────────────────────── */
html { overflow-x: clip; }

body {
  background-color: #eff1f6 !important;
  color: #0f1729;
  font-family: 'Public Sans', system-ui, sans-serif !important;
  -webkit-font-smoothing: antialiased;
  line-height: 1.72;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Nunito', sans-serif !important;
  color: #0f1729;
  letter-spacing: -0.018em;
  line-height: 1.22;
}

p {
  color: #566881;
  line-height: 1.78;
}

a        { color: #3b82f6; }
a:hover  { color: #0891b2; }

/* ─── Header ─────────────────────────────────────────────── */
.header:not(.sirius-header) {
  --background-color: rgba(255,255,255,0);
}

.header:not(.sirius-header) .header-container {
  background: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid #cfd5e2 !important;
  box-shadow: 0 2px 20px rgba(15, 23, 41, 0.07) !important;
}

.scrolled .header:not(.sirius-header) {
  --background-color: rgba(239, 241, 246, 0.97);
}

.scrolled .header:not(.sirius-header) .header-container {
  background: rgba(239, 241, 246, 0.97) !important;
  border-color: #cfd5e2 !important;
  box-shadow: 0 4px 28px rgba(15, 23, 41, 0.1) !important;
}

/* Nav links */
.navmenu a,
.navmenu a:focus {
  color: #0f1729 !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.navmenu li:hover > a,
.navmenu .active,
.navmenu .active:focus,
.navmenu a:hover {
  color: #3b82f6 !important;
}

/* CTA "Book a Call" button */
.header .btn-getstarted,
.header .btn-getstarted:focus {
  background: #3b82f6 !important;
  border: none !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(59,130,246,0.28) !important;
  position: relative;
  overflow: hidden;
}

.header .btn-getstarted::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transition: left 0.5s;
}
.header .btn-getstarted:hover::after { left: 100%; }

.header .btn-getstarted:hover {
  background: #1d6fe8 !important;
  box-shadow: 0 4px 18px rgba(59,130,246,0.38) !important;
  color: #ffffff !important;
}

/* ─── Mega Menu ──────────────────────────────────────────── */
.mega-dropdown .mega-menu {
  background: #ffffff !important;
  border-top: 2px solid #3b82f6 !important;
  box-shadow: 0 16px 48px rgba(15,23,41,0.12) !important;
}

.mega-left {
  border-right-color: #cfd5e2 !important;
}

.mega-left ul li {
  color: #566881;
  border-bottom-color: #e5eaf1 !important;
}

.mega-left ul li:hover,
.mega-left ul li.active {
  color: #3b82f6 !important;
}

.mega-content .card {
  background: #f7f8fd !important;
  border: 1px solid #cfd5e2 !important;
  border-radius: 10px !important;
  box-shadow: none !important;
}

.mega-content .card:hover {
  border-color: #3b82f6 !important;
  background: #eff3fd !important;
  box-shadow: 0 4px 16px rgba(59,130,246,0.1) !important;
}

.mega-content .card h5,
.mega-content .card h4,
.mega-content .card h6,
.mega-content .card strong {
  color: #0f1729 !important;
}

.mega-content .card p {
  color: #566881 !important;
}

/* Mobile nav */
.navmenu ul {
  background-color: #ffffff !important;
  border: 1px solid #cfd5e2 !important;
}

.navmenu a i {
  background-color: rgba(59,130,246,0.08) !important;
  color: #3b82f6;
}

.navmenu .active i,
.navmenu a i:hover {
  background-color: #3b82f6 !important;
  color: #ffffff !important;
}

/* ─── Global Sections ────────────────────────────────────── */
section,
.section {
  background-color: #eff1f6;
  color: #0f1729;
  border-bottom: 1px solid rgba(207,213,226,0.45);
}

section.light-background,
.section.light-background {
  background-color: #e5eaf1 !important;
}

section.dark-background,
.section.dark-background {
  background-color: #070d1a !important;
  color: #c8d4e8;
  border-bottom-color: rgba(255,255,255,0.06);
}

/* Override template's hardcoded !important */
section.services,
section.services-home,
div.services {
  background-color: #eff1f6 !important;
}

/* ─── Section Titles ─────────────────────────────────────── */
.section-title h2 {
  color: #0f1729 !important;
  font-family: 'Nunito', sans-serif !important;
  font-weight: 800;
}

.section-title h2:after {
  background: linear-gradient(90deg, #3b82f6, #0891b2) !important;
  height: 3px;
  border-radius: 2px;
}

.section-title p {
  color: #566881 !important;
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto;
}

/* Gradient text for accent spans */
.hero .hero-content h1 .accent-text {
  background: linear-gradient(135deg, #3b82f6, #0891b2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Old .hero section (carousel only) ─────────────────── */
section.hero:not(.service-hero):not(.industry-hero) {
  background: none !important;
  padding: 0 !important;
  min-height: unset !important;
}

section.hero.service-hero,
section.hero.industry-hero {
  padding: 120px 0 60px !important;
  margin-top: 60px;
  background: var(--dmiq-page-hero-gradient) !important;
  background-image: var(--dmiq-page-hero-gradient) !important;
  border-bottom: 1px solid rgba(0, 150, 255, 0.28);
}

.service-hero h1,
.industry-hero h1 {
  color: #f8fafc !important;
}

.service-hero p,
.industry-hero p {
  color: rgba(226, 232, 240, 0.88) !important;
}

.hero .hero-content h1 {
  color: #f0f4fb !important;
  font-family: 'Nunito', sans-serif !important;
  font-weight: 800;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35) !important;
}

.hero .hero-content p {
  color: rgba(240,244,251,0.82) !important;
}

.hero .company-badge {
  background: rgba(59,130,246,0.12) !important;
  border: 1px solid rgba(59,130,246,0.25);
  color: #93c5fd !important;
}

.hero .btn-primary {
  background: #3b82f6 !important;
  border: none !important;
  box-shadow: 0 4px 16px rgba(59,130,246,0.32) !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}
.hero .btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.14), transparent);
  transition: left 0.5s;
}
.hero .btn-primary:hover::after { left: 100%; }
.hero .btn-primary:hover {
  background: #1d6fe8 !important;
  box-shadow: 0 6px 24px rgba(59,130,246,0.45) !important;
  transform: translateY(-2px);
}

.hero .btn-link {
  color: rgba(240,244,251,0.9) !important;
}
.hero .btn-link:hover { color: #93c5fd !important; }

.hero .stats-row {
  background: rgba(255,255,255,0.96) !important;
  border: 1px solid rgba(207,213,226,0.7) !important;
  box-shadow: 0 4px 28px rgba(15,23,41,0.1) !important;
}

.hero .stat-item .stat-icon {
  background: rgba(59,130,246,0.08) !important;
}
.hero .stat-item .stat-icon i { color: #3b82f6 !important; }
.hero .stat-item:hover .stat-icon { background: #3b82f6 !important; }

.hero .stat-item .stat-content h4 { color: #0f1729 !important; }
.hero .stat-item .stat-content p  { color: #566881 !important; }

.hero .customers-badge {
  background: #ffffff !important;
  border: 1px solid #cfd5e2 !important;
  box-shadow: 0 4px 20px rgba(15,23,41,0.1) !important;
}
.hero .customers-badge p       { color: #566881 !important; }
.hero .customers-badge .avatar.more { background-color: #3b82f6 !important; }

/* ─── Services Home ──────────────────────────────────────── */
.services-home {
  background: linear-gradient(180deg, #eff1f6 0%, #e5eaf1 100%) !important;
}

.services-home .service-card {
  background: linear-gradient(135deg, #f7f8fd, #eef1f8) !important;
  border: 1px solid #cfd5e2 !important;
  border-radius: 16px !important;
  box-shadow: 0 1px 4px rgba(15,23,41,0.05) !important;
}

.services-home .service-card:hover {
  border-color: #3b82f6 !important;
  background: linear-gradient(135deg, #eff3fd, #e8eefa) !important;
  box-shadow: 0 8px 28px rgba(59,130,246,0.12) !important;
  transform: translateY(-5px);
}

.services-home .service-card h3 {
  color: #0f1729 !important;
  font-family: 'Nunito', sans-serif !important;
  font-weight: 700;
}
.services-home .service-card p { color: #566881 !important; }

.services-home .service-card .icon,
.industries-home .industry-card .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
  min-height: 48px;
}

.services-home .service-card .icon svg,
.industries-home .industry-card .icon svg,
.features-cards .feature-box svg {
  width: 40px;
  height: 40px;
  stroke: #3b82f6;
  stroke-width: 1.75;
}

.services-home .service-card:hover .icon svg,
.industries-home .industry-card:hover .icon svg {
  stroke: #1d6fe8;
}

.features-cards .feature-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}

.features-cards .feature-box svg {
  width: 44px;
  height: 44px;
}

.services-home .btn.btn-primary {
  background: #3b82f6 !important;
  border: none !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(59,130,246,0.22) !important;
}
.services-home .btn.btn-primary:hover {
  background: #1d6fe8 !important;
  box-shadow: 0 4px 16px rgba(59,130,246,0.35) !important;
  transform: translateY(-2px);
}

/* ─── Industries Home ────────────────────────────────────── */
.industries-home {
  background-color: #e5eaf1 !important;
}

.industries-home .industry-card {
  background: linear-gradient(135deg, #f7f8fd, #eef1f8) !important;
  border: 1px solid #cfd5e2 !important;
  border-radius: 16px !important;
  box-shadow: 0 1px 4px rgba(15,23,41,0.04) !important;
}

.industries-home .industry-card:hover {
  border-color: #0891b2 !important;
  box-shadow: 0 8px 28px rgba(8,145,178,0.12) !important;
  transform: translateY(-4px);
}

.industries-home .industry-card h3 { color: #0f1729 !important; }
.industries-home .industry-card p  { color: #566881 !important; }

/* ─── Technologies / Features ────────────────────────────── */
.features {
  background-color: #eff1f6 !important;
}

.features .nav-tabs {
  background: #e5eaf1 !important;
  border: 1px solid #cfd5e2 !important;
}

.features .nav-link { color: #566881; }
.features .nav-link h4 { color: #566881 !important; }

.features .nav-link.active {
  background: #3b82f6 !important;
  color: #ffffff !important;
}
.features .nav-link.active h4,
.features .nav-link.active i { color: #ffffff !important; }

/* ─── About Section ──────────────────────────────────────── */
.about { background-color: #e5eaf1 !important; }

.about .about-meta {
  color: #3b82f6 !important;
  font-family: 'Inter', sans-serif !important;
}

.about .about-title {
  color: #0f1729 !important;
  font-family: 'Nunito', sans-serif !important;
}

.about .about-description { color: #566881 !important; }

.about .feature-list li { color: #0f1729 !important; }
.about .feature-list li i { color: #0891b2 !important; }

.about .contact-info {
  background: #f5f6fa !important;
  border: 1px solid #cfd5e2 !important;
  box-shadow: 0 2px 10px rgba(15,23,41,0.05) !important;
}
.about .contact-info i       { color: #3b82f6 !important; }
.about .contact-info .contact-label  { color: #566881 !important; }
.about .contact-info .contact-number { color: #0f1729 !important; }

.about .image-wrapper .experience-badge {
  background: linear-gradient(135deg, #3b82f6, #0891b2) !important;
}

.about .profile .profile-position { color: #0891b2 !important; }

/* ─── Call to Action (dark section) ──────────────────────── */
.call-to-action-2.dark-background {
  background: linear-gradient(135deg, #070d1a 0%, #0d1629 100%) !important;
}

.call-to-action-2 h3 {
  color: #f0f4fb !important;
  font-family: 'Nunito', sans-serif !important;
}

.call-to-action-2 p { color: #8ea8c8 !important; }

.call-to-action-2 .btn-primary,
.call-to-action-2 a.btn {
  background: #3b82f6 !important;
  border: none !important;
  box-shadow: 0 4px 16px rgba(59,130,246,0.35) !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 700;
}

/* ─── Contact ────────────────────────────────────────────── */
.contact {
  background-color: #e5eaf1 !important;
}

/* Blue info panel — override global dark text on paragraphs/headings */
.contact .info-box {
  background: linear-gradient(145deg, #2563eb 0%, #043464 55%, #0891b2 100%) !important;
  color: #ffffff !important;
}

.contact .info-box h3,
.contact .info-box h4,
.contact .info-box .info-item .content h4 {
  color: #ffffff !important;
}

.contact .info-box p,
.contact .info-box .info-item .content p {
  color: rgba(255, 255, 255, 0.92) !important;
  opacity: 1 !important;
}

.contact .info-box > p {
  color: rgba(255, 255, 255, 0.88) !important;
}

.contact .info-box a {
  color: #ffffff !important;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact .info-box a:hover {
  color: #e0f2fe !important;
}

.contact .info-item .icon-box {
  background-color: rgba(255, 255, 255, 0.18) !important;
}

.contact .info-item .icon-box i {
  color: #ffffff !important;
}

.contact .info-item:hover .icon-box {
  background-color: rgba(255, 255, 255, 0.28) !important;
}

.contact .contact-form {
  background: #ffffff !important;
  border: 1px solid #cfd5e2 !important;
  border-radius: 16px !important;
  box-shadow: 0 4px 24px rgba(15,23,41,0.07) !important;
}

.contact .contact-form h3 { color: #0f1729 !important; }
.contact .contact-form p  { color: #566881 !important; }

.contact .contact-form .form-control,
.contact .contact-form .form-select {
  background: #f5f6fa !important;
  border-color: #cfd5e2 !important;
  color: #0f1729 !important;
}

.contact .contact-form .form-control::placeholder { color: #566881 !important; }

.contact .contact-form .form-control:focus,
.contact .contact-form .form-select:focus {
  border-color: #3b82f6 !important;
  box-shadow: 0 0 0 3px rgba(59,130,246,0.14) !important;
  background: #ffffff !important;
}

.contact .contact-form .form-control.is-invalid {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.12) !important;
}

.contact .contact-form .invalid-feedback {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.35rem;
}

/* ─── Footer (dark — matches sirius7's dark footer) ────── */
.footer {
  background-color: #070d1a !important;
  color: #8ea8c8;
  border-top: 1px solid #1a2540 !important;
}

.footer .footer-top {
  padding-top: 60px;
  padding-bottom: 20px;
}

.footer h4 {
  color: #f0f4fb !important;
  font-family: 'Nunito', sans-serif !important;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer .footer-about p { color: #8ea8c8 !important; font-size: 14px; }

.footer .footer-about .logo img {
  max-height: 52px;
  width: auto;
  border-radius: 6px;
  object-fit: contain;
  background: #ffffff;
}

.footer .footer-links ul a {
  color: #8ea8c8 !important;
  font-size: 14px;
  transition: color 0.2s;
}
.footer .footer-links ul a:hover { color: #3b82f6 !important; }
.footer .footer-links ul i       { color: #0891b2 !important; }
.footer .footer-links ul li { border-bottom: 1px solid rgba(26,37,64,0.5); }

.footer .social-links a {
  border-color: #1a2540 !important;
  color: #8ea8c8 !important;
}
.footer .social-links a:hover {
  background: #3b82f6 !important;
  border-color: #3b82f6 !important;
  color: #ffffff !important;
  box-shadow: 0 0 10px rgba(59,130,246,0.35);
}

.footer .footer-contact p,
.footer .footer-contact a { color: #8ea8c8 !important; }
.footer .footer-contact a:hover { color: #3b82f6 !important; }

.footer .footer-location {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(26, 37, 64, 0.5);
}
.footer .footer-location:first-of-type {
  margin-top: 0.5rem;
  padding-top: 0;
  border-top: none;
}
.footer .footer-location__region {
  color: #f0f4fb !important;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.footer .footer-location__detail {
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 0.25rem;
}

.footer .copyright {
  border-top: 1px solid #1a2540 !important;
  padding: 20px 0;
}
.footer .copyright p { color: #3d5272 !important; font-size: 13px; }

/* ─── Scroll Top ─────────────────────────────────────────── */
.scroll-top {
  background: #3b82f6 !important;
  box-shadow: 0 4px 12px rgba(59,130,246,0.35) !important;
}
.scroll-top:hover { background: #1d6fe8 !important; }

/* ─── Modal ──────────────────────────────────────────────── */
.modal-content {
  background: #ffffff !important;
  border: 1px solid #cfd5e2 !important;
}
.modal-header {
  background: linear-gradient(135deg, #3b82f6, #0891b2) !important;
}
.modal-body { background: #ffffff !important; color: #0f1729 !important; }
.modal-body h6 { color: #3b82f6 !important; }
.modal-body a  { color: #3b82f6 !important; }
.modal-footer {
  background: #f5f6fa !important;
  border-top: 1px solid #cfd5e2 !important;
}

/* ─── Page Titles (inner pages) ──────────────────────────── */
.page-title {
  background: linear-gradient(135deg, #0f1729, #1d2f58) !important;
  color: #f0f4fb;
}
.page-title h1 {
  color: #f0f4fb !important;
  font-family: 'Nunito', sans-serif !important;
}
.page-title .breadcrumbs ol li,
.page-title .breadcrumbs ol li a { color: rgba(240,244,251,0.65) !important; }

/* ─── Service Details ─────────────────────────────────────── */
.service-details .service-box {
  background: #ffffff !important;
  border: 1px solid #cfd5e2 !important;
  box-shadow: 0 2px 10px rgba(15,23,41,0.05) !important;
}

.service-details .service-box h4 {
  color: #0f1729 !important;
  border-bottom-color: #cfd5e2 !important;
}

.service-details .services-list a {
  background: #f5f6fa !important;
  color: #566881 !important;
}
.service-details .services-list a i { color: #0891b2 !important; }
.service-details .services-list a.active {
  background: #3b82f6 !important;
  color: #ffffff !important;
}
.service-details .services-list a:hover {
  background: #eff3fd !important;
  color: #3b82f6 !important;
}

.service-details .help-box {
  background: linear-gradient(135deg, #3b82f6, #0891b2) !important;
}
.service-details ul i { color: #0891b2 !important; }

/* Services / listing heroes */
.services-hero,
.service-hero {
  background: var(--dmiq-page-hero-gradient) !important;
  background-image: var(--dmiq-page-hero-gradient) !important;
  border-bottom: 1px solid rgba(0, 150, 255, 0.28);
}

.services-hero h1,
.service-hero h1 {
  color: #f8fafc !important;
  font-family: 'Nunito', sans-serif !important;
  font-weight: 800;
}

.services-hero p.lead,
.service-hero p {
  color: rgba(226, 232, 240, 0.88) !important;
}

.hero-visual {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

/* Quick Services Snapshot */
#quick-snapshot {
  padding: 3rem 0;
}

#quick-snapshot h3 {
  margin-bottom: 0.5rem;
  color: #043464 !important;
}

#quick-snapshot .snapshot-lead {
  margin-bottom: 2rem;
}

#quick-snapshot .services-grid {
  --bs-gutter-x: 1.75rem;
  --bs-gutter-y: 1.75rem;
}

/* Service cards */
.svc-card {
  background: linear-gradient(135deg, #f7f8fd, #eef1f8) !important;
  border: 1px solid #cfd5e2 !important;
  border-radius: 14px !important;
  box-shadow: 0 1px 4px rgba(15,23,41,0.05) !important;
  padding: 22px !important;
}
.svc-card:hover {
  border-color: #3b82f6 !important;
  background: linear-gradient(135deg, #eff3fd, #e8eefa) !important;
  box-shadow: 0 8px 28px rgba(59,130,246,0.12) !important;
}
.svc-card h5, .svc-card h4, .svc-card h6 {
  color: #0f1729 !important;
  font-family: 'Nunito', sans-serif !important;
}
.svc-card p { color: #566881 !important; }

.svc-icon {
  background: linear-gradient(135deg, #eff3fd, #dde8fb) !important;
  border: 1px solid rgba(59,130,246,0.18) !important;
  color: #3b82f6 !important;
}

/* ─── Industries Page ────────────────────────────────────── */
.grid-card {
  background: linear-gradient(135deg, #f7f8fd, #eef1f8) !important;
  border: 1px solid #cfd5e2 !important;
  box-shadow: 0 1px 4px rgba(15,23,41,0.05) !important;
}
.grid-card:hover {
  border-color: #0891b2 !important;
  box-shadow: 0 6px 20px rgba(8,145,178,0.12) !important;
}
.grid-card h6 { color: #0f1729 !important; }
.grid-card p  { color: #566881 !important; }

/* ─── Typography Tightening ──────────────────────────────── */
.text-muted { color: #566881 !important; }

.form-control,
.form-select {
  background: #f5f6fa !important;
  border-color: #cfd5e2 !important;
  color: #0f1729 !important;
}
.form-control:focus, .form-select:focus {
  border-color: #3b82f6 !important;
  box-shadow: 0 0 0 3px rgba(59,130,246,0.14) !important;
}

/* ─── Sirius-style header (full width bar) ───────────────── */
.sirius-header {
  padding: 0 !important;
  background: #f3f4f8 !important;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  border-top: 1px solid #e2e5ec;
  border-bottom: 1px solid #e5e7eb;
  flex-direction: column;
  align-items: stretch;
  z-index: 997;
}

body.mobile-nav-active .sirius-header {
  z-index: 10000;
}

.sirius-header .header-container {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  max-width: min(100%, var(--dmiq-site-max-width)) !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 12px var(--dmiq-site-gutter) !important;
  box-shadow: none !important;
  gap: 16px;
  display: grid !important;
  grid-template-columns: minmax(0, auto) minmax(0, 1fr) minmax(0, auto);
  align-items: center;
  min-height: 72px;
  min-width: 0;
}

.scrolled .sirius-header {
  background: rgba(243, 244, 248, 0.98) !important;
  box-shadow: 0 1px 0 #e5e7eb !important;
}

.scrolled .sirius-header .header-container {
  background: transparent !important;
  box-shadow: none !important;
}

.sirius-header .logo-brand {
  grid-column: 1;
  justify-self: start;
  gap: 12px;
  text-decoration: none;
}

.sirius-header .logo-mark {
  height: 40px;
  width: auto;
  max-width: min(280px, 48vw);
  border-radius: 0;
  object-fit: contain;
  flex-shrink: 0;
  background: transparent;
}

.sirius-header .logo-text {
  display: none !important;
}

.sirius-header .logo-name {
  font-family: 'Inter', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: linear-gradient(90deg, #0891b2, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sirius-header .logo-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b7280;
}

.sirius-header .navmenu-pill {
  grid-column: 2;
  justify-self: center;
  min-width: 0;
  max-width: 100%;
  overflow: visible !important;
}

.sirius-header .navmenu-pill > ul {
  overflow: visible !important;
}

.sirius-header .navmenu-pill li {
  overflow: visible !important;
}

.sirius-header .header-actions {
  grid-column: 3;
  justify-self: end;
  gap: 12px;
}

.sirius-header .theme-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: #4b5563;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.sirius-header .theme-toggle-btn:hover {
  color: #1f2937;
  background: rgba(15, 23, 41, 0.06);
}

.sirius-header .mobile-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: #1f2937;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  transition: color 0.2s ease, background 0.2s ease;
}

.sirius-header .mobile-nav-toggle:hover {
  background: rgba(15, 23, 41, 0.06);
}

@media (max-width: 1199px) {
  .sirius-header.header {
    padding: 0 !important;
  }

  .sirius-header .header-container {
    display: flex !important;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 100% !important;
    padding: 10px 16px !important;
    min-height: 64px;
  }

  .sirius-header .logo-brand {
    flex: 1 1 auto;
    order: 1;
    min-width: 0;
  }

  .sirius-header .header-actions {
    order: 2;
    flex: 0 0 auto;
    margin-left: auto;
    gap: 8px;
    min-width: 0;
  }

  .sirius-header .header-actions .btn-getstarted {
    order: 1;
  }

  .sirius-header .header-actions .mobile-nav-toggle {
    order: 2;
    margin-left: 0;
  }

  .sirius-header .navmenu-pill {
    order: 3;
    flex: 0 0 auto;
    width: 0 !important;
    height: 0;
    overflow: visible;
    position: static;
    padding: 0;
    margin: 0;
  }

  .sirius-header .navmenu-pill > ul {
    display: none !important;
  }

  .sirius-header .mobile-nav-toggle {
    display: inline-flex !important;
  }

  .sirius-header .btn-getstarted {
    padding: 9px 14px !important;
    font-size: 0.8125rem !important;
  }

  body.mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .sirius-header .navmenu-pill {
    position: fixed;
    inset: 0;
    z-index: 9997;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    background: rgba(15, 23, 41, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }

  .mobile-nav-active .sirius-header .navmenu-pill > ul {
    display: flex !important;
    flex-direction: column;
    align-items: stretch !important;
    justify-content: flex-start !important;
    align-content: flex-start !important;
    gap: 4px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    max-height: 100dvh;
    width: auto;
    max-width: none;
    margin: 0;
    padding: calc(72px + env(safe-area-inset-top, 0px)) 12px 16px 16px !important;
    border-radius: 0 0 16px 16px !important;
    background: #ffffff !important;
    border: none !important;
    border-bottom: 1px solid #e5e7eb !important;
    overflow-x: hidden;
    overflow-y: scroll;
    scrollbar-gutter: stable;
    scrollbar-width: thin;
    scrollbar-color: #94a3b8 #eef2f7;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 12px 40px rgba(15, 23, 41, 0.18);
    z-index: 9998;
    animation: mobileNavSlideDown 0.28s ease-out;
  }

  .mobile-nav-active .sirius-header .navmenu-pill > ul::-webkit-scrollbar {
    width: 8px;
  }

  .mobile-nav-active .sirius-header .navmenu-pill > ul::-webkit-scrollbar-track {
    background: #eef2f7;
    border-radius: 4px;
  }

  .mobile-nav-active .sirius-header .navmenu-pill > ul::-webkit-scrollbar-thumb {
    background: #94a3b8;
    border-radius: 4px;
  }

  .mobile-nav-active .sirius-header .navmenu-pill > ul::-webkit-scrollbar-thumb:hover {
    background: #64748b;
  }

  @keyframes mobileNavSlideDown {
    from {
      opacity: 0;
      transform: translateY(-100%);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .mobile-nav-active .sirius-header .navmenu-pill > ul,
  .mobile-nav-active .sirius-header .navmenu-pill .nav-pill-link,
  .mobile-nav-active .sirius-header .navmenu-pill .nav-dropdown-toggle {
    border-radius: 10px !important;
  }

  .mobile-nav-active .sirius-header .navmenu-pill .nav-pill-link,
  .mobile-nav-active .sirius-header .navmenu-pill .nav-dropdown-toggle {
    width: 100%;
    justify-content: flex-start;
    white-space: normal;
    padding: 12px 16px !important;
    font-size: 0.9375rem !important;
    color: #1f2937 !important;
    background: transparent !important;
  }

  .mobile-nav-active .sirius-header .navmenu-pill .nav-pill-link.active,
  .mobile-nav-active .sirius-header .navmenu-pill .nav-dropdown-toggle.active {
    background: rgba(59, 130, 246, 0.1) !important;
    color: #1d4ed8 !important;
  }

  .mobile-nav-active .sirius-header .navmenu-pill li {
    width: 100%;
  }

  .mobile-nav-active .sirius-header .mobile-nav-toggle {
    position: relative;
    z-index: 10000;
    color: #1f2937 !important;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 8px rgba(15, 23, 41, 0.12);
  }
}

/* Override template mobile-nav rules for Sirius header */
.mobile-nav-active .sirius-header .navmenu {
  position: fixed;
  overflow: visible;
  background: transparent;
}

.mobile-nav-active .sirius-header .mobile-nav-toggle {
  position: relative;
  top: auto;
  right: auto;
  margin-right: 0;
}

@media (max-width: 575px) {
  .sirius-header .header-container {
    padding: 8px 12px !important;
    gap: 8px;
  }

  .sirius-header .logo-mark {
    height: 36px;
    width: auto;
    max-width: 160px;
  }

  .sirius-header .theme-toggle-btn {
    width: 36px;
    height: 36px;
    font-size: 1.05rem;
  }

  .sirius-header .btn-getstarted {
    padding: 8px 12px !important;
    font-size: 0.75rem !important;
  }

  .sirius-header .mobile-nav-toggle {
    width: 36px;
    height: 36px;
    font-size: 1.35rem;
  }

  .mobile-nav-active .sirius-header .navmenu-pill > ul {
    padding-top: calc(64px + env(safe-area-inset-top, 0px)) !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
    padding-bottom: 12px !important;
  }
}

@media (max-width: 420px) {
  .sirius-header .btn-getstarted {
    display: none;
  }
}

@media (min-width: 1200px) {
  .navmenu-pill > ul {
    flex-wrap: nowrap !important;
    gap: 2px !important;
    padding: 4px 6px !important;
  }

  .navmenu-pill .nav-pill-link,
  .navmenu-pill .nav-dropdown-toggle {
    padding: 8px 11px !important;
    font-size: 0.8125rem !important;
    gap: 5px !important;
  }

  .navmenu-pill .nav-pill-link i,
  .navmenu-pill .nav-dropdown-toggle > i:first-child {
    font-size: 0.9rem;
  }
}

@media (min-width: 1200px) and (max-width: 1499px) {
  .sirius-header .header-container {
    max-width: 100% !important;
    padding: 10px 12px !important;
    gap: 8px;
    grid-template-columns: minmax(0, auto) minmax(0, 1fr) minmax(0, auto);
  }

  .sirius-header .logo-mark {
    height: 38px;
    max-width: min(180px, 28vw);
  }

  .sirius-header .navmenu-pill {
    min-width: 0;
    overflow-x: auto;
    overflow-y: visible;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .sirius-header .navmenu-pill::-webkit-scrollbar {
    display: none;
  }

  .navmenu-pill > ul {
    gap: 1px !important;
    padding: 4px 5px !important;
  }

  .navmenu-pill .nav-pill-link,
  .navmenu-pill .nav-dropdown-toggle {
    padding: 7px 8px !important;
    font-size: 0.72rem !important;
    gap: 4px !important;
  }

  .navmenu-pill .nav-pill-link i,
  .navmenu-pill .nav-dropdown-toggle > i:first-child {
    font-size: 0.8rem;
  }

  .sirius-header .btn-getstarted {
    padding: 8px 12px !important;
    font-size: 0.75rem !important;
  }
}

@media (min-width: 1500px) {
  .navmenu-pill .nav-pill-link,
  .navmenu-pill .nav-dropdown-toggle {
    padding: 9px 13px !important;
    font-size: 0.875rem !important;
  }

  .sirius-header .btn-getstarted {
    padding: 11px 20px !important;
    font-size: 0.875rem !important;
  }
}

.logo-brand img:not(.logo-mark) {
  max-height: 44px;
  width: auto;
}

.navmenu-pill > ul {
  display: flex;
  list-style: none;
  margin: 0;
  background: #e8ebf1 !important;
  border-radius: 999px !important;
  padding: 5px 8px !important;
  border: none !important;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 100%;
}

@media (min-width: 1200px) {
  .sirius-header .navmenu-pill {
    justify-self: center;
    width: 100%;
  }

  .sirius-header .navmenu-pill > ul {
    width: max-content;
    max-width: 100%;
    margin: 0 auto;
  }
}

.navmenu-pill .nav-pill-link,
.navmenu-pill .nav-dropdown-toggle {
  display: inline-flex !important;
  align-items: center;
  gap: 7px;
  padding: 9px 14px !important;
  border-radius: 999px !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  color: #4b5563 !important;
  white-space: nowrap;
  text-decoration: none;
}

.navmenu-pill .nav-pill-link i,
.navmenu-pill .nav-dropdown-toggle > i:first-child {
  font-size: 1rem;
  background: none !important;
  width: auto !important;
  height: auto !important;
  line-height: 1;
  margin: 0 !important;
  padding: 0 !important;
  color: inherit;
}

.navmenu-pill .nav-pill-link.active,
.navmenu-pill .nav-dropdown-toggle.active {
  background: linear-gradient(90deg, #3b82f6, #06b6d4) !important;
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.32);
}

.navmenu-pill .nav-pill-link.active i,
.navmenu-pill .nav-dropdown-toggle.active > i:first-child,
.navmenu-pill .nav-dropdown-toggle.active .chevron-sm {
  color: #fff !important;
}

.navmenu-pill .nav-pill-link:hover:not(.active),
.navmenu-pill .nav-dropdown-toggle:hover:not(.active) {
  color: #1f2937 !important;
  background: rgba(255, 255, 255, 0.7) !important;
}

.sirius-header .navmenu a.nav-pill-link,
.sirius-header .navmenu a.nav-dropdown-toggle {
  color: #4b5563 !important;
}

.sirius-header .navmenu .nav-pill-link.active,
.sirius-header .navmenu .nav-dropdown-toggle.active {
  color: #fff !important;
}

@media (max-width: 1199px) {
  .sirius-header .logo-mark {
    height: 40px;
    width: auto;
    max-width: 190px;
  }
}

.navmenu-pill .chevron-sm {
  font-size: 0.65rem !important;
  opacity: 0.7;
}

/* Mega panels removed — link-only dropdowns */
.sirius-header .mega-menu {
  display: none !important;
}

/* Sirius-style dropdown: white panel, icon + label rows */
.navmenu-pill .nav-dropdown {
  position: static;
}

@media (min-width: 1200px) {
  .navmenu-pill .nav-dropdown {
    position: relative;
  }
}

.navmenu-pill .nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0px);
  left: 0;
  transform: none;
  min-width: 400px;
  max-width: 440px;
  max-height: none;
  overflow: visible;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: #ffffff !important;
  border: 1px solid rgba(229, 231, 235, 0.9) !important;
  border-radius: 14px !important;
  box-shadow:
    0 4px 6px -1px rgba(15, 23, 41, 0.06),
    0 20px 48px -8px rgba(15, 23, 41, 0.14) !important;
  z-index: 1100;
}

.navmenu-pill .nav-dropdown--wide .nav-dropdown-menu {
  min-width: 420px;
  max-width: 480px;
}

.navmenu-pill .nav-dropdown-menu li {
  margin: 0;
  padding: 0;
}

.navmenu-pill .nav-dropdown-menu li a {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 6px 10px !important;
  font-size: calc(0.9rem - 2px) !important;
  font-weight: 500 !important;
  color: #374151 !important;
  border-radius: 8px !important;
  white-space: normal;
  line-height: 1.25;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.navmenu-pill .nav-dropdown-menu .dropdown-item-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(6, 182, 212, 0.12) !important;
  color: #0891b2 !important;
  font-size: calc(1rem - 2px);
}

.navmenu-pill .nav-dropdown-menu .dropdown-item-icon i {
  background: none !important;
  width: auto;
  height: auto;
  line-height: 1;
  margin: 0 !important;
  padding: 0 !important;
}

.navmenu-pill .nav-dropdown-menu .dropdown-item-label {
  flex: 1;
  min-width: 0;
}

.navmenu-pill .nav-dropdown-menu li a:hover {
  background: #f8fafc !important;
  color: #0f1729 !important;
}

.navmenu-pill .nav-dropdown-menu li a:hover .dropdown-item-icon {
  background: rgba(59, 130, 246, 0.12) !important;
  color: #3b82f6 !important;
}

.navmenu-pill .nav-dropdown-menu li a.active {
  background: rgba(59, 130, 246, 0.1) !important;
  color: #1d4ed8 !important;
  font-weight: 600 !important;
}

.navmenu-pill .nav-dropdown-menu li a.active .dropdown-item-icon {
  background: linear-gradient(135deg, #3b82f6, #0891b2) !important;
  color: #fff !important;
}

@media (min-width: 1200px) {
  .navmenu-pill .nav-dropdown:hover .nav-dropdown-menu,
  .navmenu-pill .nav-dropdown:focus-within .nav-dropdown-menu {
    display: block;
  }

  .navmenu-pill > ul {
    overflow: visible !important;
  }

  .navmenu-pill .nav-dropdown-menu {
    animation: navDropdownIn 0.18s ease-out;
  }
}

@keyframes navDropdownIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1199px) {
  .navmenu-pill .nav-dropdown.open .nav-dropdown-menu {
    display: block;
    position: static;
    min-width: 100%;
    max-width: 100%;
    max-height: min(280px, 42vh);
    overflow-x: hidden;
    overflow-y: scroll;
    scrollbar-gutter: stable;
    scrollbar-width: thin;
    scrollbar-color: #94a3b8 #f1f5f9;
    margin-top: 8px;
    padding: 8px;
    box-shadow: none !important;
    border: 1px solid #e5e7eb !important;
    animation: none;
  }

  .navmenu-pill .nav-dropdown.open .nav-dropdown-menu::-webkit-scrollbar {
    width: 6px;
  }

  .navmenu-pill .nav-dropdown.open .nav-dropdown-menu::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 4px;
  }

  .navmenu-pill .nav-dropdown.open .nav-dropdown-menu::-webkit-scrollbar-thumb {
    background: #94a3b8;
    border-radius: 4px;
  }

  .navmenu-pill .nav-dropdown {
    width: 100%;
  }

  .navmenu-pill .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
  }
}

.sirius-header .btn-getstarted {
  background: linear-gradient(90deg, #3b82f6, #06b6d4) !important;
  border-radius: 999px !important;
  padding: 11px 22px !important;
  font-size: 0.875rem !important;
  font-weight: 700 !important;
  white-space: nowrap;
  margin: 0 !important;
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.28) !important;
}

.sirius-header .btn-getstarted:hover {
  background: linear-gradient(90deg, #2563eb, #0891b2) !important;
  color: #fff !important;
  transform: translateY(-1px);
}


.mega-left ul li a {
  color: inherit;
  text-decoration: none;
  display: block;
}

.mega-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.mega-card-link .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #3b82f6;
  margin-top: 8px;
}

/* Category pages — logo gradient hero surface */
.page-hero,
.page-hero--accent,
.clients-page-hero,
.contact-page-hero,
.about-page-hero,
.partnerships-page-hero,
.capabilities-page-hero {
  background: var(--dmiq-page-hero-gradient) !important;
  background-image: var(--dmiq-page-hero-gradient) !important;
  border-bottom: 1px solid rgba(0, 150, 255, 0.28);
  color: #f0f4fb;
}

.page-hero {
  padding: 120px 0 60px;
}

.page-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #7dd3fc;
  font-weight: 600;
  margin-bottom: 1rem;
  text-decoration: none;
}

.page-back:hover {
  color: #bae6fd;
}

.page-hero h1,
.clients-page-hero h1,
.contact-page-hero h1,
.about-page-hero h1,
.partnerships-page-hero h1,
.capabilities-page-hero h1 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  color: #f8fafc !important;
}

.page-hero .lead,
.clients-page-hero__lead,
.contact-page-hero__lead,
.about-page-hero__lead,
.about-page-hero__text,
.partnerships-page-hero__lead,
.capabilities-page-hero__lead {
  max-width: 720px;
  color: rgba(226, 232, 240, 0.88) !important;
  font-size: 1.15rem;
}

.about-page-hero__lead strong {
  color: #f1f5f9 !important;
}

.page-hero .btn-outline-secondary {
  color: #f8fafc;
  border-color: rgba(248, 250, 252, 0.45);
}

.page-hero .btn-outline-secondary:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(248, 250, 252, 0.65);
}

.offering-card {
  background: #fff;
  border: 1px solid #cfd5e2;
  border-radius: 12px;
  padding: 1.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.offering-card:hover {
  border-color: #3b82f6;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.12);
}

.offering-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #0f1729;
}

/* Mega menu content on detail pages */
.mega-page-card {
  background: #ffffff;
  border: 1px solid #cfd5e2;
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.mega-page-card:hover {
  border-color: #3b82f6;
  box-shadow: 0 8px 28px rgba(59, 130, 246, 0.1);
}

.mega-page-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f1729;
  margin-bottom: 0.65rem;
}

.mega-page-card p {
  color: #566881;
  margin-bottom: 0;
  line-height: 1.65;
}

.mega-page-card--highlight {
  border-color: #3b82f6;
  box-shadow: 0 8px 28px rgba(59, 130, 246, 0.15);
}

.mega-page-card--feature {
  padding: 2rem;
}

.mega-page-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(6, 182, 212, 0.12);
  color: #0891b2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.page-hero-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 150, 255, 0.28), rgba(6, 182, 212, 0.22));
  color: #7dd3fc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.page-cta h2 {
  font-weight: 700;
}

body.theme-dark {
  --background-color: #0f1729;
}

body.theme-dark .sirius-header {
  background: #0f1729 !important;
  border-top-color: #1e293b;
}

body.theme-dark .sirius-header {
  border-bottom-color: #334155;
}

body.theme-dark .sirius-header .header-container {
  background: transparent !important;
}

body.theme-dark .sirius-header .logo-tagline {
  color: #94a3b8;
}

body.theme-dark .sirius-header .theme-toggle-btn {
  color: #cbd5e1;
}

body.theme-dark .sirius-header .theme-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #f1f5f9;
}

body.theme-dark .navmenu-pill > ul {
  background: #1e293b !important;
}

body.theme-dark .mobile-nav-active .sirius-header .navmenu-pill > ul {
  background: #1e293b !important;
  border-color: #334155 !important;
  scrollbar-color: #64748b #0f172a;
}

body.theme-dark .mobile-nav-active .sirius-header .navmenu-pill > ul::-webkit-scrollbar-track {
  background: #0f172a;
}

body.theme-dark .mobile-nav-active .sirius-header .navmenu-pill > ul::-webkit-scrollbar-thumb {
  background: #64748b;
}

body.theme-dark .navmenu-pill .nav-dropdown.open .nav-dropdown-menu {
  scrollbar-color: #64748b #1e293b;
}

body.theme-dark .navmenu-pill .nav-dropdown.open .nav-dropdown-menu::-webkit-scrollbar-track {
  background: #1e293b;
}

body.theme-dark .navmenu-pill .nav-dropdown.open .nav-dropdown-menu::-webkit-scrollbar-thumb {
  background: #64748b;
}

body.theme-dark .mobile-nav-active .sirius-header .navmenu-pill {
  background: rgba(7, 13, 26, 0.72);
}

body.theme-dark .mobile-nav-active .sirius-header .navmenu-pill .nav-pill-link,
body.theme-dark .mobile-nav-active .sirius-header .navmenu-pill .nav-dropdown-toggle {
  color: #e2e8f0 !important;
}

body.theme-dark .sirius-header .mobile-nav-toggle {
  color: #e2e8f0;
}

body.theme-dark .mobile-nav-active .sirius-header .mobile-nav-toggle {
  color: #fff;
}

body.theme-dark .navmenu-pill .nav-pill-link {
  color: #cbd5e1 !important;
}

body.theme-dark section,
body.theme-dark .section {
  background-color: #0f1729;
  color: #e2e8f0;
}

/* ─── Clients & Capabilities pages ─────────────────────────── */
.dmiq-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #3b82f6;
  margin-bottom: 0.75rem;
}

.dmiq-eyebrow--light {
  color: #7dd3fc;
}

.page-hero--accent {
  background: var(--dmiq-page-hero-gradient) !important;
  background-image: var(--dmiq-page-hero-gradient) !important;
}

.section-heading {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  color: #0f1729;
  margin-bottom: 0.75rem;
}

.dmiq-highlight-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  background: #fff;
  border: 1px solid #cfd5e2;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 12px 40px rgba(15, 23, 41, 0.06);
}

.dmiq-stat {
  text-align: center;
  padding: 0.5rem;
}

.dmiq-stat__value {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f1729;
  line-height: 1.2;
}

.dmiq-stat__label {
  display: block;
  font-size: 0.8rem;
  color: #566881;
  margin-top: 0.35rem;
}

.client-sector-card {
  background: #fff;
  border: 1px solid #cfd5e2;
  border-radius: 14px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  height: 100%;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.client-sector-card:hover {
  transform: translateY(-4px);
  border-color: #3b82f6;
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.12);
}

.client-sector-card i {
  font-size: 1.75rem;
  color: #3b82f6;
  margin-bottom: 0.75rem;
  display: block;
}

.client-sector-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #0f1729;
  margin-bottom: 0.35rem;
}

.client-sector-card p {
  font-size: 0.85rem;
  color: #566881;
  margin: 0;
}

.dmiq-pillar-card {
  background: #fff;
  border: 1px solid #cfd5e2;
  border-radius: 14px;
  padding: 1.75rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.dmiq-pillar-card:hover {
  border-color: #3b82f6;
  box-shadow: 0 10px 28px rgba(59, 130, 246, 0.1);
}

.dmiq-pillar-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(6, 182, 212, 0.12));
  color: #3b82f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.dmiq-pillar-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f1729;
  margin-bottom: 0.65rem;
}

.dmiq-pillar-card p {
  color: #566881;
  margin: 0;
  line-height: 1.65;
  font-size: 0.95rem;
}

.capabilities-hero {
  padding: 130px 0 80px;
  background: var(--dmiq-page-hero-gradient-strong) !important;
  color: #f0f4fb;
  margin-top: 60px;
}

.capabilities-hero h1 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  line-height: 1.15;
  color: #f0f4fb !important;
  margin-bottom: 1rem;
}

.capabilities-hero .lead {
  color: rgba(224, 232, 245, 0.88) !important;
  max-width: 540px;
}

.capabilities-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.capabilities-hero__visual {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
}

.capabilities-hero__visual i {
  font-size: 3.5rem;
  color: #60a5fa;
  margin-bottom: 1rem;
  display: block;
}

.capabilities-hero__visual p {
  color: rgba(224, 232, 245, 0.85);
  margin: 0;
  font-size: 1.05rem;
}

.capability-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid #cfd5e2;
  border-radius: 14px;
  padding: 1.75rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.capability-card:hover {
  transform: translateY(-4px);
  border-color: #3b82f6;
  box-shadow: 0 14px 36px rgba(59, 130, 246, 0.14);
  color: inherit;
}

.capability-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.capability-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f1729;
  margin-bottom: 0.65rem;
}

.capability-card p {
  color: #566881;
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 1rem;
}

.capability-card__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: #3b82f6;
}

.tech-stack-card {
  background: #fff;
  border: 1px solid #cfd5e2;
  border-radius: 14px;
  padding: 1.75rem;
}

.tech-stack-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f1729;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tech-stack-card h3 i {
  color: #3b82f6;
}

.tech-stack-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tech-stack-chips span {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #1e3a5f;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 100px;
}

.cap-industry-tile {
  display: block;
  height: 100%;
  background: #fff;
  border: 1px solid #cfd5e2;
  border-radius: 12px;
  padding: 1.25rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.cap-industry-tile:hover {
  transform: translateY(-3px);
  border-color: #3b82f6;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.1);
  color: inherit;
}

.cap-industry-tile i {
  font-size: 1.5rem;
  color: #3b82f6;
  margin-bottom: 0.5rem;
  display: block;
}

.cap-industry-tile h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f1729;
  margin-bottom: 0.35rem;
}

.cap-industry-tile p {
  font-size: 0.8rem;
  color: #566881;
  margin: 0;
  line-height: 1.5;
}

.cap-industry-tile--more {
  background: linear-gradient(135deg, #eff6ff, #f0f9ff);
  border-style: dashed;
}

.capabilities-cta-banner {
  background: linear-gradient(135deg, #0f1729 0%, #1d2f58 100%) !important;
  color: #f0f4fb;
}

.capabilities-cta-banner h2,
.capabilities-cta-banner p {
  color: #f0f4fb !important;
}

.capabilities-cta-banner .text-muted {
  color: rgba(224, 232, 245, 0.75) !important;
}

@media (max-width: 767px) {
  .dmiq-highlight-panel {
    grid-template-columns: 1fr;
  }
}

body.theme-dark .page-hero,
body.theme-dark .page-hero--accent,
body.theme-dark .clients-page-hero,
body.theme-dark .contact-page-hero,
body.theme-dark .about-page-hero,
body.theme-dark .partnerships-page-hero,
body.theme-dark .services-hero,
body.theme-dark .service-hero,
body.theme-dark .capabilities-page-hero {
  background: var(--dmiq-page-hero-gradient-strong) !important;
  background-image: var(--dmiq-page-hero-gradient-strong) !important;
  border-bottom-color: rgba(0, 150, 255, 0.35);
}

body.theme-dark .page-hero h1,
body.theme-dark .page-hero .lead,
body.theme-dark .page-back {
  color: #f0f4fb !important;
}

body.theme-dark .page-back {
  color: #7dd3fc !important;
}

body.theme-dark .page-hero--accent {
  background: var(--dmiq-page-hero-gradient-strong) !important;
}

body.theme-dark .section-heading,
body.theme-dark .client-sector-card h3,
body.theme-dark .dmiq-pillar-card h3,
body.theme-dark .capability-card h3,
body.theme-dark .tech-stack-card h3,
body.theme-dark .cap-industry-tile h4,
body.theme-dark .dmiq-stat__value {
  color: #f1f5f9 !important;
}

body.theme-dark .client-sector-card,
body.theme-dark .dmiq-pillar-card,
body.theme-dark .dmiq-highlight-panel,
body.theme-dark .capability-card,
body.theme-dark .tech-stack-card,
body.theme-dark .cap-industry-tile {
  background: #1e293b;
  border-color: #334155;
}

body.theme-dark .tech-stack-chips span {
  background: #0f2744;
  border-color: #334155;
  color: #93c5fd;
}

/* Show content even if AOS has not initialized (prevents blank pages) */
html:not(.aos-init) [data-aos] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* Clients page (live site) */
.clients-page-hero {
  padding-top: 120px;
  padding-bottom: 48px;
}

.cap-split-hero {
  padding-top: 120px;
  padding-bottom: 48px;
  background: #fff !important;
  background-image: none !important;
  border-bottom: none;
  color: #0f1729;
}

.clients-page-hero h1 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 3.5vw, 2rem);
  color: #f8fafc;
  max-width: 900px;
  margin: 0 auto 1.5rem;
}

.clients-page-hero__lead {
  font-size: 1rem;
  color: rgba(226, 232, 240, 0.88);
  max-width: 56rem;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.clients-logos-panel {
  background: #fff;
  padding: 2.5rem 3rem;
  border-radius: 4rem;
  border: 1px solid #f3f4f6;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
  max-width: 1100px;
  margin: 0 auto;
}

.clients-logos-panel__img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.clients-logos-caption {
  margin-top: 4rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  font-style: italic;
  font-size: 0.875rem;
  color: #9ca3af;
}

.clients-why-section {
  padding: 5rem 0;
}

.clients-why-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.clients-why-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2d465e;
  margin-bottom: 0.75rem;
}

.clients-why-item p {
  color: #212529;
  line-height: 1.6;
  margin: 0;
}

.clients-why-visual {
  position: relative;
}

.clients-why-visual::before {
  content: '';
  position: absolute;
  inset: -1rem;
  background: rgba(12, 103, 196, 0.08);
  border-radius: 4rem;
  z-index: 0;
}

.clients-why-visual__img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: 3rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

/* Contact page (live site — contact-us) */
.contact-page {
  background: #f3f9ff;
}

.contact-page-hero {
  padding-top: 120px;
  padding-bottom: 24px;
}

.contact-page-hero h1 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #f8fafc;
  margin-bottom: 1rem;
}

.contact-page-hero__lead {
  max-width: 48rem;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(226, 232, 240, 0.88);
}

.contact-page-offices {
  padding-bottom: 5rem;
}

.contact-office-grid {
  max-width: 56rem;
  margin: 0 auto 3.5rem;
}

.contact-office-card {
  height: 100%;
  background: linear-gradient(145deg, #0c67c4 0%, #0a54a0 100%);
  color: #fff;
  border-radius: 2.5rem;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(12, 103, 196, 0.25);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.contact-office-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(12, 103, 196, 0.32);
}

.contact-office-card h2 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.75rem;
  color: #fff;
  margin-bottom: 2rem;
}

.contact-office-card__details {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-office-card__details li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.contact-office-card__icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: background 0.25s ease, color 0.25s ease;
}

.contact-office-card:hover .contact-office-card__icon {
  background: #fff;
  color: #0c67c4;
}

.contact-office-card__details h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.contact-office-card__details a,
.contact-office-card__details p {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.5;
}

.contact-office-card__details a {
  text-decoration: none;
}

.contact-office-card__details a:hover {
  text-decoration: underline;
}

.contact-form-panel {
  max-width: 48rem;
  margin: 0 auto;
  background: #fff;
  border-radius: 3rem;
  padding: clamp(2rem, 4vw, 4rem);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.08);
  border: 1px solid #f3f4f6;
}

.contact-form-panel__intro h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.75rem;
  color: #2d465e;
  margin-bottom: 0.5rem;
}

.contact-form-panel__subtitle {
  color: #2d465e;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-form-panel__note {
  color: #6b7280;
  font-size: 1rem;
  margin-bottom: 0;
}

.contact-form-panel__intro {
  margin-bottom: 2.5rem;
}

.contact-page-form .form-control,
.contact-page-form .form-select {
  background: #fff !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 0.75rem !important;
  padding: 1rem 1.25rem !important;
  color: #212529 !important;
  font-size: 0.9375rem;
}

.contact-page-form .form-control::placeholder {
  color: #9ca3af !important;
}

.contact-page-form .form-control:focus,
.contact-page-form .form-select:focus {
  border-color: #0c67c4 !important;
  box-shadow: 0 0 0 3px rgba(12, 103, 196, 0.12) !important;
}

.contact-page-form .form-select {
  color: #6b7280 !important;
}

.contact-page-form .form-select:valid {
  color: #212529 !important;
}

.contact-page-form__submit {
  border-radius: 999px !important;
  padding: 0.875rem 3rem !important;
  font-weight: 700;
  margin-top: 0.5rem;
}

.contact-page-form .loading,
.contact-page-form .error-message,
.contact-page-form .sent-message {
  display: none;
  margin-bottom: 1rem;
}

.contact-page-form .loading.d-block,
.contact-page-form .error-message.d-block,
.contact-page-form .sent-message.d-block {
  display: block;
}

.contact-page-form .error-message {
  color: #dc3545;
}

.contact-page-form .sent-message {
  color: #059669;
  font-weight: 600;
}

body.theme-dark .contact-page {
  background: #0f1729;
}

body.theme-dark .contact-form-panel {
  background: #1e293b;
  border-color: #334155;
}

body.theme-dark .contact-form-panel__intro h3,
body.theme-dark .contact-form-panel__subtitle {
  color: #f1f5f9;
}

body.theme-dark .contact-form-panel__note {
  color: #94a3b8;
}

body.theme-dark .contact-page-form .form-control,
body.theme-dark .contact-page-form .form-select {
  background: #0f172a !important;
  border-color: #334155 !important;
  color: #e2e8f0 !important;
}

/* About page (live site — about-us) */
.about-page-hero {
  padding-top: 120px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(0, 150, 255, 0.28);
}

.about-page-hero h1 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #f8fafc;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-page-hero__lead {
  font-size: 1.125rem;
  line-height: 1.65;
  color: rgba(226, 232, 240, 0.88);
  margin-bottom: 1rem;
}

.about-page-hero__lead strong {
  color: #f1f5f9;
  font-weight: 700;
}

.about-page-hero__text {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(226, 232, 240, 0.88);
  margin: 0;
}

.about-page-hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: clamp(1rem, 3vw, 2rem);
}

.about-page-hero__img {
  max-width: 85%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.08));
}

.about-differentiators-card {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 3.5rem;
  padding: clamp(2rem, 4vw, 3.5rem);
  box-shadow: 0 10px 50px rgba(12, 103, 196, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  height: 100%;
}

.about-differentiators-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 56px rgba(12, 103, 196, 0.12);
}

.about-differentiators-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-differentiators-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  font-size: 1.0625rem;
  font-weight: 500;
  color: #212529;
  line-height: 1.5;
}

.about-differentiators-list li i {
  color: #0c67c4;
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.about-differentiators-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-differentiators-visual__img {
  width: 85%;
  max-width: 480px;
  height: auto;
  transition: transform 0.6s ease;
}

.about-differentiators-visual__img:hover {
  transform: scale(1.04);
}

.about-partnerships-teaser {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.about-partnerships-teaser__lead {
  max-width: 52rem;
  margin: 0.75rem auto 0;
  color: #212529;
  line-height: 1.65;
  font-size: 1rem;
}

.about-partnerships-teaser .partnerships-platform-card h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: #2d465e;
  margin-bottom: 1rem;
}

.about-team-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.about-build-next-card {
  background: linear-gradient(135deg, #0c67c4 0%, #0a54a0 100%);
  color: #fff;
  border-radius: 3.5rem;
  padding: clamp(2.5rem, 5vw, 3.5rem);
  box-shadow: 0 20px 60px rgba(12, 103, 196, 0.3);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-build-next-card h2 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

.about-build-next-card p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.0625rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.about-build-next-card__emphasis {
  color: #fff;
  font-weight: 700;
  margin-bottom: 0 !important;
}

.about-build-next-visual {
  position: relative;
}

.about-build-next-visual::before {
  content: '';
  position: absolute;
  inset: -0.75rem;
  background: rgba(12, 103, 196, 0.08);
  border-radius: 3rem;
  z-index: 0;
}

.about-build-next-visual__img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

.about-schedule-cta {
  background: linear-gradient(135deg, #0d83fd 0%, #0c67c4 100%) !important;
  color: #fff;
}

.about-schedule-cta h2 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 1rem;
}

.about-schedule-cta p {
  color: rgba(255, 255, 255, 0.92);
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

body.theme-dark .about-differentiators-card {
  background: #1e293b;
  border-color: #334155;
}

/* Partnerships page (live site — about-us#partnership) */
.partnerships-page-hero {
  padding-top: 120px;
  padding-bottom: 64px;
}

.partnerships-page-hero h1 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: clamp(1.85rem, 3.5vw, 2.35rem);
  color: #f8fafc;
  max-width: 820px;
  margin: 0.75rem 0 1.25rem;
}

.partnerships-page-hero__lead {
  font-size: 1rem;
  color: rgba(226, 232, 240, 0.88);
  max-width: 52rem;
  margin: 0;
  line-height: 1.65;
}

.partnerships-content-section {
  padding-top: 48px;
  padding-bottom: 64px;
}

.partnerships-platform-card {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 2.5rem;
  padding: clamp(1.75rem, 4vw, 3rem);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.partnerships-platform-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 56px -14px rgba(12, 103, 196, 0.14);
}

.partnerships-platform-card__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0c67c4;
  margin-bottom: 0.75rem;
}

.partnerships-platform-card h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: #2d465e;
  margin-bottom: 1rem;
}

.partnerships-platform-card p {
  color: #212529;
  line-height: 1.65;
  margin: 0;
}

.partnerships-platform-card__visual {
  background: #f3f9ff;
  border-radius: 1.5rem;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.partnerships-platform-card__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.partnerships-quote {
  margin: 5rem auto 0;
  max-width: 48rem;
  text-align: center;
  border: none;
  padding: 0;
}

.partnerships-quote p {
  font-size: 1rem;
  font-weight: 700;
  font-style: italic;
  color: #212529;
  line-height: 1.65;
  margin: 0;
}

.partnerships-team-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.partnerships-team-intro {
  margin-bottom: 3rem;
}

.partnerships-team-intro p {
  max-width: 36rem;
  margin: 0.75rem auto 0;
  color: #212529;
  line-height: 1.6;
}

.partnerships-team-card {
  height: 100%;
  text-align: center;
  padding: 1.5rem 1rem 2rem;
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(15, 23, 41, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.partnerships-team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(12, 103, 196, 0.12);
}

.partnerships-team-card__photo-wrap {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto 1.25rem;
}

.partnerships-team-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid #f3f4f6;
  box-shadow: 0 4px 16px rgba(15, 23, 41, 0.08);
}

.partnerships-team-card__linkedin {
  position: absolute;
  right: 4px;
  bottom: 4px;
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #0077b5;
  color: #fff !important;
  font-size: 1.1rem;
  border: 3px solid #fff;
  box-shadow: 0 4px 12px rgba(0, 119, 181, 0.35);
  transition: transform 0.2s ease, background 0.2s ease;
}

.partnerships-team-card__linkedin:hover {
  background: #005f91;
  transform: scale(1.06);
  color: #fff !important;
}

.partnerships-team-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #2d465e;
  margin-bottom: 0.35rem;
}

.partnerships-team-card__role {
  font-size: 0.875rem;
  font-weight: 700;
  color: #0c67c4;
  margin-bottom: 0.75rem;
}

.partnerships-team-card__desc {
  font-size: 0.9375rem;
  color: #566881;
  line-height: 1.55;
  margin: 0;
}

.partnerships-team-footer {
  margin-top: 3rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
  color: #212529;
  line-height: 1.65;
}

.partnerships-cta-visual {
  position: relative;
}

.partnerships-cta-visual::before {
  content: '';
  position: absolute;
  inset: -0.75rem;
  background: rgba(12, 103, 196, 0.08);
  border-radius: 2.5rem;
  z-index: 0;
}

.partnerships-cta-visual__img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 991px) {
  .partnerships-team-grid .offset-lg-2 {
    margin-left: 0;
  }
}

body.theme-dark .partnerships-platform-card,
body.theme-dark .partnerships-team-card {
  background: #1e293b;
  border-color: #334155;
}

body.theme-dark .partnerships-page-hero h1,
body.theme-dark .partnerships-platform-card h2,
body.theme-dark .partnerships-team-card h3 {
  color: #f1f5f9;
}

body.theme-dark .partnerships-page-hero__lead,
body.theme-dark .partnerships-platform-card p,
body.theme-dark .partnerships-quote p,
body.theme-dark .partnerships-team-intro p,
body.theme-dark .partnerships-team-footer {
  color: #cbd5e1;
}

body.theme-dark .partnerships-platform-card__visual {
  background: #0f172a;
}

body.theme-dark .partnerships-team-card__desc {
  color: #94a3b8;
}

/* Capabilities page hero */
.capabilities-page-hero {
  padding: 7rem 0 5rem;
  margin-top: 60px;
}

.capabilities-page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 720px;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.capabilities-page-hero__lead {
  max-width: 720px;
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 0;
}

.capabilities-page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* Capabilities page (legacy video hero — kept for reference) */
.cap-video-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  margin-top: 60px;
  overflow: hidden;
}

.cap-video-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cap-video-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(44, 52, 64, 0.82) 0%,
    rgba(61, 74, 92, 0.72) 35%,
    rgba(0, 150, 255, 0.55) 100%);
  z-index: 1;
}

.cap-video-hero__content {
  position: relative;
  z-index: 2;
  padding: 6rem 1rem 4rem;
  color: #fff;
}

.cap-video-hero h1 {
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff !important;
  max-width: 720px;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.cap-video-hero .lead {
  color: rgba(255, 255, 255, 0.9) !important;
  max-width: 640px;
  font-size: 1.05rem;
}

.cap-video-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.cap-split-hero__img-wrap {
  position: relative;
}

.cap-split-hero__img-wrap::before {
  content: '';
  position: absolute;
  inset: -1rem;
  background: rgba(12, 103, 196, 0.06);
  border-radius: 4rem;
  z-index: 0;
}

.cap-split-hero__img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 3rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.12);
}

.cap-intro-copy {
  max-width: 48rem;
}

.cap-core-card {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 2.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.25s;
}

.cap-core-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.cap-core-card > :not(footer) {
  padding: 2.5rem 2.5rem 0;
}

.cap-core-card__icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: #e7f1ff;
  color: #0c67c4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  padding: 0!important;
}

.cap-core-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #2d465e;
  margin-bottom: 0.75rem;
}

.cap-core-card__desc {
  font-weight: 700;
  color: #212529;
  margin-bottom: 1.25rem;
  padding: 0 2.5rem!important;
}

.cap-core-card ul {
  list-style: none;
  padding: 0 2.5rem;
  margin: 0 0 1.5rem;
}

.cap-core-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding-left: 0;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: #212529;
  line-height: 1.5;
}

.cap-core-card ul li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  margin-top: 0.55em;
  border-radius: 50%;
  background: #0c67c4;
}

.cap-core-card footer {
  margin-top: auto;
  padding: 1.25rem 2.5rem;
  background: #f3f9ff;
  border-top: 1px solid #f9fafb;
  font-size: 0.875rem;
  font-weight: 500;
  color: #2d465e;
}

.cap-parallax {
  position: relative;
  padding: 8rem 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cap-parallax__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.cap-parallax__content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.cap-parallax h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: #0c67c4 !important;
  margin-bottom: 1.5rem;
}

.cap-parallax__lead {
  font-size: 1.35rem;
  max-width: 56rem;
  margin: 0 auto 2.5rem;
  color: #fff !important;
}

.cap-parallax__list {
  list-style: none;
  padding: 0;
  margin: 0 auto 2.5rem;
  max-width: 36rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 2rem;
  text-align: left;
}

.cap-parallax__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.05rem;
}

.cap-parallax__list li::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
}

.cap-parallax__tagline {
  font-style: italic;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  display: inline-block;
  margin: 0;
}

.cap-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cap-bullet-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
  color: #212529;
}

.cap-bullet-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0c67c4;
}

.cap-illustration {
  width: 85%;
  max-width: 480px;
  height: auto;
}

.capabilities-cta-banner {
  background: #011d2e !important;
  color: #fff;
  padding: 5rem 0;
}

.capabilities-cta-banner h2 {
  color: #fff !important;
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 3rem);
}

.capabilities-cta-banner p {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 1.2rem;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767px) {
  .clients-logos-panel {
    padding: 1.5rem;
    border-radius: 2rem;
  }

  .cap-parallax {
    background-attachment: scroll;
  }

  .cap-parallax__list {
    grid-template-columns: 1fr;
  }
}

/* AI Products page (sirius7.com/ai-products) */
.ai-products-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  margin-top: 60px;
  overflow: hidden;
}

.ai-products-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2px);
  transform: scale(1.02);
}

.ai-products-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(1, 29, 46, 0.88) 0%,
    rgba(1, 29, 46, 0.72) 45%,
    rgba(12, 103, 196, 0.55) 100%
  );
  z-index: 1;
}

.ai-products-hero__content {
  position: relative;
  z-index: 2;
  padding: 7rem 1rem 5rem;
  color: #fff;
}

.ai-products-hero h1 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff !important;
  max-width: 820px;
  line-height: 1.2;
  margin: 0.75rem 0 1.25rem;
}

.ai-products-hero__lead {
  max-width: 720px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(226, 232, 240, 0.92) !important;
  margin: 0;
}

.ai-products-intro {
  max-width: 640px;
}

.ai-solution-card {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 2rem;
  padding: 2rem 2rem 2.25rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ai-solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(12, 103, 196, 0.1);
}

.ai-solution-card__logo {
  width: 4rem;
  height: 4rem;
  margin-bottom: 1.25rem;
}

.ai-solution-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ai-solution-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #2d465e;
  margin-bottom: 0.75rem;
}

.ai-solution-card p {
  color: #566881;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.ai-solution-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ai-solution-card ul li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.5rem;
  color: #475569;
  font-size: 0.95rem;
}

.ai-solution-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0c67c4;
}

.ai-capability-card {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 2rem;
  padding: 2.5rem 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ai-capability-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(12, 103, 196, 0.1);
}

.ai-capability-card__logo {
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 1.25rem;
}

.ai-capability-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ai-capability-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #2d465e;
  margin-bottom: 0.75rem;
}

.ai-capability-card p {
  color: #566881;
  line-height: 1.65;
  margin: 0;
}

body.theme-dark .ai-solution-card,
body.theme-dark .ai-capability-card {
  background: #1e293b;
  border-color: #334155;
}

body.theme-dark .ai-solution-card h3,
body.theme-dark .ai-capability-card h3 {
  color: #f1f5f9;
}

body.theme-dark .ai-solution-card p,
body.theme-dark .ai-capability-card p,
body.theme-dark .ai-solution-card ul li {
  color: #94a3b8;
}

@media (max-width: 767px) {
  .ai-products-hero {
    min-height: 440px;
  }

  .ai-products-hero__content {
    padding: 6rem 1rem 4rem;
  }
}
