/* ============================================================
   GovTech Academy — govtechcareer.com
   Landing page styles
   ============================================================ */

@font-face {
  font-family: "SwitzerSemi";
  src: url("/assets/Switzer-Semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --red: #ed3a27;
  --red-bright: #ff5745;
  --navy: #083d6b;
  --navy-mid: #0d3f6c;
  --navy-badge: #0d4a7f;
  --ink: #111;
  --body: #3d3d3d;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: Inter, Poppins, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }

/* ---------- Shared CTA pill ---------- */
.cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  background: var(--red);
  color: #fff;
  border-radius: 999px;
  padding: 10px 10px 10px 18px;
  font-family: "Plus Jakarta Sans", Inter, Poppins, Arial, sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  box-shadow: 0 8px 20px rgba(237, 58, 39, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.cta-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(237, 58, 39, 0.22);
}

.cta-pill .cta-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 34px;
}

.cta-pill .cta-icon svg {
  width: 16px;
  height: 16px;
  fill: var(--red);
}

/* ---------- Shared trust row ---------- */
.trust-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-avatars { display: flex; align-items: center; }

.trust-avatars img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  margin-left: -8px;
  background: #fff;
}

.trust-avatars img:first-child { margin-left: 0; }
.trust-avatars img.avatar-first { object-position: 44.6% 46.4%; }

.trust-text {
  color: rgba(0, 0, 0, 0.72);
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.trust-text span { color: var(--red); font-weight: 600; }

.section-bottom {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

/* ---------- Shared underlined title ---------- */
.title-underline-wrap { position: relative; display: inline-block; max-width: 100%; }

.title-underline {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -8px;
  width: 360px;
  max-width: 70%;
  height: 18px;
  pointer-events: none;
}

.title-underline img { width: 100%; height: 100%; object-fit: contain; display: block; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: #f4f7fb;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -120px 0 0 0;
  z-index: 1;
  pointer-events: none;
  width: 100%;
  height: 113vh;
  background: url("/assets/hero-bg.png") center top / cover no-repeat;
  -webkit-mask-image: linear-gradient(1deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
  mask-image: linear-gradient(1deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.28);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 16px 40px;
  text-align: center;
}

.hero-logo img { width: 215px; max-width: 92%; margin: 0 auto; display: inline-block; }

.hero-badge { margin: 18px 0 14px; }

.hero-badge span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--navy-badge);
  color: #fff;
  font-family: Poppins, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  border-radius: 999px;
  padding: 10px 18px;
  box-shadow: 0 8px 20px rgba(13, 74, 127, 0.16);
}

.hero-badge span::before {
  content: "";
  display: inline-block;
  width: 27px;
  height: 27px;
  background: url("/assets/badge-icon.png") center / contain no-repeat;
}

.hero h1 {
  max-width: 960px;
  margin: 0 auto;
  font-family: "SwitzerSemi", Poppins, Helvetica, sans-serif;
  font-size: 50px;
  line-height: 1.12;
  letter-spacing: -1.2px;
  color: var(--navy);
  font-weight: 600;
}

.hero h1 b { color: #f4462f; font-weight: 600; }

.hero-guarantee {
  margin-top: 10px;
  font-family: Poppins, Helvetica, sans-serif;
  color: var(--navy-mid);
  font-size: 28px;
  line-height: 1.2;
  font-weight: 600;
}

.hero-support {
  margin: 12px auto 0;
  font-family: Poppins, Helvetica, sans-serif;
  color: #355d84;
  font-size: 16px;
  line-height: 1.45;
  max-width: 760px;
}

/* VSL frame */
.vsl-frame {
  width: 100%;
  max-width: 938px;
  margin: 22px auto 0;
  padding: 18px;
  background: rgba(255, 255, 255, 0.58);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 28px rgba(7, 30, 55, 0.04);
}

.vsl-inner {
  background: #f4e7de;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  padding: 16px;
}

#vidalytics_embed_ceMxKifXyDeSXOqR {
  width: 100%;
  position: relative;
  padding-top: 56.25%;
  border-radius: 10px;
  overflow: hidden;
}

/* ============================================================
   COMPANIES MARQUEE
   ============================================================ */
.companies {
  background: #f4f7fb;
  padding: 40px 0 24px;
}

.companies-title {
  margin: 0 0 18px;
  text-align: center;
  font-family: Poppins, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: rgb(0, 60, 99);
}

.companies-marquee {
  position: relative;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  overflow: hidden;
  padding: 8px 0;
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 14%, rgba(0,0,0,1) 86%, rgba(0,0,0,0) 100%);
  mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 14%, rgba(0,0,0,1) 86%, rgba(0,0,0,0) 100%);
}

.companies-track {
  display: flex;
  align-items: center;
  gap: 78px;
  width: max-content;
  animation: marquee 20s linear infinite;
}

.companies-marquee:hover .companies-track { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

.company-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  opacity: 0.9;
  filter: saturate(0.95);
}

.company-logo img { width: auto; height: 40px; object-fit: contain; }
.company-logo.lockheed img { height: 34px; }

/* ============================================================
   APPLY CARD (Typeform)
   ============================================================ */
.apply { padding: 18px 12px 28px; background: #f4f7fb; }

.apply-card {
  max-width: 1560px;
  margin: 0 auto;
  background-color: var(--red-bright);
  border-radius: 25px;
  box-shadow: rgba(247, 247, 247, 0.72) 0 1px 13px 1px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 28px 28px;
  overflow: hidden;
}

.apply-title {
  text-align: center;
  font-family: Poppins, Helvetica, sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 32px;
  line-height: 1.12;
  letter-spacing: -0.6px;
}

.apply-inner {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
}

.apply-inner iframe {
  display: block;
  width: 100%;
  height: 720px;
  border: 0;
  background: #fff;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: #f3f4f6; }

.t-wrap { max-width: 1220px; margin: 0 auto; padding: 60px 16px 44px; }

.t-head { text-align: center; max-width: 860px; margin: 0 auto 28px; }

.badge-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(237, 58, 39, 0.35);
  color: var(--red);
  background: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.t-title {
  font-size: 54px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.t-title .accent, .accent { color: var(--red); }

.t-sub {
  margin: 14px auto 0;
  max-width: 760px;
  color: var(--body);
  font-size: 18px;
  line-height: 1.7;
}

.t-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

/* center a lone last card when the grid has an odd count */
.t-grid > .t-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  width: calc(50% - 9px);
  margin: 0 auto;
}

@media (max-width: 767px) {
  .t-grid > .t-card:last-child:nth-child(odd) {
    grid-column: auto;
    width: 100%;
  }
}

.t-card {
  background: #1175bd;
  border: 1px solid rgba(237, 58, 39, 0.9);
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 2px 0 rgba(255, 255, 255, 0.15) inset;
}

.t-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: #0f1720;
  cursor: pointer;
}

.t-video img.t-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.t-card:hover .t-thumb { transform: scale(1.02); }

.t-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: none;
  background: #000;
}

.t-video.is-playing iframe { display: block; }
.t-video.is-playing .t-thumb,
.t-video.is-playing .t-play { display: none; }

.t-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 50px;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  z-index: 2;
}

.t-play svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.25));
}

.t-card-title {
  margin: 12px 8px 6px;
  color: #fff;
  font-family: "Albert Sans", Inter, Poppins, Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
}

/* ============================================================
   NOT FOR EVERYONE
   ============================================================ */
.not-everyone {
  position: relative;
  overflow: hidden;
  background: #f4f4f5;
}

.ne-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.75;
}

.ne-bg img { width: 100%; height: 100%; object-fit: cover; }

.ne-wrap {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 54px 16px 44px;
}

.ne-head { text-align: center; margin-bottom: 26px; }

.ne-title {
  font-family: Inter, Poppins, Arial, sans-serif;
  font-size: 52px;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.ne-sub {
  margin-top: 18px;
  color: var(--body);
  font-size: 18px;
  line-height: 1.7;
}

.ne-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
  margin-top: 24px;
}

.ne-card {
  position: relative;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 22px;
  padding: 42px 20px 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06), inset 0 0 0 1px rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.ne-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  pointer-events: none;
}

.ne-ribbon {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 260px;
  height: 46px;
  z-index: 2;
}

.ne-ribbon img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; }

.ne-list {
  list-style: none;
  display: grid;
  gap: 16px;
}

.ne-item {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  color: #191919;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.02em;
}

.ne-item svg { width: 20px; height: 20px; margin-top: 2px; }

/* ============================================================
   WHY GOVTECH ACADEMY
   ============================================================ */
.why { background: #fdfdfe; overflow: hidden; }

.why-wrap { max-width: 1180px; margin: 0 auto; padding: 56px 18px 40px; }

.why-head { text-align: center; margin-bottom: 30px; }

.why-title {
  font-family: Inter, Arial, sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #000;
}

.why-sub { margin-top: 18px; color: var(--body); font-size: 18px; line-height: 1.7; }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 28px;
  align-items: start;
  margin-top: 22px;
}

.why-divider {
  width: 1px;
  align-self: stretch;
  min-height: 510px;
  background-image: linear-gradient(to bottom, rgba(237, 58, 39, 0.35) 33%, rgba(237, 58, 39, 0) 0%);
  background-size: 1px 10px;
  background-repeat: repeat-y;
  opacity: 0.75;
}

.why-col { display: grid; gap: 22px; }

.why-card { padding: 0 4px; }

.why-badge { width: 290px; max-width: 100%; display: block; margin-bottom: 10px; }

.why-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 8px; }

.why-iconimg { width: 27px; height: 27px; object-fit: contain; flex: 0 0 24px; margin-top: 2px; }

.why-card h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.why-card p {
  color: #171717;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: -0.02em;
  max-width: 95%;
}

/* ============================================================
   INSTRUCTOR
   ============================================================ */
.instructor { background: #f4f4f5; overflow: hidden; }

.inst-wrap { max-width: 1320px; margin: 0 auto; padding: 72px 18px; }

.inst-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
  gap: 54px;
  align-items: center;
}

.inst-content { max-width: 760px; }

.inst-title-wrap { position: relative; display: inline-block; margin-bottom: 20px; }

.inst-title {
  font-family: "Albert Sans", Inter, Arial, sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.045em;
  color: var(--ink);
}

.inst-underline {
  position: absolute;
  left: 63%;
  transform: translateX(-50%);
  bottom: -10px;
  width: 310px;
  max-width: 90%;
  height: 16px;
  pointer-events: none;
}

.inst-underline img { width: 100%; height: 100%; object-fit: contain; }

.inst-subtitle {
  margin: 0 0 26px;
  color: #202020;
  font-family: "Albert Sans", Inter, Arial, sans-serif;
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.inst-copy {
  color: #1f1f1f;
  font-family: "Albert Sans", Inter, Arial, sans-serif;
  font-size: 19px;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.inst-copy p { margin-bottom: 18px; }
.inst-copy p:last-child { margin-bottom: 0; }

.inst-media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 520px;
}

.inst-media img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.inst-media::after {
  content: "";
  position: absolute;
  left: -3%;
  right: -3%;
  bottom: -2px;
  height: 26%;
  background: radial-gradient(120% 95% at 50% 100%, rgba(244,244,245,1) 20%, rgba(244,244,245,0.94) 45%, rgba(244,244,245,0.78) 62%, rgba(244,244,245,0) 100%);
  pointer-events: none;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: #fff; }

.faq-wrap { max-width: 1100px; margin: 0 auto; padding: 50px 24px 64px; }

.faq-headline {
  margin-bottom: 10px;
  font-family: "Albert Sans", Inter, Arial, sans-serif;
  font-size: 50px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #111827;
}

.faq-sub {
  margin-bottom: 34px;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(17, 24, 39, 0.75);
}

.faq-list { border-top: 1px solid rgba(17, 24, 39, 0.12); }

.faq-item { border-bottom: 1px solid rgba(17, 24, 39, 0.12); }

.faq-qrow {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 6px;
  cursor: pointer;
  user-select: none;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

.faq-badge {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 34px;
  box-shadow: 0 8px 16px rgba(237, 58, 39, 0.18);
  font-weight: 800;
  font-size: 16px;
  color: #fff;
}

.faq-q {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #0f172a;
}

.faq-caret {
  margin-left: auto;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(15, 23, 42, 0.55);
  transition: transform 0.2s ease, background 0.2s ease;
  flex: 0 0 34px;
}

.faq-item[data-open="1"] .faq-caret {
  transform: rotate(180deg);
  background: rgba(15, 23, 42, 0.06);
}

.faq-ans {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.28s ease;
}

.faq-ans-inner { display: flex; gap: 14px; padding: 0 6px 20px 56px; }

.faq-a { font-weight: 800; color: var(--red); flex: 0 0 auto; }

.faq-a-text { font-size: 16.5px; line-height: 1.6; color: rgba(17, 24, 39, 0.78); }

.faq-foot { margin-top: 22px; font-size: 16px; color: rgba(17, 24, 39, 0.65); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #07253f;
  color: rgba(255, 255, 255, 0.85);
  padding: 44px 18px 36px;
  text-align: center;
}

.footer-logo img { width: 190px; margin: 0 auto 18px; display: inline-block; }

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 8px 0 18px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
}

.footer-links a:hover { text-decoration: underline; }

.footer-copy { font-size: 14px; margin-bottom: 16px; }

.footer-disclaimer {
  max-width: 820px;
  margin: 0 auto;
  font-size: 12.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
}

.footer-disclaimer p { margin-bottom: 8px; }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-header { background: #f4f7fb; padding: 26px 18px; text-align: center; }
.legal-header img { width: 190px; }

.legal-wrap { max-width: 860px; margin: 0 auto; padding: 40px 20px 70px; }

.legal-wrap h1 {
  font-family: "SwitzerSemi", Poppins, Helvetica, sans-serif;
  color: var(--navy);
  font-size: 38px;
  margin-bottom: 6px;
}

.legal-updated { color: #667; font-size: 14px; margin-bottom: 28px; }

.legal-wrap h2 {
  font-size: 20px;
  margin: 28px 0 10px;
  color: var(--ink);
}

.legal-wrap p, .legal-wrap li {
  font-size: 15.5px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 12px;
}

.legal-wrap ul { padding-left: 22px; margin-bottom: 12px; }

.legal-wrap a { color: var(--navy-badge); word-break: break-word; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .t-title { font-size: 44px; }
  .t-card-title { font-size: 18px; }
  .ne-title { font-size: 42px; }
  .inst-grid { gap: 34px; }
  .inst-title { font-size: 44px; }
  .why-title { font-size: 36px; }
}

@media (max-width: 991px) {
  .hero h1 { font-size: 48px; line-height: 1.05; letter-spacing: -0.8px; }
  .hero-guarantee { font-size: 24px; }
  .hero-support { font-size: 15px; }
  .vsl-frame { max-width: 94%; padding: 12px; border-radius: 18px; }
  .companies-track { gap: 54px; }
  .apply-inner iframe { height: 640px; }
}

@media (max-width: 767px) {
  .hero-logo img { width: 165px; }
  .hero-badge span { font-size: 12px; padding: 8px 12px; gap: 6px; }
  .hero-badge span::before { width: 14px; height: 14px; }
  .hero h1 { font-size: 30px; line-height: 1.08; letter-spacing: -0.4px; }
  .hero-guarantee { font-size: 19px; line-height: 1.24; }
  .hero-support { font-size: 13px; line-height: 1.42; max-width: 94%; }
  .vsl-frame { margin-top: 16px; padding: 8px; border-radius: 14px; }
  .vsl-inner { padding: 8px; border-radius: 10px; }

  .companies { padding: 24px 0 18px; }
  .companies-title { font-size: 15px; line-height: 1.5; padding: 0 12px; }
  .companies-track { gap: 34px; }
  .company-logo img { height: 30px; }
  .company-logo.lockheed img { height: 18px; }

  .apply { padding: 10px 8px 18px; }
  .apply-card { padding: 14px 12px 12px; border-radius: 16px; gap: 10px; }
  .apply-title { font-size: 20px; line-height: 1.18; letter-spacing: -0.2px; }
  .apply-inner { border-radius: 12px; }
  .apply-inner iframe { height: 560px; }

  .t-wrap { padding: 42px 12px 34px; }
  .t-title { font-size: 30px; line-height: 1.14; }
  .t-sub { font-size: 15px; line-height: 1.55; }
  .t-grid { grid-template-columns: 1fr; gap: 14px; margin-top: 24px; }
  .t-card { border-radius: 14px; padding: 10px; }
  .t-card-title { margin: 10px 6px 4px; font-size: 16px; line-height: 1.3; }
  .cta-pill { font-size: 15px; padding: 10px 10px 10px 14px; gap: 10px; }
  .cta-pill .cta-icon { width: 30px; height: 30px; flex-basis: 30px; }
  .cta-pill .cta-icon svg { width: 14px; height: 14px; }

  .ne-wrap { padding: 42px 12px 34px; }
  .ne-title { font-size: 31px; line-height: 1.15; }
  .ne-sub { font-size: 15px; line-height: 1.55; margin-top: 14px; }
  .ne-grid { grid-template-columns: 1fr; gap: 26px; margin-top: 20px; }
  .ne-card { border-radius: 18px; padding: 38px 14px 14px; }
  .ne-ribbon { min-width: 220px; height: 40px; top: -14px; }
  .ne-item { grid-template-columns: 18px 1fr; gap: 10px; font-size: 14px; line-height: 1.45; }
  .ne-item svg { width: 18px; height: 18px; }

  .why-wrap { padding: 42px 12px 34px; }
  .why-title { font-size: 31px; line-height: 1.15; }
  .why-sub { font-size: 15px; line-height: 1.55; margin-top: 14px; }
  .why-grid { grid-template-columns: 1fr; gap: 14px; margin-top: 16px; }
  .why-divider { display: none; }
  .why-badge { width: 240px; }
  .why-card h3 { font-size: 16px; line-height: 1.35; }
  .why-card p { font-size: 14px; line-height: 1.5; max-width: 100%; }

  .inst-wrap { padding: 40px 14px 34px; }
  .inst-grid { grid-template-columns: 1fr; gap: 20px; align-items: start; }
  .inst-media { min-height: 320px; order: 2; border-radius: 14px; }
  .inst-title { font-size: 34px; }
  .inst-underline { width: 190px; height: 10px; left: 66%; bottom: -5px; }
  .inst-subtitle { font-size: 15px; margin-bottom: 14px; }
  .inst-copy { font-size: 15px; line-height: 1.45; letter-spacing: -0.02em; }

  .faq-wrap { padding: 46px 14px 44px; }
  .faq-headline { font-size: 34px; }
  .faq-sub { font-size: 15.5px; margin-bottom: 22px; }
  .faq-q { font-size: 17px; }
  .faq-ans-inner { padding-left: 46px; }

  .title-underline { width: 220px; height: 12px; bottom: -5px; }
  .legal-wrap h1 { font-size: 30px; }
}

/* ============================================================
   FUNNEL V2 — lead form, training steps, apply + interview pages
   ============================================================ */

/* ---------- Lead capture form (landing hero) ---------- */
.lead-frame {
  width: 100%;
  max-width: 620px;
  margin: 26px auto 0;
  padding: 16px;
  background: rgba(255, 255, 255, 0.58);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 28px rgba(7, 30, 55, 0.06);
}

.lead-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(8, 61, 107, 0.08);
  padding: 28px 26px 24px;
  text-align: center;
}

.lead-title {
  font-family: Poppins, Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.4px;
}

.lead-sub {
  margin: 8px auto 18px;
  color: #355d84;
  font-size: 15px;
  line-height: 1.5;
  max-width: 420px;
}

.lead-fields { display: grid; gap: 14px; text-align: left; }

.lead-field { display: grid; gap: 6px; }

.lead-label {
  font-family: Poppins, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-mid);
}

.lead-label em { font-style: normal; font-weight: 400; color: #7b8ba0; }

.lead-field input {
  width: 100%;
  border: 1px solid rgba(8, 61, 107, 0.18);
  border-radius: 12px;
  padding: 13px 14px;
  font-family: Inter, Poppins, Arial, sans-serif;
  font-size: 16px;
  color: var(--ink);
  background: #f8fafc;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.lead-field input:focus {
  border-color: var(--navy-badge);
  box-shadow: 0 0 0 3px rgba(13, 74, 127, 0.12);
  background: #fff;
}

.lead-error { color: var(--red); font-size: 14px; font-weight: 500; }

.lead-submit {
  border: none;
  cursor: pointer;
  justify-content: center;
  margin-top: 2px;
  font-size: 18px;
  padding: 12px 12px 12px 20px;
}

.lead-privacy { font-size: 12.5px; color: #8a97a6; text-align: center; }

/* ---------- Step badges (training / apply / interview) ---------- */
.step-badge { margin: 18px 0 14px; }

.step-badge span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--navy-badge);
  color: #fff;
  font-family: Poppins, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  border-radius: 999px;
  padding: 11px 20px;
  box-shadow: 0 8px 20px rgba(13, 74, 127, 0.16);
}

.step-badge-red span { background: var(--red); box-shadow: 0 8px 20px rgba(237, 58, 39, 0.2); }

.step-badge-green span { background: #16a34a; box-shadow: 0 8px 20px rgba(22, 163, 74, 0.2); }

.training-h1 { font-size: 44px !important; }

/* ---------- Step 2 gate (training page) ---------- */
.step2 { max-width: 760px; margin: 26px auto 8px; }

.step2-locked {
  background: rgba(255, 255, 255, 0.72);
  border: 1.5px dashed rgba(8, 61, 107, 0.28);
  border-radius: 18px;
  padding: 30px 22px;
  text-align: center;
}

.step2-lock-icon { margin-bottom: 8px; }

.step2-locked-title {
  font-family: Poppins, Helvetica, sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--navy-mid);
}

.step2-locked-sub { margin-top: 6px; font-size: 14.5px; color: #64748b; }

.step2-unlocked {
  background: #fff;
  border: 1px solid rgba(22, 163, 74, 0.35);
  border-radius: 18px;
  padding: 26px 22px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  box-shadow: 0 14px 34px rgba(7, 30, 55, 0.08);
}

.step2-unlocked[hidden] { display: none; }

.step2-unlocked-title {
  font-family: Poppins, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
}

/* ---------- Apply page ---------- */
.funnel-page .hero-inner { padding-bottom: 64px; }

.apply-stage {
  margin: 30px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.apply-stage[hidden] { display: none; }

.apply-start { border: none; cursor: pointer; font-size: 19px; padding: 13px 13px 13px 22px; }

.apply-embed { max-width: 860px; margin: 26px auto 0; }

.apply-embed[hidden] { display: none; }

.apply-embed .apply-inner {
  border: 1px solid rgba(8, 61, 107, 0.1);
  box-shadow: 0 14px 34px rgba(7, 30, 55, 0.08);
}

.apply-embed iframe { display: block; width: 100%; height: 620px; border: 0; background: #fff; }

/* ---------- Interview page ---------- */
.interview-sub { font-size: 24px; }

.calendar-frame {
  width: 100%;
  max-width: 940px;
  margin: 26px auto 0;
  padding: 16px;
  background: rgba(255, 255, 255, 0.58);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 28px rgba(7, 30, 55, 0.05);
}

.calendar-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(8, 61, 107, 0.08);
  padding: 18px;
  min-height: 320px;
}

.calendar-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 300px;
  text-align: center;
  padding: 0 20px;
}

.calendar-placeholder[hidden] { display: none; }

.cal-ph-title {
  font-family: Poppins, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--navy-mid);
}

.cal-ph-sub { font-size: 14.5px; color: #64748b; max-width: 520px; line-height: 1.6; }

.cal-ph-sub code {
  background: #eef2f7;
  border-radius: 6px;
  padding: 1px 6px;
  font-size: 13px;
}

@media (max-width: 767px) {
  .lead-frame { padding: 10px; border-radius: 16px; margin-top: 18px; }
  .lead-card { padding: 20px 16px 18px; border-radius: 12px; }
  .lead-title { font-size: 20px; }
  .training-h1 { font-size: 30px !important; }
  .interview-sub { font-size: 19px; }
  .step2-locked-title { font-size: 16px; }
  .step2-unlocked-title { font-size: 17px; }
  .apply-embed iframe { height: 560px; }
  .calendar-frame { padding: 8px; border-radius: 14px; }
}

/* ---------- Trustpilot rating badge ---------- */
.tp-badge {
  margin: 16px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}

.tp-stars { display: flex; gap: 4px; }

.tp-stars svg { width: 26px; height: 26px; display: block; }

.tp-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: Poppins, Helvetica, sans-serif;
  font-size: 14.5px;
  color: #355d84;
  line-height: 1;
}

.tp-text strong { color: var(--ink); font-weight: 700; }

.tp-text .tp-logo { display: inline-flex; align-items: center; gap: 4px; font-weight: 600; color: #191919; }

.tp-text .tp-logo svg { width: 15px; height: 15px; display: block; }

@media (max-width: 767px) {
  .tp-stars svg { width: 21px; height: 21px; }
  .tp-text { font-size: 13px; }
}

/* ---------- Application review interstitial (apply page) ---------- */
.apply-review { max-width: 620px; margin: 34px auto 0; }

.apply-review[hidden] { display: none; }

.review-card {
  background: #fff;
  border: 1px solid rgba(8, 61, 107, 0.1);
  border-radius: 18px;
  padding: 44px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  box-shadow: 0 14px 34px rgba(7, 30, 55, 0.08);
}

.review-spinner {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 5px solid rgba(13, 74, 127, 0.15);
  border-top-color: var(--red);
  animation: review-spin 0.9s linear infinite;
}

@keyframes review-spin { to { transform: rotate(360deg); } }

.review-title {
  font-family: Poppins, Helvetica, sans-serif;
  font-size: 21px;
  font-weight: 600;
  color: var(--navy);
}

.review-sub { font-size: 15px; color: #64748b; }

.review-sub span { font-weight: 700; color: var(--navy-mid); }

/* ---------- OnceHub calendar iframe ---------- */
#oncehubFrame {
  display: block;
  width: 100%;
  height: 760px;
  border: 0;
  border-radius: 10px;
  background: #fff;
}

@media (max-width: 767px) {
  #oncehubFrame { height: 680px; }
  .review-title { font-size: 18px; }
}

/* ---------- Interview page: FES-style trust block ---------- */
.interview-trust { margin-top: 20px; }

.interview-trust .trust-avatars img { width: 34px; height: 34px; }

.interview-trust .trust-text { font-size: 16px; }

.tp-badge.tp-inline {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

.tp-excellent {
  font-family: Poppins, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}

.tp-inline .tp-stars svg { width: 22px; height: 22px; }

@media (max-width: 767px) {
  .interview-trust .trust-avatars img { width: 28px; height: 28px; }
  .interview-trust .trust-text { font-size: 14px; }
  .tp-inline .tp-stars svg { width: 19px; height: 19px; }
}

/* ---------- Scrolling Trustpilot review strip (apply page) ---------- */
.reviews-marquee {
  position: relative;
  width: 100vw;
  margin: 26px calc(50% - 50vw) 0;
  overflow: hidden;
  padding: 6px 0 14px;
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 10%, rgba(0,0,0,1) 90%, rgba(0,0,0,0) 100%);
  mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 10%, rgba(0,0,0,1) 90%, rgba(0,0,0,0) 100%);
}

.reviews-track {
  display: flex;
  align-items: stretch;
  gap: 16px;
  width: max-content;
  animation: marquee 120s linear infinite;
}

.reviews-marquee:hover .reviews-track { animation-play-state: paused; }

.review-card {
  flex: 0 0 320px;
  background: #fff;
  border: 1px solid rgba(8, 61, 107, 0.1);
  border-radius: 14px;
  padding: 16px 18px;
  text-align: left;
  box-shadow: 0 8px 22px rgba(7, 30, 55, 0.06);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.review-stars { display: flex; gap: 3px; }

.review-stars svg { width: 16px; height: 16px; display: block; }

.review-text {
  font-size: 13.5px;
  line-height: 1.55;
  color: #2b3a4a;
  flex: 1;
}

.review-name {
  font-family: Poppins, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-mid);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.review-verified {
  font-weight: 500;
  font-size: 11.5px;
  color: #00B67A;
}

@media (max-width: 767px) {
  .review-card { flex-basis: 260px; padding: 13px 14px; }
  .review-text { font-size: 12.5px; }
}

/* ---------- Success page (call booked) ---------- */
.success-pending {
  margin-top: 12px;
  font-family: Poppins, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--red);
}

.success-step { max-width: 720px; margin: 30px auto 0; }

.success-step-title {
  font-family: Poppins, Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.booking-card {
  background: #fff;
  border: 1px solid rgba(8, 61, 107, 0.1);
  border-radius: 18px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  box-shadow: 0 14px 34px rgba(7, 30, 55, 0.08);
}

.booking-rows { display: grid; gap: 10px; width: 100%; max-width: 460px; }

.booking-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  align-items: baseline;
  text-align: left;
}

.booking-row[hidden] { display: none; }

.booking-label {
  font-family: Poppins, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #7b8ba0;
}

.booking-value { font-size: 16.5px; font-weight: 600; color: var(--ink); word-break: break-word; }

.booking-value a { color: var(--navy-badge); }

.booking-note { font-size: 13.5px; color: #64748b; max-width: 440px; line-height: 1.55; }

@media (max-width: 767px) {
  .success-pending { font-size: 16px; }
  .success-step-title { font-size: 19px; }
  .booking-card { padding: 18px 14px; border-radius: 14px; }
  .booking-row { grid-template-columns: 90px 1fr; }
  .booking-value { font-size: 14.5px; }
}

/* ---------- Success page: email callout ---------- */
.email-callout {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy-badge);
  color: #fff;
  font-family: Poppins, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2;
  border-radius: 999px;
  padding: 14px 24px;
  box-shadow: 0 8px 20px rgba(13, 74, 127, 0.2);
}

.email-callout-icon { display: inline-flex; }

@media (max-width: 767px) {
  .email-callout { font-size: 14.5px; padding: 12px 18px; }
}

/* ---------- Mobile: fit landing hero + lead form above the fold ---------- */
@media (max-width: 767px) {
  .hero-inner { padding-top: 8px; padding-bottom: 24px; }
  .hero-logo img { width: 118px; }
  .hero-badge { margin: 8px 0 8px; }
  .hero-badge span { font-size: 10.5px; padding: 6px 10px; }
  .hero h1 { font-size: 23px; line-height: 1.1; }
  .hero-guarantee { font-size: 15.5px; margin-top: 5px; }
  .hero-support { font-size: 12px; line-height: 1.35; margin-top: 5px; }
  .lead-frame { margin-top: 10px; padding: 6px; border-radius: 14px; }
  .lead-card { padding: 12px 12px 12px; border-radius: 10px; }
  .lead-title { font-size: 16px; }
  .lead-sub { display: none; }
  .lead-fields { gap: 7px; }
  .lead-field { gap: 3px; }
  .lead-label { font-size: 11px; }
  .lead-field input { padding: 9px 12px; font-size: 15px; border-radius: 9px; }
  .lead-submit { font-size: 15px; padding: 9px 9px 9px 16px; margin-top: 2px; }
  .lead-submit .cta-icon { width: 28px; height: 28px; flex-basis: 28px; }
  .lead-privacy { font-size: 10.5px; }
}

@media (max-width: 767px) and (max-height: 700px) {
  .hero-badge { display: none; }
  .hero-support { display: none; }
}

/* ---------- Companies marquee: tighter gap + new logo sizing ---------- */
.hero .hero-inner { padding-bottom: 18px; }
.companies { padding-top: 14px; }

.company-logo.wide img { height: 30px; }
.company-logo.tall img { height: 46px; }
.company-logo.slim img { height: 24px; }

@media (max-width: 767px) {
  .hero-inner { padding-bottom: 8px; }
  .companies { padding-top: 6px; }
  .company-logo.wide img { height: 22px; }
  .company-logo.tall img { height: 34px; }
  .company-logo.slim img { height: 17px; }
}

/* mobile-only line break helper */
.m-br { display: none; }
@media (max-width: 767px) { .m-br { display: inline; } }

/* ---------- Mobile: Why cards in 1-2-3-4 order ---------- */
@media (max-width: 767px) {
  .why-grid { display: flex; flex-direction: column; gap: 14px; }
  .why-col { display: contents; }
  .why-col:first-of-type .why-card:nth-child(1) { order: 1; }
  .why-col:last-of-type .why-card:nth-child(1) { order: 2; }
  .why-col:first-of-type .why-card:nth-child(2) { order: 3; }
  .why-col:last-of-type .why-card:nth-child(2) { order: 4; }
}

/* ---------- Apply page: fullscreen Typeform overlay ---------- */
.apply-embed {
  position: fixed;
  inset: 0;
  z-index: 1000;
  margin: 0;
  max-width: none;
  background: #101820;
}

.apply-embed[hidden] { display: none; }

.apply-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}

.apply-embed-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 999px;
  background: rgba(16, 24, 32, 0.55);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.apply-embed-close:hover { background: rgba(16, 24, 32, 0.8); }

body.embed-open { overflow: hidden; }

/* ============================================================
   HERO V2 PREVIEW — two-column with proof (staging)
   ============================================================ */
.hero-checks {
  list-style: none;
  margin: 20px 0 0;
  display: grid;
  gap: 11px;
  text-align: left;
}

.hero-checks li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-family: Poppins, Helvetica, sans-serif;
  font-size: 16.5px;
  line-height: 1.4;
  color: #16405f;
}

.hero-checks svg { width: 21px; height: 21px; flex: 0 0 21px; margin-top: 1px; }

.hero-placements {
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 10px 26px rgba(7, 30, 55, 0.07);
  max-width: 470px;
}

.hp-title {
  font-family: Poppins, Helvetica, sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #7b8ba0;
  margin-bottom: 10px;
}

.hp-row {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 7px 0;
  border-top: 1px solid rgba(8, 61, 107, 0.07);
}

.hp-row img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.hp-path {
  font-family: Poppins, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  flex: 1;
}

.hp-salary {
  font-family: Poppins, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--red);
  white-space: nowrap;
}

@media (min-width: 992px) {
  .hero-grid {
    display: grid;
    grid-template-columns: 1.06fr 0.94fr;
    gap: 48px;
    max-width: 1180px;
    margin: 14px auto 0;
    align-items: start;
    text-align: left;
  }
  .hero-left { padding-top: 6px; }
  .hero-grid h1 { font-size: 42px; letter-spacing: -1px; margin: 0; max-width: none; }
  .hero-grid .hero-guarantee { font-size: 23px; }
  .hero-grid .hero-badge { margin-top: 0; }
  .hero-grid .tp-badge { align-items: flex-start; margin-top: 20px; }
  .hero-grid .lead-frame { margin-top: 0; max-width: none; }
}

@media (max-width: 991px) {
  .hero-grid { display: block; }
  .hero-placements { display: none; }
  .hero-checks {
    display: inline-grid;
    margin: 14px auto 0;
    gap: 8px;
  }
  .hero-checks li { font-size: 13.5px; }
  .hero-checks svg { width: 17px; height: 17px; flex-basis: 17px; }
}

/* ---------- Hero v2 fold tuning: companies visible above the fold ---------- */
@media (min-width: 992px) {
  .hero-logo img { width: 165px; }
  .hero-grid { margin-top: 4px; gap: 40px; }
  .hero-grid h1 { font-size: 37px; letter-spacing: -0.8px; }
  .hero-grid .hero-guarantee { font-size: 20px; margin-top: 8px; }
  .hero-checks { margin-top: 14px; gap: 8px; }
  .hero-checks li { font-size: 15px; }
  .hero-checks svg { width: 19px; height: 19px; flex-basis: 19px; }
  .hero-placements { margin-top: 14px; padding: 10px 14px; }
  .hp-title { margin-bottom: 6px; }
  .hp-row { padding: 5px 0; }
  .hp-row img { width: 30px; height: 30px; }
  .hero-grid .tp-badge { margin-top: 12px; gap: 4px; }
  .hero-grid .tp-excellent { font-size: 14.5px; }
  .hero-grid .tp-stars svg { width: 19px; height: 19px; }
  .hero-grid .tp-text { font-size: 12.5px; }
  .hero-grid .lead-card { padding: 20px 22px 16px; }
  .hero-grid .lead-title { font-size: 21px; }
  .hero-grid .lead-sub { margin-bottom: 14px; }
  .hero-grid .lead-fields { gap: 10px; }
  .hero-grid .lead-field input { padding: 10px 13px; }
  .hero .hero-inner { padding-bottom: 10px; }
  .companies { padding-top: 6px; }
}

@media (max-width: 767px) {
  .hero-logo img { width: 96px; }
  .hero-badge { margin: 6px 0 6px; }
  .hero h1 { font-size: 25px; line-height: 1.16; }
  .hero-guarantee { font-size: 13.5px; margin-top: 4px; }
  .hero-checks { margin-top: 8px; gap: 4px; }
  .hero-checks li { font-size: 11.5px; line-height: 1.3; }
  .hero-checks svg { width: 14px; height: 14px; flex-basis: 14px; margin-top: 0; }
  .tp-badge { margin-top: 8px; gap: 3px; }
  .tp-excellent { font-size: 12.5px; }
  .tp-stars svg { width: 16px; height: 16px; }
  .tp-text { font-size: 11px; }
  .lead-frame { margin-top: 7px; padding: 5px; }
  .lead-card { padding: 9px 10px 9px; }
  .lead-title { font-size: 14.5px; }
  .lead-fields { gap: 5px; }
  .lead-label { font-size: 10px; }
  .lead-field input { padding: 7px 11px; font-size: 14px; border-radius: 8px; }
  .lead-submit { font-size: 14px; padding: 8px 8px 8px 14px; }
  .lead-submit .cta-icon { width: 25px; height: 25px; flex-basis: 25px; }
  .lead-privacy { font-size: 9px; }
  .hero-inner { padding-bottom: 5px; }
  .companies { padding-top: 3px; }
  .companies-title { font-size: 12.5px; margin-bottom: 8px; }
  .company-logo img { height: 24px; }
  .company-logo.wide img { height: 18px; }
  .company-logo.tall img { height: 28px; }
  .company-logo.slim img { height: 14px; }
  .company-logo.lockheed img { height: 15px; }
}

/* ---------- Success page: video sections (FES-style) ---------- */
.vimeo-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  background: #0f1720;
}

.vimeo-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.sv-frame {
  max-width: 760px;
  margin: 0 auto 22px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(7, 30, 55, 0.08);
}

.success-videos { background: #f4f7fb; padding: 46px 16px 40px; }

.sv-wrap { max-width: 900px; margin: 0 auto; text-align: center; }

.sv-center { text-align: center; }

.sv-sub {
  margin: 10px auto 22px;
  max-width: 720px;
  color: #355d84;
  font-size: 16.5px;
  line-height: 1.55;
}

.sv-sub em { font-style: italic; color: #64748b; }

.sv-big { max-width: 860px; }

.success-questions { background: #fff; padding: 48px 16px 40px; }

.sq-wrap { max-width: 1100px; margin: 0 auto; text-align: center; }

.sq-title {
  font-family: Poppins, Helvetica, sans-serif;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--navy);
}

.sq-sub { margin: 12px auto 26px; max-width: 640px; color: var(--body); font-size: 16.5px; line-height: 1.6; }

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

.sq-grid > .sq-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  width: calc(50% - 10px);
  margin: 0 auto;
}

.sq-card {
  background: #fff;
  border: 1px solid rgba(8, 61, 107, 0.1);
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 8px 22px rgba(7, 30, 55, 0.06);
}

@media (max-width: 767px) {
  .success-videos { padding: 34px 12px 28px; }
  .success-questions { padding: 34px 12px 28px; }
  .sq-title { font-size: 24px; }
  .sq-sub { font-size: 14.5px; }
  .sq-grid { grid-template-columns: 1fr; gap: 14px; }
  .sq-grid > .sq-card:last-child:nth-child(odd) { grid-column: auto; width: 100%; }
  .sv-frame { padding: 6px; border-radius: 12px; }
  .sv-sub { font-size: 14px; }
}

/* ---------- Success videos: match testimonial card framing ---------- */
.sv-frame, .sq-card {
  background: #1175bd;
  border: 1px solid rgba(237, 58, 39, 0.9);
  box-shadow: 0 2px 0 rgba(255, 255, 255, 0.15) inset;
}

.sv-frame { padding: 12px; border-radius: 16px; }
.sq-card { padding: 12px; border-radius: 16px; }
.vimeo-wrap { border-radius: 14px; }

@media (max-width: 767px) {
  .sv-frame, .sq-card { padding: 10px; border-radius: 14px; }
}

/* ---------- ?el=meta variant: As Seen On + bouncing CTA ---------- */
.seen-on {
  background: #fff;
  padding: 26px 16px 22px;
  text-align: center;
  border-bottom: 1px solid rgba(8, 61, 107, 0.06);
}

.seen-on[hidden] { display: none; }

.seen-title {
  font-family: Poppins, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7b8ba0;
  margin-bottom: 16px;
}

.seen-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 46px;
  flex-wrap: wrap;
}

.seen-logo { height: 26px; width: auto; opacity: 0.85; }
.seen-logo.yf { height: 30px; }

.seen-tec {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  opacity: 0.85;
}

.seen-tec img { height: 32px; width: auto; }

.seen-tec span {
  font-family: Poppins, Helvetica, sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.25;
  color: #16202b;
  text-align: left;
}

.lead-submit {
  animation: cta-bounce 1.7s ease-in-out infinite;
}

@keyframes cta-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@media (max-width: 767px) {
  .seen-on { padding: 16px 10px 14px; }
  .seen-row { gap: 22px; }
  .seen-logo { height: 18px; }
  .seen-logo.yf { height: 21px; }
  .seen-tec img { height: 24px; }
  .seen-tec span { font-size: 10.5px; }
}

/* ---------- ?el=meta: short page — end after companies scroll ---------- */
body.lp-meta .testimonials,
body.lp-meta .not-everyone,
body.lp-meta .why,
body.lp-meta .instructor,
body.lp-meta .faq { display: none; }

body.lp-meta .companies { padding-bottom: 44px; }

/* meta variant: larger mobile headline (short page can afford it) */
@media (max-width: 767px) {
  body.lp-meta .hero h1 { font-size: 25px; line-height: 1.16; }
}

/* meta variant subhead */
.meta-sub {
  margin-top: 12px;
  font-family: Poppins, Helvetica, sans-serif;
  font-size: 19px;
  line-height: 1.4;
  color: #2b4a68;
}

.meta-sub strong { color: var(--ink); }

@media (max-width: 767px) {
  .meta-sub { font-size: 14px; margin-top: 8px; }
}

/* ---------- Training page: discover list under Step 1 ---------- */
.discover-intro {
  margin: 10px auto 0;
  font-family: Poppins, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy-mid);
}

.hero-checks.discover-list {
  display: inline-grid;
  margin: 12px auto 4px;
  text-align: left;
}

@media (max-width: 767px) {
  .discover-intro { font-size: 13.5px; }
  .hero-checks.discover-list { margin: 8px auto 2px; }
}

.discover-qualifier {
  margin: 4px auto 0;
  font-family: Poppins, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--red);
}

@media (max-width: 767px) {
  .discover-qualifier { font-size: 12px; }
}

/* ---------- Training page: compact top stack ---------- */
.hero-training .training-h1 { font-size: 34px !important; }
.hero-training .step-badge { margin: 12px 0 8px; }
.discover-intro { margin-top: 6px; font-size: 15.5px; }
.hero-checks.discover-list { margin: 8px auto 2px; gap: 6px; }
.hero-checks.discover-list li { font-size: 14.5px; }
.hero-checks.discover-list svg { width: 17px; height: 17px; flex-basis: 17px; }
.discover-qualifier { font-size: 12.5px; margin-top: 3px; }
.hero-training .vsl-frame { margin-top: 14px; }
.hero-training .tp-badge { margin: 16px auto 0; }

@media (max-width: 767px) {
  .hero-training .training-h1 { font-size: 22px !important; }
  .hero-checks.discover-list li { font-size: 12px; }
  .discover-intro { font-size: 12.5px; }
  .discover-qualifier { font-size: 11px; }
}

.bootcamp-eyebrow {
  margin: 16px auto 0;
  font-family: Poppins, Helvetica, sans-serif;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--red);
}

@media (max-width: 767px) {
  .bootcamp-eyebrow { font-size: 14px; margin-top: 8px; }
}

/* ---------- Apply pages: bouncing Apply Now + urgency bar ---------- */
.apply-start { animation: cta-bounce 1.7s ease-in-out infinite; }

.urgency-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin: 18px auto 0;
  background: rgba(237, 58, 39, 0.08);
  border: 1px solid rgba(237, 58, 39, 0.35);
  border-radius: 12px;
  padding: 12px 22px;
  max-width: 440px;
}

.urgency-spots {
  font-family: Poppins, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--red);
}

.urgency-timer { font-size: 14px; color: #16405f; }

.urgency-timer strong { color: var(--red); font-size: 15px; }

@media (max-width: 767px) {
  .urgency-bar { padding: 10px 14px; margin-top: 12px; }
  .urgency-spots { font-size: 13px; }
  .urgency-timer { font-size: 12.5px; }
}
