* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #0d1f63;
  --navy-deep: #071547;
  --gold: #f3c53c;
  --gold-deep: #e7b62b;
  --white: #ffffff;
  --text: #18314f;
  --muted: #5b6e89;
  --soft: #edf3fb;
  --border: #d9e5f2;
  --shadow: 0 18px 50px rgba(12, 28, 86, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f4f8fd;
  color: var(--text);
  line-height: 1.55;
  font-size: 16px;
}
body {
  padding-top: 92px;
}

@media (max-width: 900px) {
  body {
    padding-top: 78px;
  }
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font: inherit;
}

.container {
  width: min(1280px, 94%);
  margin: 0 auto;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(217, 229, 242, 0.82);
  box-shadow: 0 8px 24px rgba(10, 25, 76, 0.06);
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  transform: translate3d(0, 0, 0);
  transition:
    transform 0.34s ease,
    background 0.34s ease,
    border-color 0.34s ease,
    box-shadow 0.34s ease,
    backdrop-filter 0.34s ease,
    -webkit-backdrop-filter 0.34s ease;
  will-change: transform, backdrop-filter;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.34);
  border-bottom-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 18px 40px rgba(10, 25, 76, 0.14);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
}

.site-header.is-hidden {
  transform: translate3d(0, -115%, 0);
  box-shadow: none;
}

.header-inner {
  min-height: 80px;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
}

.header-brand-row {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.logo-image-link {
  text-decoration: none;
}

.site-logo-image {
  height: 70px;
  width: auto;
  display: block;
}

.logo {
  display: flex;
  align-items: center;
  height: 70px;
}

.mobile-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #ffffff;
  color: var(--navy);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  flex-shrink: 0;
}

.mobile-menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  display: block;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
  min-width: 0;
}

.nav-trigger {
  background: transparent;
  border: 0;
  color: var(--navy);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 12px 10px;
  border-radius: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: 0.2s ease;
  white-space: nowrap;
}

.nav-trigger:hover,
.nav-trigger.active {
  background: #edf3ff;
  color: #1737a4;
}

.caret {
  font-size: 0.72rem;
  transition: transform 0.2s ease;
}

.nav-trigger.active .caret {
  transform: rotate(180deg);
}

.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}

.header-actions .btn {
  min-height: 46px;
  padding: 0 18px;
  font-size: 0.92rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.22s ease;
  border: 0;
  cursor: pointer;
  white-space: nowrap;
}

.btn-large {
  min-height: 54px;
  padding: 0 28px;
  font-size: 0.98rem;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 10px 22px rgba(243, 197, 60, 0.24);
}

.btn-primary:hover {
  background: var(--gold-deep);
  transform: translateY(-1px);
}

.btn-outline {
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  background: #f7fbff;
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Mega Menu */
.mega-menu-shell {
  position: absolute;
  inset-inline: 0;
  top: 100%;
  pointer-events: none;
}

.mega-menu {
  display: none;
  margin-top: 12px;
  background: #f3f7fc;
  border: 1px solid #d9e4f2;
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
  pointer-events: auto;
}

.mega-menu.active {
  display: block;
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: 1.55fr 0.9fr;
  min-height: 390px;
}

.mega-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  background: #f5f8fc;
}

.mega-link-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  border-radius: 18px;
  transition: 0.22s ease;
}

.mega-link-card:hover {
  background: var(--white);
  box-shadow: 0 10px 24px rgba(12, 28, 86, 0.08);
}

.mega-icon {
  min-width: 50px;
  height: 50px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #dde8ff 0%, #c5d9ff 100%);
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  padding: 0 8px;
}

.mega-link-card h3 {
  font-size: 1rem;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 4px;
}

.mega-link-card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.45;
}

.mega-feature-card {
  position: relative;
  padding: 24px;
  color: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: radial-gradient(circle at top left, #2958ef 0%, #133188 48%, #081844 100%);
}

.feature-badge {
  display: inline-flex;
  align-self: flex-start;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  align-items: center;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.mega-feature-card h3 {
  font-size: 1.7rem;
  line-height: 1.08;
  margin: 14px 0 10px;
}

.mega-feature-card p {
  color: rgba(255, 255, 255, 0.86);
  max-width: 320px;
  font-size: 0.98rem;
}

.feature-art {
  position: relative;
  min-height: 120px;
  margin-top: 18px;
}

.art-orb {
  position: absolute;
  right: -8px;
  bottom: -8px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243, 197, 60, 0.95) 0%, rgba(243, 197, 60, 0.14) 62%, rgba(243, 197, 60, 0) 100%);
  filter: blur(6px);
}

.art-card {
  position: absolute;
  left: 0;
  bottom: 10px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 800;
  font-size: 0.95rem;
}

/* Hero */
.hero-home {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at right top, rgba(46, 92, 241, 0.2) 0%, rgba(46, 92, 241, 0) 38%),
    linear-gradient(135deg, #061442 0%, #091c57 28%, #0d246d 60%, #0a1f61 100%);
  color: var(--white);
  padding: 40px 0 56px;
}

.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 26%),
    linear-gradient(300deg, rgba(243, 197, 60, 0.12) 0%, rgba(243, 197, 60, 0) 26%);
  pointer-events: none;
}

.hero-home-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 24px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
  max-width: 620px;
}

.gold-text {
  color: var(--gold);
}

.hero-description {
  max-width: 560px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.86);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero-info-cards {
  display: flex;
  gap: 16px;
  margin-top: 28px;
}

.mini-info-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.mini-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(77, 122, 255, 0.32);
  font-size: 1rem;
}

.mini-info-card strong {
  display: block;
  font-size: 1rem;
  color: var(--white);
}

.mini-info-card span {
  display: block;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.hero-photo-shell {
  position: relative;
  width: 100%;
  min-height: 520px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.22);
  background: transparent;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-photo-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 21, 71, 0.08) 0%, rgba(7, 21, 71, 0.14) 45%, rgba(7, 21, 71, 0.34) 100%);
  pointer-events: none;
}

.hero-top-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
}

.panel-pill {
  display: inline-flex;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  align-items: center;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.20);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-glass-row {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero-metric-card {
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
  color: #fff;
}

.hero-metric-card strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
  color: #fff;
}

.hero-metric-card span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
}

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 70px;
  background:
    radial-gradient(90% 120px at 50% 0, #dfe8f6 0%, #dfe8f6 48%, transparent 49%),
    linear-gradient(180deg, transparent 0%, transparent 60%, #edf3fb 61%);
}

/* Sections */
.section {
  padding: 56px 0;
}

.section-light {
  background: #edf3fb;
}

.section-dark {
  background: linear-gradient(180deg, #0b1a52 0%, #091440 100%);
  color: var(--white);
}

.section-soft {
  background: #edf3fb;
}

.section-heading {
  margin-bottom: 26px;
  text-align: center;
}

.section-heading.centered {
  text-align: center;
}

.eyebrow {
  color: #2e57e7;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.eyebrow-light {
  color: #9eb8ff;
}

.section-heading h2,
.split-section-heading h2,
.difference-inner h2 {
  color: var(--navy);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.section-heading p,
.split-section-heading p,
.difference-inner p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.split-section-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 30px;
}

.split-section-heading > div:first-child {
  text-align: center;
}

.split-section-heading h2,
.split-section-heading p {
  color: var(--white);
}

.split-section-heading h2,
.split-section-heading p {
  color: var(--white);
}

.heading-side-visual {
  aspect-ratio: 16 / 10;
  min-height: 0;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #dfe7f3;
}

.heading-side-visual img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.specialty-grid,
.solution-grid,
.testimonial-grid,
.footer-grid,
.form-grid {
  display: grid;
  gap: 20px;
}

.specialty-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.solution-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.footer-grid {
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
}

.specialty-card,
.dark-solution-card,
.quote-card,
.contact-form,
.benefit-panel {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.specialty-card {
  background: var(--white);
  border: 1px solid var(--border);
}

.specialty-visual {
  aspect-ratio: 16 / 9;
  height: auto;
  overflow: hidden;
  background: #dfe7f3;
}

.specialty-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.specialty-body {
  padding: 22px;
}

.specialty-badge {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #edf3ff;
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 14px;
}

.specialty-body h3,
.dark-solution-card h3,
.benefit-content h3 {
  font-size: 1.45rem;
  line-height: 1.16;
  margin-bottom: 10px;
}

.specialty-body p,
.dark-solution-card p,
.benefit-content p,
.quote-card p {
  color: var(--muted);
  font-size: 0.98rem;
}

.dark-solution-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 24px;
  box-shadow: none;
}

.dark-solution-card h3 {
  color: var(--gold);
}

.dark-solution-card p {
  color: rgba(255, 255, 255, 0.84);
}

.benefit-stack {
  display: grid;
  gap: 18px;
}

.benefit-panel {
  background: var(--white);
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: stretch;
}

.benefit-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.benefit-image {
  height: 100%;
  min-height: 100px;
  overflow: hidden;
  background: #dfe7f3;
}

.benefit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.quote-card {
  background: linear-gradient(135deg, #0d2064 0%, #122d84 100%);
  padding: 28px;
  color: var(--white);
}

.quote-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.06rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

.quote-card h4 {
  color: var(--gold);
  font-size: 0.96rem;
}

.difference-band {
  padding: 72px 0;
  background: #edf3fb;
}

.difference-inner {
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}

.difference-inner p {
  margin: 0 auto 24px;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 26px;
  max-width: 920px;
  margin: 0 auto;
}

.form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 15px;
  border-radius: 14px;
  border: 1px solid #d7e2ee;
  outline: none;
  background: #fbfdff;
  font-size: 0.96rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #2f5cf1;
  box-shadow: 0 0 0 4px rgba(47, 92, 241, 0.08);
}

.form-status {
  margin-top: 12px;
  color: #2b4fe0;
  font-weight: 800;
}

.site-footer {
  background: #09143d;
  color: var(--white);
  padding: 60px 0;
}

.site-footer h3,
.site-footer h4 {
  margin-bottom: 10px;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  display: block;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 1120px) {
  .hero-glass-row {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .hero-photo-shell {
    min-height: 560px;
  }

  .hero-home-grid,
  .mega-menu-grid,
  .split-section-heading,
  .specialty-grid,
  .solution-grid,
  .testimonial-grid,
  .footer-grid,
  .benefit-panel,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-info-cards,
  .hero-metric-grid {
    grid-template-columns: 1fr;
  }

  .mega-links {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 620px;
  }

  .hero-side-card,
  .hero-bottom-card {
    position: static;
    margin-top: 16px;
    width: 100%;
  }

  .hero-main-card {
    right: 0;
    left: 0;
  }
}

@media (max-width: 820px) {
  .btn {
    width: 100%;
  }

  .hero-actions,
  .header-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .nav-trigger {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 640px) {
  .hero-home {
    padding-top: 38px;
  }

  .hero-copy h1 {
    font-size: 2.2rem;
  }

  .section-heading h2,
  .split-section-heading h2,
  .difference-inner h2,
  .mega-feature-card h3,
  .hero-main-card h3 {
    font-size: 1.8rem;
  }

  .benefit-content,
  .quote-card,
  .dark-solution-card,
  .specialty-body,
  .contact-form,
  .hero-main-card {
    padding: 22px;
  }

  .hero-visual {
    min-height: 560px;
  }
}

.careers-menu-grid {
  grid-template-columns: 1.7fr 0.85fr;
  min-height: 420px;
}

.careers-links {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 28px;
  padding: 24px 28px;
  background: #eef4fb;
}

.svg-icon {
  padding: 0;
  background: #bcd3f6;
  color: #243b83;
}

.svg-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.careers-links .mega-link-card {
  padding: 14px 16px;
  border-radius: 14px;
  box-shadow: none;
  background: transparent;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.careers-links .mega-link-card:hover {
  background: #ffffff;
  box-shadow: none;
}

.careers-links .mega-link-card h3 {
  font-size: 1.02rem;
  margin-bottom: 3px;
}

.careers-links .mega-link-card p {
  font-size: 0.98rem;
  line-height: 1.5;
}

.careers-feature-card {
  background: #eef4fb;
  color: var(--navy);
  justify-content: flex-start;
  padding: 18px 20px 22px;
  border-left: 1px solid #cad8ec;
}

.careers-feature-image-wrap {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 16px;
}

.careers-feature-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.careers-feature-card h3 {
  font-size: 1.05rem;
  line-height: 1.45;
  color: var(--navy);
  margin: 0;
}

.solutions-feature-card {
  padding: 0;
  background: #eef4fb;
  border-left: 1px solid #cad8ec;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}

.solutions-feature-image-wrap {
  width: 100%;
  height: 100%;
  min-height: 390px;
  overflow: hidden;
}

.solutions-feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.resources-feature-card {
  padding: 0;
  background: #eef4fb;
  border-left: 1px solid #cad8ec;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}

.resources-feature-image-wrap {
  width: 100%;
  height: 100%;
  min-height: 390px;
  overflow: hidden;
}

.resources-feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-feature-card {
  padding: 0;
  background: #eef4fb;
  border-left: 1px solid #cad8ec;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}

.about-feature-image-wrap {
  width: 100%;
  height: 100%;
  min-height: 390px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef4fb;
}

.about-feature-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* =========================
   PROGRAM OVERVIEW PAGE
========================= */

.program-overview-page {
  background: #dfe6ef;
}

.narrow-container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.program-hero {
  background: linear-gradient(180deg, #161f78 0%, #1f1970 100%);
  padding: 72px 0 84px;
  color: #fff;
}

.program-hero-inner h1 {
  text-align: center;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 300;
  margin-bottom: 44px;
}

.program-hero-visuals {
  display: grid;
  grid-template-columns: 0.9fr 1.35fr;
  gap: 30px;
}

.program-image-placeholder {
  width: 100%;
  border-radius: 28px;
  border: 2px dashed rgba(20, 40, 120, 0.25);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(232, 239, 248, 0.95) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #29439d;
  font-weight: 800;
  text-align: center;
  padding: 20px;
}

.program-image-placeholder.large {
  min-height: 360px;
}

.program-image-placeholder.map {
  min-height: 360px;
}

.program-image-placeholder.wide {
  min-height: 420px;
}

.program-image-placeholder.card-top {
  min-height: 250px;
  border-radius: 24px 24px 0 0;
}

.program-image-placeholder.benefits-top {
  min-height: 320px;
  border-radius: 24px 24px 0 0;
}

.program-image-placeholder.testimonial {
  min-height: 520px;
  border-radius: 34px;
  background:
    linear-gradient(90deg, rgba(8, 10, 20, 0.75) 0%, rgba(8, 10, 20, 0.35) 40%, rgba(8, 10, 20, 0.08) 100%),
    linear-gradient(135deg, #bcc9da 0%, #eef4fb 100%);
  color: #fff;
}

.program-image-placeholder.tall {
  min-height: 720px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%),
    linear-gradient(180deg, #2035a1 0%, #111b64 100%);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
}

.program-section {
  padding: 88px 0;
}

.program-section-heading {
  margin-bottom: 34px;
}

.program-section-heading.centered {
  text-align: center;
}

.program-section-heading h2 {
  color: #1f2f86;
  font-size: clamp(2.2rem, 4.6vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.program-section-heading p {
  max-width: 980px;
  margin: 0 auto;
  color: #223f76;
  font-size: 1.08rem;
  line-height: 1.7;
}

.program-section-heading.light h2,
.program-section-heading.light p {
  color: #fff;
}

.program-feature-image {
  margin-bottom: 42px;
}

.program-lead {
  max-width: 1180px;
  margin: 0 auto 52px;
  text-align: center;
  color: #203d76;
  font-size: 1.15rem;
  line-height: 1.8;
}

.program-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  margin-bottom: 34px;
}

.program-card,
.program-benefits-card {
  background: #f5f7fb;
  border: 1px solid #b8cbe3;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(18, 37, 100, 0.06);
}

.program-card-body,
.program-benefits-body {
  padding: 30px 30px 34px;
}

.program-icon-badge {
  width: 68px;
  height: 68px;
  border-radius: 999px;
  background: #bcd3f6;
  color: #1d2f87;
  display: grid;
  place-items: center;
  font-size: 1.45rem;
  font-weight: 900;
  margin-bottom: 24px;
}

.program-card h3,
.program-benefits-card h3,
.process-card h3,
.program-process-cta h3 {
  color: #1d2f87;
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  line-height: 1.18;
  margin-bottom: 14px;
}

.program-card p,
.program-benefits-card p {
  color: #223f76;
  font-size: 1rem;
  line-height: 1.7;
}

.program-benefits-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 34px;
  margin-top: 26px;
}

.program-benefit-item {
  position: relative;
  padding-left: 34px;
  color: #1f2f86;
  font-size: 1rem;
  line-height: 1.5;
}

.program-benefit-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1.5px solid #2647af;
  color: #2647af;
  display: grid;
  place-items: center;
  font-size: 0.82rem;
  font-weight: 900;
}

.program-benefits-cta {
  margin-top: 36px;
  text-align: center;
}

.trust-section {
  padding-top: 44px;
}

.testimonial-stage {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  min-height: 520px;
}

.testimonial-stage-image {
  position: relative;
}

.testimonial-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 56px 52px;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.testimonial-overlay blockquote {
  font-size: clamp(2rem, 3.8vw, 4rem);
  line-height: 1.2;
  font-weight: 300;
  margin-bottom: 34px;
}

.testimonial-meta strong {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.testimonial-meta span {
  display: block;
  font-size: 1.05rem;
  opacity: 0.9;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 34px;
}

.testimonial-arrow {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 1.5px solid #334eab;
  background: transparent;
  color: #203d8e;
  font-size: 2rem;
  cursor: pointer;
}

.program-qualify-section {
  background: linear-gradient(180deg, #171f78 0%, #1e176b 100%);
  padding: 86px 0;
  color: #fff;
}

.program-qualify-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: stretch;
}

.program-qualify-content {
  padding: 20px 0;
}

.program-qualify-content h2 {
  font-size: clamp(2.3rem, 4.8vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  color: #fff;
}

.program-qualify-content p,
.program-qualify-note,
.program-number-list,
.program-bullet-list {
  color: rgba(255, 255, 255, 0.94);
}

.program-qualify-content p {
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 22px;
}

.program-number-list {
  padding-left: 24px;
  margin-bottom: 24px;
}

.program-number-list li {
  margin-bottom: 16px;
  font-size: 1.03rem;
  line-height: 1.65;
}

.program-bullet-list {
  padding-left: 30px;
  margin-bottom: 28px;
}

.program-bullet-list li {
  margin-bottom: 14px;
  font-size: 1.03rem;
  line-height: 1.65;
}

.program-bullet-list li::marker,
.program-number-list li::marker {
  color: #f3c53c;
  font-weight: 900;
}

.program-qualify-note {
  font-size: 1rem;
  line-height: 1.65;
}

.program-process-section {
  background: linear-gradient(180deg, #171f78 0%, #1d176c 100%);
  padding: 86px 0 74px;
}

.program-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 38px;
}

.process-card {
  background: #f3f6fb;
  border-radius: 24px;
  padding: 30px 28px 34px;
  min-height: 280px;
}

.process-number {
  width: 70px;
  height: 70px;
  border-radius: 999px;
  background: #bcd3f6;
  color: #1d2f87;
  display: grid;
  place-items: center;
  font-size: 1.9rem;
  font-weight: 900;
  margin-bottom: 24px;
}

.process-card p {
  color: #203d76;
  line-height: 1.65;
  font-size: 1rem;
}

.program-process-cta {
  text-align: center;
  margin-top: 52px;
}

.program-process-cta h3 {
  color: #fff;
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 22px;
}

.program-final-cta {
  background: #dfe6ef;
  padding: 88px 0 96px;
}

.program-final-cta-box {
  text-align: center;
  padding: 60px 20px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.1) 100%);
}

.program-final-cta-box h2 {
  color: #1f2f86;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.program-final-cta-box p {
  color: #203d76;
  font-size: 1.08rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

@media (max-width: 1180px) {
  .program-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .program-qualify-grid,
  .program-hero-visuals {
    grid-template-columns: 1fr;
  }

  .testimonial-overlay {
    max-width: 100%;
  }
}

@media (max-width: 820px) {

  .program-card-grid,
  .program-benefits-list,
  .program-process-grid {
    grid-template-columns: 1fr;
  }

  .program-hero {
    padding: 48px 0 58px;
  }

  .program-section,
  .program-qualify-section,
  .program-process-section,
  .program-final-cta {
    padding: 60px 0;
  }

  .testimonial-overlay {
    position: static;
    padding: 28px 22px 10px;
    color: #1d2f87;
  }

  .testimonial-stage {
    background: #f4f7fb;
    min-height: unset;
  }

  .program-image-placeholder.testimonial {
    min-height: 300px;
    border-radius: 28px;
  }

  .testimonial-overlay blockquote {
    font-size: 1.6rem;
    line-height: 1.35;
  }
}

@media (max-width: 640px) {

  .program-hero-inner h1,
  .program-section-heading h2,
  .program-qualify-content h2,
  .program-final-cta-box h2 {
    letter-spacing: -0.03em;
  }

  .program-card-body,
  .program-benefits-body,
  .process-card {
    padding: 24px 20px 26px;
  }

  .program-icon-badge,
  .process-number {
    width: 60px;
    height: 60px;
    font-size: 1.35rem;
  }
}

body.dialog-open {
  overflow: hidden;
}

.dialog-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.dialog-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.dialog-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 20, 0.62);
  backdrop-filter: blur(6px);
}

.dialog-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: #ffffff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

.dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: #f3f5f8;
  color: #162032;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.dialog-header {
  margin-bottom: 24px;
}

.dialog-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b08a2a;
}

.dialog-header h2 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.1;
  color: #0f1728;
}

.dialog-header p {
  margin: 0;
  color: #556070;
  line-height: 1.7;
}

.dialog-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.dialog-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.dialog-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dialog-field span {
  font-size: 0.95rem;
  font-weight: 600;
  color: #182235;
}

.dialog-field input,
.dialog-field select,
.dialog-field textarea {
  width: 100%;
  border: 1px solid #d7dfea;
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  color: #122033;
  background: #ffffff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.dialog-field input:focus,
.dialog-field select:focus,
.dialog-field textarea:focus {
  border-color: #b08a2a;
  box-shadow: 0 0 0 4px rgba(176, 138, 42, 0.12);
}

.dialog-field-full {
  grid-column: 1 / -1;
}

.dialog-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 4px;
}

@media (max-width: 720px) {
  .dialog-panel {
    padding: 24px 18px;
    border-radius: 20px;
  }

  .dialog-form-grid {
    grid-template-columns: 1fr;
  }

  .dialog-actions {
    flex-direction: column;
  }

  .dialog-actions .btn {
    width: 100%;
  }
}

/* =========================================================
   MEGA MENU SECTION TINTS + HOVER HIGHLIGHTS
   ========================================================= */

.mega-menu {
  border-radius: 28px;
  padding: 18px;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.mega-menu-grid {
  border-radius: 22px;
  padding: 18px;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.mega-links {
  border-radius: 20px;
  padding: 10px;
}

/* Section tinted backgrounds */
.mega-menu[data-menu="careers"] .mega-menu-grid {
  background: linear-gradient(135deg, rgba(40, 96, 180, 0.14), rgba(40, 96, 180, 0.04));
  box-shadow: inset 0 0 0 1px rgba(40, 96, 180, 0.08);
}

.mega-menu[data-menu="solutions"] .mega-menu-grid {
  background: linear-gradient(135deg, rgba(23, 125, 96, 0.14), rgba(23, 125, 96, 0.04));
  box-shadow: inset 0 0 0 1px rgba(23, 125, 96, 0.08);
}

.mega-menu[data-menu="resources"] .mega-menu-grid {
  background: linear-gradient(135deg, rgba(106, 76, 156, 0.14), rgba(106, 76, 156, 0.04));
  box-shadow: inset 0 0 0 1px rgba(106, 76, 156, 0.08);
}

.mega-menu[data-menu="about"] .mega-menu-grid {
  background: linear-gradient(135deg, rgba(176, 138, 42, 0.16), rgba(176, 138, 42, 0.05));
  box-shadow: inset 0 0 0 1px rgba(176, 138, 42, 0.1);
}

/* Menu cards base */
.mega-link-card {
  border-radius: 18px;
  border: 1px solid transparent;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

/* Default hover highlight */
.mega-link-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 30px rgba(15, 23, 40, 0.08);
}

/* Careers hover highlight - blue */
.mega-menu[data-menu="careers"] .mega-link-card:hover {
  background: linear-gradient(135deg, rgba(52, 110, 196, 0.18), rgba(255, 255, 255, 0.95));
  border-color: rgba(52, 110, 196, 0.22);
  box-shadow: 0 14px 34px rgba(52, 110, 196, 0.16);
}

/* Solutions hover highlight - green */
.mega-menu[data-menu="solutions"] .mega-link-card:hover {
  background: linear-gradient(135deg, rgba(22, 141, 105, 0.16), rgba(255, 255, 255, 0.95));
  border-color: rgba(22, 141, 105, 0.2);
  box-shadow: 0 14px 34px rgba(22, 141, 105, 0.14);
}

/* Resources hover highlight - purple */
.mega-menu[data-menu="resources"] .mega-link-card:hover {
  background: linear-gradient(135deg, rgba(110, 84, 168, 0.16), rgba(255, 255, 255, 0.95));
  border-color: rgba(110, 84, 168, 0.2);
  box-shadow: 0 14px 34px rgba(110, 84, 168, 0.14);
}

/* About hover highlight - gold */
.mega-menu[data-menu="about"] .mega-link-card:hover {
  background: linear-gradient(135deg, rgba(176, 138, 42, 0.18), rgba(255, 255, 255, 0.95));
  border-color: rgba(176, 138, 42, 0.22);
  box-shadow: 0 14px 34px rgba(176, 138, 42, 0.16);
}

/* Make heading text react slightly on hover */
.mega-link-card h3,
.mega-link-card p,
.mega-link-card .mega-icon {
  transition: color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.mega-link-card:hover h3 {
  color: #0f1728;
}

.mega-link-card:hover .mega-icon {
  transform: scale(1.05);
}

/* Optional: give icons tinted chips per section */
.mega-menu[data-menu="careers"] .mega-link-card .mega-icon {
  background: rgba(40, 96, 180, 0.12);
  color: #2456a8;
}

.mega-menu[data-menu="solutions"] .mega-link-card .mega-icon {
  background: rgba(23, 125, 96, 0.12);
  color: #177d60;
}

.mega-menu[data-menu="resources"] .mega-link-card .mega-icon {
  background: rgba(106, 76, 156, 0.12);
  color: #6a4c9c;
}

.mega-menu[data-menu="about"] .mega-link-card .mega-icon {
  background: rgba(176, 138, 42, 0.14);
  color: #a57a19;
}

/* Nav trigger active/hover polish */
.nav-trigger {
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.nav-trigger:hover,
.nav-trigger.active {
  background: rgba(15, 23, 40, 0.06);
}

/* Section-specific active trigger colors */
.nav-trigger[data-menu-target="careers"]:hover,
.nav-trigger[data-menu-target="careers"].active {
  background: rgba(40, 96, 180, 0.12);
  color: #2456a8;
}

.nav-trigger[data-menu-target="solutions"]:hover,
.nav-trigger[data-menu-target="solutions"].active {
  background: rgba(23, 125, 96, 0.12);
  color: #177d60;
}

.nav-trigger[data-menu-target="resources"]:hover,
.nav-trigger[data-menu-target="resources"].active {
  background: rgba(106, 76, 156, 0.12);
  color: #6a4c9c;
}

.nav-trigger[data-menu-target="about"]:hover,
.nav-trigger[data-menu-target="about"].active {
  background: rgba(176, 138, 42, 0.14);
  color: #a57a19;
}

/* Optional: tint feature card too so entire panel feels unified */
.mega-menu[data-menu="careers"] .mega-feature-card {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(40, 96, 180, 0.1);
}

.mega-menu[data-menu="solutions"] .mega-feature-card {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(23, 125, 96, 0.1);
}

.mega-menu[data-menu="resources"] .mega-feature-card {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(106, 76, 156, 0.1);
}

.mega-menu[data-menu="about"] .mega-feature-card {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(176, 138, 42, 0.12);
}

/* Minimal mega menu polish */
.mega-menu {
  background: #f7f9fc;
  border: 1px solid #dde6f1;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(12, 28, 86, 0.08);
}

.mega-menu-grid {
  min-height: 380px;
}

.mega-links {
  background: #f7f9fc;
}

.mega-link-card {
  border-radius: 14px;
  background: transparent;
  box-shadow: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.mega-link-card:hover {
  background: #ffffff;
  box-shadow: none;
}

.mega-link-card h3 {
  color: var(--navy);
}

.mega-link-card p {
  color: var(--muted);
}

/* Minimal section tint only */
.mega-menu[data-menu="careers"] .mega-links {
  background: #f3f7fc;
}

.mega-menu[data-menu="solutions"] .mega-links,
.mega-menu[data-menu="resources"] .mega-links,
.mega-menu[data-menu="about"] .mega-links {
  background: #f7f9fc;
}

/* Subtle hover for careers only */
.mega-menu[data-menu="careers"] .mega-link-card:hover {
  background: #ffffff;
}

/* Keep icons simple */
.mega-icon {
  background: #dde8f7;
  color: var(--navy);
}

/* Make feature side also minimal */
.careers-feature-card,
.solutions-feature-card,
.resources-feature-card,
.about-feature-card {
  background: #eef4fb;
  border-left: 1px solid #d7e2ee;
  box-shadow: none;
}

/* Slightly cleaner nav trigger */
.nav-trigger {
  border-radius: 10px;
}

.nav-trigger:hover,
.nav-trigger.active {
  background: #edf3fb;
  color: var(--navy);
}

/* Home process section */
.home-process-section {
  background: #edf3fb;
  padding: 56px 0;
}

.home-process-heading {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.home-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 38px;
}

.home-process-card {
  min-height: 250px;
  padding: 26px 22px 28px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid #d9e5f2;
  box-shadow: 0 12px 28px rgba(12, 28, 86, 0.06);
}

.home-step-number {
  width: 62px;
  height: 62px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #dbe8fb;
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 18px;
}

.home-process-card h3 {
  font-size: 1.2rem;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 10px;
}

.home-process-card p {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.65;
}

.home-process-cta {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

@media (max-width: 1120px) {
  .home-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .home-process-grid {
    grid-template-columns: 1fr;
  }

  .home-process-card {
    min-height: unset;
    padding: 22px 20px 24px;
  }

  .home-step-number {
    width: 56px;
    height: 56px;
    font-size: 1.05rem;
  }
}

#benefits.section,
#testimonials.section,
#contact.section,
.home-process-section {
  padding-top: 36px;
  padding-bottom: 36px;
}

/* Current page highlight */
.mega-link-card.current-page {
  background: #ffffff;
  border-color: #d7e2ee;
}

.mobile-nav-group.is-current>.mobile-nav-trigger,
.mobile-submenu-link.current-page {
  background: #edf3ff;
  color: #1737a4;
}

/* Mobile navigation drawer */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 1090;
  background: rgba(8, 12, 20, 0.48);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.mobile-nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1100;
  width: min(88vw, 360px);
  height: 100vh;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(10, 25, 76, 0.18);
  transform: translateX(-104%);
  transition: transform 0.24s ease;
  display: flex;
  flex-direction: column;
  padding: 16px 16px 22px;
}

.mobile-nav-drawer.is-open {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid #e1e9f3;
}

.mobile-nav-logo {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.mobile-nav-logo .site-logo-image {
  height: 60px;
  width: auto;
}

.mobile-nav-close {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #ffffff;
  color: var(--navy);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
}

.mobile-nav {
  padding: 14px 0 0;
  overflow-y: auto;
}

.mobile-nav-group {
  border-bottom: 1px solid #edf3fb;
}

.mobile-nav-trigger {
  width: 100%;
  min-height: 56px;
  padding: 0 4px;
  background: transparent;
  border: 0;
  color: var(--navy);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
}

.mobile-nav-caret {
  font-size: 0.84rem;
  transition: transform 0.2s ease;
}

.mobile-nav-group.is-open .mobile-nav-caret {
  transform: rotate(180deg);
}

.mobile-submenu {
  display: grid;
  gap: 8px;
  padding: 0 0 16px;
}

.mobile-submenu-link {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--muted);
  background: #f7fbff;
  border: 1px solid transparent;
  font-size: 0.96rem;
  line-height: 1.35;
}

.mobile-submenu-link:hover {
  background: #edf3ff;
  color: #1737a4;
  border-color: #d8e4f2;
}

.mobile-nav-actions {
  margin-top: auto;
  display: grid;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid #e1e9f3;
}

body.mobile-nav-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  .header-inner {
    display: block;
    min-height: 72px;
    padding: 10px 0;
  }

  .header-brand-row {
    justify-content: flex-start;
    min-height: 52px;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .desktop-nav,
  .header-actions,
  .mega-menu-shell {
    display: none !important;
  }

  .logo {
    height: 56px;
  }

  .site-logo-image {
    height: 60px;
  }

  .mobile-nav-actions .btn {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .hero-home {
    padding: 24px 0 38px;
  }

  .hero-home-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: start;
  }

  .hero-copy,
  .hero-visual {
    width: 100%;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 8.8vw, 2.9rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    max-width: 100%;
  }

  .hero-copy h1 br {
    display: none;
  }

  .hero-description {
    max-width: 100%;
    font-size: 0.98rem;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-info-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
  }

  .mini-info-card {
    width: 100%;
  }

  .hero-visual {
    min-height: auto;
    display: block;
  }

  .hero-photo-shell {
    width: 100%;
    min-height: 0;
    aspect-ratio: 1 / 1.08;
    border-radius: 22px;
    overflow: hidden;
  }

  .hero-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .hero-top-badge {
    top: 14px;
    left: 14px;
  }

  .hero-wave {
    height: 42px;
  }
}

@media (max-width: 640px) {
  .hero-home {
    padding: 20px 0 34px;
  }

  .hero-tag {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
  }

  .hero-copy h1 {
    font-size: clamp(1.8rem, 9vw, 2.35rem);
    line-height: 1.1;
    margin-bottom: 14px;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .hero-photo-shell {
    aspect-ratio: 1 / 1.14;
    border-radius: 18px;
  }

  .panel-pill {
    min-height: 30px;
    padding: 0 12px;
    font-size: 0.68rem;
  }

  .mini-info-card {
    padding: 12px 14px;
  }

  .mini-info-card strong {
    font-size: 0.95rem;
  }

  .mini-info-card span {
    font-size: 0.84rem;
  }
}

.mobile-submenu[hidden] {
  display: none !important;
}

.mobile-submenu:not([hidden]) {
  display: grid;
}

.site-header {
  transform: translateY(0);
}

.site-header.is-scrolled {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62) 0%, rgba(255, 255, 255, 0.44) 100%);
  border-bottom-color: rgba(255, 255, 255, 0.34);
  box-shadow: 0 16px 38px rgba(10, 25, 76, 0.14);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
}

.site-header.is-hidden {
  transform: translate3d(0, -110%, 0);
}

.hero-copy .hero-visual {
  margin: 22px 0 18px;
}

@media (min-width: 901px) {
  .hero-home-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
    column-gap: 24px;
    align-items: center;
  }

  .hero-tag,
  .hero-copy h1,
  .hero-description,
  .hero-actions,
  .hero-info-cards {
    grid-column: 1;
  }

  .hero-copy .hero-visual {
    grid-column: 2;
    grid-row: 1 / span 5;
    margin: 0;
    align-self: center;
  }
}

@media (max-width: 900px) {
  .hero-copy {
    display: block;
  }

  .hero-copy .hero-visual {
    margin: 18px 0 18px;
  }

  .hero-photo-shell {
    width: 100%;
    min-height: 0;
    aspect-ratio: 1 / 1.02;
  }
}
.footer-accordion-trigger {
  display: none;
}

.footer-accordion-panel[hidden] {
  display: none !important;
}

.footer-accordion-panel:not([hidden]) {
  display: block;
}

@media (max-width: 900px) {
  .site-footer {
    padding: 34px 0 26px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-brand-block {
    padding: 0 0 16px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .footer-accordion-group {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0;
  }

  .footer-accordion-trigger {
    width: 100%;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0;
    background: transparent;
    border: 0;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 800;
    text-align: left;
    cursor: pointer;
  }

  .footer-accordion-caret {
    font-size: 0.84rem;
    transition: transform 0.2s ease;
  }

  .footer-accordion-group.is-open .footer-accordion-caret {
    transform: rotate(180deg);
  }

  .footer-accordion-panel {
    padding: 0 0 16px;
  }

  .footer-accordion-panel a,
  .footer-accordion-panel p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .footer-accordion-group h4 {
    display: none;
  }

  .footer-accordion-group > a,
  .footer-accordion-group > p {
    display: none;
  }
}

/* =========================================================
   UNIFIED DROPDOWN VECTORS + REMOVE COLORED DROPDOWN BORDERS
   ========================================================= */

.mega-menu[data-menu="careers"] .mega-menu-grid,
.mega-menu[data-menu="solutions"] .mega-menu-grid,
.mega-menu[data-menu="resources"] .mega-menu-grid,
.mega-menu[data-menu="about"] .mega-menu-grid {
  background: #f7f9fc !important;
  box-shadow: none !important;
}

.mega-menu[data-menu="careers"] .mega-links,
.mega-menu[data-menu="solutions"] .mega-links,
.mega-menu[data-menu="resources"] .mega-links,
.mega-menu[data-menu="about"] .mega-links {
  background: #f7f9fc !important;
}

.mega-menu[data-menu="careers"] .mega-link-card,
.mega-menu[data-menu="solutions"] .mega-link-card,
.mega-menu[data-menu="resources"] .mega-link-card,
.mega-menu[data-menu="about"] .mega-link-card {
  border: 1px solid transparent !important;
  box-shadow: none !important;
}

.mega-menu[data-menu="careers"] .mega-link-card:hover,
.mega-menu[data-menu="solutions"] .mega-link-card:hover,
.mega-menu[data-menu="resources"] .mega-link-card:hover,
.mega-menu[data-menu="about"] .mega-link-card:hover {
  background: #ffffff !important;
  border-color: transparent !important;
  box-shadow: none !important;
  transform: translateY(-2px);
}

.nav-trigger[data-menu-target="careers"]:hover,
.nav-trigger[data-menu-target="careers"].active,
.nav-trigger[data-menu-target="solutions"]:hover,
.nav-trigger[data-menu-target="solutions"].active,
.nav-trigger[data-menu-target="resources"]:hover,
.nav-trigger[data-menu-target="resources"].active,
.nav-trigger[data-menu-target="about"]:hover,
.nav-trigger[data-menu-target="about"].active {
  background: #edf3fb !important;
  color: var(--navy) !important;
  box-shadow: none !important;
}

.mega-menu[data-menu="careers"] .mega-link-card .mega-icon,
.mega-menu[data-menu="solutions"] .mega-link-card .mega-icon,
.mega-menu[data-menu="resources"] .mega-link-card .mega-icon,
.mega-menu[data-menu="about"] .mega-link-card .mega-icon {
  background: #dbe7f6 !important;
  color: var(--navy) !important;
}

.mega-menu[data-menu="careers"] .mega-link-card:hover .mega-icon,
.mega-menu[data-menu="solutions"] .mega-link-card:hover .mega-icon,
.mega-menu[data-menu="resources"] .mega-link-card:hover .mega-icon,
.mega-menu[data-menu="about"] .mega-link-card:hover .mega-icon {
  transform: scale(1.05);
  background: #dbe7f6 !important;
  color: var(--navy) !important;
}

.svg-icon {
  padding: 0;
  display: grid;
  place-items: center;
}

.svg-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

