:root {
  font-family: "Manrope", "Segoe UI", sans-serif;
}

@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url("assets/fraunces-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/manrope-latin.woff2") format("woff2");
}

:root {
  color-scheme: light;
  --navy-950: #061323;
  --navy-900: #07172b;
  --navy-800: #0d2239;
  --navy-700: #163451;
  --ink: #142033;
  --muted: #5b6474;
  --ivory: #f8f4ea;
  --paper: #fffaf0;
  --line: rgba(20, 32, 51, 0.13);
  --gold: #d8a637;
  --gold-soft: #f2d892;
  --teal: #0b6f73;
  --teal-dark: #075458;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(6, 19, 35, 0.18);
  --radius: 8px;
  --container: min(1120px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--gold) var(--navy-950);
  scrollbar-width: thin;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(216, 166, 55, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216, 166, 55, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
}

[id] {
  scroll-margin-top: 96px;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--navy-950);
}

::-webkit-scrollbar-thumb {
  border: 2px solid var(--navy-950);
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold) 55%, rgba(11, 111, 115, 0.92));
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #fff0ae, var(--gold));
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  height: 3px;
  background: rgba(242, 216, 146, 0.1);
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft), rgba(11, 111, 115, 0.86));
  box-shadow: 0 0 18px rgba(216, 166, 55, 0.45);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

picture {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 30;
  padding: 10px 14px;
  color: var(--white);
  background: var(--teal);
  border-radius: 6px;
}

.skip-link:focus {
  top: 16px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px clamp(18px, 4vw, 42px);
  color: var(--white);
  background: rgba(6, 19, 35, 0.91);
  border-bottom: 1px solid rgba(242, 216, 146, 0.18);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border: 1px solid rgba(242, 216, 146, 0.28);
  border-radius: 50%;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.22));
}

.brand strong {
  display: block;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
}

.brand small {
  display: block;
  max-width: 210px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav {
  display: none;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--gold-soft);
}

.header-cta {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  color: var(--navy-950);
  border: 1px solid rgba(255, 246, 204, 0.42);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 56%, #bd851d);
  box-shadow: 0 14px 34px rgba(216, 166, 55, 0.24);
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  filter: saturate(1.08);
  box-shadow: 0 18px 42px rgba(216, 166, 55, 0.32);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 16% 12%, rgba(216, 166, 55, 0.18), transparent 30%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800) 58%, #09252b);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--navy-950);
}

.hero-bg::before {
  position: absolute;
  inset: 0;
  content: "";
  background: image-set(
    url("assets/hero-online-cohort.webp") type("image/webp"),
    url("assets/hero-online-cohort.jpg") type("image/jpeg")
  ) center center / cover no-repeat;
}

.hero-bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(6, 19, 35, 0.94) 0%, rgba(6, 19, 35, 0.82) 42%, rgba(6, 19, 35, 0.5) 100%),
    linear-gradient(180deg, rgba(6, 19, 35, 0.4) 0%, rgba(6, 19, 35, 0.68) 100%),
    linear-gradient(90deg, rgba(11, 111, 115, 0.16), transparent 46%),
    linear-gradient(180deg, transparent 0%, rgba(7, 23, 43, 0.46) 100%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
  min-height: calc(100svh - 77px);
  padding: clamp(56px, 8vw, 92px) 0 clamp(58px, 7vw, 82px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: 0;
}

h1,
h2 {
  font-family: "Fraunces", Georgia, serif;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.9rem, 5vw, 4.5rem);
  font-weight: 750;
}

.hero h1 span {
  display: block;
}

.hero h1 .nowrap {
  white-space: nowrap;
}

h2 {
  color: var(--navy-950);
  font-size: clamp(1.85rem, 3.2vw, 3.05rem);
  font-weight: 650;
}

h3 {
  color: var(--navy-950);
  font-size: 1.08rem;
  font-weight: 800;
}

.hero-lede {
  max-width: 620px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
}

.hero-actions,
.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 28px;
}

.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 15px 24px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 850;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn::before {
  position: absolute;
  inset: -40% auto -40% -30%;
  z-index: 0;
  width: 34%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  pointer-events: none;
  transform: translateX(-140%) skewX(-18deg);
  transition: transform 620ms ease;
}

.btn:hover::before,
.btn:focus-visible::before {
  transform: translateX(420%) skewX(-18deg);
}

.btn::after,
.header-cta::after,
.footer-action::after,
.mobile-cta-bar::after {
  width: 7px;
  height: 7px;
  content: "";
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.btn:hover::after,
.btn:focus-visible::after,
.header-cta:hover::after,
.header-cta:focus-visible::after,
.footer-action:hover::after,
.footer-action:focus-visible::after,
.mobile-cta-bar:hover::after,
.mobile-cta-bar:focus-visible::after {
  transform: rotate(45deg) translate(3px, -3px);
}

.btn-primary {
  color: var(--navy-950);
  border: 1px solid rgba(255, 246, 204, 0.46);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 55%, #b87e19);
  box-shadow: 0 20px 46px rgba(216, 166, 55, 0.3), 0 4px 18px rgba(6, 19, 35, 0.18);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 24px 54px rgba(216, 166, 55, 0.38), 0 8px 24px rgba(6, 19, 35, 0.22);
}

.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(242, 216, 146, 0.52);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 16px 34px rgba(0, 0, 0, 0.16);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(242, 216, 146, 0.84);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 20px 42px rgba(0, 0, 0, 0.2);
}

.proof-row {
  margin-top: 24px;
}

.proof-row span {
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(242, 216, 146, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-panel {
  display: none;
}

.hero-card {
  width: min(360px, 100%);
  padding: 24px;
  border: 1px solid rgba(242, 216, 146, 0.28);
  border-radius: var(--radius);
  background: rgba(6, 19, 35, 0.76);
  box-shadow: var(--shadow);
}

.hero-card .crest {
  width: 104px;
  height: 104px;
  margin-bottom: 22px;
  object-fit: cover;
  border: 1px solid rgba(242, 216, 146, 0.34);
  border-radius: 50%;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}

.hero-card-label {
  margin: 0;
  color: var(--gold-soft);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-date {
  margin: 8px 0 22px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 2.25rem;
  font-weight: 650;
  line-height: 1;
}

.hero-stats {
  display: grid;
  gap: 10px;
  margin: 0;
}

.hero-stats div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stats dt {
  color: rgba(255, 255, 255, 0.58);
}

.hero-stats dd {
  margin: 0;
  color: var(--white);
  font-weight: 800;
}

.section-band {
  background: var(--ivory);
}

section:not(.hero) {
  padding: clamp(44px, 6vw, 70px) 0;
  content-visibility: auto;
  contain-intrinsic-size: 720px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.section-heading.align-left {
  margin-inline: 0;
  text-align: left;
}

.section-heading p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.48;
}

.benefit-grid {
  display: grid;
  gap: 14px;
}

.feature-card,
.course-card,
.proof-items div,
.lead-form,
.lead-action-card,
.payment-card,
.testimonial-card,
.address-card,
.mini-quote {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 44px rgba(20, 32, 51, 0.07);
}

.feature-card {
  padding: 18px;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  color: var(--navy-950);
  border: 1px solid rgba(216, 166, 55, 0.44);
  border-radius: 50%;
  background: #fff7df;
  font-weight: 900;
}

.feature-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.courses {
  padding-top: clamp(46px, 6vw, 68px);
  background:
    linear-gradient(180deg, var(--paper), #ffffff);
}

.courses-grid {
  display: grid;
  gap: 30px;
}

.courses .section-heading.align-left {
  max-width: 780px;
}

.course-list {
  display: grid;
  gap: 12px;
}

.course-option {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.course-option:hover,
.course-option:has(input:checked) {
  border-color: rgba(11, 111, 115, 0.52);
  box-shadow: 0 18px 40px rgba(11, 111, 115, 0.12);
  transform: translateY(-1px);
}

.course-option input {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  accent-color: var(--teal);
}

.course-option strong,
.course-option small {
  display: block;
}

.course-option strong {
  color: var(--navy-950);
  font-size: 1.02rem;
}

.course-option small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.92rem;
}

.course-card-grid {
  display: grid;
  gap: 16px;
}

.course-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.course-card figure {
  margin: 0;
  overflow: hidden;
  background: var(--navy-950);
}

.course-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 420ms ease;
}

.course-card div {
  padding: 16px;
}

.course-card h3 {
  color: var(--navy-950);
  font-size: 1.08rem;
}

.course-card p {
  margin: 8px 0 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.course-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  color: var(--navy-950);
  border: 0;
  background: transparent;
  cursor: pointer;
  font-weight: 900;
}

.course-link span {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: var(--teal-dark);
  border: 1px solid rgba(216, 166, 55, 0.32);
  border-radius: 50%;
  background: rgba(216, 166, 55, 0.1);
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.course-card:hover,
.course-card:focus-within {
  border-color: rgba(216, 166, 55, 0.52);
  box-shadow: 0 22px 52px rgba(6, 19, 35, 0.13);
  transform: translateY(-3px);
}

.course-card:hover .course-link span,
.course-card:focus-within .course-link span,
.course-link:hover span,
.course-link:focus-visible span {
  color: var(--navy-950);
  border-color: rgba(216, 166, 55, 0.78);
  background: var(--gold-soft);
  transform: translateX(3px);
}

.course-card:hover img,
.course-card:focus-within img {
  transform: scale(1.045);
}

.course-support {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

.certificate {
  background:
    radial-gradient(circle at 12% 12%, rgba(216, 166, 55, 0.14), transparent 28%),
    linear-gradient(180deg, #ffffff, var(--paper));
}

.certificate-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.certificate-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(216, 166, 55, 0.3);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.certificate-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.certificate-copy .section-heading {
  margin-bottom: 0;
}

.certificate-copy .eyebrow {
  margin-bottom: 10px;
}

.certificate-copy h2 {
  max-width: 580px;
  font-size: clamp(1.95rem, 2.75vw, 2.75rem);
  line-height: 1.02;
}

.certificate-copy h2 span {
  display: block;
}

.certificate-copy .section-heading p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

.certificate-features {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.certificate-features span {
  padding: 10px 13px;
  color: var(--navy-950);
  border: 1px solid rgba(216, 166, 55, 0.26);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.74);
  font-weight: 850;
}

.certificate-disclaimer {
  margin: 12px 0 0;
  padding-left: 14px;
  color: var(--muted);
  border-left: 3px solid var(--gold);
  font-size: 0.88rem;
}

.process-layout,
.proof-grid,
.faq-layout,
.certificate-grid,
.authority-grid,
.payment-authority-grid {
  display: grid;
  gap: 32px;
}

.process {
  padding-top: clamp(44px, 6vw, 62px) !important;
  padding-bottom: clamp(38px, 5vw, 52px) !important;
}

.process-layout > * {
  min-width: 0;
}

.process-media {
  position: relative;
}

.process-media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.process-copy .section-heading {
  margin-bottom: 0;
}

.process-copy h2 {
  max-width: 560px;
  font-size: clamp(1.95rem, 2.8vw, 2.8rem);
  line-height: 1;
}

.process-copy .section-heading p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

.trust-strip {
  display: grid;
  gap: 1px;
  margin-top: 8px;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(216, 166, 55, 0.28);
}

.trust-strip span {
  padding: 10px 12px;
  color: var(--navy-950);
  background: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 850;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  position: relative;
  min-height: 124px;
  padding: 15px 14px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.64);
  counter-increment: steps;
}

.steps li::before {
  position: relative;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-bottom: 10px;
  content: counter(steps);
  color: var(--white);
  border-radius: 50%;
  background: var(--teal);
  font-weight: 900;
}

.steps strong,
.steps span {
  display: block;
}

.steps span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.42;
}

.proof {
  background:
    radial-gradient(circle at 78% 18%, rgba(216, 166, 55, 0.16), transparent 26%),
    linear-gradient(135deg, rgba(6, 19, 35, 0.98), rgba(13, 34, 57, 0.96));
  color: var(--white);
}

.proof h2 {
  color: var(--white);
}

.proof .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
}

.proof-items {
  display: grid;
  gap: 12px;
}

.proof-items div {
  padding: 20px;
  color: var(--white);
  border-color: rgba(242, 216, 146, 0.22);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.proof-items strong,
.proof-items span {
  display: block;
}

.proof-items span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.68);
}

.authority {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(6, 19, 35, 0.98), rgba(13, 34, 57, 0.96));
}

.authority-copy {
  align-self: center;
}

.authority-facts {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin-top: 20px;
}

.authority-media {
  display: grid;
  gap: 10px;
}

.authority-photo,
.payment-authority-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(242, 216, 146, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.authority-photo img,
.payment-authority-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.authority-photo-large img {
  object-position: center 48%;
}

.authority-photo-small img {
  object-position: center 42%;
}

.authority-photo figcaption,
.payment-authority-media figcaption {
  padding: 9px 11px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.student-voices {
  background:
    linear-gradient(180deg, var(--ivory), #ffffff);
}

.testimonial-carousel {
  display: flex;
  gap: 14px;
  margin-inline: calc((100vw - var(--container)) / -2);
  padding: 4px max(20px, calc((100vw - var(--container)) / 2)) 12px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-padding-inline: max(20px, calc((100vw - var(--container)) / 2));
  scroll-snap-type: x mandatory;
  cursor: grab;
  scrollbar-width: none;
}

.testimonial-carousel::-webkit-scrollbar {
  display: none;
}

.testimonial-carousel.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}

.testimonial-card {
  flex: 0 0 min(86vw, 380px);
  display: grid;
  gap: 18px;
  align-content: start;
  min-height: 320px;
  padding: clamp(18px, 2.4vw, 24px);
  background: rgba(255, 255, 255, 0.84);
  scroll-snap-align: start;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.testimonial-card:hover,
.testimonial-card:focus-within {
  border-color: rgba(216, 166, 55, 0.42);
  box-shadow: 0 24px 54px rgba(20, 32, 51, 0.1);
  transform: translateY(-2px);
}

.testimonial-card blockquote,
.mini-quote {
  margin: 0;
}

.testimonial-card blockquote {
  color: var(--navy-950);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.04rem;
  line-height: 1.35;
}

.testimonial-person {
  display: grid;
  gap: 4px;
  padding-top: 14px;
  border-top: 1px solid rgba(20, 32, 51, 0.11);
}

.testimonial-person strong,
.testimonial-person span {
  display: block;
}

.testimonial-person span {
  color: var(--muted);
  font-size: 0.9rem;
}

.testimonial-full {
  max-height: 210px;
  overflow: auto;
  background: rgba(248, 244, 234, 0.78);
  scrollbar-width: thin;
  scrollbar-color: rgba(216, 166, 55, 0.75) rgba(6, 19, 35, 0.08);
}

.testimonial-full summary {
  padding: 14px 16px;
  color: var(--teal-dark);
  font-size: 0.9rem;
}

.testimonial-full p {
  padding: 0 16px 16px;
  color: var(--muted);
  font-size: 0.94rem;
}

.testimonial-full p + p {
  padding-top: 0;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}

.testimonial-arrow {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--navy-950);
  border: 1px solid rgba(216, 166, 55, 0.42);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 30px rgba(20, 32, 51, 0.08);
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.testimonial-arrow:hover,
.testimonial-arrow:focus-visible {
  border-color: rgba(216, 166, 55, 0.72);
  background: #fff7df;
  transform: translateY(-2px);
}

.testimonial-arrow:disabled {
  cursor: default;
  opacity: 0.42;
  transform: none;
}

.testimonial-note {
  max-width: 820px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.address-grid {
  display: grid;
  gap: 10px;
}

.address-card {
  padding: 16px;
  color: var(--ink);
  font-style: normal;
  line-height: 1.45;
}

.address-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.address-grid-dark {
  width: min(560px, 100%);
  margin-top: 16px;
}

.address-grid-dark .address-card {
  color: rgba(255, 255, 255, 0.82);
  border-color: rgba(242, 216, 146, 0.22);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.address-grid-dark .address-card span {
  color: var(--gold-soft);
}

section.mid-cta {
  padding: 0;
}

.mid-cta {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 16%, rgba(216, 166, 55, 0.22), transparent 28%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800) 58%, #08272b);
}

.mid-cta::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(rgba(242, 216, 146, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 216, 146, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
}

.mid-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
  align-items: center;
  padding-block: clamp(32px, 5vw, 50px);
}

.mid-cta h2 {
  max-width: 760px;
  color: var(--white);
  font-size: clamp(1.8rem, 3.6vw, 3.2rem);
}

.mid-cta p:not(.eyebrow) {
  max-width: 700px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.04rem;
}

.mid-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.faq-list {
  display: grid;
  gap: 8px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

summary {
  cursor: pointer;
  padding: 14px 16px;
  color: var(--navy-950);
  font-size: 0.95rem;
  font-weight: 850;
}

details p {
  margin: 0;
  padding: 0 16px 16px;
  color: var(--muted);
  font-size: 0.93rem;
}

.lead-section {
  color: var(--white);
  background:
    radial-gradient(circle at 90% 16%, rgba(216, 166, 55, 0.18), transparent 26%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.lead-section h2,
.lead-section h3 {
  color: var(--white);
}

.lead-section .lead-action-card h3 {
  color: var(--navy-950);
}

.lead-copy p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.lead-points {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 26px 0;
  color: rgba(255, 255, 255, 0.82);
  list-style: none;
}

.lead-points li {
  position: relative;
  padding-left: 24px;
}

.lead-points li::before {
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 50%;
  background: var(--gold);
}

.contact-card {
  display: grid;
  gap: 8px;
  width: min(360px, 100%);
  padding: 18px;
  border: 1px solid rgba(242, 216, 146, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.contact-card span {
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card a {
  color: var(--white);
  font-weight: 850;
}

.lead-form {
  padding: clamp(20px, 4vw, 30px);
  color: var(--ink);
  background: var(--paper);
}

.lead-action-card {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: clamp(22px, 4vw, 34px);
  color: var(--ink);
  background: var(--paper);
}

.lead-action-card h3 {
  color: var(--navy-950);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.03;
}

.lead-action-card p {
  margin: 0;
  color: var(--muted);
}

.lead-card-label {
  margin: 0;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pay-link {
  color: var(--teal-dark);
  font-size: 0.92rem;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 15px;
}

.form-row label {
  color: var(--navy-950);
  font-size: 0.9rem;
  font-weight: 850;
}

.form-row input,
.form-row select {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--ink);
  border: 1px solid rgba(20, 32, 51, 0.18);
  border-radius: 6px;
  background: #fffefa;
  outline: none;
}

.form-row input:focus,
.form-row select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(11, 111, 115, 0.12);
}

.hidden-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.form-submit[disabled] {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-note,
.form-status {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.form-status {
  min-height: 1.2em;
  color: var(--teal-dark);
  font-weight: 800;
}

.form-status.is-error {
  color: #9d2b2b;
}

.site-footer {
  padding: clamp(34px, 5vw, 56px) 0 26px;
  color: rgba(255, 255, 255, 0.7);
  background:
    radial-gradient(circle at 8% 20%, rgba(216, 166, 55, 0.1), transparent 28%),
    var(--navy-950);
}

.footer-grid {
  display: grid;
  gap: 22px;
  align-items: start;
}

.footer-logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-lockup img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border: 1px solid rgba(242, 216, 146, 0.28);
  border-radius: 50%;
}

.site-footer strong {
  color: var(--white);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}

.site-footer p {
  max-width: 620px;
  margin: 8px 0 0;
}

.footer-addresses {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.84rem;
}

.footer-nav,
.footer-contact {
  display: grid;
  gap: 8px;
}

.footer-nav span,
.footer-contact span {
  color: rgba(242, 216, 146, 0.78);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-footer a,
.footer-action {
  color: var(--gold-soft);
  border: 0;
  background: transparent;
  cursor: pointer;
  font-weight: 850;
}

.site-footer a:hover,
.site-footer a:focus-visible,
.footer-action:hover,
.footer-action:focus-visible {
  color: var(--white);
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  border: 1px solid rgba(242, 216, 146, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.social-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.social-icon:hover,
.social-icon:focus-visible {
  color: var(--white);
  border-color: rgba(242, 216, 146, 0.72);
  transform: translateY(-2px);
}

.whatsapp-icon-link {
  background: linear-gradient(135deg, #128c7e, #075e54);
}

.facebook-link {
  color: var(--navy-950);
  background: var(--gold-soft);
  font-family: Georgia, serif;
  font-size: 1.12rem;
}

.footer-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  justify-self: start;
  min-height: 44px;
  padding: 12px 16px;
  color: var(--navy-950);
  border: 1px solid rgba(255, 246, 204, 0.34);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 58%, #bd851d);
  box-shadow: 0 14px 34px rgba(216, 166, 55, 0.18);
}

.footer-action:hover,
.footer-action:focus-visible {
  color: var(--navy-950);
  background: linear-gradient(135deg, #fff1af, var(--gold) 60%, #c98d22);
  box-shadow: 0 18px 42px rgba(216, 166, 55, 0.26);
}

.mobile-cta-bar {
  display: none;
  border: 0;
  cursor: pointer;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 18px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 19, 35, 0.82);
  backdrop-filter: blur(10px);
}

.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(540px, 100%);
  max-height: min(88vh, 820px);
  overflow: auto;
  border: 1px solid rgba(216, 166, 55, 0.34);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 84% 8%, rgba(216, 166, 55, 0.14), transparent 32%),
    var(--paper);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
}

.modal-close {
  position: sticky;
  top: 14px;
  float: right;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin: 14px 14px 0 0;
  color: var(--navy-950);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  font-size: 1.45rem;
  line-height: 1;
}

.modal-heading {
  padding: 28px 30px 0;
}

.modal-heading h2 {
  font-size: clamp(2rem, 6vw, 3.2rem);
}

.modal-heading p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--muted);
}

.modal .lead-form {
  border: 0;
  background: transparent;
  box-shadow: none;
}

body.modal-open {
  overflow: hidden;
}

.payment-hero {
  color: var(--white);
  background:
    radial-gradient(circle at 84% 14%, rgba(216, 166, 55, 0.18), transparent 30%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800) 62%, #09252b);
}

.payment-grid,
.payment-details-grid {
  display: grid;
  gap: 32px;
}

.payment-copy {
  padding-top: clamp(42px, 6vw, 80px);
}

.payment-card {
  align-self: center;
  padding: clamp(24px, 4vw, 34px);
  color: var(--white);
  border-color: rgba(242, 216, 146, 0.24);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.payment-card img {
  width: 112px;
  height: 112px;
  margin-bottom: 22px;
  border: 1px solid rgba(242, 216, 146, 0.34);
  border-radius: 50%;
  object-fit: cover;
}

.payment-card h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.payment-card dl {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
}

.payment-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.payment-card dt {
  color: rgba(255, 255, 255, 0.62);
}

.payment-card dd {
  margin: 0;
  color: var(--white);
  font-weight: 850;
}

.payment-proof div {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.75);
}

.payment-proof span {
  color: var(--muted);
}

.payment-authority {
  color: var(--white);
  background:
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.payment-authority h2 {
  color: var(--white);
}

.payment-authority-copy {
  display: grid;
  gap: 18px;
  align-content: start;
}

.payment-authority-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.mini-testimonials {
  display: grid;
  gap: 10px;
}

.mini-quote {
  padding: 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.94rem;
}

.mini-quote span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.payment-addresses .address-card {
  color: rgba(255, 255, 255, 0.82);
  border-color: rgba(242, 216, 146, 0.22);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.payment-addresses .address-card span {
  color: var(--gold-soft);
}

:focus-visible {
  outline: 3px solid rgba(216, 166, 55, 0.72);
  outline-offset: 3px;
}

@media (min-width: 720px) {
  .nav,
  .header-cta {
    display: inline-flex;
  }

  .hero-bg::before {
    background-image: image-set(
      url("assets/hero-online-cohort-1080.webp") type("image/webp"),
      url("assets/hero-online-cohort-1080.jpg") type("image/jpeg")
    );
  }

  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .course-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .certificate-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-card {
    flex-basis: min(46vw, 410px);
  }

  .address-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .mid-cta-inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .mid-cta-actions {
    justify-content: flex-end;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr) minmax(150px, auto);
  }
}

@media (min-width: 980px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: center;
  }

  .hero-panel {
    display: block;
  }

  .benefit-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .certificate-grid,
  .proof-grid,
  .authority-grid,
  .payment-authority-grid,
  .payment-grid,
  .payment-details-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: start;
  }

  .process-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
  }

  .process-layout .steps {
    grid-column: 1 / -1;
  }

  .authority-grid {
    align-items: center;
  }

  .authority-copy h2 {
    font-size: clamp(2rem, 2.7vw, 2.85rem);
  }

  .authority-media {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-card {
    flex-basis: min(34vw, 420px);
  }

  .certificate-grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    align-items: center;
  }

  .certificate-media {
    order: 2;
  }

  .certificate-copy {
    order: 1;
  }

  .faq-layout {
    max-width: 980px;
  }

  .payment-grid {
    align-items: center;
    min-height: calc(100svh - 77px);
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(120px, 0.32fr) minmax(130px, 0.34fr) minmax(150px, 0.42fr) auto;
  }
}

@media (min-width: 1200px) {
  .hero-bg::before {
    background-image: image-set(
      url("assets/hero-online-cohort.webp") type("image/webp"),
      url("assets/hero-online-cohort.jpg") type("image/jpeg")
    );
  }
}

@media (max-width: 719px) {
  body {
    padding-bottom: 76px;
  }

  .site-header {
    padding: 12px 16px;
  }

  .header-cta {
    display: inline-flex;
    padding: 9px 10px;
    font-size: 0.72rem;
    white-space: nowrap;
  }

  [id] {
    scroll-margin-top: 78px;
  }

  .brand small {
    display: none;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .hero-bg {
    background: var(--navy-950);
  }

  .hero-bg::before {
    background: image-set(
      url("assets/hero-online-cohort-720.webp") type("image/webp"),
      url("assets/hero-online-cohort-720.jpg") type("image/jpeg")
    ) center top / cover no-repeat;
  }

  .hero-bg::after {
    background:
      linear-gradient(180deg, rgba(6, 19, 35, 0.68) 0%, rgba(6, 19, 35, 0.8) 46%, rgba(6, 19, 35, 0.92) 100%),
      linear-gradient(90deg, rgba(7, 23, 43, 0.86) 0%, rgba(7, 23, 43, 0.5) 52%, rgba(7, 23, 43, 0.72) 100%);
  }

  .hero-grid {
    min-height: auto;
    padding-top: 52px;
    padding-bottom: 56px;
  }

  h1 {
    font-size: clamp(1.9rem, 8.7vw, 2.18rem);
  }

  .hero-lede {
    max-width: 34ch;
    margin-top: 18px;
  }

  .btn {
    width: 100%;
  }

  .course-card div {
    padding: 18px;
  }

  .course-card:hover,
  .course-card:focus-within {
    transform: none;
  }

  .certificate-copy h2,
  .process-copy h2 {
    font-size: clamp(2rem, 10vw, 2.45rem);
  }

  .steps {
    display: flex;
    gap: 10px;
    padding-bottom: 8px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
  }

  .steps li {
    flex: 0 0 min(82vw, 300px);
    min-height: 148px;
    scroll-snap-align: start;
  }

  .authority-media {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .authority-copy h2 {
    font-size: clamp(2rem, 9vw, 2.45rem);
  }

  .authority-facts div {
    padding: 14px;
  }

  .authority-facts span {
    display: none;
  }

  .authority-photo img {
    aspect-ratio: 1;
  }

  .authority-photo figcaption {
    display: none;
  }

  .testimonial-card {
    flex-basis: calc(100vw - 40px);
    min-height: 320px;
  }

  .mid-cta-actions {
    display: grid;
  }

  .footer-action {
    display: none;
  }

  .proof-row {
    gap: 8px;
  }

  .proof-row span {
    font-size: 0.78rem;
  }

  .mobile-cta-bar {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 40;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    color: var(--navy-950);
    border: 1px solid rgba(255, 246, 204, 0.44);
    border-radius: 8px;
    background: linear-gradient(135deg, var(--gold-soft), var(--gold) 56%, #b87e19);
    box-shadow: 0 18px 42px rgba(6, 19, 35, 0.34), 0 16px 38px rgba(216, 166, 55, 0.24);
    font-weight: 900;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
