/* Apollo Solutions - Light Blue Professional Theme */
:root {
  --color-primary: #0284c7;
  --color-primary-deep: #0369a1;
  --color-accent: #0ea5e9;
  --color-accent-soft: #38bdf8;
  --color-secondary: #6366f1;
  --color-bg: #e8f2f8;
  --color-bg-alt: #dceaf4;
  --color-surface: #ffffff;
  --color-surface-soft: #f0f7fc;
  --color-surface-muted: #d4e8f4;
  --color-heading: #0a1f33;
  --color-dark: #152a45;
  --color-dark-soft: #1e3a5f;
  --color-light: #f8fbfd;
  --color-text: #1a3349;
  --color-text-muted: #2d4a63;
  --color-text-on-hero: #0f2d4a;
  --hero-image-text: #ffffff;
  --hero-image-text-muted: rgba(240, 249, 255, 0.95);
  --hero-image-accent: #bae6fd;
  --hero-image-shadow:
    0 2px 10px rgba(10, 31, 51, 0.55), 0 1px 4px rgba(10, 31, 51, 0.4);
  --hero-image-scrim: linear-gradient(
    105deg,
    rgba(8, 25, 45, 0.84) 0%,
    rgba(10, 31, 51, 0.62) 38%,
    rgba(10, 31, 51, 0.32) 62%,
    rgba(10, 31, 51, 0.1) 85%,
    transparent 100%
  );
  --hero-page-title: #061829;
  --hero-page-text: #152a45;
  --gradient-primary: linear-gradient(
    135deg,
    #0369a1 0%,
    #0ea5e9 50%,
    #38bdf8 100%
  );
  --gradient-card: linear-gradient(
    152deg,
    #0c4a6e 0%,
    #0369a1 32%,
    #0284c7 58%,
    #38bdf8 88%,
    #7dd3fc 100%
  );
  --gradient-hero: linear-gradient(
    145deg,
    #7ec8eb 0%,
    #5eb8e8 22%,
    #8fd4f2 48%,
    #b8e4f8 72%,
    #dceef8 100%
  );
  --gradient-hero-deep: linear-gradient(
    160deg,
    #4ba3d4 0%,
    #6bbde8 35%,
    #9ad4f0 65%,
    #d1ebf8 100%
  );
  --gradient-hero-overlay: linear-gradient(
    160deg,
    rgba(200, 228, 245, 0.88) 0%,
    rgba(210, 232, 248, 0.82) 35%,
    rgba(225, 240, 252, 0.9) 65%,
    rgba(236, 246, 253, 0.96) 100%
  );
  --gradient-hero-radial: radial-gradient(
    ellipse 80% 70% at 50% 20%,
    rgba(56, 189, 248, 0.35) 0%,
    transparent 65%
  );
  --glow-sm: 0 4px 18px rgba(2, 132, 199, 0.14);
  --glow-md: 0 8px 32px rgba(2, 132, 199, 0.18);
  --glow-lg: 0 12px 48px rgba(2, 132, 199, 0.22);
  --glow-btn: 0 4px 20px rgba(2, 132, 199, 0.28);
  --shadow-card: 0 4px 24px rgba(30, 58, 95, 0.08);
  --font-heading: "EB Garamond", Georgia, serif;
  --font-body: "Poppins", -apple-system, sans-serif;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --header-height: 72px;
  --page-padding-x: clamp(16px, 2vw, 28px);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 400;
  color: var(--color-text);
  background: linear-gradient(
    180deg,
    var(--color-bg) 0%,
    var(--color-bg-alt) 100%
  );
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.menu-open {
  overflow: hidden;
}

main {
  width: 100%;
  display: block;
}
main > section {
  width: 100%;
}

/* Global typography contrast */
p,
li,
label,
.contact-intro {
  color: var(--color-text);
}
strong,
b {
  font-weight: 600;
  color: var(--color-heading);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-heading);
  font-weight: 600;
}

.container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding-left: var(--page-padding-x);
  padding-right: var(--page-padding-x);
}

/* Full-bleed band (edge-to-edge background, padded content) */
.section-full {
  width: 100%;
  margin: 0;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--gradient-primary);
  color: white;
  padding: 8px 16px;
  z-index: 200;
  transition: top 0.3s;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus {
  top: 0;
}

/* Header */
.main-header {
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: max(12px, env(safe-area-inset-top)) 0 12px;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(2, 132, 199, 0.12);
  box-shadow: 0 2px 20px rgba(30, 58, 95, 0.06);
}
.main-header .container {
  padding-left: var(--page-padding-x);
  padding-right: var(--page-padding-x);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  width: 100%;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  height: 42px;
  width: 42px;
}
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-heading);
  letter-spacing: 0.5px;
}
.primary-nav {
  display: flex;
  align-items: center;
}
.nav-menu {
  display: flex;
  list-style: none;
  gap: 6px;
  align-items: center;
}
.nav-menu > li > a,
.nav-dropdown-toggle {
  color: var(--color-dark-soft);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active,
.nav-dropdown-toggle:hover {
  color: var(--color-primary-deep);
  background: rgba(2, 132, 199, 0.1);
  box-shadow: var(--glow-sm);
}

.nav-dropdown {
  position: relative;
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(2, 132, 199, 0.15);
  border-radius: var(--radius-md);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  box-shadow: var(--glow-md), var(--shadow-card);
  list-style: none;
  z-index: 110;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  color: var(--color-dark-soft);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-dropdown-menu a:hover {
  color: var(--color-primary-deep);
  background: rgba(2, 132, 199, 0.08);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: rgba(2, 132, 199, 0.08);
  border: 1px solid rgba(2, 132, 199, 0.2);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.mobile-menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--color-primary-deep);
  transition: var(--transition);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: var(--radius-md);
  position: relative;
}
.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--glow-btn);
  border: 1px solid rgba(34, 211, 238, 0.4);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--glow-lg), var(--glow-btn);
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: var(--gradient-primary);
  opacity: 0;
  filter: blur(12px);
  z-index: -1;
  transition: opacity 0.35s;
}
.btn-primary:hover::before {
  opacity: 0.6;
}
.btn-outline {
  background: rgba(255, 255, 255, 0.75);
  color: var(--color-primary-deep);
  border: 2px solid rgba(2, 132, 199, 0.4);
  box-shadow: var(--glow-sm);
}
.btn-outline:hover {
  background: rgba(2, 132, 199, 0.1);
  border-color: var(--color-primary);
  box-shadow: var(--glow-md);
  transform: translateY(-2px);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}
.btn-secondary {
  background: transparent;
  color: var(--color-primary-deep);
  border: 2px solid #0369a1;
}
body.page-light .btn-secondary {
  color: #0369a1;
}
.btn-secondary:hover {
  background: var(--gradient-primary);
  color: white;
  border-color: transparent;
  box-shadow: var(--glow-btn);
}

/* Section utilities */
.section-header {
  text-align: center;
  margin-bottom: 56px;
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.section-badge {
  display: inline-block;
  padding: 6px 18px;
  background: var(--gradient-primary);
  color: white;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-radius: 30px;
  margin-bottom: 16px;
  box-shadow: var(--glow-sm);
  border: none;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 14px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.section-subtitle {
  color: var(--color-text-muted);
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.65;
}

/* Hero Home */
.hero-section {
  position: relative;
  width: 100%;
  min-height: min(88vh, 820px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #dceef8;
  overflow: hidden;
  margin: 0;
}
.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 25, 45, 0.5) 0%,
    rgba(10, 31, 51, 0.35) 45%,
    rgba(10, 31, 51, 0.45) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: calc(var(--header-height) + 40px) var(--page-padding-x) 64px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(10, 31, 51, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--hero-image-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: 30px;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(10, 31, 51, 0.3);
  text-transform: uppercase;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--hero-image-text);
  line-height: 1.15;
  max-width: 100%;
  width: 100%;
  text-shadow: var(--hero-image-shadow);
}
.hero-title .glow-text {
  color: var(--hero-image-accent);
  background: none;
  -webkit-text-fill-color: var(--hero-image-accent);
  background-clip: unset;
  text-shadow:
    0 0 24px rgba(56, 189, 248, 0.5),
    0 2px 10px rgba(10, 31, 51, 0.55);
}
.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.15rem);
  margin-bottom: 32px;
  color: var(--hero-image-text-muted);
  font-weight: 500;
  line-height: 1.7;
  max-width: min(52ch, 100%);
  width: 100%;
  text-shadow: var(--hero-image-shadow);
}
.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 4px;
}
.hero-section .btn-outline,
.industry-hero .btn-outline {
  color: var(--hero-image-text);
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(10, 31, 51, 0.4);
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(10, 31, 51, 0.4);
}
.hero-section .btn-outline:hover,
.industry-hero .btn-outline:hover {
  background: rgba(255, 255, 255, 0.18);
  color: var(--hero-image-text);
  border-color: #ffffff;
}
.hero-section .btn-primary,
.industry-hero .btn-primary {
  box-shadow:
    0 4px 20px rgba(10, 31, 51, 0.35),
    var(--glow-btn);
}

/* Industry Hero */
.industry-hero {
  position: relative;
  width: 100%;
  min-height: min(52vh, 480px);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(2, 132, 199, 0.15);
  background: #dceef8;
  margin: 0;
}
.industry-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 1;
  z-index: 0;
}
.industry-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-image-scrim);
  z-index: 1;
  pointer-events: none;
}
.industry-hero-overlay,
.industry-hero-glow {
  display: none;
}
.industry-hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-top: calc(var(--header-height) + 36px);
  padding-bottom: 56px;
}
.industry-hero-content .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  align-items: center;
  font-size: 14px;
  color: var(--hero-image-text-muted);
  font-weight: 500;
  margin-bottom: 24px;
  text-shadow: var(--hero-image-shadow);
}
.industry-hero-content .breadcrumb a {
  color: var(--hero-image-accent);
  text-decoration: none;
  font-weight: 600;
}
.industry-hero-content .breadcrumb a:hover {
  color: #ffffff;
}
.industry-hero-content .breadcrumb span {
  color: rgba(240, 249, 255, 0.75);
}
.industry-hero-inner {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  width: 100%;
  max-width: 100%;
}
.industry-hero-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 20px rgba(10, 31, 51, 0.35);
  background: rgba(10, 31, 51, 0.45);
}
.industry-hero-text {
  flex: 1;
  min-width: 0;
}
.industry-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--hero-image-text);
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.2;
  text-shadow: var(--hero-image-shadow);
}
.industry-hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.12rem);
  color: var(--hero-image-text-muted);
  font-weight: 500;
  max-width: 100%;
  width: 100%;
  line-height: 1.7;
  margin-bottom: 0;
  text-shadow: var(--hero-image-shadow);
}
.industry-hero .hero-cta {
  justify-content: flex-start;
  margin-top: 24px;
}

/* Page hero (About, Contact) */
.page-hero {
  position: relative;
  width: 100%;
  padding: calc(var(--header-height) + 48px) 0 56px;
  text-align: center;
  background: var(--gradient-hero);
  border-bottom: 1px solid rgba(2, 132, 199, 0.15);
  overflow: hidden;
  margin: 0;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-hero-radial);
  pointer-events: none;
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  opacity: 0.6;
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero .section-subtitle,
.about-page-hero .section-subtitle {
  max-width: min(52ch, 100%);
  width: 100%;
  margin: 0 auto;
  color: var(--hero-page-text);
  font-weight: 600;
  line-height: 1.65;
}
.page-hero h1,
.about-page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--hero-page-title);
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.2;
}
.page-hero .section-badge,
.about-page-hero .section-badge {
  box-shadow: 0 4px 16px rgba(2, 132, 199, 0.25);
}

/* Stats */
.stats-row {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  margin: 36px 0;
  padding: 28px 0;
  border-top: 1px solid rgba(2, 132, 199, 0.15);
  border-bottom: 1px solid rgba(2, 132, 199, 0.15);
}
.stat-item {
  text-align: left;
}
.stat-number {
  display: block;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-primary-deep);
}
.stat-label {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Industry cards grid */
.featured-products-section {
  padding-top: 80px;
  padding-bottom: 48px;
}

.industries-section {
  width: 100%;
  padding: 80px 0 100px;
  background: var(--color-surface-soft);
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 20px;
  width: 100%;
  align-items: stretch;
}
.industry-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  min-height: 360px;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(2, 132, 199, 0.12);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.industry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.industry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1) 10%,
    rgba(15, 45, 74, 0.82) 88%
  );
  transition: var(--transition);
}
.industry-card:hover {
  transform: translateY(-8px);
  border-color: rgba(2, 132, 199, 0.35);
  box-shadow: var(--glow-lg), var(--shadow-card);
}
.industry-card:hover::before {
  transform: scale(1.06);
}
.industry-card:hover::after {
  background: linear-gradient(
    180deg,
    rgba(56, 189, 248, 0.15) 0%,
    rgba(15, 45, 74, 0.88) 88%
  );
}
.industry-card-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
  width: 100%;
  height: 100%;
  padding: 28px 26px 24px;
  text-align: left;
}
/* Full-content cards on the home page need extra height for icon + desc + footer */
.industries-section .industry-card-inner {
  min-height: 360px;
}
.industry-card-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  flex-shrink: 0;
  width: 100%;
}
.industry-card-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  line-height: 1;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.2),
    var(--glow-sm);
}
.industry-card h3 {
  font-family: var(--font-heading);
  font-size: 1.22rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.35;
  letter-spacing: -0.01em;
  min-height: 2.7em;
  width: 100%;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.industry-card-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.94);
  font-weight: 500;
  line-height: 1.55;
  margin: 20px 0;
  padding: 0;
  flex: 1 1 auto;
  width: 100%;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.industry-card-footer.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #e0f2fe;
  text-transform: uppercase;
  transition: var(--transition);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}
.industry-card-footer.card-link::after {
  content: "→";
  font-size: 0.95rem;
  letter-spacing: 0;
  transition: transform 0.25s ease;
}
.industry-card:hover .industry-card-footer.card-link {
  color: #ffffff;
  text-shadow: 0 0 12px rgba(184, 232, 255, 0.9);
}
.industry-card:hover .industry-card-footer.card-link::after {
  transform: translateX(4px);
}
.industry-card-aviation::before {
  background-image: url("../card-aviation-bg.png");
}
.industry-card-csp::before {
  background-image: url("../card-csp-bg.png");
}
.industry-card-government::before {
  background-image: url("../card-government-bg.png");
}
.industry-card-ai::before {
  background-image: url("../card-ai-bg.png");
}
.industry-card-security::before {
  background-image: url("../card-security-bg.png");
}
.industry-card-banking::before {
  background-image: url("../card-banking-bg.png");
}
.industry-card-aviation .industry-card-icon {
  background: linear-gradient(135deg, #1990d1, #00d4ff);
}
.industry-card-csp .industry-card-icon {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}
.industry-card-government .industry-card-icon {
  background: linear-gradient(135deg, #0ea5e9, #38bdf8);
}
.industry-card-ai .industry-card-icon {
  background: linear-gradient(135deg, #10b981, #34d399);
}
.industry-card-security .industry-card-icon {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
}
.industry-card-banking .industry-card-icon {
  background: linear-gradient(135deg, #ec4899, #f472b6);
}

/* About teaser */
.about-teaser {
  width: 100%;
  padding: 100px 0;
  background: var(--color-surface);
  position: relative;
  border-bottom: 1px solid rgba(2, 132, 199, 0.08);
}
.about-teaser::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(2, 132, 199, 0.25),
    transparent
  );
}
.about-teaser-content h2 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  margin-bottom: 20px;
  color: var(--color-heading);
}
.about-teaser-content p {
  margin-bottom: 28px;
  color: var(--color-text);
  font-weight: 400;
}
.about-teaser-content strong {
  color: var(--color-primary-deep);
  font-weight: 700;
}

/* Feature blocks industry pages */
.page-section {
  width: 100%;
  padding: 80px 0;
}
.page-section-alt {
  width: 100%;
  background: var(--color-surface-soft);
}
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
  align-items: start;
  width: 100%;
}
.overview-content h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-heading);
  margin-bottom: 20px;
}
.overview-content p {
  color: var(--color-text);
  margin-bottom: 16px;
  font-weight: 400;
}
.highlight-box {
  background: var(--color-surface);
  border: 1px solid rgba(2, 132, 199, 0.18);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
}
.highlight-box ul {
  list-style: none;
}
.highlight-box li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: var(--color-text);
}
.highlight-box li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-size: 0.6rem;
  top: 6px;
}

/* Capability cards */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 20px;
  width: 100%;
}
.capability-card {
  background: var(--color-surface);
  border: 1px solid rgba(2, 132, 199, 0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.capability-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition);
  box-shadow: 0 0 20px rgba(14, 165, 233, 0.6);
}
.capability-card:hover {
  border-color: rgba(2, 132, 199, 0.3);
  box-shadow: var(--glow-md);
  transform: translateY(-4px);
}
.capability-card:hover::before {
  opacity: 1;
}
.capability-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-heading);
  margin-bottom: 12px;
}
.capability-card h3 span {
  color: var(--color-primary-deep);
  font-weight: 700;
}
.capability-card p {
  color: var(--color-text);
  font-size: 0.98rem;
  margin-bottom: 16px;
  font-weight: 400;
}
.capability-card ul {
  list-style: none;
}
.capability-card li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 0.92rem;
  color: var(--color-dark-soft);
  font-weight: 500;
}
.capability-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-size: 0.9rem;
}

/* Product showcase */
.products-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 16px;
  width: 100%;
}

/* Home: 4 columns × 2 rows, equal size, glowing gradients */
.products-grid-4x2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, minmax(200px, 1fr));
  gap: 20px;
  width: 100%;
  align-items: stretch;
}

.product-pill {
  background: var(--color-surface);
  border: 1px solid rgba(2, 132, 199, 0.15);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition);
}
.product-pill h4 {
  font-size: 1.05rem;
  color: var(--color-heading);
  margin-bottom: 8px;
  font-weight: 700;
}
.product-pill p {
  font-size: 0.92rem;
  color: var(--color-text);
  font-weight: 500;
  line-height: 1.55;
}
a.product-pill {
  display: block;
  text-decoration: none;
  color: inherit;
}
a.product-pill:not(.product-pill-glow):hover {
  border-color: rgba(2, 132, 199, 0.35);
  box-shadow: var(--glow-sm);
  transform: translateY(-2px);
}

/* Glowing gradient product tiles (home page) — unified blue */
.product-pill-glow {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  min-height: 220px;
  height: 100%;
  padding: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(186, 230, 253, 0.55);
  background: var(--gradient-card);
  box-shadow:
    0 4px 28px rgba(2, 132, 199, 0.28),
    0 0 0 1px rgba(56, 189, 248, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: var(--transition);
}
.product-pill-glow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0.04) 35%,
    rgba(10, 31, 51, 0.22) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.product-pill-shine {
  position: absolute;
  top: -35%;
  right: -15%;
  left: auto;
  width: 70%;
  height: 70%;
  background: radial-gradient(
    circle,
    rgba(186, 230, 253, 0.55) 0%,
    transparent 68%
  );
  z-index: 0;
  pointer-events: none;
  transition: var(--transition);
}
.product-pill-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0;
  height: 100%;
  min-height: 220px;
  padding: 22px 22px 20px;
  text-align: left;
}
.product-pill-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(224, 242, 254, 0.95);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  padding: 5px 10px;
  margin-bottom: 14px;
  line-height: 1;
}
.product-pill-glow h4 {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 3px rgba(10, 31, 51, 0.35);
  width: 100%;
}
.product-pill-rule {
  display: block;
  width: 36px;
  height: 2px;
  margin-bottom: 14px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(186, 230, 253, 0.35) 100%
  );
  border-radius: 2px;
  flex-shrink: 0;
}
.product-pill-glow p {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(240, 249, 255, 0.96);
  line-height: 1.55;
  margin: 0 0 auto;
  padding-bottom: 18px;
  text-shadow: 0 1px 2px rgba(10, 31, 51, 0.25);
  flex: 1 1 auto;
  width: 100%;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-pill-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #e0f2fe;
  text-decoration: none;
  margin-top: auto;
  padding-top: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  width: 100%;
  padding-top: 14px;
  transition: var(--transition);
}
.product-pill-cta::after {
  content: "→";
  font-size: 0.95rem;
  transition: transform 0.25s ease;
}
.product-pill-glow:hover {
  transform: translateY(-5px);
  border-color: rgba(224, 242, 254, 0.75);
  box-shadow:
    0 14px 44px rgba(2, 132, 199, 0.4),
    0 0 36px rgba(56, 189, 248, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.product-pill-glow:hover .product-pill-shine {
  transform: scale(1.08);
}
.product-pill-glow:hover .product-pill-cta {
  color: #ffffff;
}
.product-pill-glow:hover .product-pill-cta::after {
  transform: translateX(4px);
}

/* Lists inside .product-pill-glow cards (e.g. Aviation capability cards) */
.product-pill-glow:has(ul) .product-pill-content > p {
  flex: 0 0 auto;
  margin: 0 0 12px;
}
.product-pill-content ul {
  list-style: none;
  width: 100%;
  padding: 0;
  margin: 0 0 auto;
}
.product-pill-content li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 7px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(224, 242, 254, 0.92);
  text-shadow: 0 1px 2px rgba(10, 31, 51, 0.2);
  line-height: 1.45;
}
.product-pill-content li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: rgba(186, 230, 253, 0.9);
  font-size: 0.9rem;
  line-height: 1.45;
}

/* Product catalog (detailed cards) */
.products-catalog {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.product-card {
  background: var(--color-surface);
  border: 1px solid rgba(2, 132, 199, 0.14);
  border-radius: var(--radius-xl);
  padding: 0;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}
.product-card:hover {
  border-color: rgba(2, 132, 199, 0.32);
  box-shadow: var(--glow-md);
}
.product-card-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 24px 28px 0;
}
.product-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.product-tag {
  display: inline-block;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: 20px;
}
.product-tag-live {
  background: rgba(16, 185, 129, 0.12);
  color: #047857;
  border: 1px solid rgba(16, 185, 129, 0.35);
}
.product-tag-ready {
  background: rgba(2, 132, 199, 0.1);
  color: var(--color-primary-deep);
  border: 1px solid rgba(2, 132, 199, 0.25);
}
.product-tag-demo {
  background: rgba(99, 102, 241, 0.1);
  color: #4338ca;
  border: 1px solid rgba(99, 102, 241, 0.25);
}
.product-category {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-dark-soft);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.product-card-body {
  padding: 16px 28px 24px;
}
.product-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-heading);
  margin-bottom: 10px;
  line-height: 1.25;
}
.product-card-lead {
  font-size: 1rem;
  color: var(--color-text);
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 100%;
}
.product-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.product-card-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--color-primary-deep);
  margin-bottom: 12px;
}
.product-card-col ul {
  list-style: none;
}
.product-card-col li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  font-size: 0.93rem;
  color: var(--color-dark-soft);
  font-weight: 500;
  line-height: 1.55;
}
.product-card-col li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-size: 0.75rem;
  font-weight: 700;
}
.product-card-modules {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.product-module-chip {
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  background: var(--color-surface-soft);
  border: 1px solid rgba(2, 132, 199, 0.2);
  border-radius: var(--radius-sm);
  color: var(--color-dark-soft);
}
.product-card-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 28px;
  background: var(--color-surface-soft);
  border-top: 1px solid rgba(2, 132, 199, 0.1);
}
.product-meta {
  font-size: 0.9rem;
  color: var(--color-text);
  font-weight: 500;
}
.product-meta strong {
  color: var(--color-heading);
  font-weight: 600;
}
.product-link-ext {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary-deep);
  text-decoration: none;
  margin-left: 12px;
}
.product-link-ext:hover {
  color: var(--color-primary-deep);
  text-decoration: underline;
}
@media (max-width: 768px) {
  .product-card-grid {
    grid-template-columns: 1fr;
  }
  .product-card-top,
  .product-card-body,
  .product-card-footer {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Two-column detail */
.detail-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  width: 100%;
}
.detail-panel {
  background: var(--color-surface);
  border: 1px solid rgba(2, 132, 199, 0.12);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-card);
}
.detail-panel h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--color-heading);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(2, 132, 199, 0.15);
}
.detail-panel ul {
  list-style: none;
}
.detail-panel li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(2, 132, 199, 0.08);
  color: var(--color-text);
  font-size: 0.96rem;
  font-weight: 500;
}
.detail-panel li:last-child {
  border-bottom: none;
}

/* CTA band */
.cta-band {
  width: 100%;
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(220, 234, 244, 0.9) 0%,
    rgba(232, 242, 248, 0.95) 50%,
    rgba(240, 247, 252, 1) 100%
  );
  border-top: 1px solid rgba(2, 132, 199, 0.12);
  border-bottom: 1px solid rgba(2, 132, 199, 0.12);
  position: relative;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(56, 189, 248, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.cta-band h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-heading);
  margin-bottom: 16px;
  position: relative;
}
.cta-band p {
  color: var(--color-text);
  font-weight: 500;
  margin-bottom: 32px;
  max-width: min(560px, 100%);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.cta-band .btn {
  position: relative;
}

/* Related industries */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 16px;
  width: 100%;
}
.related-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--color-surface);
  border: 1px solid rgba(2, 132, 199, 0.12);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--color-dark-soft);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
}
.related-link:hover {
  border-color: rgba(2, 132, 199, 0.3);
  box-shadow: var(--glow-sm);
  color: var(--color-primary-deep);
}
.related-link span:first-child {
  font-size: 1.25rem;
}

/* About page (legacy class maps to page-hero) */
.about-page-hero {
  position: relative;
  width: 100%;
  padding: calc(var(--header-height) + 48px) 0 56px;
  background: var(--gradient-hero);
  text-align: center;
  border-bottom: 1px solid rgba(2, 132, 199, 0.15);
  overflow: hidden;
}
.about-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-hero-radial);
  pointer-events: none;
}
.about-page-hero .container {
  position: relative;
  z-index: 1;
}
.about-content-block {
  width: 100%;
  max-width: 100%;
  margin: 0;
}
.about-content-block p {
  color: var(--color-text);
  margin-bottom: 20px;
}
.about-content-block strong {
  color: var(--color-primary-deep);
  font-weight: 700;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.value-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--color-surface);
  border: 1px solid rgba(2, 132, 199, 0.12);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}
.value-card:hover {
  box-shadow: var(--glow-sm);
  border-color: rgba(2, 132, 199, 0.28);
}
.value-card .value-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.value-card h3 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  margin-bottom: 10px;
  font-size: 1.15rem;
}
.value-card p {
  font-size: 0.95rem;
  color: var(--color-text);
  font-weight: 500;
}

/* Contact */
.contact-section {
  width: 100%;
  padding: 80px 0;
  background: var(--color-surface);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  width: 100%;
}
.contact-intro {
  margin-bottom: 24px;
  color: var(--color-text);
  font-weight: 400;
}
.contact-details-block {
  padding: 24px 0;
  border-top: 1px solid rgba(2, 132, 199, 0.15);
}
.contact-details-block h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-heading);
  margin-bottom: 16px;
}
.contact-details-block p {
  margin-bottom: 10px;
  color: var(--color-text);
  font-size: 0.96rem;
  font-weight: 500;
}
.social-link {
  display: inline-flex;
  padding: 12px 28px;
  background: var(--gradient-primary);
  color: white;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
  box-shadow: var(--glow-btn);
  border: 1px solid rgba(34, 211, 238, 0.3);
}
.social-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-lg);
}
.contact-form {
  background: var(--color-surface-soft);
  border: 1px solid rgba(2, 132, 199, 0.15);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-card);
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--color-dark-soft);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: var(--color-surface);
  border: 1px solid rgba(2, 132, 199, 0.2);
  color: var(--color-heading);
  font-family: inherit;
  font-size: 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow:
    0 0 0 3px rgba(2, 132, 199, 0.12),
    var(--glow-sm);
}
.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

/* Footer */
.main-footer {
  width: 100%;
  background: var(--color-surface-soft);
  padding: 64px 0 32px;
  border-top: 1px solid rgba(2, 132, 199, 0.12);
}
.main-footer .container {
  padding-left: var(--page-padding-x);
  padding-right: var(--page-padding-x);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
  width: 100%;
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: var(--color-heading);
}
.footer-col p,
.footer-col li {
  color: var(--color-text);
  font-size: 0.92rem;
  font-weight: 500;
  margin-bottom: 10px;
}
.footer-col ul {
  list-style: none;
}
.footer-col a {
  color: var(--color-dark-soft);
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}
.footer-col a:hover {
  color: var(--color-primary-deep);
}
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(2, 132, 199, 0.1);
  text-align: center;
}
.footer-bottom p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1200px) {
  .products-grid-4x2 {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, minmax(200px, 1fr));
  }
}

@media (max-width: 992px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .overview-grid,
  .detail-split,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .overview-grid .highlight-box {
    margin-top: 0;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .related-grid {
    grid-template-columns: 1fr;
  }
  .nav-menu {
    display: none;
    position: fixed;
    top: calc(var(--header-height) + env(safe-area-inset-top, 0px));
    left: 0;
    right: 0;
    width: 100%;
    padding: 20px;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    gap: 4px;
    box-shadow: var(--glow-md);
    border-bottom: 1px solid rgba(2, 132, 199, 0.12);
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    align-items: stretch;
  }
  .nav-menu.active {
    display: flex;
  }
  .nav-menu > li {
    width: 100%;
  }
  .nav-menu > li > a,
  .nav-dropdown-toggle {
    display: block;
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    color: var(--color-heading);
  }
  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(2, 132, 199, 0.06);
    margin: 4px 0 8px 16px;
    display: none;
  }
  .industry-hero-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .industry-hero-icon {
    width: 64px;
    height: 64px;
    font-size: 1.75rem;
  }
  .industry-hero .hero-cta {
    justify-content: center;
    width: 100%;
  }
  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1400px) {
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .capabilities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --page-padding-x: 16px;
  }
  .products-grid-4x2 {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .product-pill-glow {
    min-height: 180px;
  }
  .industries-grid {
    grid-template-columns: 1fr;
  }
  .hero-content {
    padding: calc(var(--header-height) + 28px) var(--page-padding-x) 48px;
  }
  .hero-cta {
    flex-direction: column;
  }
  .hero-cta .btn {
    width: 100%;
  }
  .stats-row {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .industry-hero {
    min-height: auto;
  }
  .hero-title {
    max-width: none;
  }
  .page-section {
    padding: 56px 0;
  }
  .industries-section {
    padding: 56px 0;
  }
  .about-teaser {
    padding: 56px 0;
  }
}

/* =====================================================
   Blue card dark variant — large product cards
   Shares visual identity with .product-pill-glow
   ===================================================== */
.product-card-dark {
  background: var(--gradient-card);
  border: 1px solid rgba(186, 230, 253, 0.55);
  border-radius: var(--radius-lg);
  box-shadow:
    0 4px 28px rgba(2, 132, 199, 0.28),
    0 0 0 1px rgba(56, 189, 248, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}
.product-card-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0.04) 35%,
    rgba(10, 31, 51, 0.22) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.product-card-dark:hover {
  transform: translateY(-5px);
  border-color: rgba(224, 242, 254, 0.75);
  box-shadow:
    0 14px 44px rgba(2, 132, 199, 0.4),
    0 0 36px rgba(56, 189, 248, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.product-card-dark:hover .product-pill-shine {
  transform: scale(1.08);
}
.product-card-dark .product-card-top,
.product-card-dark .product-card-body,
.product-card-dark .product-card-footer {
  position: relative;
  z-index: 2;
}
.product-card-dark .product-card-footer {
  background: rgba(10, 31, 51, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}
.product-card-dark h3 {
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(10, 31, 51, 0.35);
}
.product-card-dark .product-card-lead {
  color: rgba(240, 249, 255, 0.96);
  text-shadow: 0 1px 2px rgba(10, 31, 51, 0.25);
}
.product-card-dark .product-category {
  color: rgba(186, 230, 253, 0.95);
}
.product-card-dark .product-card-col h4 {
  color: rgba(186, 230, 253, 0.95);
  text-shadow: none;
}
.product-card-dark .product-card-col li {
  color: rgba(224, 242, 254, 0.92);
  text-shadow: 0 1px 2px rgba(10, 31, 51, 0.2);
}
.product-card-dark .product-card-col li::before {
  color: rgba(186, 230, 253, 0.9);
}
.product-card-dark .product-module-chip {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  color: rgba(224, 242, 254, 0.95);
}
.product-card-dark .product-tag-live,
.product-card-dark .product-tag-ready,
.product-card-dark .product-tag-demo {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(224, 242, 254, 0.95);
}
.product-card-dark .product-meta {
  color: rgba(240, 249, 255, 0.96);
}
.product-card-dark .product-meta strong {
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(10, 31, 51, 0.3);
}
.product-card-dark .btn-secondary {
  background: rgba(255, 255, 255, 0.14);
  color: #e0f2fe;
  border: 1px solid rgba(255, 255, 255, 0.28);
}
.product-card-dark .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}


.product-pill-glow ul li {
  color: white !important; /* text color of the bullet items */
}

.product-pill-glow ul li::marker {
  color: white !important; /* bullet symbol color */
}
