:root {
  --ink: #003049;
  --ink-soft: #475569;
  --ink-dark: #1e293b;
  --red: #d62828;
  --soft: #f8fafc;
  --line: #e2e8f0;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--ink-dark);
  background: var(--white);
  line-height: 1.55;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "Montserrat", sans-serif;
  color: var(--ink);
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.section-pad {
  padding: 96px 0;
}

.section-tight {
  padding: 64px 0;
}

.bg-soft {
  background: var(--soft);
}

.border-y {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.topbar {
  background: #f1f5f9;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 38px;
}

.topbar-left,
.topbar-right {
  display: flex;
  gap: 20px;
  align-items: center;
}

.topbar-item {
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.icon-svg {
  width: 14px;
  height: 14px;
  display: inline-block;
}

.topbar-right {
  gap: 12px;
}

.topbar-right a {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink-soft);
  font-size: 12px;
}

.social-icon {
  width: 14px;
  height: 14px;
  display: block;
}

.nav {
  background: var(--white);
  border-bottom: 1px solid #f1f5f9;
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid #dbe5ec;
  background: #fff;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand-icon {
  width: 84px;
  height: 96px;
  display: block;
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong {
  font-weight: 800;
  font-size: 24px;
  color: var(--ink);
  line-height: 1;
  font-family: "Inter", sans-serif;
}

.brand-text em {
  color: var(--red);
  font-style: normal;
  font-size: 1.2em;
  font-weight: 900;
  line-height: 1;
  display: inline-block;
  margin-left: -0.04em;
}

.brand-text small {
  color: #94a3b8;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 16px 32px;
  font-weight: 700;
  font-size: 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-pill {
  border-radius: 999px;
  padding: 12px 24px;
  font-size: 16px;
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 15px -3px #fecaca, 0 4px 6px -4px #fecaca;
}

.btn-outline {
  background: #fff;
  border: 2px solid var(--line);
  color: var(--ink-dark);
}

.btn-soft {
  background: #f1f5f9;
  color: var(--ink-dark);
  padding: 12px 24px;
  font-size: 16px;
}

.btn-light {
  background: #fff;
  color: #0f172a;
  border-radius: 16px;
  padding: 20px 40px;
  font-size: 20px;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.92) 52%, rgba(255, 255, 255, 0) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 672px;
  display: grid;
  gap: 22px;
  padding: 24px 0;
}

.badge {
  width: max-content;
  background: #fef2f2;
  border: 1px solid #fee2e2;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.1;
  display: grid;
  gap: 0.08em;
  color: var(--ink);
}

.hero h1 .headline-line {
  display: block;
}

.hero h1 .headline-nowrap {
  white-space: nowrap;
}

.hero h1 .headline-line:last-child span {
  color: var(--red);
}

@media (max-width: 760px) {
  .hero h1 {
    font-size: clamp(34px, 10vw, 60px);
    letter-spacing: -0.04em;
  }

  .hero h1 .headline-line {
    white-space: normal;
  }

  .hero h1 .headline-nowrap {
    white-space: nowrap;
  }

  .hero h1 .headline-line:last-child .headline-nowrap {
    white-space: nowrap;
  }
}

@media (max-width: 359px) {
  .hero h1 {
    font-size: 28px;
  }

  .hero h1 .headline-nowrap,
  .hero h1 .headline-line:last-child .headline-nowrap {
    white-space: normal;
  }
}

.hero p {
  margin: 0;
  font-size: 20px;
  color: var(--ink-soft);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 8px;
}

.section-head {
  text-align: center;
  display: grid;
  place-items: center;
  gap: 14px;
  margin-bottom: 64px;
}

.section-head h2,
.why h2,
.team-cta h2,
.bottom-cta h2 {
  font-size: clamp(30px, 4vw, 36px);
  line-height: 1.2;
}

.accent-line {
  width: 80px;
  height: 6px;
  border-radius: 999px;
  background: var(--red);
}

.cards.two-up {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}

.card {
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.card > img {
  width: 100%;
  height: 256px;
  object-fit: cover;
}

.card-media {
  position: relative;
}

.card-media img {
  width: 100%;
  height: 256px;
  object-fit: cover;
  display: block;
}

.card-media-dim::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 48, 73, 0.16) 0%, rgba(0, 48, 73, 0.34) 100%);
  pointer-events: none;
}

.card-body {
  padding: 40px;
  display: grid;
  gap: 16px;
}

.card-body h3 {
  font-size: 24px;
}

.card-body p {
  margin: 0;
  color: var(--ink-soft);
}

.inline-link {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-top: 8px;
}

.course-list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
  list-style: none;
}

.course-list li {
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.bullet-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  display: block;
  object-fit: contain;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
  align-items: center;
}

.why-image-wrap {
  position: relative;
}

.shape {
  position: absolute;
  width: 128px;
  height: 128px;
  border-radius: 16px;
  background: var(--red);
  opacity: 0.1;
  left: -24px;
  top: -24px;
}

.why-image {
  width: 100%;
  height: 500px;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
}

.experience-box {
  position: absolute;
  right: -40px;
  bottom: -40px;
  max-width: 320px;
  background: var(--ink);
  color: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.experience-box strong {
  display: block;
  width: 100%;
  font-size: 42px;
  line-height: 1;
  margin-top: 2px;
  text-align: right;
}

.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 28px;
}

.feature-list li {
  padding-left: 72px;
  min-height: 48px;
  position: relative;
  color: var(--ink-soft);
}

.feature-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
}

.feature-list strong {
  display: block;
  color: var(--ink);
  font-size: 20px;
  margin-bottom: 4px;
  font-family: "Inter", sans-serif;
}

.eyebrow {
  margin: 0 0 28px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 24px;
}

.certification-program {
  margin: 0;
  padding: 24px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  text-align: center;
}

.certification-program img {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: contain;
}

.certification-program figcaption {
  margin-top: 16px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.certification-note {
  max-width: 820px;
  margin: 24px auto 0;
  color: var(--ink-soft);
  text-align: center;
  line-height: 1.7;
}

.cta-slab {
  background: var(--ink);
  border-radius: 48px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.slab-copy {
  padding: 64px;
  color: #cbd5e1;
}

.slab-copy h2 {
  color: #fff;
  margin-bottom: 24px;
}

.slab-copy p {
  margin: 0 0 40px;
  font-size: 18px;
}

.slab-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.aed-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  padding: 32px;
  display: grid;
  grid-template-columns: 420px 1fr;
  align-items: center;
  gap: 48px;
}

.aed-logo {
  background: transparent;
  border-radius: 0;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aed-logo img {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  object-fit: contain;
}

.aed-copy h3 {
  font-size: clamp(28px, 3vw, 30px);
  margin-bottom: 16px;
}

.aed-copy p {
  margin: 0 0 24px;
  color: var(--ink-soft);
  font-size: 18px;
}

.bottom-cta {
  position: relative;
  overflow: hidden;
  background: var(--red);
  color: rgba(255, 255, 255, 0.85);
  padding: 96px 0;
}

.bottom-cta-content {
  max-width: 896px;
  text-align: center;
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
}

.bottom-cta h2 {
  color: #fff;
  font-size: clamp(34px, 4.2vw, 48px);
}

.bottom-cta p {
  margin: 0;
  font-size: 20px;
}

.orb {
  position: absolute;
  border-radius: 999px;
  opacity: 0.12;
  border: 40px solid #fff;
}

.orb-a {
  width: 384px;
  height: 384px;
  top: 40px;
  right: 80px;
}

.orb-b {
  width: 256px;
  height: 256px;
  border: 0;
  background: #fff;
  left: -80px;
  bottom: -80px;
}

.contact-inline {
  display: flex;
  gap: 40px;
  justify-content: center;
  font-weight: 700;
  color: #fff;
}

.contact-inline a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
}

.footer {
  background: var(--ink);
  color: #94a3b8;
  padding: 96px 0 48px;
}

.footer-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1.2fr 1fr 1fr;
}

.footer-grid h4 {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  margin: 0 0 16px;
}

.footer-grid p,
.footer-grid li,
.footer-grid a {
  font-size: 16px;
  color: #94a3b8;
}

.footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.footer-brand {
  margin-bottom: 16px;
}

.footer-brand .brand-text strong,
.footer-brand .brand-text em {
  color: #fff;
}

.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 48px;
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  font-size: 14px;
  color: #64748b;
}

.foot-bottom a {
  color: #64748b;
  margin-left: 20px;
}

.nav-onsite-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 16px;
  font-weight: 600;
  color: #334155;
}

.nav-links a.is-active {
  color: var(--ink);
}

.onsite-hero {
  position: relative;
  min-height: 450px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #0f172a;
}

.onsite-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.onsite-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.4) 0%, rgba(15, 23, 42, 0.8) 50%, #0f172a 100%);
}

.onsite-hero-content {
  position: relative;
  z-index: 1;
  max-width: min(672px, 50%);
  display: grid;
  gap: 22px;
  padding: 24px 0;
}

.contact-hero.onsite-hero {
  min-height: 450px;
}

.contact-hero.onsite-hero::before {
  content: "";
  position: absolute;
  top: 6%;
  right: 2.5%;
  width: 52%;
  height: 88%;
  z-index: 0;
  border-radius: 28px 0 0 28px;
  background: linear-gradient(270deg, #25435a 0%, #1c3449 56%, rgba(28, 52, 73, 0) 100%);
}

.about-hero.contact-hero.onsite-hero::before {
  display: none;
}

.about-hero.contact-hero.onsite-hero {
  min-height: 620px;
}

.about-hero.contact-hero.onsite-hero::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 7%;
  width: 64%;
  height: 115%;
  background: radial-gradient(ellipse at center, rgba(28, 117, 127, 0.52) 0%, rgba(28, 117, 127, 0.18) 44%, rgba(28, 117, 127, 0) 72%);
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
}

.about-hero .about-hero-visual {
  position: absolute;
  top: 50%;
  right: 7%;
  width: min(52%, 560px);
  margin: 0;
  transform: translateY(-50%);
  z-index: 1;
}

.about-hero .about-hero-visual::before {
  content: "";
  position: absolute;
  inset: 6px -8px -8px 8px;
  border: 1px solid rgba(28, 117, 127, 0.5);
  border-radius: 24px;
  background: var(--ink);
  z-index: -1;
}

.about-hero .about-hero-visual .onsite-hero-bg {
  inset: auto 0 auto auto;
  position: relative;
  top: auto;
  right: auto;
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  padding: 0;
  border: 1px solid rgba(148, 212, 215, 0.52);
  border-radius: 24px;
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.34);
  transform: none;
  z-index: 1;
  background: transparent;
}

.about-hero .about-hero-visual figcaption {
  position: relative;
  z-index: 1;
  margin-top: 12px;
  padding: 0 16px;
  color: #b8cbd0;
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
}

.about-hero.contact-hero.onsite-hero .onsite-hero-overlay {
  display: none;
}

.about-hero .about-story-link {
  width: max-content;
  color: #b8dadd;
  border-bottom: 1px solid rgba(184, 218, 221, 0.45);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
  transition: color 180ms ease, border-color 180ms ease;
}

.about-hero .about-story-link:hover,
.about-hero .about-story-link:focus-visible {
  color: #fff;
  border-color: #fff;
}

.about-hero .about-story-link span {
  margin-left: 4px;
  color: var(--red);
}

.contact-hero.onsite-hero .onsite-hero-content {
  max-width: min(672px, 50%);
  z-index: 3;
}

.btn-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.btn-with-icon img {
  width: 16px;
  height: 18px;
}

.onsite-chip {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  font-size: 14px;
  font-weight: 700;
}

.onsite-chip span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #4ade80;
}

.onsite-hero h1 {
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.15;
  color: #fff;
}

.onsite-hero h1 span {
  color: var(--red);
}

.onsite-hero p {
  margin: 0;
  color: #cbd5e1;
  font-size: 20px;
}

.onsite-head {
  margin-bottom: 0;
}

.eyebrow-dark {
  margin: 0;
  color: #0f172a;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.4px;
}

.train-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.train-card {
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 24px;
  padding: 32px;
  display: grid;
  gap: 12px;
  min-height: 234px;
}

.train-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.train-icon-wrap img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.train-card h3 {
  font-size: 20px;
  margin-top: 12px;
}

.train-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
  align-items: center;
}

.options-media {
  position: relative;
  border: 8px solid #fff;
  border-radius: 48px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.options-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.08) 0%, rgba(15, 23, 42, 0.3) 100%);
}

.options-media img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center top;
}

.options-copy h2 {
  font-size: clamp(30px, 3.6vw, 36px);
  line-height: 1.25;
}

.options-copy > p {
  margin: 20px 0 24px;
  color: var(--ink-soft);
  font-size: 18px;
}

.options-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}

.options-list li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  padding: 16px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}

.option-icon {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: #fef2f2;
  display: grid;
  place-items: center;
  flex: 0 0 48px;
}

.option-icon-blue {
  background: #eff6ff;
}

.options-list img {
  width: 40px;
  height: 40px;
}

.options-list em {
  font-style: italic;
  font-weight: 700;
}

.options-copy .inline-link {
  display: inline-block;
  margin-top: 16px;
}

.inline-link-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.inline-link-icon img {
  width: 16px;
  height: 16px;
  filter: brightness(0);
  transform: translateY(1px);
}

.no-bottom-gap {
  gap: 12px;
}

.how-sub {
  margin: 0;
  color: #64748b;
  font-size: 18px;
  text-align: center;
}

.steps-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
  margin-top: 52px;
}

.step-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 40px;
  height: 2px;
  background: #f1f5f9;
}

.step-card {
  background: #fff;
  z-index: 1;
  text-align: center;
  padding: 32px;
}

.step-dot {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 30px;
  font-weight: 800;
  background: var(--red);
  border: 8px solid #fff;
  box-shadow: 0 20px 25px -5px #fecaca, 0 8px 10px -6px #fecaca;
}

.step-dot-alt {
  background: var(--ink);
  box-shadow: 0 20px 25px -5px #bfdbfe, 0 8px 10px -6px #bfdbfe;
}

.step-card h3 {
  margin: 12px 0 8px;
  font-size: 20px;
}

.step-card p {
  margin: 0;
  color: var(--ink-soft);
}

.why-org {
  background: var(--ink);
}

.why-org-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px;
  align-items: center;
}

.why-org h2 {
  color: #fff;
  font-size: clamp(30px, 3.6vw, 36px);
  line-height: 1.25;
  margin-bottom: 28px;
}

.why-org-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 24px;
}

.why-org-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 16px;
}

.why-org-list img {
  width: 18px;
  height: 18px;
  margin-top: 4px;
}

.why-org-list strong {
  display: block;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  margin-bottom: 2px;
}

.why-org-list span {
  color: #cbd5e1;
}

.why-org-media {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.why-org-media img {
  width: 100%;
  height: 550px;
  object-fit: cover;
}

.faq-wrap {
  max-width: 896px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.faq-list summary {
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  cursor: pointer;
}

.faq-list summary::marker {
  color: var(--red);
}

.faq-list summary:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 5px;
  border-radius: 4px;
}

.faq-list p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.faq-list a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.quote-section {
  background: #fff;
}

.quote-wrap {
  max-width: 896px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 48px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  padding-bottom: 48px;
}

.quote-top {
  background: var(--red);
  padding: 48px;
  text-align: center;
  color: #fff;
}

.quote-top h2 {
  color: #fff;
  font-size: clamp(30px, 3.6vw, 36px);
}

.quote-top p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}

.quote-form {
  width: min(750px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: 48px;
  display: grid;
  /* minmax(0,...) keeps hCaptcha's fixed-width iframe from widening the track. */
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}

.form-status {
  display: none;
  padding: 14px 18px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
}

.form-status:empty {
  display: none;
}

.form-status.is-loading,
.form-status.is-success,
.form-status.is-error {
  display: block;
}

.form-status.is-loading {
  background: var(--soft);
  color: var(--ink-soft);
  border: 1px solid var(--line);
}

.form-status.is-success {
  background: #ecfdf3;
  color: #067647;
  border: 1px solid #abefc6;
}

.form-status.is-error {
  background: #fef2f2;
  color: var(--red);
  border: 1px solid #fecaca;
}

.field {
  min-width: 0;
}

.field input,
.field select,
.field textarea {
  max-width: 100%;
}

.h-captcha {
  max-width: 100%;
}

/* hCaptcha renders a fixed 303px widget, so scale it down to fit narrow screens instead of clipping it. */
@media (max-width: 430px) {
  .h-captcha {
    transform: scale(0.84);
    transform-origin: left center;
  }
}

@media (max-width: 374px) {
  .h-captcha {
    transform: scale(0.78);
    transform-origin: left center;
  }

  .touch-grid {
    padding: 16px 10px;
  }

  .touch-form {
    padding: 14px;
  }
}

@media (max-width: 340px) {
  .h-captcha {
    transform: scale(0.64);
    transform-origin: left center;
  }
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.field {
  display: grid;
  gap: 8px;
}

.field span {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  color: #0f172a;
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.quote-submit {
  width: 100%;
}

.quote-help {
  margin: 0;
  text-align: center;
  color: #64748b;
  font-size: 14px;
}

.quote-help a {
  color: var(--red);
  font-weight: 700;
}

@media (max-width: 760px) {
  .quote-help a {
    display: block;
  }
}

.courses-page {
  background: #f8fafc;
}

.courses-hero {
  position: relative;
  min-height: 450px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.courses-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.courses-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.4) 0%, rgba(15, 23, 42, 0.8) 50%, #0f172a 100%);
}

.courses-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: grid;
  gap: 20px;
  max-width: 768px;
}

.courses-hero-content h1 {
  color: #fff;
  font-size: clamp(42px, 6vw, 60px);
  line-height: 1;
}

.courses-hero-content h1 span {
  color: var(--red);
}

.courses-hero-content p {
  margin: 0;
  color: #cbd5e1;
  font-size: 20px;
  line-height: 1.6;
}

.courses-listing {
  padding-top: 96px;
}

.section-group-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 auto 28px;
  padding: 10px 0 12px;
  border-bottom: 2px solid rgba(15, 23, 42, 0.18);
  position: relative;
}

.section-group-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: repeating-linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.06) 0,
    rgba(15, 23, 42, 0.06) 10px,
    transparent 10px,
    transparent 20px
  );
}

.section-group-header h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
}

.course-card {
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.course-card-media {
  position: relative;
  height: 256px;
  overflow: hidden;
}

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

.course-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--red);
  color: #fff;
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: -0.6px;
  text-transform: uppercase;
}

.course-badge-navy {
  background: var(--ink);
}

.course-card-body {
  padding: 40px;
  display: grid;
  gap: 16px;
}

.course-card-body h3 {
  font-size: 30px;
  line-height: 1.2;
  color: var(--ink);
}

.course-for {
  margin: 0;
  color: #64748b;
  font-weight: 700;
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
}

.course-for img {
  width: 18px;
  height: 16px;
  margin-top: 4px;
}

.course-card-body p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

.course-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
}

.chip-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.chip-row span {
  background: #f1f5f9;
  border-radius: 6px;
  padding: 4px 12px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.chip-row .chip-blue {
  background: #eff6ff;
  color: #0f172a;
}

.course-card-foot a {
  font-size: 16px;
  color: #0f172a;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.course-card-foot a img {
  width: 14px;
  height: 16px;
}

.feature-banner {
  padding-top: 80px;
}

.wide-feature {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background: linear-gradient(135deg, #0f172a 0%, #1b3550 100%);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.2);
}

.wide-feature-copy {
  padding: 56px 48px;
  display: grid;
  align-content: center;
  gap: 20px;
}

.wide-feature-copy h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.15;
}

.wide-feature-copy p {
  margin: 0;
  color: #dbeafe;
  line-height: 1.7;
  max-width: 54ch;
}

.wide-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

.advanced-training {
  padding-top: 80px;
}

.advanced-header {
  margin-bottom: 22px;
}

.advanced-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.advanced-card {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 182px;
  padding: 18px 22px 18px 18px;
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  overflow: hidden;
  box-shadow: 0 18px 30px -18px rgba(15, 23, 42, 0.2);
}

.advanced-card-dark {
  background: linear-gradient(135deg, #0a2d3d 0%, #0c3e55 100%);
  border-color: rgba(255, 255, 255, 0.08);
}

.advanced-card-light {
  background: #f3f6f8;
}

.advanced-card-icon {
  width: 68px;
  height: 68px;
  min-width: 68px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.advanced-card-icon.red {
  background: var(--red);
}

.advanced-card-icon.dark {
  background: #122d3d;
}

.advanced-card-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
}

.advanced-card-copy {
  display: grid;
  gap: 10px;
  align-content: center;
}

.advanced-card-copy h3 {
  margin: 0;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.2;
}

.advanced-card-dark .advanced-card-copy h3,
.advanced-card-dark .advanced-card-copy p,
.advanced-card-dark .advanced-card-copy a {
  color: #fff;
}

.advanced-card-light .advanced-card-copy h3,
.advanced-card-light .advanced-card-copy p {
  color: var(--ink);
}

.advanced-card-copy p {
  margin: 0;
  line-height: 1.5;
  font-size: 14px;
  color: var(--ink-soft);
}

.advanced-card-copy a {
  margin-top: 2px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 800;
  color: var(--red);
}

.advanced-card-dark .advanced-card-copy a {
  color: #fff;
}

.cta-arrow {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
}

.advanced-card-light .cta-arrow {
  background: var(--red);
}

.response-header {
  margin-bottom: 30px;
}

.response-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.response-card {
  min-height: 190px;
  background: #f3f6f8;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  padding: 18px 18px 16px;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 12px;
  box-shadow: 0 18px 30px -18px rgba(15, 23, 42, 0.15);
}

.response-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--red);
  margin-top: 4px;
}

.response-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}

.response-copy {
  display: grid;
  gap: 10px;
}

.response-copy h3 {
  margin: 0;
  font-size: clamp(18px, 1.75vw, 22px);
  line-height: 1.25;
  color: var(--ink);
}

.response-copy p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.5;
  font-size: 14px;
}

.response-copy a {
  margin-top: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--red);
  font-size: 15px;
  font-weight: 800;
}

.response-copy .cta-arrow {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: #fff;
  font-size: 14px;
}

.pricing-cta {
  background: #fff;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
}

.pricing-wrap {
  max-width: 896px;
  text-align: center;
  display: grid;
  gap: 24px;
  justify-items: center;
}

.pricing-pill {
  background: #fef2f2;
  border-radius: 999px;
  padding: 8px 24px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: #0f172a;
}

.pricing-wrap h2 {
  font-size: clamp(30px, 3.6vw, 36px);
  color: var(--ink);
  line-height: 1.25;
}

.pricing-note {
  width: 100%;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 40px;
  padding: 40px;
}

.pricing-note p {
  margin: 0;
  color: var(--ink-soft);
  font-style: italic;
  font-size: 20px;
  line-height: 1.6;
}

.btn-quote-large {
  padding: 20px 48px;
  font-size: 24px;
  font-weight: 900;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 25px 50px -12px rgba(239, 68, 68, 0.2);
}

.btn-quote-large img {
  width: 18px;
  height: 24px;
}

.pricing-foot {
  margin: 0;
  color: #94a3b8;
  font-size: 16px;
}

.contact-page {
  background: #fff;
}

.mission {
  padding-bottom: 0;
}

.contact-hero {
  position: relative;
  min-height: 550px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0f172a;
}

.mission-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 64px;
  align-items: stretch;
}

.mission-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #fef2f2;
  border: 1px solid #fee2e2;
  color: #b91c1c;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.4px;
}

.mission-grid h2 {
  font-size: clamp(30px, 3.8vw, 40px);
  line-height: 1.2;
  margin: 20px 0 24px;
}

.mission-grid p {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.8;
}

.mission-grid h3 {
  margin: 20px 0 8px;
  font-size: 20px;
}


.mission-media {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  display: flex;
  position: relative;
}

.mission-media img {
  flex: 1;
  width: 100%;
  height: 100%;
  min-height: 580px;
  object-fit: cover;
  border-radius: 24px;
}

.mission-name-tag {
  position: absolute;
  left: 20px;
  bottom: 30px;
  background: rgba(0, 48, 73, 0.88);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 12px 22px;
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.2px;
  line-height: 1;
  box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.4);
}

.serve-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.serve-grid article {
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 24px;
  padding: 30px;
  display: grid;
  gap: 12px;
}

.serve-grid article span {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #f8fafc;
  display: grid;
  place-items: center;
}

.serve-grid article span img {
  width: 48px;
  height: 48px;
}

.serve-grid h3 {
  font-size: 20px;
}

.serve-grid p {
  margin: 0;
  color: var(--ink-soft);
}

.choose {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.choose::after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -110px;
  width: 340px;
  height: 340px;
  border: 34px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.choose h2 {
  color: #fff;
  font-size: clamp(30px, 3.6vw, 36px);
}

.choose > .container > p {
  max-width: 760px;
  margin: 18px 0 48px;
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.6;
}

.choose-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.choose-grid article img {
  width: 56px;
  height: 56px;
}

.choose-grid h3 {
  color: #fff;
  margin: 14px 0 8px;
  font-size: 20px;
}

.choose-grid p {
  margin: 0;
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.65;
}

.touch-wrap {
  max-width: 1200px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 48px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.touch-top {
  background: var(--red);
  padding: 48px;
  text-align: center;
  color: #fff;
}

.touch-top h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 3.6vw, 36px);
}

.touch-top p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}

.touch-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
  padding: 48px;
}

.touch-left h2 {
  font-size: 34px;
}

.touch-left > p {
  margin: 16px 0 28px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.7;
}

.touch-left ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 18px;
}

.touch-left li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
}

.touch-left li span {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid #f1f5f9;
  display: grid;
  place-items: center;
  background: #fff;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.touch-left li span img {
  width: 16px;
  height: 16px;
  filter: brightness(0);
}

.touch-left li small {
  display: block;
  color: #94a3b8;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  font-weight: 800;
}

.touch-left li strong {
  display: block;
  color: var(--ink);
  margin-top: 2px;
  font-size: 20px;
  line-height: 1.35;
}

.service-area {
  margin-top: 28px;
  background: #f1f5f9;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
}

.service-area h5 {
  margin: 0 0 8px;
  font-size: 14px;
  color: var(--ink);
  font-family: "Inter", sans-serif;
}

.service-area p {
  margin: 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.45;
}

.touch-form {
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 40px;
  padding: 44px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
  display: grid;
  /* minmax(0,...) keeps hCaptcha's fixed-width iframe from widening the track. */
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.touch-form h3 {
  font-size: 28px;
}

.touch-form .field span {
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 12px;
  font-weight: 800;
}

.touch-form .field input,
.touch-form .field select,
.touch-form .field textarea {
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.radio-row {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 50px;
}

.radio-row label {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.touch-submit {
  width: 100%;
  justify-content: center;
  gap: 10px;
}

.touch-submit img {
  width: 18px;
  height: 18px;
}

.touch-foot {
  margin: 0;
  color: #94a3b8;
  text-align: center;
  font-size: 12px;
}

@media (max-width: 1100px) {
  .cards.two-up,
  .two-col,
  .cta-slab,
  .aed-card,
  .footer-grid,
  .mission-grid,
  .touch-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .touch-grid {
    padding: 32px;
    gap: 36px;
  }

  .experience-box {
    right: 16px;
    bottom: 16px;
    max-width: 260px;
    padding: 24px;
  }

  .aed-logo {
    width: min(100%, 330px);
    height: auto;
    margin: 0 auto;
  }

  .aed-logo img {
    width: 100%;
    max-width: 330px;
    height: auto;
  }

  .aed-card {
    gap: 24px;
    padding: 24px;
  }

  .slab-copy {
    padding: 40px;
  }

  .slab-image {
    height: 340px;
  }

  .nav-onsite-right,
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .train-grid,
  .options-grid,
  .steps-row,
  .why-org-grid,
  .field-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .step-line {
    display: none;
  }

  .options-media img,
  .why-org-media img {
    height: 360px;
  }

  .quote-wrap {
    border-radius: 28px;
  }
.courses-grid {
    grid-template-columns: 1fr;
  }

  .serve-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .choose-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mission-media img {
    height: auto;
    min-height: 0;
    max-height: none;
  }

  .mission-media {
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
  }

  .mission-name-tag {
    left: 14px;
    bottom: 22px;
    font-size: 15px;
    padding: 10px 16px;
  }

  .touch-form {
    padding: 32px;
    border-radius: 28px;
  }

  .course-card-body {
    padding: 28px;
  }

  .pricing-note {
    padding: 24px;
    border-radius: 24px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(1280px, calc(100% - 32px));
  }

  .topbar-inner,
  .topbar-left,
  .topbar-right,
  .cta-row,
  .contact-inline,
  .foot-bottom {
    flex-wrap: wrap;
  }

  .topbar-inner {
    justify-content: center;
    text-align: center;
    padding: 8px 0;
    gap: 4px;
  }

  .topbar-left,
  .topbar-right {
    gap: 10px;
  }

  .topbar-right {
    margin-left: 2px;
  }

  .nav-inner {
    justify-content: space-between;
    text-align: left;
    padding: 10px 0;
    min-height: 86px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-onsite-right {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 40;
    background: rgba(0, 48, 73, 0.9);
    backdrop-filter: blur(6px);
    border-radius: 16px;
    padding: 18px 16px 20px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.28), 0 8px 10px -6px rgba(0, 0, 0, 0.2);
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .nav.nav-open .nav-onsite-right {
    display: flex;
  }

  .nav-links {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .nav-links a,
  .nav-links a.is-active {
    color: #fff;
    font-weight: 700;
    padding: 10px 0;
    line-height: 1.35;
  }

  .nav-onsite-right .btn {
    width: 100%;
    background: var(--red);
    border-radius: 12px;
    min-height: 52px;
  }

  .hero {
    min-height: 720px;
  }

  .onsite-hero,
  .contact-hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
.onsite-hero-content {
    order: 1;
    max-width: 100%;
    width: 100%;
    padding-top: 64px;
    padding-bottom: 40px;
  }
.onsite-hero-bg {
    position: relative;
    order: 2;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    max-height: none;
    padding: 0;
    opacity: 1;
    transform: none;
    border-radius: 0;
  }
.onsite-hero-overlay {
    display: none;
  }

  .contact-hero.onsite-hero .onsite-hero-bg {
    position: relative;
    inset: auto;
    top: auto;
    right: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    padding: 0;
    transform: none;
  }

  .about-hero.contact-hero.onsite-hero {
    min-height: auto;
  }

  .about-hero.contact-hero.onsite-hero::after {
    top: auto;
    right: -18%;
    bottom: 8%;
    width: 136%;
    height: 58%;
    transform: none;
  }

  .about-hero .about-hero-visual {
    position: relative;
    top: auto;
    right: auto;
    order: 2;
    width: calc(100% - 32px);
    margin: 0 auto 40px;
    padding-bottom: 10px;
    border-radius: 24px;
    background: var(--ink);
    transform: none;
  }

  .about-hero .about-hero-visual::before {
    inset: 6px -6px -7px 6px;
  }

  .about-hero .about-hero-visual .onsite-hero-bg {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
  }

  .about-hero .about-hero-visual figcaption {
    padding: 0 8px;
    text-align: center;
  }

  .contact-hero.onsite-hero::before {
    display: none;
  }

  .contact-hero.onsite-hero .onsite-hero-overlay {
    display: none;
  }

  .contact-hero.onsite-hero .onsite-hero-content {
    max-width: 100%;
  }

  .onsite-hero p {
    font-size: 17px;
  }

  .hero-fade {
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.92) 58%, rgba(255, 255, 255, 0.6) 100%);
  }

  .hero-content p,
  .bottom-cta p,
  .aed-copy p,
  .slab-copy p {
    font-size: 17px;
  }

  .btn,
  .btn-light {
    width: 100%;
  }

  .quote-form {
    width: min(750px, calc(100% - 32px));
  }

  .contact-hero {
    min-height: auto;
  }

  .mission-media {
    max-width: 420px;
  }

  .mission-media img {
    height: 460px;
    object-fit: cover;
    object-position: center 82%;
  }

  .serve-grid,
  .choose-grid,
  .advanced-card-grid,
  .response-grid,
  .cta-slab {
    grid-template-columns: 1fr;
  }

  .advanced-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 18px;
  }

  .slab-copy {
    order: 2;
    padding: 32px 22px 24px;
  }

  .slab-image {
    order: 1;
    height: 260px;
  }

  .touch-form {
    padding: 20px;
    border-radius: 24px;
  }

  .touch-grid {
    padding: 20px 16px;
    gap: 28px;
  }

  .touch-left li strong {
    font-size: 18px;
  }

  .quote-top {
    padding: 32px 20px;
  }

  .courses-hero-content p {
    font-size: 17px;
  }

  .course-card-media {
    height: 220px;
  }

  .wide-feature {
    grid-template-columns: 1fr;
  }

  .wide-feature-copy {
    order: 2;
    padding: 32px 22px 24px;
  }

  .wide-feature img {
    order: 1;
    min-height: 260px;
    height: 260px;
  }

  .course-card-foot {
    align-items: flex-start;
    flex-direction: column;
  }

  .btn-quote-large {
    width: 100%;
    font-size: 20px;
    justify-content: center;
  }

  .course-list {
    grid-template-columns: 1fr;
  }

  .feature-list li {
    padding-left: 0;
    padding-top: 56px;
  }

  .feature-icon {
    top: 0;
  }

  .orb-a {
    right: -170px;
  }

  .foot-bottom a {
    margin-left: 0;
    margin-right: 12px;
  }
}
