:root {
  --navy: #031126;
  --navy-2: #061b35;
  --cyan: #00d9ff;
  --blue: #1c75ff;
  --lime: #d8ff00;
  --silver: #e8f3ff;
  --white: #fff;
  --header-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
}

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

.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;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid;
}

.header-frame {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 48px, 1440px);
  height: 100%;
  margin: auto;
}

.brand {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 13px;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 46px;
  height: 52px;
  place-items: center;
}

.brand-mark::before {
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  content: "";
  opacity: .16;
  filter: blur(12px);
}

.brand-mark svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.brand-mark .mark-shell {
  fill: rgba(232, 243, 255, .08);
  stroke: currentColor;
  stroke-width: 1.6;
}

.brand-mark .mark-shield {
  fill: rgba(3, 17, 38, .9);
  stroke: currentColor;
  stroke-width: 1.2;
}

.brand-mark .mark-letter {
  fill: currentColor;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font: 700 25px/1 "Rajdhani", sans-serif;
  letter-spacing: .035em;
}

.brand-copy small {
  margin-top: 5px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: clamp(13px, 1.35vw, 24px);
  height: 100%;
}

.global-nav > a:not(.header-cta) {
  position: relative;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.global-nav > a:not(.header-cta)::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transition: transform .25s ease;
}

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

.header-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 245px;
  min-height: 54px;
  padding: 7px 13px 7px 18px;
  gap: 13px;
  border: 0;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.header-cta:hover {
  transform: translateY(-2px);
}

.header-cta span {
  display: grid;
}

.header-cta small {
  font-size: 9px;
  font-weight: 700;
}

.header-cta svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.menu-button > span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.theme-white-course {
  color: var(--white);
  background: var(--navy);
  padding-bottom: 84px;
}

.theme-white-course .site-header {
  border-color: rgba(232, 243, 255, .34);
  background: rgba(2, 12, 29, .94);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .28);
  backdrop-filter: blur(14px);
}

.theme-white-course .brand-mark {
  color: var(--silver);
  filter: drop-shadow(0 0 4px rgba(232, 243, 255, .38));
}

.theme-white-course .brand-mark::before {
  background: var(--cyan);
}

.theme-white-course .brand-copy strong {
  color: var(--white);
  text-shadow: 0 0 12px rgba(0, 217, 255, .18);
}

.theme-white-course .brand-copy small {
  color: #bcecff;
}

.theme-white-course .global-nav > a::after {
  background: #fff;
  box-shadow: 0 0 8px rgba(255, 255, 255, .72);
}

.theme-white-course .menu-button {
  color: var(--silver);
  border: 1px solid rgba(232, 243, 255, .55);
  border-radius: 4px;
  background: rgba(232, 243, 255, .08);
  box-shadow: inset 0 0 12px rgba(0, 217, 255, .08), 0 0 10px rgba(232, 243, 255, .08);
}

.theme-white-course .menu-button > span:not(.sr-only) {
  box-shadow: 0 0 5px rgba(0, 217, 255, .75);
}

.theme-white-course .header-cta {
  color: var(--navy);
  background: var(--lime);
  box-shadow: 0 0 20px rgba(216, 255, 0, .16);
}

.theme-white-course .header-cta:hover {
  box-shadow: 0 6px 24px rgba(216, 255, 0, .28);
}

.theme-white-course .page-stage {
  min-height: calc(100vh - var(--header-height));
  background-image:
    linear-gradient(rgba(232, 243, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 217, 255, .022) 1px, transparent 1px);
  background-size: 48px 48px;
}

.site-footer {
  display: grid;
  min-height: 54px;
  place-items: center;
  color: rgba(255, 255, 255, .78);
  background: #02050a;
}

.site-footer p {
  margin: 0;
  padding: 14px 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  text-align: center;
}

.fixed-trial-cta {
  position: fixed;
  z-index: 120;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 76px;
  padding: 12px 18px calc(12px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255, 23, 68, .34);
  background:
    linear-gradient(90deg, rgba(1, 8, 24, .88), rgba(45, 8, 20, .76) 50%, rgba(1, 8, 24, .88)),
    radial-gradient(circle at 50% 0%, rgba(255, 23, 68, .32), transparent 56%);
  box-shadow: 0 -16px 40px rgba(0, 0, 0, .34), inset 0 1px 0 rgba(255, 255, 255, .06);
  backdrop-filter: blur(16px) saturate(145%);
  -webkit-backdrop-filter: blur(16px) saturate(145%);
}

.fixed-trial-cta::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, transparent, rgba(255, 23, 68, .16), transparent),
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 420px 100%, 100% 12px;
  content: "";
  pointer-events: none;
  opacity: .7;
}

.fixed-trial-cta a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 440px);
  min-height: 54px;
  padding: 12px 30px;
  border: 1px solid rgba(255, 176, 192, .68);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #ff1744 0%, #d7002c 48%, #8f001c 100%);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .07em;
  text-shadow: 0 1px 8px rgba(50, 0, 10, .42);
  box-shadow:
    0 0 0 1px rgba(255, 23, 68, .16),
    0 0 26px rgba(255, 23, 68, .28),
    0 16px 34px rgba(143, 0, 28, .26),
    inset 0 1px 0 rgba(255, 255, 255, .34);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.fixed-trial-cta a:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(255, 23, 68, .22),
    0 0 34px rgba(255, 23, 68, .4),
    0 20px 42px rgba(143, 0, 28, .34),
    inset 0 1px 0 rgba(255, 255, 255, .4);
}

.course-hero {
  position: relative;
  min-height: clamp(560px, 43vw, 720px);
  overflow: hidden;
  isolation: isolate;
  background: #020d20;
}

.hero-visual {
  position: absolute;
  z-index: -3;
  inset: 0;
  background: #03152b url("assets/course-hero-bg.png") center 42% / cover no-repeat;
  transform: scale(1.01);
}

.hero-vignette {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(1, 9, 24, .98) 0%, rgba(1, 10, 26, .84) 24%, rgba(1, 10, 26, .18) 51%, rgba(0, 9, 24, .08) 72%, rgba(0, 7, 20, .4) 100%),
    linear-gradient(0deg, rgba(0, 8, 24, .72) 0%, transparent 36%, rgba(0, 7, 20, .18) 100%);
}

.course-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  box-shadow: 0 0 12px rgba(0, 217, 255, .6);
}

.hero-content {
  width: min(100% - 48px, 1440px);
  margin: auto;
  padding: clamp(30px, 4.5vh, 56px) 0 20px;
}

.hero-lead {
  margin: 0;
  color: #fff;
  font-size: clamp(31px, 3.15vw, 54px);
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: .04em;
  text-shadow: 0 3px 18px rgba(0, 0, 0, .65);
}

.hero-audience {
  margin: 14px 0 7px;
  color: #fff;
  font-size: clamp(12px, 1.1vw, 16px);
  font-weight: 800;
  line-height: 1.7;
  letter-spacing: .04em;
}

.hero-audience-break {
  display: block;
}

.hero-name {
  margin: 0;
  color: #fff;
  font: 700 clamp(43px, 5.2vw, 78px)/1 "Rajdhani", sans-serif;
  letter-spacing: -.025em;
  text-shadow: 0 4px 22px rgba(0, 0, 0, .7);
}

.hero-name span {
  color: #ff1744;
}

.hero-versus {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 365px);
  min-height: 45px;
  margin: 8px 0 13px;
  gap: 16px;
  border: 1px solid #c8e600;
  background: rgba(1, 9, 24, .65);
  font-size: clamp(16px, 1.45vw, 22px);
  font-weight: 900;
  letter-spacing: .08em;
  box-shadow: inset 0 0 18px rgba(0, 217, 255, .05);
}

.hero-versus b {
  color: #eaff00;
  font-size: 1.08em;
}

.hero-note {
  margin: 0;
  color: rgba(255, 255, 255, .9);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.65;
  letter-spacing: .05em;
}

.hero-benefit-note {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: min(100%, 620px);
  min-height: 54px;
  margin-top: 18px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 23, 68, .86);
  color: #fff;
  background: rgba(1, 9, 24, .72);
  box-shadow: inset 0 0 18px rgba(216, 255, 0, .08), 0 0 20px rgba(216, 255, 0, .14);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: .045em;
  text-shadow: 0 3px 16px rgba(0, 0, 0, .72);
}

.hero-benefit-label {
  color: #fff;
}

.hero-benefit-highlight {
  color: #ff1744;
  white-space: nowrap;
}

.hero-actions {
  display: grid;
  grid-template-columns: repeat(2, 250px);
  width: min(100%, 514px);
  margin-top: 20px;
  gap: 14px;
}

.hero-action {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 8px 38px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .04em;
  text-align: center;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease;
}

.hero-action:hover {
  transform: translateY(-3px);
}

.hero-action svg {
  position: absolute;
  left: 15px;
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.hero-action b {
  position: absolute;
  right: 15px;
  font-size: 25px;
  font-weight: 500;
}

.hero-action-parent {
  border: 1px solid rgba(232, 243, 255, .62);
  color: #071a3a;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .18);
}

.hero-action-parent:hover {
  border-color: rgba(255, 255, 255, .9);
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .22), 0 0 16px rgba(232, 243, 255, .12);
}

.hero-action-student {
  color: var(--navy);
  background: var(--lime);
  box-shadow: 0 8px 24px rgba(216, 255, 0, .24);
  text-align: center;
}

.hero-action-student:hover {
  box-shadow: 0 10px 28px rgba(216, 255, 0, .34);
}

.benefit-preview {
  scroll-margin-top: var(--header-height);
  padding: clamp(48px, 6vw, 84px) 24px clamp(34px, 4vw, 52px);
  color: var(--navy);
  background:
    radial-gradient(circle at 50% -18%, rgba(255, 23, 68, .08), transparent 38%),
    linear-gradient(180deg, #f7f9fc 0%, #edf3f8 100%);
}

.benefit-preview-inner {
  width: min(100%, 1120px);
  margin: 0 auto;
  text-align: center;
}

.benefit-preview-picture {
  display: block;
  width: min(100%, 1040px);
  margin: 0 auto;
}

.benefit-preview-picture img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(3, 17, 38, .14);
}

.benefit-preview-text {
  max-width: 900px;
  margin: 24px auto 0;
  color: #728094;
  font-size: clamp(13px, 1.05vw, 15px);
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: .02em;
}

.benefit-preview-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 290px;
  min-height: 58px;
  margin-top: 26px;
  padding: 12px 48px;
  overflow: hidden;
  border: 2px solid var(--navy);
  border-radius: 999px;
  color: var(--navy);
  background: linear-gradient(135deg, #e6ff34 0%, var(--lime) 100%);
  box-shadow:
    0 10px 0 rgba(3, 17, 38, .08),
    0 16px 34px rgba(150, 188, 0, .28);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .04em;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.benefit-preview-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow:
    0 11px 0 rgba(3, 17, 38, .1),
    0 20px 42px rgba(150, 188, 0, .36);
}

.benefit-preview-button b {
  position: absolute;
  top: 50%;
  right: 22px;
  color: var(--navy);
  font-size: 24px;
  line-height: 1;
  transform: translateY(-50%);
}

.event-carousel-section {
  padding: 0 24px clamp(56px, 7vw, 92px);
  color: var(--navy);
  background: #edf3f8;
}

.event-carousel-inner {
  width: min(100%, 1120px);
  margin: 0 auto;
}

.event-carousel-heading {
  text-align: center;
}

.event-carousel-heading span {
  color: #ff1744;
  font: 700 13px/1 "Rajdhani", sans-serif;
  letter-spacing: .18em;
}

.event-carousel-heading h2 {
  margin: 8px 0 0;
  color: #071a3a;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 900;
  letter-spacing: .05em;
}

.event-carousel {
  position: relative;
  margin-top: 24px;
}

.event-carousel-viewport {
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 24px 64px rgba(3, 17, 38, .14);
}

.event-carousel-track {
  display: flex;
  transition: transform .45s ease;
  will-change: transform;
}

.event-slide {
  display: block;
  flex: 0 0 100%;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.event-banner-image {
  display: block;
  width: 100%;
  background: #fff;
}

.event-banner-image img {
  display: block;
  width: 100%;
  height: auto;
}

.event-banner {
  position: relative;
  display: grid;
  min-height: 236px;
  padding: clamp(30px, 4vw, 48px);
  overflow: hidden;
  align-content: center;
  color: #fff;
  background: #071a3a;
  isolation: isolate;
}

.event-banner::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: .32;
}

.event-banner::after {
  position: absolute;
  z-index: -1;
  top: -120px;
  right: -90px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  content: "";
  filter: blur(8px);
  opacity: .64;
}

.event-banner-trial {
  background: linear-gradient(135deg, #051126 0%, #330715 54%, #071a3a 100%);
}

.event-banner-trial::after {
  background: radial-gradient(circle, rgba(255, 23, 68, .55), transparent 65%);
}

.event-banner-counseling {
  background: linear-gradient(135deg, #071a3a 0%, #15315f 52%, #061126 100%);
}

.event-banner-counseling::after {
  background: radial-gradient(circle, rgba(0, 217, 255, .45), transparent 65%);
}

.event-banner-document {
  background: linear-gradient(135deg, #071a3a 0%, #3a3305 50%, #071a3a 100%);
}

.event-banner-document::after {
  background: radial-gradient(circle, rgba(216, 255, 0, .45), transparent 65%);
}

.event-banner span {
  color: #ffccd5;
  font: 700 15px/1 "Rajdhani", sans-serif;
  letter-spacing: .18em;
}

.event-banner strong {
  display: block;
  margin-top: 10px;
  font-size: clamp(32px, 4.2vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: .05em;
  text-shadow: 0 10px 28px rgba(0, 0, 0, .24);
}

.event-banner p {
  max-width: 620px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .84);
  font-size: clamp(13px, 1.2vw, 17px);
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: .03em;
}

.event-banner b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 42px;
  margin-top: 22px;
  padding: 9px 26px;
  border-radius: 999px;
  color: #071a3a;
  background: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
  box-shadow: 0 12px 24px rgba(0, 0, 0, .18);
}

.event-banner-sp {
  display: none;
}

.event-carousel-button {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0 0 3px;
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 50%;
  place-items: center;
  color: #fff;
  background: rgba(3, 17, 38, .72);
  box-shadow: 0 10px 24px rgba(3, 17, 38, .2);
  font-size: 31px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.event-carousel-prev {
  left: 14px;
}

.event-carousel-next {
  right: 14px;
}

.event-carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 16px;
  gap: 8px;
}

.event-carousel-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(7, 26, 58, .28);
  cursor: pointer;
}

.event-carousel-dots button.is-active {
  width: 28px;
  border-radius: 999px;
  background: #ff1744;
}

.course-about {
  scroll-margin-top: var(--header-height);
  color: #071a3a;
  background: #fff;
}

.course-about-inner {
  width: min(100% - 48px, 1320px);
  margin: auto;
  padding: clamp(68px, 7vw, 108px) 0 clamp(72px, 7vw, 110px);
}

.course-section-heading {
  text-align: center;
}

.course-section-heading > span {
  color: #ff1744;
  font: 700 13px/1 "Rajdhani", sans-serif;
  letter-spacing: .18em;
}

.course-section-heading h2 {
  margin: 10px 0 15px;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  letter-spacing: .055em;
}

.about-title-break {
  display: none;
}

.course-section-heading i {
  display: block;
  width: 64px;
  height: 3px;
  margin: auto;
  background: linear-gradient(90deg, #ff1744, #061b35);
}

.course-overview {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  margin-top: 48px;
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
}

.course-overview-copy {
  align-self: center;
}

.course-overview-copy > p:not(.course-overview-lead) {
  margin: 16px 0 0;
  color: #40506a;
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
}

.course-overview-lead {
  margin: 0 0 25px;
  color: #071a3a;
  font-size: clamp(22px, 2.35vw, 34px);
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: .035em;
}

.course-overview-lead strong {
  color: #d7002c;
  background: linear-gradient(transparent 70%, rgba(255, 23, 68, .12) 0);
}

.course-video-card {
  position: relative;
  padding: clamp(16px, 2vw, 24px);
  overflow: hidden;
  border: 1px solid #f0c7d0;
  border-radius: 8px;
  background: linear-gradient(145deg, #fffafa, #f7fbff);
  box-shadow: 0 14px 35px rgba(80, 17, 33, .08);
}

.course-video-card::after {
  position: absolute;
  right: -35px;
  bottom: -55px;
  width: 170px;
  height: 170px;
  border: 24px solid rgba(255, 23, 68, .045);
  border-radius: 50%;
  content: "";
}

.course-overview-video {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(3, 17, 38, .14);
  border-radius: 6px;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(135deg, rgba(3, 17, 38, .96), rgba(7, 34, 69, .94)),
    radial-gradient(circle at 72% 24%, rgba(255, 23, 68, .24), transparent 34%);
  box-shadow: 0 12px 26px rgba(3, 17, 38, .15);
}

.course-overview-video::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(232, 243, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 243, 255, .08) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: .35;
}

.course-overview-video iframe {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 24px;
  color: #fff;
  text-align: center;
}

.video-placeholder::before {
  width: 72px;
  height: 72px;
  content: "";
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: var(--lime);
  filter: drop-shadow(0 0 20px rgba(216, 255, 0, .28));
  transform: translateX(6px);
}

.video-placeholder span {
  color: var(--lime);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .16em;
}

.video-placeholder p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;
}

.course-pickups {
  margin-top: clamp(70px, 7vw, 100px);
}

.course-pickup-heading {
  text-align: center;
}

.course-pickup-heading h3 {
  margin: 0 0 10px;
  color: #071a3a;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 900;
  letter-spacing: .05em;
}

.pickup-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 35px;
  gap: 16px;
}

.pickup-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 18px 18px 22px;
  overflow: hidden;
  border: 1px solid #dce5ed;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 7px 20px rgba(8, 43, 79, .07);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.pickup-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, #ff1744, #061b35);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .25s ease;
}

.pickup-card:hover {
  border-color: #f0c7d0;
  box-shadow: 0 14px 30px rgba(80, 17, 33, .1);
  transform: translateY(-6px);
}

.pickup-card:hover::before {
  transform: scaleX(1);
}

.pickup-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  margin-bottom: 20px;
  border: 1px solid rgba(3, 17, 38, .08);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(3, 17, 38, .08);
}

.pickup-card h4 {
  margin: 0 0 11px;
  color: #071a3a;
  font-size: clamp(16px, 1.45vw, 20px);
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: .035em;
}

.pickup-card p {
  margin: 0;
  color: #526077;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.9;
}

.ctf-note {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  align-items: center;
  max-width: 920px;
  margin: 34px auto 0;
  padding: 22px 28px;
  gap: 24px;
  border: 1px solid #f0c7d0;
  border-radius: 10px;
  background: linear-gradient(135deg, #fff, #fff8fa);
  box-shadow: 0 14px 34px rgba(80, 17, 33, .08);
}

.ctf-note img {
  display: block;
  width: 100%;
  max-width: 120px;
  margin: auto;
  border-radius: 8px;
}

.ctf-note h4 {
  margin: 0 0 8px;
  color: #071a3a;
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 900;
  letter-spacing: .04em;
}

.ctf-note p {
  margin: 0;
  color: #526077;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.9;
}

.course-recommend {
  margin-top: clamp(56px, 6vw, 82px);
}

.course-recommend-heading {
  margin-bottom: clamp(30px, 4vw, 46px);
  text-align: center;
}

.course-recommend-heading h3 {
  margin: 0;
  color: #071a3a;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 900;
  letter-spacing: .05em;
}

.course-recommend-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 26px);
}

.course-recommend-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #f0dce2;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(80, 17, 33, .08);
}

.course-recommend-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  background: #061b3d;
}

.course-recommend-card h4 {
  display: grid;
  min-height: 104px;
  margin: 0;
  padding: 22px 18px 24px;
  place-items: center;
  color: #071a3a;
  font-size: clamp(13px, 1.08vw, 18px);
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  text-align: center;
  white-space: normal;
}

.course-curriculum {
  position: relative;
  scroll-margin-top: var(--header-height);
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 23, 68, .2), transparent 32%),
    linear-gradient(135deg, #020916 0%, #061126 48%, #140812 100%);
}

.course-curriculum::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .9), rgba(0, 0, 0, .2));
  pointer-events: none;
}

.course-curriculum::after {
  position: absolute;
  top: 120px;
  right: -160px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255, 23, 68, .18);
  border-radius: 50%;
  content: "";
  box-shadow: inset 0 0 45px rgba(255, 23, 68, .06), 0 0 45px rgba(255, 23, 68, .06);
  pointer-events: none;
}

.course-curriculum-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 48px, 1320px);
  margin: auto;
  padding: clamp(70px, 7vw, 112px) 0 clamp(76px, 8vw, 124px);
}

.curriculum-heading {
  text-align: center;
}

.curriculum-heading span {
  color: #ff1744;
  font: 700 13px/1 "Rajdhani", sans-serif;
  letter-spacing: .2em;
  text-shadow: 0 0 14px rgba(255, 23, 68, .34);
}

.curriculum-heading h2 {
  margin: 10px 0 12px;
  font-size: clamp(30px, 3.1vw, 46px);
  font-weight: 900;
  letter-spacing: .08em;
}

.curriculum-heading p {
  max-width: 820px;
  margin: 0 auto;
  color: rgba(255, 255, 255, .74);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.9;
}

.curriculum-goals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(34px, 4vw, 52px);
  gap: 16px;
}

.curriculum-goals article {
  position: relative;
  min-width: 0;
  padding: 26px 24px 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .035));
  box-shadow: 0 18px 40px rgba(0, 0, 0, .16);
}

.curriculum-goals article::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, #ff1744, var(--lime));
}

.curriculum-goals span {
  color: var(--lime);
  font: 700 14px/1 "Rajdhani", sans-serif;
  letter-spacing: .12em;
}

.curriculum-goals h3 {
  margin: 10px 0 12px;
  font-size: clamp(17px, 1.45vw, 22px);
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: .04em;
}

.curriculum-goals p {
  margin: 0;
  color: rgba(255, 255, 255, .74);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.85;
}

.curriculum-roadmap {
  margin-top: clamp(34px, 4.5vw, 58px);
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 23, 68, .22);
  border-radius: 14px;
  background: rgba(2, 13, 32, .72);
  box-shadow: inset 0 0 28px rgba(255, 23, 68, .045), 0 18px 45px rgba(0, 0, 0, .2);
}

.curriculum-roadmap-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.curriculum-roadmap-heading h3 {
  margin: 0;
  font-size: clamp(22px, 2.35vw, 34px);
  font-weight: 900;
  letter-spacing: .06em;
}

.curriculum-roadmap-heading p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.8;
}

.curriculum-timeline {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 74px minmax(0, 1fr);
  align-items: start;
  gap: clamp(18px, 2.4vw, 34px);
}

.curriculum-phase {
  min-width: 0;
}

.curriculum-phase-heading {
  position: relative;
  min-height: 76px;
  margin-bottom: 14px;
  padding: 17px 22px 16px;
  border: 1px solid rgba(50, 229, 255, .72);
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(0, 177, 255, .36), rgba(10, 55, 118, .72));
  box-shadow:
    inset 0 0 28px rgba(50, 229, 255, .18),
    0 0 22px rgba(0, 217, 255, .14),
    0 12px 32px rgba(0, 0, 0, .18);
}

.curriculum-phase-practice .curriculum-phase-heading {
  border-color: rgba(255, 74, 116, .76);
  background: linear-gradient(90deg, rgba(255, 35, 84, .38), rgba(104, 22, 58, .72));
  box-shadow:
    inset 0 0 28px rgba(255, 74, 116, .18),
    0 0 22px rgba(255, 23, 68, .16),
    0 12px 32px rgba(0, 0, 0, .18);
}

.curriculum-phase-heading span {
  display: block;
  color: #fff;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: .06em;
}

.curriculum-phase-heading p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
}

.curriculum-phase-list {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.curriculum-phase-list li {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  min-height: 116px;
  overflow: hidden;
  border: 1px solid rgba(50, 229, 255, .48);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(0, 196, 255, .18), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, .085), rgba(4, 18, 42, .82));
  box-shadow:
    inset 0 0 24px rgba(50, 229, 255, .1),
    0 0 18px rgba(0, 217, 255, .06);
}

.curriculum-phase-practice .curriculum-phase-list li {
  border-color: rgba(255, 74, 116, .5);
  background:
    linear-gradient(90deg, rgba(255, 35, 84, .17), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, .085), rgba(42, 10, 24, .76));
  box-shadow:
    inset 0 0 24px rgba(255, 74, 116, .1),
    0 0 18px rgba(255, 23, 68, .065);
}

.curriculum-phase-list li > span {
  display: grid;
  place-items: center;
  color: #e8f8ff;
  background: linear-gradient(180deg, rgba(50, 229, 255, .34), rgba(0, 132, 218, .27));
  font: 800 28px/1 "Rajdhani", sans-serif;
  letter-spacing: .02em;
  text-shadow:
    0 0 12px rgba(50, 229, 255, .72),
    0 0 22px rgba(0, 217, 255, .36);
}

.curriculum-phase-practice .curriculum-phase-list li > span {
  color: #fff0f4;
  background: linear-gradient(180deg, rgba(255, 74, 116, .36), rgba(150, 25, 64, .3));
  text-shadow:
    0 0 12px rgba(255, 74, 116, .72),
    0 0 22px rgba(255, 23, 68, .38);
}

.curriculum-phase-list li > div {
  min-width: 0;
  padding: 18px 18px 16px;
}

.curriculum-phase-list b {
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: .04em;
}

.curriculum-phase-list p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.75;
}

.curriculum-timeline-spine {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  display: grid;
  grid-template-rows: repeat(12, 1fr);
  min-height: 828px;
  padding: 52px 0 8px;
  justify-items: center;
}

.curriculum-timeline-spine::before {
  position: absolute;
  top: 42px;
  bottom: 22px;
  left: 50%;
  width: 3px;
  border-radius: 999px;
  content: "";
  background: linear-gradient(180deg, #32e5ff 0%, #7aa9ff 48%, #ff4a74 100%);
  box-shadow: 0 0 20px rgba(50, 229, 255, .5), 0 0 24px rgba(255, 74, 116, .32);
  transform: translateX(-50%);
}

.curriculum-timeline-spine span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(232, 243, 255, .82);
  border-radius: 50%;
  color: #fff;
  background: #08204a;
  box-shadow: 0 0 16px rgba(50, 229, 255, .42);
  font: 800 14px/1 "Rajdhani", sans-serif;
}

.curriculum-roadmap-note {
  margin-top: 20px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 10px;
  color: rgba(255, 255, 255, .86);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .07), rgba(0, 217, 255, .045)),
    rgba(255, 255, 255, .035);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.7;
  text-align: center;
}

.curriculum-request {
  display: flex;
  justify-content: center;
  margin-top: clamp(24px, 3vw, 38px);
}

.curriculum-request-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 300px;
  min-height: 58px;
  padding: 12px 52px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, .92);
  border-radius: 999px;
  color: var(--navy);
  background: linear-gradient(135deg, #eaff34 0%, var(--lime) 100%);
  box-shadow:
    0 10px 0 rgba(0, 0, 0, .2),
    0 18px 36px rgba(216, 255, 0, .18),
    inset 0 1px 0 rgba(255, 255, 255, .7);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .06em;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.curriculum-request-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow:
    0 11px 0 rgba(0, 0, 0, .22),
    0 22px 44px rgba(216, 255, 0, .25),
    inset 0 1px 0 rgba(255, 255, 255, .78);
}

.curriculum-request-button b {
  position: absolute;
  top: 50%;
  right: 22px;
  font-size: 25px;
  font-weight: 500;
  line-height: 1;
  transform: translateY(-50%);
}

.curriculum-ai-battle {
  margin-top: clamp(46px, 5vw, 72px);
  padding: clamp(24px, 3.4vw, 42px);
  border: 1px solid rgba(0, 217, 255, .2);
  border-radius: 14px;
  background:
    radial-gradient(circle at 18% 8%, rgba(0, 217, 255, .14), transparent 34%),
    radial-gradient(circle at 100% 20%, rgba(255, 23, 68, .14), transparent 38%),
    rgba(2, 13, 32, .66);
  box-shadow: inset 0 0 28px rgba(0, 217, 255, .045), 0 18px 45px rgba(0, 0, 0, .22);
}

.curriculum-ai-battle-heading {
  margin-bottom: clamp(22px, 3vw, 34px);
  text-align: center;
}

.curriculum-ai-battle-heading h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 900;
  letter-spacing: .05em;
  line-height: 1.35;
}

.curriculum-ai-battle-content {
  display: grid;
  gap: clamp(22px, 3vw, 34px);
}

.curriculum-ai-visual {
  position: relative;
  width: min(100%, 1080px);
  min-width: 0;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(0, 217, 255, .18), rgba(255, 23, 68, .1)),
    rgba(255, 255, 255, .035);
  box-shadow: inset 0 0 26px rgba(0, 217, 255, .055);
}

.curriculum-ai-visual::before {
  display: block;
  padding-top: 56.25%;
  content: "";
}

.curriculum-ai-visual img,
.curriculum-ai-placeholder {
  position: absolute;
  inset: 0;
}

.curriculum-ai-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.curriculum-ai-placeholder {
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
}

.curriculum-ai-placeholder span {
  display: block;
  color: rgba(0, 217, 255, .68);
  font: 800 30px/1 "Rajdhani", sans-serif;
  letter-spacing: .16em;
}

.curriculum-ai-placeholder p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, .8);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .05em;
}

.curriculum-ai-text {
  width: min(100%, 980px);
  min-width: 0;
  margin: 0 auto;
}

.curriculum-ai-text p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.95;
}

.curriculum-ai-text p + p {
  margin-top: 14px;
}

.curriculum-skill-analysis {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  width: min(100%, 980px);
  margin: clamp(24px, 3vw, 36px) auto 0;
  gap: 22px;
  padding: clamp(20px, 2.5vw, 30px);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .07), rgba(0, 217, 255, .04)),
    rgba(255, 255, 255, .045);
}

.curriculum-skill-analysis-body {
  min-width: 0;
}

.curriculum-skill-analysis h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(20px, 1.7vw, 26px);
  font-weight: 900;
  letter-spacing: .04em;
  line-height: 1.4;
}

.curriculum-skill-analysis p {
  margin: 0;
  color: rgba(255, 255, 255, .76);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.85;
}

.curriculum-skill-analysis p + p {
  margin-top: 8px;
}

.curriculum-skill-analysis-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 226px;
  min-height: 52px;
  padding: 10px 44px 10px 24px;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .05em;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.curriculum-skill-analysis-button:hover {
  border-color: rgba(255, 255, 255, .86);
  background: rgba(255, 255, 255, .14);
  transform: translateY(-2px);
}

.curriculum-skill-analysis-button b {
  position: absolute;
  top: 50%;
  right: 18px;
  font-size: 23px;
  font-weight: 500;
  line-height: 1;
  transform: translateY(-50%);
}

.curriculum-skill-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
  gap: 10px;
}

.curriculum-skill-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 13px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 999px;
  color: rgba(255, 255, 255, .9);
  background: rgba(255, 255, 255, .075);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
}

.course-benefits {
  scroll-margin-top: var(--header-height);
  color: #071a3a;
  background: #fff;
}

.course-benefits-inner {
  width: min(100% - 48px, 1180px);
  margin: auto;
  padding: clamp(68px, 7vw, 108px) 0 clamp(72px, 7vw, 112px);
}

.course-benefits-heading p {
  max-width: 820px;
  margin: 22px auto 0;
  color: #526077;
  font-size: clamp(13px, 1.05vw, 15px);
  font-weight: 600;
  line-height: 1.9;
  letter-spacing: .02em;
}

.benefit-program-card {
  position: relative;
  margin-top: clamp(34px, 4vw, 52px);
  padding: clamp(26px, 3vw, 42px);
  overflow: hidden;
  border: 1px solid #dce5ed;
  border-radius: 12px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 23, 68, .08), transparent 34%),
    linear-gradient(180deg, #fff 0%, #f7fbff 100%);
  box-shadow: 0 20px 54px rgba(8, 43, 79, .09);
}

.benefit-program-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, #ff1744, #061b35);
}

.benefit-program-header {
  text-align: center;
}

.benefit-program-header span {
  display: inline-flex;
  min-height: 32px;
  padding: 7px 15px;
  align-items: center;
  border: 1px solid rgba(255, 23, 68, .22);
  border-radius: 999px;
  color: #d7002c;
  background: rgba(255, 23, 68, .06);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
}

.benefit-program-header h3 {
  margin: 14px 0 0;
  color: #071a3a;
  font-size: clamp(21px, 2vw, 29px);
  font-weight: 900;
  letter-spacing: .055em;
}

.benefit-program-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(26px, 3vw, 38px);
  gap: clamp(16px, 2vw, 24px);
}

.benefit-program-image {
  display: grid;
  min-width: 0;
  min-height: clamp(220px, 24vw, 320px);
  margin: 0;
  padding: clamp(12px, 1.5vw, 18px);
  place-items: center;
  border: 1px solid #dce5ed;
  border-radius: 10px;
  background: #f8fafc;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .8);
}

.benefit-program-image img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 320px;
  height: auto;
  border-radius: 6px;
  object-fit: contain;
  box-shadow: 0 12px 28px rgba(3, 17, 38, .12);
}

.benefit-program-text {
  max-width: 820px;
  margin: 26px auto 0;
  color: #526077;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.9;
  letter-spacing: .02em;
  text-align: center;
}

.benefit-program-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 26px;
  gap: 14px;
}

.benefit-program-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 300px);
  min-height: 56px;
  padding: 12px 48px;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .06em;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.benefit-program-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.benefit-program-button-primary {
  color: #fff;
  background: linear-gradient(135deg, #ff1744 0%, #d7002c 100%);
  box-shadow: 0 14px 30px rgba(215, 0, 44, .25);
}

.benefit-program-button-primary:hover {
  box-shadow: 0 18px 38px rgba(215, 0, 44, .34);
}

.benefit-program-button-secondary {
  border-color: rgba(3, 17, 38, .24);
  color: #071a3a;
  background: #fff;
  box-shadow: 0 10px 22px rgba(8, 43, 79, .09);
}

.benefit-program-button-secondary:hover {
  border-color: rgba(3, 17, 38, .34);
  box-shadow: 0 14px 28px rgba(8, 43, 79, .13);
}

.benefit-program-button span {
  white-space: nowrap;
}

.benefit-program-button b {
  position: absolute;
  top: 50%;
  right: 22px;
  font-size: 25px;
  font-weight: 500;
  line-height: 1;
  transform: translateY(-50%);
}

.training-results-section {
  scroll-margin-top: var(--header-height);
  color: #071a3a;
  background: #f5f7fb;
}

.training-results-section-inner {
  width: min(100% - 48px, 1320px);
  margin: auto;
  padding: clamp(68px, 7vw, 108px) 0 clamp(72px, 7vw, 112px);
}

.parent-training-results {
  margin-top: 0;
  padding: clamp(34px, 4vw, 48px);
  border: 1px solid #e6eef5;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(80, 17, 33, .08);
}

.training-results-heading {
  max-width: 820px;
  margin: 0 auto clamp(30px, 4vw, 46px);
}

.training-results-heading p {
  margin: 22px 0 0;
  color: #526177;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.9;
}

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

.training-result-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid #dfeaf2;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 15px 34px rgba(80, 17, 33, .07);
}

.training-result-logo {
  display: grid;
  min-height: 122px;
  padding: 22px 24px 18px;
  place-items: center;
  background: linear-gradient(180deg, #fff, #f7fbfe);
}

.training-result-logo img {
  display: block;
  width: min(100%, 260px);
  height: 86px;
  object-fit: contain;
}

.training-result-body {
  position: relative;
  flex: 1;
  padding: 24px 24px 26px;
}

.training-result-body::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, #ff1744, #061b35);
}

.training-org {
  margin: 0 0 10px;
  color: #d7002c;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
}

.training-result-body h4 {
  margin: 0 0 14px;
  color: #071a3a;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.55;
  letter-spacing: .025em;
}

.training-result-body p {
  margin: 0;
  color: #46556b;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.9;
}

.training-result-text a,
.training-result-body p a {
  color: #d7002c;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.corporate-training-cta {
  display: grid;
  align-items: center;
  margin-top: clamp(28px, 4vw, 46px);
  padding: clamp(24px, 3.4vw, 38px);
  gap: clamp(22px, 3vw, 34px);
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .8fr);
  border: 1px solid #f0c7d0;
  border-radius: 18px;
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 23, 68, .08), transparent 34%),
    linear-gradient(135deg, #fff 0%, #fff7f9 56%, #f8fbff 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .86);
}

.corporate-training-copy h3 {
  margin: 0 0 16px;
  color: #071a3a;
  font-size: clamp(22px, 2.3vw, 32px);
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: .045em;
}

.corporate-training-title-break {
  display: block;
}

.corporate-training-copy p {
  margin: 0;
  color: #526077;
  font-size: 14px;
  font-weight: 600;
  line-height: 2;
  letter-spacing: .02em;
}

.corporate-training-copy p a {
  color: #d7002c;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.corporate-training-action {
  padding: 22px;
  border: 1px solid #e6eef5;
  border-radius: 14px;
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 16px 34px rgba(80, 17, 33, .07);
}

.corporate-training-action ul {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 11px;
  list-style: none;
}

.corporate-training-action li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #243247;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.65;
}

.corporate-training-action li::before {
  display: block;
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border: 2px solid #d7002c;
  border-radius: 50%;
  content: "";
  background: #fff;
}

.corporate-training-note {
  margin: 18px 0 0;
  padding: 13px 14px;
  border-radius: 10px;
  color: #526077;
  background: #fff7f9;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.75;
}

.corporate-training-action a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  margin-top: 20px;
  padding: 12px 46px 12px 22px;
  border: 1px solid rgba(215, 0, 44, .32);
  border-radius: 999px;
  color: #d7002c;
  background: #fff;
  box-shadow: 0 10px 22px rgba(80, 17, 33, .08);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .045em;
  white-space: nowrap;
  text-decoration: none;
  transition: transform .2s ease, color .2s ease, background .2s ease, box-shadow .2s ease;
}

.corporate-training-action a span {
  min-width: 0;
}

.corporate-training-action a:hover {
  color: #fff;
  background: linear-gradient(135deg, #ff3158, #d7002c);
  box-shadow: 0 14px 30px rgba(215, 0, 44, .22);
  transform: translateY(-2px);
}

.corporate-training-action a b {
  position: absolute;
  top: 50%;
  right: 20px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  transform: translateY(-50%);
}

.career-support {
  scroll-margin-top: var(--header-height);
  color: #071a3a;
  background: #fff;
}

.career-support-inner {
  width: min(100% - 48px, 1180px);
  margin: auto;
  padding: clamp(68px, 7vw, 108px) 0 clamp(72px, 7vw, 112px);
}

.career-support-heading p {
  max-width: 820px;
  margin: 22px auto 0;
  color: #526077;
  font-size: clamp(13px, 1.05vw, 15px);
  font-weight: 600;
  line-height: 1.9;
  letter-spacing: .02em;
}

.career-support-images {
  display: grid;
  width: min(100%, 1120px);
  margin: clamp(34px, 4vw, 52px) auto 0;
  gap: clamp(24px, 3.5vw, 44px);
}

.career-support-picture {
  display: block;
}

.career-support-picture img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 20px 52px rgba(8, 43, 79, .1);
}

.career-support-message {
  display: grid;
  justify-items: center;
  margin: 0;
  color: #111827;
  font-weight: 900;
  line-height: 1.55;
  text-align: center;
  letter-spacing: .04em;
}

.career-support-message span {
  display: inline;
  background: linear-gradient(transparent 64%, rgba(216, 255, 0, .72) 0);
  font-size: clamp(17px, 1.65vw, 24px);
}

.career-support-message strong {
  display: block;
  margin-top: 8px;
  color: #111827;
  font-size: clamp(23px, 2.45vw, 36px);
  font-weight: 900;
}

.graduate-voices {
  scroll-margin-top: var(--header-height);
  color: #071a3a;
  background: #f5f7fb;
}

.graduate-voices-inner {
  width: min(100% - 48px, 1180px);
  margin: auto;
  padding: clamp(68px, 7vw, 108px) 0 clamp(72px, 7vw, 112px);
}

.graduate-voice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(34px, 4vw, 52px);
  gap: 18px;
}

.graduate-voice-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 26px 24px 24px;
  overflow: hidden;
  border: 1px solid #dce5ed;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(80, 17, 33, .08);
}

.graduate-voice-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, #ff1744, #061b35);
}

.graduate-voice-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  margin-bottom: 20px;
  border: 1px solid rgba(3, 17, 38, .08);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(3, 17, 38, .08);
}

.graduate-voice-profile {
  display: block;
}

.graduate-voice-profile p {
  margin: 0 0 4px;
  color: #d7002c;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
}

.graduate-voice-profile strong {
  display: block;
  color: #071a3a;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.45;
}

.graduate-voice-card h3 {
  margin: 22px 0 12px;
  color: #071a3a;
  font-size: clamp(17px, 1.35vw, 21px);
  font-weight: 900;
  line-height: 1.55;
  letter-spacing: .035em;
}

.graduate-voice-card > p {
  margin: 0;
  color: #526077;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.9;
}

.graduate-voice-tags {
  display: flex;
  flex-wrap: wrap;
  margin-top: 18px;
  gap: 8px;
}

.graduate-voice-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 23, 68, .18);
  border-radius: 999px;
  color: #d7002c;
  background: rgba(255, 23, 68, .055);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .04em;
}

.graduate-voice-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  margin-top: auto;
  padding: 11px 42px;
  border: 1px solid rgba(3, 17, 38, .2);
  border-radius: 999px;
  color: #071a3a;
  background: #fff;
  box-shadow: 0 10px 22px rgba(8, 43, 79, .08);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.graduate-voice-button span {
  white-space: nowrap;
}

.graduate-voice-tags + .graduate-voice-button {
  margin-top: 20px;
}

.graduate-voice-button:hover {
  border-color: rgba(255, 23, 68, .36);
  box-shadow: 0 14px 28px rgba(80, 17, 33, .12);
  transform: translateY(-2px);
}

.graduate-voice-button b {
  position: absolute;
  top: 50%;
  right: 18px;
  color: #d7002c;
  font-size: 23px;
  font-weight: 500;
  line-height: 1;
  transform: translateY(-50%);
}

.graduate-voices-more {
  display: flex;
  justify-content: center;
  margin-top: clamp(28px, 3.5vw, 44px);
}

.graduate-voices-more-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  min-height: 54px;
  padding: 12px 46px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #ff1744 0%, #d7002c 100%);
  box-shadow: 0 14px 30px rgba(215, 0, 44, .22);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .06em;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.graduate-voices-more-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 18px 38px rgba(215, 0, 44, .3);
}

.graduate-voices-more-button b {
  position: absolute;
  top: 50%;
  right: 20px;
  font-size: 25px;
  font-weight: 500;
  line-height: 1;
  transform: translateY(-50%);
}

.course-faq {
  color: #071a3a;
  background: #fff;
}

.course-faq-inner {
  width: min(100% - 48px, 980px);
  margin: auto;
  padding: clamp(62px, 6vw, 92px) 0 clamp(64px, 6vw, 92px);
}

.faq-heading {
  margin-bottom: 34px;
  text-align: center;
}

.faq-heading span {
  color: #d7002c;
  font: 700 13px/1 "Rajdhani", sans-serif;
  letter-spacing: .2em;
}

.faq-heading h2 {
  margin: 10px 0 14px;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: .08em;
}

.faq-heading p {
  margin: 0;
  color: #526177;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.9;
}

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

.faq-item {
  overflow: hidden;
  border: 1px solid #f0c7d0;
  border-radius: 14px;
  background: linear-gradient(180deg, #fff 0%, #fff7f9 100%);
  box-shadow: 0 16px 36px rgba(80, 17, 33, .07);
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 20px 64px 20px 26px;
  color: #071a3a;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.6;
  letter-spacing: .035em;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before {
  display: grid;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  margin-right: 14px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #ff1744, #d7002c);
  content: "Q";
  font: 800 15px/1 "Rajdhani", sans-serif;
}

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 24px;
  display: block;
  width: 30px;
  height: 30px;
  border: 1px solid #f0c7d0;
  border-radius: 999px;
  color: #d7002c;
  background:
    linear-gradient(currentColor, currentColor) center / 12px 2px no-repeat,
    linear-gradient(currentColor, currentColor) center / 2px 12px no-repeat,
    #fff;
  content: "";
  transform: translateY(-50%);
  transition: transform .2s ease, color .2s ease, background .2s ease;
}

.faq-item[open] summary::after {
  color: #fff;
  background:
    linear-gradient(currentColor, currentColor) center / 12px 2px no-repeat,
    #d7002c;
  content: "";
}

.faq-answer {
  padding: 0 28px 24px 70px;
  color: #34435a;
  font-size: 14px;
  font-weight: 600;
  line-height: 2;
}

.faq-answer p {
  margin: 0;
}

.faq-answer a {
  display: inline-block;
  margin: 2px 0;
  color: #d7002c;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.course-counseling {
  position: relative;
  overflow: hidden;
  color: #071a3a;
  background: linear-gradient(135deg, #fff5f7 0%, #fff 46%, #f8fbff 100%);
}

.course-counseling::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    radial-gradient(circle at 16% 24%, rgba(255, 23, 68, .12), transparent 28%),
    radial-gradient(circle at 92% 18%, rgba(255, 217, 74, .18), transparent 22%);
  pointer-events: none;
}

.course-counseling-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  width: min(100% - 48px, 1320px);
  margin: auto;
  padding: clamp(68px, 7vw, 106px) 0;
  gap: clamp(34px, 5vw, 70px);
}

.counseling-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid #f0c7d0;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 22px 48px rgba(80, 17, 33, .11);
}

.counseling-visual::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.counseling-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.counseling-copy {
  min-width: 0;
}

.counseling-kicker {
  color: #d7002c;
  font: 700 13px/1 "Rajdhani", sans-serif;
  letter-spacing: .2em;
}

.counseling-copy h2 {
  margin: 10px 0 16px;
  font-size: clamp(29px, 3vw, 43px);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: .055em;
}

.counseling-lead {
  margin: 0 0 18px;
  color: #d7002c;
  font-size: clamp(19px, 2vw, 28px);
  font-weight: 900;
  line-height: 1.55;
  letter-spacing: .03em;
}

.counseling-lead-break {
  display: block;
}

.counseling-copy > p:not(.counseling-lead) {
  margin: 0;
  color: #40506a;
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
}

.counseling-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 300px;
  min-height: 58px;
  margin: 30px auto 0;
  padding: 10px 26px;
  border: 1px solid rgba(215, 0, 44, .28);
  gap: 16px;
  border-radius: 4px;
  color: #d7002c;
  background: linear-gradient(135deg, #fff 0%, #fff4f7 100%);
  box-shadow: 0 13px 30px rgba(80, 17, 33, .1);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .05em;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.counseling-button:hover {
  transform: translateY(-3px);
  color: #fff;
  background: linear-gradient(135deg, #ff3158 0%, #d7002c 100%);
  box-shadow: 0 18px 38px rgba(215, 0, 44, .22);
}

.counseling-button b {
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}

.course-requirements {
  color: #071a3a;
  background: #fff;
}

.course-requirements-inner {
  width: min(100% - 48px, 980px);
  margin: auto;
  padding: clamp(62px, 6vw, 92px) 0 clamp(70px, 7vw, 104px);
}

.requirements-heading {
  margin-bottom: 34px;
  text-align: center;
}

.requirements-heading span {
  color: #d7002c;
  font: 700 13px/1 "Rajdhani", sans-serif;
  letter-spacing: .2em;
}

.requirements-heading h2 {
  margin: 10px 0 0;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 900;
  letter-spacing: .08em;
}

.requirements-list {
  overflow: hidden;
  margin: 0;
  border: 1px solid #f0c7d0;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(80, 17, 33, .08);
}

.requirements-list div {
  display: grid;
  grid-template-columns: 190px 1fr;
  border-top: 1px solid #f4dce1;
}

.requirements-list div:first-child {
  border-top: 0;
}

.requirements-list dt {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 22px 26px;
  color: #d7002c;
  background: #fff7f9;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .08em;
}

.requirements-list dd {
  min-width: 0;
  margin: 0;
  padding: 22px 28px;
  color: #243247;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.75;
}

.requirements-list small {
  color: #647086;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.7;
}

.requirements-payment-detail {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-top: 16px;
}

.requirements-payment-detail summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 36px 9px 18px;
  border: 1px solid rgba(215, 0, 44, .34);
  border-radius: 999px;
  color: #d7002c;
  background: #fff;
  box-shadow: 0 10px 22px rgba(80, 17, 33, .08);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
  cursor: pointer;
  list-style: none;
  position: relative;
}

.requirements-payment-detail summary::-webkit-details-marker {
  display: none;
}

.requirements-payment-detail summary::after {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: translateY(-65%) rotate(45deg);
  transition: transform .2s ease;
}

.requirements-payment-detail[open] summary::after {
  transform: translateY(-35%) rotate(225deg);
}

.requirements-payment-text {
  display: block;
  width: 100%;
  max-width: none;
  min-width: 0;
  margin-top: 18px;
  color: #647086;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.7;
  word-break: normal;
  overflow-wrap: normal;
  line-break: strict;
}

.requirements-payment-text strong {
  display: block;
  color: #243247;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.75;
}

.application-flow {
  margin-top: 34px;
  padding: 28px;
  border: 1px solid #f0c7d0;
  border-radius: 14px;
  background: linear-gradient(180deg, #fff, #fff8fa);
  box-shadow: 0 18px 42px rgba(80, 17, 33, .08);
}

.application-flow h3 {
  margin: 0 0 20px;
  color: #071a3a;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .06em;
  text-align: center;
}

.application-flow ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.application-flow li {
  position: relative;
  display: flex;
  min-height: 150px;
  padding: 22px 18px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(215, 0, 44, .2);
  border-radius: 12px;
  text-align: center;
  background: #fff;
}

.application-flow li:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -21px;
  color: #d7002c;
  content: "→";
  font: 900 24px/1 "Rajdhani", sans-serif;
  transform: translateY(-50%);
}

.application-flow li:nth-child(3)::after {
  display: none;
}

.application-flow span {
  color: #d7002c;
  font: 700 13px/1 "Rajdhani", sans-serif;
  letter-spacing: .16em;
}

.application-flow strong {
  display: block;
  margin-top: 8px;
  color: #243247;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .04em;
}

.application-flow small {
  display: block;
  margin-top: 8px;
  color: #647086;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .application-flow ol {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .application-flow li {
    min-height: 104px;
  }

  .application-flow li:nth-child(3)::after,
  .application-flow li:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -21px;
    left: 50%;
    display: block;
    content: "↓";
    transform: translateX(-50%);
  }
}

@media (max-width: 1100px) {
  .course-recommend-grid {
    grid-template-columns: 1fr;
    justify-content: center;
  }

  .course-recommend-card {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
  }

  .curriculum-goals {
    grid-template-columns: 1fr;
  }

  .curriculum-timeline {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .curriculum-timeline-spine {
    display: none;
  }

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

  .corporate-training-cta {
    grid-template-columns: 1fr;
  }

  .corporate-training-title-break {
    display: none;
  }

  .graduate-voice-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1180px) {
  :root {
    --header-height: 68px;
  }

  .header-frame {
    width: min(100% - 32px, 1440px);
  }

  .brand-mark {
    width: 38px;
    height: 43px;
  }

  .brand-copy strong {
    font-size: 21px;
  }

  .brand-copy small {
    font-size: 8px;
  }

  .menu-button {
    display: block;
  }

  .global-nav {
    position: fixed;
    z-index: 2;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    height: auto;
    max-height: 0;
    padding: 0 20px;
    gap: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .35s ease, padding .35s ease, opacity .2s ease;
  }

  .global-nav.is-open {
    max-height: calc(100vh - var(--header-height));
    padding: 18px 20px 24px;
    opacity: 1;
  }

  .global-nav > a:not(.header-cta) {
    display: block;
    padding: 14px 4px;
    border-bottom: 1px solid;
  }

  .header-cta {
    min-width: 0;
    margin-top: 16px;
  }

  .theme-white-course .global-nav {
    background: rgba(2, 12, 29, .98);
  }

  .theme-white-course .global-nav > a:not(.header-cta) {
    border-color: rgba(232, 243, 255, .14);
  }

}

@media (max-width: 980px) {
  .course-hero {
    min-height: clamp(520px, 60vw, 580px);
  }

  .hero-visual {
    background-position: 58% center;
  }

  .hero-vignette {
    background:
      linear-gradient(90deg, rgba(1, 9, 24, .96), rgba(1, 10, 26, .67) 48%, rgba(0, 7, 20, .15) 80%),
      linear-gradient(0deg, rgba(0, 8, 24, .7), transparent 45%);
  }

  .hero-content {
    width: min(100% - 40px, 1440px);
    padding-top: 38px;
  }

  .hero-lead {
    font-size: clamp(30px, 4.8vw, 43px);
  }

  .hero-name {
    font-size: clamp(45px, 7.4vw, 64px);
  }

  .curriculum-skill-analysis {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 18px;
  }

  .curriculum-skill-analysis-button {
    justify-self: center;
  }

  .course-overview {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .course-video-card {
    width: min(100%, 620px);
    margin: 0 auto;
  }

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

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

  .benefit-program-image {
    min-height: 0;
  }

  .course-counseling-inner {
    grid-template-columns: 1fr;
    width: min(100% - 32px, 1320px);
    padding: 58px 0 72px;
    gap: 34px;
  }

  .counseling-copy {
    text-align: center;
  }

  .counseling-lead-break {
    display: none;
  }

  .counseling-copy > p:not(.counseling-lead) {
    font-size: 13px;
    line-height: 1.9;
    text-align: left;
  }

  .counseling-button {
    margin-right: auto;
    margin-left: auto;
  }

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

  .requirements-list dt {
    padding: 16px 22px;
  }

  .requirements-list dd {
    padding: 19px 22px 24px;
  }
}

@media (max-width: 760px) {
  .course-hero {
    min-height: 0;
  }

  .hero-visual {
    background-position: 63% center;
    background-size: auto 100%;
  }

  .hero-vignette {
    background:
      linear-gradient(90deg, rgba(1, 9, 24, .96) 0%, rgba(1, 10, 26, .72) 48%, rgba(0, 7, 20, .22) 100%),
      linear-gradient(0deg, rgba(0, 8, 24, .92) 0%, transparent 45%, rgba(0, 7, 20, .42) 100%);
  }

  .hero-content {
    width: calc(100% - 32px);
    padding: 28px 0 18px;
  }

  .hero-lead {
    font-size: clamp(27px, 7.2vw, 38px);
    line-height: 1.24;
  }

  .hero-audience {
    max-width: 520px;
    margin-top: 10px;
    font-size: clamp(11px, 2.6vw, 14px);
    line-height: 1.55;
    text-wrap: pretty;
  }

  .hero-audience-break {
    display: none;
  }

  .hero-name {
    font-size: clamp(40px, 11.5vw, 56px);
  }

  .hero-versus {
    width: min(100%, 335px);
    min-height: 41px;
    margin-top: 6px;
    font-size: clamp(15px, 3.6vw, 19px);
  }

  .hero-note {
    font-size: 10px;
    line-height: 1.55;
  }

  .hero-benefit-note {
    max-width: 100%;
    min-height: 48px;
    padding: 9px 13px;
    font-size: 17px;
  }

  .hero-actions {
    position: static;
    width: min(100%, 514px);
    margin-top: 14px;
  }

  .hero-action {
    min-height: 52px;
    padding: 8px 32px;
    font-size: 11px;
  }

  .hero-action svg {
    width: 18px;
  }

  .course-recommend {
    margin-top: 54px;
  }

  .course-recommend-card h4 {
    min-height: 88px;
    padding: 18px 10px 20px;
    font-size: clamp(15px, 3.7vw, 19px);
    letter-spacing: 0;
  }

  .curriculum-roadmap-heading {
    display: block;
    text-align: center;
  }

  .curriculum-roadmap-heading p {
    margin: 10px auto 0;
  }

}

@media (max-width: 520px) {
  .header-frame {
    width: calc(100% - 20px);
  }

  .brand {
    gap: 10px;
  }

  .brand-copy strong {
    font-size: 19px;
  }

  .brand-copy small {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .global-nav.is-open {
    padding-right: 14px;
    padding-left: 14px;
  }

  .header-cta {
    min-height: 58px;
    font-size: 12px;
  }

  .course-hero {
    min-height: 0;
  }

  .hero-visual {
    background-position: 61% center;
  }

  .hero-vignette {
    background:
      linear-gradient(90deg, rgba(1, 9, 24, .96), rgba(1, 10, 26, .62) 82%, rgba(0, 7, 20, .34)),
      linear-gradient(0deg, rgba(0, 8, 24, .96), transparent 52%, rgba(0, 7, 20, .46));
  }

  .hero-actions {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-action {
    width: 100%;
    font-size: 12px;
  }

  .hero-audience {
    max-width: 390px;
  }

  .fixed-trial-cta a {
    width: min(86vw, 350px);
    min-height: 48px;
    padding: 10px 20px;
    font-size: 14px;
    letter-spacing: .04em;
  }

}

@media (max-width: 640px) {
  .benefit-preview {
    padding: 38px 14px 30px;
  }

  .benefit-preview-picture {
    width: min(100%, 430px);
  }

  .benefit-preview-text {
    max-width: 430px;
    margin-top: 20px;
    font-size: 13px;
    line-height: 1.75;
  }

  .benefit-preview-button {
    width: min(100%, 330px);
    min-width: 0;
    min-height: 56px;
    padding: 12px 42px;
    font-size: 14px;
  }

  .event-carousel-section {
    padding: 0 14px 58px;
  }

  .event-carousel-heading span {
    font-size: 12px;
  }

  .event-carousel-heading h2 {
    font-size: 21px;
  }

  .event-carousel {
    margin-top: 18px;
  }

  .event-carousel-viewport {
    border-radius: 12px;
  }

  .event-banner-pc {
    display: none;
  }

  .event-banner-sp {
    display: grid;
    min-height: 330px;
    padding: 30px 24px;
    text-align: center;
    place-items: center;
  }

  .event-banner-sp strong {
    font-size: clamp(34px, 10vw, 48px);
  }

  .event-banner-sp p {
    margin-right: auto;
    margin-left: auto;
  }

  .event-banner-sp b {
    margin-right: auto;
    margin-left: auto;
  }

  .event-carousel-button {
    width: 38px;
    height: 38px;
    font-size: 26px;
  }

  .event-carousel-prev {
    left: 10px;
  }

  .event-carousel-next {
    right: 10px;
  }

  .course-about-inner {
    width: min(100% - 32px, 1320px);
    padding: 58px 0 70px;
  }

  .course-section-heading > span {
    font-size: 12px;
    letter-spacing: .14em;
  }

  .course-section-heading h2 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .about-title-break {
    display: block;
  }

  .course-overview {
    margin-top: 36px;
    gap: 30px;
  }

  .course-overview-copy > p:not(.course-overview-lead) {
    font-size: 13px;
    line-height: 1.9;
  }

  .course-video-card {
    padding: 14px;
  }

  .course-curriculum-inner {
    width: min(100% - 32px, 1320px);
    padding: 62px 0 76px;
  }

  .course-benefits-inner {
    width: min(100% - 32px, 1180px);
    padding: 58px 0 72px;
  }

  .course-benefits-heading p {
    margin-top: 18px;
    font-size: 13px;
    line-height: 1.8;
  }

  .benefit-program-card {
    padding: 24px 16px 28px;
  }

  .benefit-program-header h3 {
    font-size: clamp(17px, 5vw, 21px);
    letter-spacing: .02em;
    white-space: nowrap;
    word-break: keep-all;
  }

  .benefit-program-image {
    padding: 10px;
  }

  .benefit-program-image img {
    max-height: 260px;
  }

  .benefit-program-text {
    margin-top: 22px;
    font-size: 13px;
    line-height: 1.8;
  }

  .benefit-program-actions {
    margin-top: 22px;
    gap: 10px;
  }

  .benefit-program-button {
    width: min(100%, 330px);
    min-height: 54px;
    font-size: clamp(12px, 3.65vw, 14px);
  }

  .training-results-section-inner {
    width: min(100% - 32px, 1320px);
    padding-bottom: 72px;
  }

  .parent-training-results {
    margin-top: 0;
    padding: 26px 16px;
    border-radius: 16px;
  }

  .training-results-grid {
    grid-template-columns: 1fr;
  }

  .training-results-heading h2 {
    font-size: 22px;
  }

  .training-results-heading p {
    font-size: 12px;
  }

  .training-result-logo {
    min-height: 112px;
    padding: 18px 20px 15px;
  }

  .training-result-logo img {
    height: 76px;
  }

  .training-result-body {
    padding: 20px 17px 22px;
  }

  .training-result-body h4 {
    font-size: 15px;
  }

  .training-result-body p {
    font-size: 11px;
  }

  .corporate-training-cta {
    margin-top: 26px;
    padding: 22px 18px;
    border-radius: 14px;
  }

  .corporate-training-copy h3 {
    font-size: 21px;
  }

  .corporate-training-copy p {
    font-size: 12px;
    line-height: 1.9;
  }

  .corporate-training-action {
    padding: 18px 16px;
  }

  .corporate-training-action li {
    font-size: 12px;
  }

  .corporate-training-note {
    font-size: 11px;
  }

  .corporate-training-action a {
    width: 100%;
    min-height: 50px;
    padding: 11px 16px;
    gap: 8px;
    font-size: clamp(12px, 3.4vw, 13px);
    letter-spacing: .02em;
  }

  .corporate-training-action a b {
    position: static;
    font-size: 20px;
    transform: none;
  }

  .career-support-inner {
    width: min(100% - 32px, 1180px);
    padding: 58px 0 72px;
  }

  .career-support-heading p {
    margin-top: 18px;
    font-size: 13px;
    line-height: 1.8;
  }

  .career-support-images {
    width: min(100%, 420px);
    margin-top: 32px;
    gap: 26px;
  }

  .career-support-picture img {
    border-radius: 8px;
  }

  .graduate-voices-inner {
    width: min(100% - 32px, 1180px);
    padding: 58px 0 72px;
  }

  .graduate-voice-grid {
    margin-top: 32px;
    gap: 14px;
  }

  .graduate-voice-card {
    padding: 23px 18px 22px;
  }

  .graduate-voice-thumb {
    margin-bottom: 17px;
  }

  .graduate-voice-card h3 {
    font-size: 17px;
  }

  .graduate-voice-card > p {
    font-size: 12px;
  }

  .graduate-voice-button {
    min-height: 46px;
    padding: 10px 34px 10px 22px;
    font-size: 12px;
    letter-spacing: .02em;
  }

  .graduate-voice-button b {
    right: 14px;
    font-size: 21px;
  }

  .graduate-voices-more {
    margin-top: 28px;
  }

  .graduate-voices-more-button {
    width: min(100%, 300px);
    min-height: 52px;
    font-size: 14px;
  }

  .course-faq-inner {
    width: min(100% - 32px, 980px);
    padding: 56px 0 72px;
  }

  .faq-item summary {
    min-height: 66px;
    padding: 18px 58px 18px 20px;
    font-size: 14px;
  }

  .faq-answer {
    padding: 0 22px 22px 64px;
    font-size: 13px;
  }

  .course-counseling-inner {
    width: min(100% - 24px, 1320px);
    padding-top: 50px;
  }

  .counseling-copy h2 {
    font-size: 26px;
  }

  .counseling-lead {
    font-size: 18px;
  }

  .counseling-button {
    width: 100%;
    min-width: 0;
  }

  .course-requirements-inner {
    width: min(100% - 32px, 980px);
    padding: 56px 0 72px;
  }

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

  .requirements-list dt {
    padding: 15px 20px;
  }

  .requirements-list dd {
    padding: 18px 20px 22px;
    font-size: 14px;
  }

  .application-flow {
    margin-top: 26px;
    padding: 22px 18px;
  }

  .application-flow h3 {
    font-size: 20px;
  }

  .application-flow ol {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .application-flow li {
    grid-column: auto;
    grid-row: auto;
    min-height: 104px;
  }

  .application-flow li:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -21px;
    left: 50%;
    display: block;
    content: "↓";
    transform: translateX(-50%);
  }

  .career-support-message span {
    font-size: clamp(15px, 4vw, 19px);
  }

  .career-support-message strong {
    margin-top: 7px;
    font-size: clamp(21px, 6.2vw, 29px);
    line-height: 1.45;
  }

  .curriculum-heading h2 {
    font-size: 31px;
  }

  .curriculum-heading p {
    font-size: 12px;
  }

  .curriculum-goals article {
    padding: 23px 20px 22px;
  }

  .curriculum-roadmap {
    padding: 18px 14px;
  }

  .curriculum-phase-heading {
    min-height: 0;
    padding: 15px 16px;
  }

  .curriculum-phase-heading span {
    font-size: clamp(15px, 4.4vw, 17px);
    letter-spacing: .02em;
    white-space: nowrap;
    word-break: keep-all;
  }

  .curriculum-phase-list {
    gap: 9px;
  }

  .curriculum-phase-list li {
    grid-template-columns: 48px minmax(0, 1fr);
    min-height: 0;
  }

  .curriculum-phase-list li > span {
    font-size: 22px;
  }

  .curriculum-phase-list li > div {
    padding: 15px 14px 14px;
  }

  .curriculum-phase-list b {
    font-size: 15px;
  }

  .curriculum-phase-list p {
    font-size: 11px;
  }

  .curriculum-roadmap-note {
    padding: 18px 16px;
    font-size: 13px;
  }

  .course-overview-video {
    border-radius: 6px;
    box-shadow: 0 16px 42px rgba(3, 17, 38, .16);
  }

  .course-pickups {
    margin-top: 58px;
  }

  .course-pickup-heading h3 {
    font-size: 22px;
  }

  .pickup-card-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 28px;
  }

  .pickup-card {
    padding: 16px 16px 20px;
  }

  .pickup-card img {
    margin-bottom: 16px;
  }

  .ctf-note {
    grid-template-columns: 1fr;
    padding: 22px 18px;
    gap: 14px;
    text-align: center;
  }

  .ctf-note img {
    max-width: 96px;
  }

  .video-placeholder::before {
    width: 58px;
    height: 58px;
  }

  .video-placeholder span {
    font-size: 11px;
  }

  .video-placeholder p {
    font-size: 13px;
  }
}

@media (max-width: 420px) {
  .course-hero {
    min-height: 0;
  }

  .hero-content {
    width: calc(100% - 24px);
    padding: 22px 0 14px;
  }

  .hero-lead {
    font-size: clamp(25px, 8.2vw, 32px);
  }

  .hero-name {
    font-size: clamp(37px, 12vw, 48px);
  }

  .hero-audience {
    max-width: 330px;
    font-size: 11px;
  }

  .hero-versus {
    width: min(100%, 285px);
    min-height: 38px;
    gap: 10px;
    font-size: 15px;
  }

  .hero-note {
    font-size: 10px;
  }

  .hero-benefit-note {
    display: grid;
    gap: 2px;
    width: fit-content;
    font-size: clamp(13px, 4.15vw, 16px);
  }

  .course-about-inner {
    width: min(100% - 24px, 1320px);
    padding-top: 48px;
  }

  .course-section-heading h2 {
    font-size: 25px;
  }

  .course-overview-lead {
    font-size: clamp(16px, 4.7vw, 20px);
    letter-spacing: .01em;
    white-space: nowrap;
    word-break: keep-all;
  }

  .course-video-card {
    padding: 10px;
  }

  .course-pickup-heading h3 {
    font-size: 20px;
  }

  .course-recommend-heading h3 {
    font-size: 20px;
  }

  .course-recommend-card h4 {
    min-height: 78px;
    padding: 16px 6px 18px;
    font-size: clamp(13px, 3.55vw, 16px);
    letter-spacing: 0;
  }

  .benefit-program-header h3 {
    font-size: clamp(15px, 4.6vw, 17px);
    letter-spacing: 0;
  }

  .course-curriculum-inner {
    width: min(100% - 24px, 1320px);
    padding-top: 54px;
  }

  .curriculum-heading h2 {
    font-size: 27px;
  }

  .curriculum-roadmap-heading h3 {
    font-size: clamp(18px, 5.2vw, 22px);
    letter-spacing: .03em;
    white-space: nowrap;
    word-break: keep-all;
  }

  .curriculum-phase-list li {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .curriculum-phase-list li > span {
    font-size: 20px;
  }

  .curriculum-phase-list li > div {
    padding: 14px 12px;
  }

  .curriculum-roadmap-note {
    font-size: 12px;
  }

  .curriculum-skill-analysis {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px 16px;
    text-align: left;
  }

  .curriculum-skill-analysis h3 {
    font-size: clamp(16px, 4.45vw, 19px);
    letter-spacing: .02em;
    white-space: nowrap;
    word-break: keep-all;
  }

  .curriculum-skill-analysis-button {
    width: min(100%, 300px);
    justify-self: center;
  }

  .curriculum-skill-tags {
    justify-content: flex-start;
    gap: 8px;
  }

  .curriculum-skill-tags span {
    min-height: 31px;
    padding: 6px 10px;
    font-size: 10px;
  }

  .course-faq-inner {
    width: min(100% - 24px, 980px);
    padding-top: 50px;
  }

  .faq-heading h2 {
    font-size: 27px;
  }

  .faq-heading p {
    font-size: 12px;
  }

  .faq-item summary {
    align-items: flex-start;
    padding: 17px 52px 17px 16px;
    font-size: 13px;
  }

  .faq-item summary::before {
    width: 26px;
    height: 26px;
    margin-top: 1px;
    margin-right: 10px;
    font-size: 13px;
  }

  .faq-item summary::after {
    right: 16px;
    width: 26px;
    height: 26px;
    font-size: 20px;
  }

  .faq-answer {
    padding: 0 18px 20px 52px;
    font-size: 12px;
    line-height: 1.9;
  }

  .course-requirements-inner {
    width: min(100% - 24px, 980px);
    padding-top: 50px;
  }

  .requirements-heading h2 {
    font-size: 27px;
  }

  .requirements-list dt {
    font-size: 13px;
  }

  .requirements-list dd {
    font-size: 13px;
  }

  .requirements-list small {
    font-size: 11px;
  }

  .pickup-card h4 {
    font-size: 16px;
  }

  .pickup-card p {
    font-size: 12px;
  }
}
