@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=IBM+Plex+Sans:wght@300;400;500;600&display=swap");

:root {
  --bg: #ffffff;
  --ink: #0b2a5b;
  --muted: #131413;
  --line: #e6e6e6;
  --card: #ffffff;
  --brand: #0b2a5b;
  --accent: #20437c;
  --shadow: 0 18px 40px rgba(11, 42, 91, 0.12);
  --radius: 14px;
  --max: 100%;
}

* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
}
body {
  color: var(--ink);
  background: radial-gradient(
      900px 400px at 90% -10%,
      rgba(0, 168, 112, 0.1),
      transparent 60%
    ),
    radial-gradient(
      800px 500px at 0% 10%,
      rgba(11, 42, 91, 0.06),
      transparent 60%
    ),
    var(--bg);
  font-family:
    "IBM Plex Sans",
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Helvetica,
    Arial;
  line-height: 1.6;
}
a {
  color: var(--brand);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
img {
  max-width: 100%;
  display: block;
}
h1,
h2,
h3,
h4 {
  font-family:
    "Space Grotesk",
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Helvetica,
    Arial;
  letter-spacing: 0.2px;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(16px, 2.4vw, 40px);
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  padding: 12px 18px;
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font-weight: 500;
  transition: transform 0.2s;
  text-decoration: none;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}
.btn.primary {
  background: var(--brand);
  color: #fff;
  border-color: transparent;
}
.btn.accent {
  background: linear-gradient(135deg, var(--accent), #1a6b7c);
  color: #ffffff;
  border-color: transparent;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 17px;
  text-decoration: none;
}
.brand:hover {
  text-decoration: none;
}
.brand-badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: #eaf1ff;
  color: #20437c;
  border: 1px solid #d0ddf5;
  border-radius: 6px;
  padding: 2px 7px;
}
.brand-logo {
  height: 80px;
  width: auto;
}
.brand-logo-mobile {
  height: 28px;
  width: auto;
}
.navlinks {
  display: flex;
  align-items: center;
  gap: 20px;
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 2px;
  background: #fff;
}
.lang-switch.mobile {
  margin-top: 14px;
}
.lang-btn {
  border: none;
  background: transparent;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  padding: 7px 10px;
  border-radius: 999px;
  cursor: pointer;
}
.lang-btn.active {
  background: var(--brand);
  color: #fff;
}
.navlinks a {
  color: var(--ink);
  font-weight: 500;
  font-size: 14px;
}
.hamburger {
  display: none;
  gap: 6px;
  flex-direction: column;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.95);
  display: none;
  z-index: 50;
}
.mobile-menu.show {
  display: flex;
  justify-content: flex-end;
}
.mobile-sheet {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 84%;
  max-width: 360px;
  background: #fff;
  border-left: 1px solid var(--line);
  padding: 20px;
  overflow: auto;
}
.mobile-sheet a {
  display: block;
  padding: 12px 2px;
  border-bottom: 1px dashed var(--line);
  color: var(--ink);
  font-weight: 500;
}
.mobile-sheet-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.mobile-sheet-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

section {
  padding: 60px 0;
}
section h2 {
  text-align: center;
  font-size: clamp(26px, 3.8vw, 40px);
  margin: 0 0 12px;
}
section .lead {
  text-align: center;
  color: var(--muted);
  max-width: 760px;
  margin: 0 auto 32px;
  font-size: 1.02rem;
}
.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.section-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
}
.section-icon-alt {
  color: #8ab4f8;
}
.section-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.section-light {
  background: #fff;
}
.section-light-tight {
  background: #fff;
  padding: 48px 0;
}

.showcase-slider {
  padding: 24px 0 0;
}
.slider-shell {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}
.slider-track {
  display: flex;
  transition: transform 0.5s ease;
}
.slide {
  min-width: 100%;
  aspect-ratio: 16/6;
  position: relative;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}
.slide-caption {
  position: absolute;
  left: 24px;
  bottom: 20px;
  color: #fff;
  background: rgba(11, 42, 91, 0.68);
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(11, 42, 91, 0.55);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.slider-btn.prev {
  left: 10px;
}
.slider-btn.next {
  right: 10px;
}
.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.slider-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 0;
}
.slider-dot.active {
  background: #fff;
}

.hero {
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero-watermark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
  z-index: 0;
  opacity: 0.055;
  color: var(--brand);
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0.12em;
}
.hero-watermark span {
  display: block;
  font-size: clamp(64px, 14vw, 190px);
  line-height: 0.85;
  margin-right: 5vw;
  margin-bottom: 4vh;
}
.hero-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: clamp(30px, 4.8vw, 54px);
  margin: 10px 0 14px;
  line-height: 1.15;
}
.hero .hero-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--muted);
  margin: 0 0 10px;
  font-weight: 500;
}
.hero .hero-body {
  color: var(--muted);
  font-size: 15px;
  max-width: 500px;
  margin: 0 0 24px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-panel-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8a97b0;
  margin-bottom: 8px;
}
.hero-panel-intro {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 12px;
  line-height: 1.55;
}
.hero-service-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.hero-service-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.hero-service-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #eaf1ff;
  color: #20437c;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.hero-service-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-service-item strong {
  display: block;
  font-size: 13px;
  margin-bottom: 2px;
}
.hero-service-item span {
  font-size: 12px;
  color: var(--muted);
}

.grid-2 {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-3 {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-4 {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.card-soft {
  background: #f8fbff;
}

.why-card {
  border-radius: 24px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.why-card.primary {
  background: #0a2aa8;
  color: #fff;
}
.why-card.soft {
  background: #eaf1ff;
  color: #0b2a5b;
}
.why-card.dark {
  background: #0b2a5b;
  color: #fff;
}
.why-card h3 {
  margin: 0;
  font-size: 17px;
}
.why-card .muted {
  opacity: 0.8;
  color: inherit;
  font-size: 14px;
}

.service-card {
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.service-card.primary {
  background: #0a2aa8;
  color: #fff;
}
.service-card.soft {
  background: #eaf1ff;
  color: #0b2a5b;
}
.service-card.dark {
  background: #0b2a5b;
  color: #fff;
}
.service-card.light {
  background: #f4f7fb;
  border: 1px solid var(--line);
  color: #0b2a5b;
}
.service-tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  width: fit-content;
}
.service-card.soft .service-tag,
.service-card.light .service-tag {
  background: #fff;
  color: #0b2a5b;
  border: 1px solid #d0ddf5;
}
.service-card h3 {
  margin: 0;
  font-size: 20px;
}
.service-card p {
  margin: 0;
  font-size: 14px;
  opacity: 0.88;
  line-height: 1.6;
}
.service-list {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  opacity: 0.88;
}
.service-list li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.5;
  flex: 0 0 auto;
}

.stat-row {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.stat {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  background: #fff;
}
.stat-icon {
  width: 24px;
  height: 24px;
  margin: 0 auto 6px;
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.stat .num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
  font-weight: 700;
}
.muted {
  color: var(--muted);
}
.icon-top {
  margin: 0;
}
.icon-white-soft {
  color: rgba(255, 255, 255, 0.7);
}
.icon-accent {
  color: #20437c;
}
.pill-inline {
  margin-bottom: 8px;
  display: inline-flex;
}
.btn-nowrap {
  white-space: nowrap;
}
.btn-center {
  justify-content: center;
}
.btn-top-space {
  margin-top: 16px;
}
.content-grid {
  gap: 28px;
  align-items: start;
}
.stack-16 {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card-title {
  font-size: 16px;
  display: block;
  margin-bottom: 8px;
}
.card-title-white {
  font-size: 16px;
  display: block;
  margin-bottom: 10px;
  color: #fff;
}
.text-sm {
  font-size: 14px;
}
.text-xs {
  font-size: 13px;
}
.section-subtitle {
  font-size: 14px;
  display: block;
  margin-bottom: 8px;
}
.muted-sm {
  margin: 0;
  font-size: 14px;
}
.muted-sm-gap {
  margin: 0 0 10px;
  font-size: 14px;
}
.card-primary {
  background: #0a2aa8;
  color: #fff;
}
.text-white-soft {
  margin: 0 0 12px;
  font-size: 14px;
  opacity: 0.9;
}
.mission-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.mission-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  opacity: 0.9;
}
.mission-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.6;
  flex: 0 0 auto;
  margin-top: 6px;
}
.stat-row-2 {
  grid-template-columns: 1fr 1fr;
}
.stat-muted {
  font-size: 13px;
}
.mt-16 {
  margin-top: 16px;
}
.mt-32 {
  margin-top: 32px;
}
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sector-tag {
  background: #eaf1ff;
  border: 1px solid #d0ddf5;
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #20437c;
}
.facility-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.facility-title {
  font-size: 15px;
  color: #fff;
}
.muted-xs {
  font-size: 12px;
}
.muted-xs-tight {
  margin: 0;
  font-size: 13px;
}
.divider-line-dark {
  background: #1b3b73;
}
.partner-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.partner-logo-wrap {
  background: #ffffff;
  border: 0 solid var(--line);
  border-radius: 10px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
}
.partner-logo-lg {
  max-height: 48px;
  width: auto;
  object-fit: contain;
}
.partner-logo-md {
  max-height: 40px;
  width: auto;
  object-fit: contain;
}
.partner-name {
  font-size: 15px;
  display: block;
  margin-bottom: 6px;
}
.partner-link {
  margin: 8px 0 0;
  font-size: 13px;
}
.partner-pill {
  margin-top: auto;
}
.contact-address {
  font-size: 14px;
}
.oursupport-block {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid #d0ddf5;
}
.oursupport-link {
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 10px;
  font-weight: 500;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.consent-label {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
  width: 100%;
  overflow-wrap: anywhere;
}
.consent-checkbox {
  width: auto;
  flex: 0 0 auto;
  margin-top: 3px;
}
.footer-copy {
  font-size: 14px;
  margin: 0 0 16px;
  max-width: 300px;
  line-height: 1.6;
}
.footer-note {
  font-size: 12px;
  color: #8a97b0;
  margin: 0 0 12px;
  line-height: 1.5;
}

.partner-strip {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 auto;
  padding: 28px;
  max-width: 100%;
  width: 100%;
  align-items: center;
  text-align: center;
  background: #f4f7fb;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.partner-strip-title {
  font-weight: 600;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.partner-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  align-items: center;
  justify-content: center;
}
.partner-logo {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 24px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}

.section-dark {
  background: #0b2a5b;
  color: #fff;
}
.section-dark .muted {
  color: #c9c9c9;
}
.section-dark h2 {
  color: #fff;
}
.section-dark .lead {
  color: #c9c9c9;
}
.section-dark .card {
  background: #102f62;
  border-color: #1b3b73;
}
.section-dark .stat {
  background: #102f62;
  border-color: #1b3b73;
}
.section-dark .stat .num {
  color: #fff;
}
.section-dark .stat-icon {
  color: #8ab4f8;
}
.section-dark .muted {
  color: #8a97b0;
}

.talk-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1.2fr;
  align-items: start;
  margin-top: 32px;
}
.talk-card {
  background: #eaf1ff;
  border: 1px solid #d0ddf5;
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.talk-card h3 {
  margin: 0;
  font-size: 20px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
}
.contact-detail svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
  color: #20437c;
  margin-top: 2px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-form input:not([type="checkbox"]),
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 14px;
  color: var(--ink);
  background: #fff;
  outline: none;
}
.contact-form input:not([type="checkbox"]):focus,
.contact-form textarea:focus {
  border-color: #20437c;
}
.contact-form textarea {
  resize: vertical;
  min-height: 110px;
}
.social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0 4px;
}
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #cdd9ef;
  color: #20437c;
}
.social-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.social-icon[hidden] {
  display: none !important;
}
.terms-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #20437c;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.terms-content {
  border: 1px solid #d0ddf5;
  background: #f8fbff;
  border-radius: 10px;
  padding: 12px;
  font-size: 12px;
  color: var(--muted);
}
.form-status {
  margin: 4px 0 0;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
  display: none;
}
.form-status.is-visible {
  display: block;
}
.form-status.is-success {
  background: #eaf8f1;
  border: 1px solid #b7e4cb;
  color: #1b5e3b;
}
.form-status.is-error {
  background: #fff2f2;
  border: 1px solid #f1c0c0;
  color: #9f2d2d;
}
.contact-form .btn:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}
.map-embed {
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
}

.group-callout {
  background: #eaf1ff;
  border: 1px solid #d0ddf5;
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 100%;
  margin: 24px auto 0;
}
.group-callout p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  max-width: 600px;
}

.divider-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 28px 0 16px;
}
.divider-label span:first-child {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8a97b0;
  white-space: nowrap;
}
.divider-label span:last-child {
  flex: 1;
  height: 1px;
  background: var(--line);
}

footer {
  background: #0b2a5b;
  color: #c9c9c9;
  padding: 44px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-brand {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  margin-bottom: 8px;
}
.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8a97b0;
  margin: 0 0 12px;
}
.footer-col a {
  display: block;
  color: #c9c9c9;
  padding: 3px 0;
  font-size: 14px;
}
.footer-col a:hover {
  color: #fff;
  text-decoration: none;
}
.cert-logos {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 14px;
}
.cert-logos img {
  max-height: 52px;
  width: auto;
}
.footer-bottom {
  border-top: 1px solid #1b3b73;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 8px;
}
.os-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #102f62;
  border: 1px solid #1b3b73;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 12px;
  color: #8a97b0;
  text-decoration: none;
}
.os-badge:hover {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 980px) {
  .hero-grid,
  .talk-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-watermark {
    display: none;
  }
  .group-callout {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 700px) {
  .slide {
    aspect-ratio: 16/10;
  }
  .grid-3,
  .grid-4,
  .stat-row {
    grid-template-columns: 1fr;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .stat-row-2,
  .form-row {
    grid-template-columns: 1fr;
  }
  .navlinks {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}
