:root {
  --ink: #080e18;
  --navy: #0d2340;
  --navy-deep: #07111f;
  --blue: #075fe7;
  --orange: #ff8200;
  --text: #0b1320;
  --muted: #5e6a7d;
  --line: #dce3ec;
  --white: #ffffff;
  --header-height: 64px;
  font-family: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: #f8fafc;
  font-family: "Inter", Arial, sans-serif;
}

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  min-height: var(--header-height);
  background: var(--ink);
  color: var(--white);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: clamp(190px, 18vw, 270px);
  height: auto;
  filter: brightness(0) invert(1);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 44px);
  margin-left: auto;
}

.main-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  font-weight: 700;
  transition: color 160ms ease;
}

.main-nav a:hover {
  color: var(--white);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta,
.btn,
.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 7px;
  font-weight: 800;
  cursor: pointer;
  min-height: 48px;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.header-cta {
  min-width: 168px;
  padding: 0 22px;
  background: var(--orange);
  color: #050b12;
  font-size: 15px;
}

.header-cta:hover,
.form-submit:hover,
.program-apply:hover,
.final-cta-actions a:first-child:hover {
  background: #ff9a1f;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(255, 130, 0, 0.28);
}

.header-cta:active,
.btn:active,
.form-submit:active,
.program-link:active,
.program-apply:active,
.final-cta-actions a:active,
.video-play:active {
  transform: translateY(0) scale(0.98);
}

.header-cta:focus-visible,
.btn:focus-visible,
.form-submit:focus-visible,
.program-link:focus-visible,
.program-apply:focus-visible,
.final-cta-actions a:focus-visible,
.video-play:focus-visible {
  outline: 3px solid rgba(255, 130, 0, 0.38);
  outline-offset: 3px;
}

.header-cta svg,
.btn svg,
.form-submit svg {
  width: 18px;
  height: 18px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 855px;
  color: var(--white);
  background:
    radial-gradient(circle at 72% 44%, rgba(255, 130, 0, 0.16), transparent 16%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(112deg, #112f55 0%, #0d2340 46%, #08111e 100%);
  background-size: auto, 48px 48px, 48px 48px, auto;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 45% 10%, rgba(25, 101, 195, 0.18), transparent 42%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 622px) minmax(380px, 564px);
  gap: clamp(40px, 3vw, 48px);
  align-items: center;
  padding: 110px 0 84px;
}

.hero-content {
  max-width: 725px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 32px;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 800;
}

.eyebrow span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

h1 {
  margin: 28px 0 24px;
  color: var(--white);
  font-size: clamp(42px, 4.5vw, 64px);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 900;
}

h1 strong {
  color: var(--orange);
  font-style: normal;
}

.hero-copy {
  max-width: 670px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.55;
  font-weight: 500;
}

.hero-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 66px;
  max-width: 610px;
  margin: 31px 0 38px;
  padding: 0;
  list-style: none;
}

.hero-points li,
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-points li {
  color: rgba(255, 255, 255, 0.95);
  font-size: 16px;
  font-weight: 600;
}

.hero-points svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  color: var(--orange);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 0 30px;
  min-width: 227px;
  color: var(--white);
  font-size: 16px;
}

.btn-primary {
  background: var(--blue);
}

.btn-secondary {
  min-width: 190px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
}

.btn-primary:hover {
  background: #0a6bff;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(7, 95, 231, 0.32);
}

.btn-secondary:hover,
.final-cta-actions a:last-child:hover {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
}

.brochure-card {
  width: 100%;
  padding: 34px 34px 38px;
  border-radius: 17px;
  background: var(--white);
  color: var(--text);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35), 0 0 70px rgba(255, 130, 0, 0.13);
}

.card-heading {
  display: flex;
  align-items: center;
  gap: 14px;
}

.card-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 47px;
  height: 47px;
  border-radius: 8px;
  background: #eaf2ff;
  color: var(--blue);
}

.card-icon svg {
  width: 23px;
  height: 23px;
}

.card-heading span {
  display: block;
  margin-bottom: 2px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.card-heading h2 {
  margin: 0;
  color: #000915;
  font-size: clamp(18px, 1.45vw, 21px);
  line-height: 1.2;
  letter-spacing: 0;
}

.brochure-card p {
  margin: 17px 0 21px;
  color: #334155;
  font-size: 15px;
  line-height: 1.45;
}

.brochure-form {
  display: grid;
  gap: 13px;
}

.brochure-form span {
  color: #b94a48;
  font-size: 10px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.brochure-form input,
.brochure-form select {
  width: 100%;
  height: 47px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: #111827;
  font-size: 15px;
  outline: none;
}

.brochure-form input:focus,
.brochure-form select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(7, 95, 231, 0.13);
}

.form-submit {
  width: 100%;
  min-height: 52px;
  margin-top: 3px;
  background: var(--orange);
  color: #02070d;
  font-size: 15px;
}

.brochure-card small {
  display: block;
  margin-top: 13px;
  color: #405065;
  font-size: 11.5px;
  line-height: 1.45;
}

.trust-bar {
  border-top: 1px solid #e1e6ef;
  border-bottom: 1px solid #e1e6ef;
  background: var(--white);
}

.trust-list {
  min-height: 74px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 28px;
}

.trust-item {
  justify-content: center;
  color: #020817;
  font-size: 15px;
  font-weight: 600;
}

.trust-item svg {
  width: 21px;
  height: 21px;
  color: var(--blue);
}

.salary-section {
  padding: 90px 0;
  background: #fafcff;
}

.section-heading {
  max-width: 800px;
  margin: 0 auto 55px;
  text-align: center;
}

.section-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 29px;
  padding: 0 16px;
  border-radius: 999px;
  background: #fff0e3;
  color: #ff7600;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.section-pill svg {
  width: 15px;
  height: 15px;
}

.section-heading h2 {
  max-width: 730px;
  margin: 18px auto 17px;
  color: #020817;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 0.98;
  letter-spacing: -1.2px;
  font-weight: 900;
}

.section-heading h2 span {
  color: #0755d7;
}

.section-heading p {
  margin: 0;
  color: #35445a;
  font-size: 17px;
  line-height: 1.45;
}

.salary-grid {
  display: grid;
  grid-template-columns: minmax(320px, 503px) minmax(0, 704px);
  gap: 24px;
  align-items: stretch;
}

.stat-stack {
  display: grid;
  gap: 17px;
}

.stat-card,
.salary-table-card {
  border: 1px solid #d7e0eb;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.04);
}

.stat-card {
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
}

.stat-card strong {
  display: block;
  color: #0755d7;
  font-size: clamp(36px, 3.2vw, 45px);
  line-height: 1;
  letter-spacing: -1px;
  font-weight: 900;
}

.stat-card p {
  margin: 10px 0 0;
  color: #26364e;
  font-size: 15px;
  line-height: 1.45;
}

.salary-table-card {
  overflow: hidden;
}

.salary-table-head,
.salary-row {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(170px, 210px) minmax(88px, 110px);
  column-gap: 42px;
  align-items: center;
}

.salary-table-head {
  min-height: 43px;
  padding: 0 21px;
  background: #070e18;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.45px;
  text-transform: uppercase;
}

.salary-table-head span:nth-child(2),
.salary-table-head span:nth-child(3),
.salary-row > strong,
.salary-row > span {
  text-align: right;
}

.salary-row {
  min-height: 68px;
  padding: 13px 21px;
  background: #ffffff;
}

.salary-row:nth-child(odd) {
  background: #fcfdff;
}

.salary-row div strong {
  display: block;
  color: #020817;
  font-size: 15px;
  line-height: 1.18;
}

.salary-row small {
  display: block;
  margin-top: 4px;
  color: #334155;
  font-size: 11.5px;
  line-height: 1.2;
}

.salary-row > strong {
  color: #0755d7;
  font-size: 19px;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.salary-row > span {
  color: #ff7600;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.salary-note {
  margin: 0;
  padding: 10px 21px 15px;
  color: #46566e;
  font-size: 11.5px;
  line-height: 1.35;
}

.programs-section {
  padding: 90px 0;
  background: var(--white);
}

.program-heading {
  max-width: 650px;
  margin: 0 auto 58px;
  text-align: center;
}

.program-heading > span {
  display: block;
  margin-bottom: 14px;
  color: #0755d7;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.program-heading h2 {
  margin: 0;
  color: #020817;
  font-size: clamp(36px, 4.2vw, 52px);
  line-height: 0.98;
  letter-spacing: -1.1px;
  font-weight: 900;
}

.program-heading h2 strong {
  display: block;
  color: #0755d7;
  font-style: normal;
}

.program-heading p {
  max-width: 600px;
  margin: 23px auto 0;
  color: #35445a;
  font-size: 17px;
  line-height: 1.45;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.program-card {
  min-height: 434px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid #d7e0eb;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.04);
}

.program-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.program-logo {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.program-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 11px;
  border-radius: 7px;
  background: #f3f6fa;
  color: #42526a;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.45px;
  text-transform: uppercase;
}

.program-chip.chip-flagship {
  color: #050b12;
  background: var(--orange);
}

.program-code {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.2px;
}

.program-card h3 {
  min-height: 56px;
  margin: 7px 0 10px;
  color: #020817;
  font-size: 21px;
  line-height: 1.18;
  letter-spacing: -0.35px;
}

.program-card > p {
  min-height: 57px;
  margin: 0;
  color: #344258;
  font-size: 15px;
  line-height: 1.45;
}

.program-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 19px;
  padding-top: 19px;
  border-top: 1px solid #d7e0eb;
}

.program-meta span,
.program-fee span {
  display: block;
  color: #3e4f66;
  font-size: 12px;
  line-height: 1.2;
}

.program-meta strong {
  display: block;
  margin-top: 4px;
  color: #020817;
  font-size: 12px;
  line-height: 1.25;
}

.program-fee {
  margin-top: 12px;
}

.program-fee strong {
  display: block;
  margin-top: 2px;
  color: #0755d7;
  font-size: 27px;
  line-height: 1;
  letter-spacing: -0.5px;
}

.program-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: auto;
  padding-top: 27px;
}

.program-link,
.program-apply {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 39px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.program-link {
  border: 1px solid #d7e0eb;
  background: #f8fbff;
  color: #020817;
}

.program-link:hover {
  border-color: #0755d7;
  background: #eef5ff;
  color: #0755d7;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(7, 85, 215, 0.12);
}

.program-apply {
  background: var(--orange);
  color: #020817;
}

.program-link svg,
.program-apply svg {
  width: 15px;
  height: 15px;
}

.why-cert-section {
  padding: 96px 0;
  background: #080e18;
  color: var(--white);
}

.why-cert-grid {
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(420px, 590px);
  gap: clamp(48px, 7vw, 94px);
  align-items: center;
}

.why-cert-copy > span {
  display: block;
  margin-bottom: 17px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.why-cert-copy h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(40px, 4.1vw, 52px);
  line-height: 0.98;
  letter-spacing: -0.6px;
  font-weight: 900;
  text-transform: uppercase;
}

.why-cert-copy h2 strong {
  color: var(--orange);
  font-style: normal;
}

.why-cert-copy p {
  margin: 27px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  line-height: 1.5;
}

.why-cert-copy ul {
  display: grid;
  gap: 18px;
  margin: 27px 0 0;
  padding: 0;
  list-style: none;
}

.why-cert-copy li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 15.5px;
  line-height: 1.35;
  font-weight: 600;
}

.why-cert-copy li svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  color: var(--orange);
}

.video-placeholder {
  position: relative;
  overflow: hidden;
  min-height: 333px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(5, 12, 22, 0.12), rgba(5, 12, 22, 0.12)),
    radial-gradient(circle at 20% 80%, rgba(0, 164, 255, 0.44), transparent 34%),
    radial-gradient(circle at 72% 38%, rgba(255, 130, 0, 0.45), transparent 28%),
    linear-gradient(130deg, #042642 0%, #055b86 42%, #021521 100%);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.45), 0 0 60px rgba(255, 130, 0, 0.12);
}

.video-placeholder::before {
  display: none;
}

.video-thumbnail {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.video-brand,
.video-text,
.video-play,
.video-actions,
.youtube-note {
  position: absolute;
  z-index: 1;
}

.video-brand {
  top: 17px;
  left: 28px;
  display: flex;
  align-items: center;
  gap: 11px;
}

.video-brand span {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--white);
  color: #0b1320;
  font-size: 10px;
  font-weight: 900;
}

.video-brand strong {
  max-width: 230px;
  color: var(--white);
  font-size: 12px;
  line-height: 1.05;
}

.video-text {
  left: 38px;
  bottom: 66px;
  max-width: 250px;
}

.video-text strong {
  display: block;
  color: var(--white);
  font-size: 35px;
  line-height: 0.94;
  letter-spacing: -0.7px;
  text-transform: uppercase;
}

.video-text strong span {
  color: #ffc342;
}

.video-text p {
  margin: 21px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  line-height: 1.25;
}

.video-play {
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 69px;
  height: 47px;
  border: 0;
  border-radius: 14px;
  background: #ff0000;
  color: var(--white);
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 2;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.video-play:hover {
  background: #ff2020;
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 12px 30px rgba(255, 0, 0, 0.34);
}

.video-play:active {
  transform: translate(-50%, -50%) scale(0.98);
}

.video-play svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.video-person {
  right: 53px;
  bottom: -12px;
  width: 155px;
  height: 265px;
  border-radius: 78px 78px 8px 8px;
  background:
    radial-gradient(circle at 50% 18%, #f4c7a5 0 23px, transparent 24px),
    linear-gradient(90deg, transparent 0 26%, #2f7fbf 26% 74%, transparent 74%),
    linear-gradient(#f5f7fb, #dde7f1);
  box-shadow: inset 0 0 0 999px rgba(0, 0, 0, 0.03);
  opacity: 0.92;
}

.video-actions {
  left: 29px;
  bottom: 19px;
  display: inline-flex;
  gap: 12px;
}

.video-actions span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(1, 9, 18, 0.62);
  color: var(--white);
}

.video-actions svg {
  width: 20px;
  height: 20px;
}

.youtube-note {
  right: 30px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 44px;
  padding: 0 21px;
  border-radius: 999px;
  background: rgba(1, 9, 18, 0.62);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  z-index: 2;
}

.youtube-note strong {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.youtube-note svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.testimonials-section {
  padding: 90px 0;
  background: var(--white);
  border-bottom: 1px solid #e1e6ef;
}

.testimonials-heading {
  max-width: 760px;
  margin: 0 auto 58px;
  text-align: center;
}

.testimonials-heading > span,
.process-heading > span {
  display: block;
  margin-bottom: 16px;
  color: #0755d7;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.testimonials-heading h2,
.recognition-copy h2,
.process-heading h2,
.final-cta h2 {
  margin: 0;
  color: #020817;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 0.98;
  letter-spacing: -1.1px;
  font-weight: 900;
}

.testimonials-heading h2 strong,
.recognition-copy h2 strong,
.process-heading h2 strong {
  color: #0755d7;
  font-style: normal;
}

.testimonials-heading p {
  margin: 24px 0 0;
  color: #35445a;
  font-size: 17px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card,
.recognition-cards article,
.process-grid article {
  border: 1px solid #d7e0eb;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.04);
}

.testimonial-card {
  min-height: 262px;
  display: flex;
  flex-direction: column;
  padding: 26px 24px 23px;
}

.testimonial-card > svg {
  width: 29px;
  height: 29px;
  color: #ff9a35;
}

.testimonial-card > p {
  margin: 17px 0 0;
  color: #020817;
  font-size: 15px;
  line-height: 1.55;
}

.testimonial-author {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 11px;
  align-items: center;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid #d7e0eb;
}

.testimonial-author span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid #bfd7fb;
  border-radius: 50%;
  background: #dbeafe;
  color: #0755d7;
  font-size: 12px;
  font-weight: 900;
}

.testimonial-author strong,
.testimonial-author small {
  display: block;
}

.testimonial-author strong {
  color: #020817;
  font-size: 13px;
}

.testimonial-author small {
  color: #304158;
  font-size: 12px;
  line-height: 1.25;
}

.testimonial-author em {
  padding: 6px 10px;
  border-radius: 7px;
  background: #fff0e3;
  color: #ff7600;
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.recognition-section {
  padding: 90px 0;
  background: #fbfdff;
}

.recognition-grid {
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(0, 592px);
  gap: clamp(52px, 8vw, 84px);
  align-items: center;
}

.recognition-copy > span {
  display: block;
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.recognition-copy p {
  margin: 26px 0 0;
  color: #35445a;
  font-size: 17px;
  line-height: 1.45;
}

.recognition-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.recognition-cards article {
  min-height: 154px;
  padding: 22px 20px;
}

.recognition-cards svg {
  width: 23px;
  height: 23px;
  color: #0755d7;
}

.recognition-cards h3,
.process-grid h3 {
  margin: 18px 0 9px;
  color: #020817;
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: -0.25px;
}

.recognition-cards p,
.process-grid p {
  margin: 0;
  color: #35445a;
  font-size: 15px;
  line-height: 1.45;
}

.process-block {
  padding-top: 132px;
}

.process-heading {
  max-width: 620px;
  margin: 0 auto 58px;
  text-align: center;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.process-grid article {
  min-height: 207px;
  padding: 31px 32px;
}

.process-grid article > strong {
  display: block;
  color: #0755d7;
  font-size: 47px;
  line-height: 1;
  letter-spacing: -1px;
}

.final-cta-section {
  padding: 90px 0;
  background: var(--white);
}

.final-cta {
  max-width: 1024px;
  margin: 0 auto;
  padding: 64px 44px;
  border-radius: 14px;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(112deg, #112f55 0%, #0d2340 48%, #08111e 100%);
  background-size: 48px 48px, 48px 48px, auto;
}

.final-cta h2 {
  max-width: 800px;
  margin: 0 auto;
  color: var(--white);
  text-transform: uppercase;
}

.final-cta h2 strong {
  color: var(--orange);
  font-style: normal;
}

.final-cta p {
  max-width: 570px;
  margin: 21px auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  line-height: 1.45;
}

.final-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.final-cta-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 29px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.final-cta-actions a:first-child {
  background: var(--orange);
  color: #020817;
}

.final-cta-actions a:last-child {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.final-cta-actions svg {
  width: 17px;
  height: 17px;
}

.site-footer {
  border-top: 1px solid #e1e6ef;
  background: #fbfdff;
}

.footer-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand p,
.site-footer nav a {
  color: #35445a;
  font-size: 14px;
}

.site-footer nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

@media (max-width: 1100px) {
  .main-nav {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding: 80px 0 88px;
  }

  .hero-content {
    max-width: 780px;
  }

  .brochure-card {
    max-width: 620px;
  }

  .salary-grid {
    grid-template-columns: 1fr;
  }

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

  .why-cert-grid {
    grid-template-columns: 1fr;
  }

  .video-placeholder {
    max-width: 680px;
  }

  .testimonial-grid,
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .recognition-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: auto;
  }

  .container {
    width: min(100% - 32px, 1340px);
  }

  .header-inner {
    min-height: 74px;
    gap: 16px;
  }

  .brand {
    max-width: min(56vw, 230px);
  }

  .brand-logo {
    width: min(56vw, 230px);
  }

  .header-cta {
    min-width: 138px;
    min-height: 42px;
    padding: 0 14px;
    font-size: 14px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    gap: 42px;
    padding: 58px 0 64px;
  }

  h1 {
    margin-top: 22px;
  }

  .hero-points {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
    min-width: 0;
  }

  .brochure-card {
    padding: 25px 20px 27px;
    border-radius: 14px;
  }

  .card-heading {
    align-items: flex-start;
  }

  .trust-list {
    grid-template-columns: 1fr 1fr;
    padding: 21px 0;
    gap: 20px 14px;
  }

  .trust-item {
    justify-content: flex-start;
    font-size: 14px;
  }

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

  .section-heading {
    margin-bottom: 34px;
    text-align: left;
  }

  .section-heading h2 {
    line-height: 1.06;
    letter-spacing: -0.6px;
  }

  .section-heading p {
    font-size: 15px;
  }

  .stat-card {
    min-height: 124px;
    padding: 21px;
  }

  .salary-table-card {
    overflow: hidden;
  }

  .salary-table-head,
  .salary-row {
    min-width: 0;
    grid-template-columns: minmax(0, 1.35fr) minmax(82px, 0.7fr) minmax(58px, 0.45fr);
    column-gap: 10px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .salary-table-head {
    font-size: 10px;
    letter-spacing: 0.25px;
  }

  .salary-row {
    min-height: 74px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .salary-row div strong {
    font-size: 13px;
  }

  .salary-row small {
    font-size: 10.5px;
  }

  .salary-row > strong {
    font-size: 14px;
    white-space: normal;
  }

  .salary-row > span {
    font-size: 10.5px;
    white-space: normal;
  }

  .salary-note {
    padding-left: 14px;
    padding-right: 14px;
  }

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

  .program-heading {
    margin-bottom: 36px;
    text-align: left;
  }

  .program-heading > span {
    letter-spacing: 3px;
  }

  .program-heading h2 {
    line-height: 1.04;
    letter-spacing: -0.55px;
  }

  .program-heading p {
    margin-top: 18px;
    font-size: 15px;
  }

  .program-grid {
    grid-template-columns: 1fr;
  }

  .program-card {
    min-height: 0;
    padding: 22px;
  }

  .program-card h3,
  .program-card > p {
    min-height: 0;
  }

  .why-cert-section {
    padding: 64px 0;
  }

  .why-cert-grid {
    gap: 38px;
  }

  .why-cert-copy > span {
    letter-spacing: 3px;
  }

  .why-cert-copy h2 {
    line-height: 1.05;
    letter-spacing: -0.2px;
  }

  .why-cert-copy p {
    font-size: 16px;
  }

  .video-placeholder {
    min-height: 260px;
  }

  .youtube-note {
    right: 18px;
    bottom: 14px;
    min-height: 38px;
    padding: 0 14px;
    font-size: 13px;
  }

  .testimonials-section,
  .recognition-section,
  .final-cta-section {
    padding: 64px 0;
  }

  .testimonials-heading,
  .process-heading {
    margin-bottom: 36px;
    text-align: left;
  }

  .testimonials-heading > span,
  .process-heading > span,
  .recognition-copy > span {
    letter-spacing: 3px;
  }

  .testimonials-heading h2,
  .recognition-copy h2,
  .process-heading h2,
  .final-cta h2 {
    line-height: 1.05;
    letter-spacing: -0.55px;
  }

  .testimonials-heading p,
  .recognition-copy p {
    font-size: 15px;
  }

  .testimonial-grid,
  .recognition-cards,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    min-height: 0;
  }

  .process-block {
    padding-top: 92px;
  }

  .process-grid article {
    min-height: 0;
    padding: 26px 24px;
  }

  .final-cta {
    padding: 45px 22px;
  }

  .final-cta p {
    font-size: 15px;
  }

  .final-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 0;
  }

  .site-footer nav {
    flex-wrap: wrap;
    gap: 14px 22px;
  }
}

@media (max-width: 430px) {
  .header-cta {
    min-width: 46px;
    width: 46px;
    padding: 0;
    font-size: 0;
  }

  .header-cta svg {
    width: 19px;
    height: 19px;
  }

  .eyebrow {
    align-items: flex-start;
    min-height: 0;
    padding: 9px 13px;
    line-height: 1.35;
  }

  .eyebrow span {
    margin-top: 6px;
  }

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

  .salary-table-head,
  .salary-row {
    grid-template-columns: minmax(0, 1.42fr) minmax(70px, 0.66fr) minmax(46px, 0.42fr);
    column-gap: 7px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .salary-table-head {
    font-size: 8.5px;
  }

  .salary-row div strong {
    font-size: 12px;
  }

  .salary-row small {
    font-size: 9.5px;
  }

  .salary-row > strong {
    font-size: 12px;
  }

  .salary-row > span {
    font-size: 9.5px;
  }

  .salary-note {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 10px;
  }

  .program-card {
    padding: 20px;
  }

  .program-card-top {
    margin-bottom: 18px;
  }

  .program-logo {
    width: 44px;
    height: 44px;
  }

  .program-chip {
    padding: 0 8px;
    font-size: 9px;
  }

  .program-meta,
  .program-actions {
    grid-template-columns: 1fr;
  }

  .video-placeholder {
    min-height: 230px;
  }

  .video-play {
    width: 58px;
    height: 40px;
  }

  .youtube-note {
    display: inline-flex;
    right: 10px;
    bottom: 10px;
    min-height: 34px;
    padding: 0 10px;
    font-size: 11px;
  }

  .testimonial-author {
    grid-template-columns: 42px 1fr;
  }

  .testimonial-author em {
    grid-column: 2;
    justify-self: start;
  }

  .final-cta-actions a {
    padding: 0 16px;
    font-size: 14px;
  }
}
