/* ============================================================
   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_XNnuEKshxPRLHnRU {
  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 32s 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; }
}
