:root {
  --white: #ffffff;
  --canvas: #f7f9f5;
  --canvas-green: #f2f8e8;
  --canvas-cool: #f3f5f4;
  --ink: #24292d;
  --ink-soft: #596168;
  --ink-muted: #858d92;
  --line: #e1e6de;
  --line-strong: #cfd9c5;
  --brand: #a7d62d;
  --brand-deep: #608d10;
  --brand-soft: #eef7d7;
  --rose: #ef476f;
  --rose-soft: #fff0f4;
  --shadow-sm: 0 8px 24px rgba(36, 41, 45, 0.07);
  --shadow-lg: 0 24px 60px rgba(36, 41, 45, 0.11);
  --section: 120px;
  --content: 1180px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Pretendard", "SUIT", "Noto Sans KR", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  word-break: keep-all;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
summary,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(96, 141, 16, 0.34);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: 4px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.section-shell {
  width: min(calc(100% - 48px), var(--content));
  margin-inline: auto;
}

.section-block {
  padding-block: var(--section);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(225, 230, 222, 0.9);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(calc(100% - 48px), var(--content));
  min-height: 76px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}

.brand {
  display: inline-flex;
  width: 150px;
  height: 48px;
  align-items: center;
}

.brand img {
  width: 145px;
  height: auto;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  position: relative;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transition: transform 180ms var(--ease);
}

.nav-links a:hover {
  color: var(--ink);
}

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

.nav-links .mobile-menu-apply {
  display: none;
}

.menu-button {
  display: none;
}

.button {
  min-height: 50px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), background-color 180ms var(--ease), border-color 180ms var(--ease);
}

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

.button:active {
  transform: translateY(0);
}

.button-primary {
  color: #26310f;
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: 0 10px 24px rgba(122, 164, 24, 0.2);
}

.button-primary:hover {
  background: #b3df45;
  box-shadow: 0 14px 28px rgba(122, 164, 24, 0.26);
}

.button-secondary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line-strong);
}

.button-secondary:hover {
  border-color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
}

.nav-cta {
  min-height: 44px;
  padding-inline: 18px;
  font-size: 14px;
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(100deg, #f6faef 0%, #ffffff 52%, #f1f7f8 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: var(--line);
}

.hero-inner {
  min-height: 690px;
  padding-block: 76px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: 64px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--brand-deep);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.06em;
}

.hero-copy .eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-copy .eyebrow span {
  width: 8px;
  height: 8px;
  background: var(--rose);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(239, 71, 111, 0.1);
}

.hero h1 {
  margin: 0;
  max-width: 640px;
  font-size: clamp(42px, 4.5vw, 64px);
  font-weight: 760;
  line-height: 1.12;
  letter-spacing: 0;
}

.hero h1 strong {
  color: var(--brand-deep);
  font-weight: 900;
}

.hero h1 > span {
  color: var(--ink);
  font-weight: 900;
}

.hero-lead {
  max-width: 610px;
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-actions .button {
  min-height: 56px;
  padding-inline: 25px;
}

.hero-assurance {
  margin: 25px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  list-style: none;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.hero-assurance li {
  position: relative;
  padding-left: 18px;
}

.hero-assurance li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand-deep);
  font-weight: 900;
}

.hero-media {
  position: relative;
  margin: 0;
}

.hero-media > img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: 51% center;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
}

.lesson-status {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: calc(100% - 36px);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}

.status-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--brand-deep);
  background: var(--brand-soft);
  border-radius: 4px;
}

.status-icon svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lesson-status small,
.lesson-status strong {
  display: block;
}

.lesson-status small {
  color: var(--brand-deep);
  font-size: 11px;
  font-weight: 900;
}

.lesson-status strong {
  margin-top: 1px;
  font-size: 14px;
  line-height: 1.35;
}

.trust-strip {
  background: var(--ink);
  color: var(--white);
}

.trust-items {
  min-height: 112px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

.trust-items p {
  min-height: 48px;
  margin: 0;
  padding: 0 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.trust-items p:first-child {
  padding-left: 0;
}

.trust-items p:last-child {
  padding-right: 0;
  border-right: 0;
}

.trust-items strong {
  font-size: 16px;
}

.trust-items span {
  color: #bfc5c8;
  font-size: 13px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 50px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 680;
  line-height: 1.24;
  letter-spacing: 0;
}

.section-heading h2 strong {
  color: var(--brand-deep);
  font-weight: 900;
}

#curriculum .section-heading h2 strong,
#process .section-heading h2 strong {
  color: var(--brand-deep);
}

.section-heading > p:last-child {
  max-width: 700px;
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.section-heading.center > p:last-child {
  margin-inline: auto;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

.program-card {
  position: relative;
  min-height: 310px;
  padding: 30px;
  grid-column: span 3;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.program-card-main {
  min-height: 440px;
  grid-column: span 6;
  grid-row: span 2;
  background: var(--canvas-green);
  border-color: var(--line-strong);
}

.program-card-wide {
  min-height: 114px;
  grid-column: span 6;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.program-card-wide .card-label {
  color: var(--brand);
}

.program-card-wide h3 {
  margin-bottom: 0;
}

.icon-box {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--brand-deep);
  background: var(--brand-soft);
  border-radius: 6px;
}

.icon-box svg,
.course-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-label {
  margin: 24px 0 9px;
  color: var(--brand-deep);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.program-card h3 {
  margin: 0 0 14px;
  font-size: 23px;
  font-weight: 650;
  line-height: 1.36;
}

.program-card-main h3 {
  font-size: clamp(28px, 3vw, 38px);
}

.program-card h3 strong {
  font-weight: 900;
}

.program-card > p:last-of-type {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.consult-points {
  margin-top: 28px;
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid var(--line-strong);
}

.consult-points span,
.keyword-tag {
  padding: 6px 10px;
  color: var(--brand-deep);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 900;
  white-space: nowrap;
}

.text-link span {
  color: var(--brand-deep);
  transition: transform 180ms var(--ease);
}

.program-card-wide .text-link span {
  color: var(--brand);
}

.text-link:hover span {
  transform: translateX(4px);
}

.match-section {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.match-tabs {
  max-width: 940px;
  margin: 0 auto 18px;
  padding: 5px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.match-tabs button {
  min-height: 52px;
  padding: 8px 12px;
  color: var(--ink-soft);
  background: transparent;
  border: 0;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: color 180ms var(--ease), background-color 180ms var(--ease), box-shadow 180ms var(--ease);
}

.match-tabs button:hover {
  color: var(--ink);
  background: var(--white);
}

.match-tabs button[aria-selected="true"] {
  color: #26310f;
  background: var(--brand);
  box-shadow: 0 6px 16px rgba(96, 141, 16, 0.16);
}

.match-panels {
  max-width: 940px;
  margin-inline: auto;
}

.match-panel {
  min-height: 360px;
  padding: 46px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  gap: 64px;
  align-items: center;
  background: var(--canvas-green);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
}

.match-panel[hidden] {
  display: none;
}

.match-kicker {
  display: block;
  margin-bottom: 14px;
  color: var(--brand-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.match-panel h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 650;
  line-height: 1.3;
  letter-spacing: 0;
}

.match-panel h3 strong {
  color: var(--brand-deep);
  font-weight: 900;
}

.match-panel-copy > p {
  margin: 20px 0 0;
  color: var(--ink-soft);
}

.match-panel-guide {
  padding-left: 34px;
  border-left: 1px solid var(--line-strong);
}

.match-panel-guide > p {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.match-panel-guide ul {
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.match-panel-guide li {
  position: relative;
  padding: 6px 0 6px 22px;
  color: var(--ink-soft);
  font-size: 14px;
}

.match-panel-guide li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand-deep);
  font-weight: 900;
}

.match-panel-guide .button {
  width: 100%;
}

.course-section {
  background: var(--canvas);
  border-block: 1px solid var(--line);
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.course-card {
  position: relative;
  min-height: 390px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}

.course-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-sm);
}

.course-number {
  position: absolute;
  top: 24px;
  right: 24px;
  color: #c5cbce;
  font-size: 12px;
  font-weight: 900;
}

.course-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--rose);
  background: var(--rose-soft);
  border-radius: 6px;
}

.course-card:nth-child(2) .course-icon,
.course-card:nth-child(4) .course-icon {
  color: var(--brand-deep);
  background: var(--brand-soft);
}

.course-card h3 {
  margin: 38px 0 13px;
  font-size: 23px;
  line-height: 1.3;
}

.course-card p {
  margin: 0 0 24px;
  color: var(--ink-soft);
  font-size: 15px;
}

.keyword-tag {
  width: fit-content;
  margin-top: auto;
  color: var(--ink-soft);
  background: var(--canvas);
  border-color: var(--line);
}

.curriculum-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
  gap: 90px;
  align-items: start;
}

.curriculum-layout .section-heading {
  position: sticky;
  top: 120px;
  margin: 0;
}

.curriculum-layout .text-link {
  margin-top: 30px;
}

.curriculum-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--ink);
}

.curriculum-steps li {
  min-height: 142px;
  padding: 28px 4px;
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.curriculum-steps li > span {
  color: var(--brand-deep);
  font-size: 12px;
  font-weight: 900;
}

.curriculum-steps strong {
  font-size: 22px;
}

.curriculum-steps p {
  margin: 6px 0 0;
  color: var(--ink-soft);
}

.change-section {
  color: var(--white);
  background: var(--ink);
}

.change-section .section-heading h2 {
  color: var(--white);
}

.change-section .section-heading h2 strong {
  color: var(--brand);
}

.change-section .section-heading > p:last-child {
  color: #b7bec1;
}

.change-section .eyebrow {
  color: var(--brand);
}

.change-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.change-item {
  min-height: 240px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.change-item:first-child {
  padding-left: 0;
}

.change-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.change-before {
  color: #9ca4a8;
  font-size: 14px;
}

.change-arrow {
  margin-block: 20px;
  color: var(--brand);
  font-size: 26px;
  font-weight: 900;
}

.change-item strong {
  max-width: 250px;
  color: var(--white);
  font-size: 21px;
  line-height: 1.45;
}

.pricing-section {
  background: var(--canvas-cool);
  border-block: 1px solid var(--line);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}

.plan-card {
  position: relative;
  min-height: 480px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid #d7e4e9;
  border-radius: 8px;
}

.plan-card.featured {
  border: 2px solid var(--brand);
  box-shadow: var(--shadow-sm);
}

.recommend-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 4px 9px;
  color: #26310f;
  background: var(--brand);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 900;
}

.plan-label {
  margin: 0 0 8px;
  color: var(--brand-deep);
  font-size: 13px;
  font-weight: 900;
}

.plan-card h3 {
  margin: 0;
  font-size: 38px;
  line-height: 1.25;
}

.plan-description {
  min-height: 84px;
  margin: 16px 0 20px;
  color: var(--ink-soft);
}

.plan-card ul {
  margin: 0 0 32px;
  padding: 22px 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.plan-card li {
  position: relative;
  padding: 7px 0 7px 22px;
  color: var(--ink-soft);
  font-size: 14px;
}

.plan-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand-deep);
  font-weight: 900;
}

.plan-card .button {
  width: 100%;
  margin-top: auto;
}

.pricing-note {
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  text-align: center;
}

.process-list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  border-top: 1px solid var(--ink);
}

.process-list li {
  min-height: 230px;
  padding: 28px 24px 24px;
  border-right: 1px solid var(--line);
}

.process-list li:first-child {
  padding-left: 0;
}

.process-list li:last-child {
  padding-right: 0;
  border-right: 0;
}

.process-list li > span {
  color: var(--brand-deep);
  font-size: 12px;
  font-weight: 900;
}

.process-list strong {
  display: block;
  margin-top: 42px;
  font-size: 20px;
}

.process-list p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.faq-section {
  background: var(--canvas);
  border-top: 1px solid var(--line);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(560px, 1.28fr);
  gap: 90px;
  align-items: start;
}

.faq-layout .section-heading {
  position: sticky;
  top: 120px;
  margin: 0;
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 25px 50px 25px 2px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 24px;
  right: 4px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--ink-soft);
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
  color: #26310f;
  background: var(--brand);
  border-color: var(--brand);
}

.faq-list details p {
  margin: 0;
  padding: 0 50px 28px 2px;
  color: var(--ink-soft);
}

.apply-section {
  position: relative;
  padding-block: 112px;
  color: var(--ink);
  background: var(--brand-soft);
  border-block: 1px solid var(--line-strong);
}

.apply-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 6px;
  background: var(--brand);
}

.apply-intro {
  max-width: 880px;
  margin-inline: auto;
  text-align: center;
}

.apply-intro .eyebrow {
  color: var(--brand-deep);
}

.apply-intro h2 {
  margin: 0;
  font-size: clamp(38px, 4.5vw, 54px);
  font-weight: 680;
  line-height: 1.22;
  letter-spacing: 0;
}

.apply-intro h2 strong {
  color: var(--brand-deep);
  font-weight: 900;
}

.apply-intro > p:last-child {
  max-width: 680px;
  margin: 22px auto 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.apply-layout {
  margin-top: 56px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(560px, 1.14fr);
  gap: 20px;
  align-items: stretch;
}

.apply-guide {
  padding: 42px;
  display: flex;
  flex-direction: column;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.apply-guide-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: #26310f;
  background: var(--brand);
  border-radius: 6px;
}

.apply-guide-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.apply-guide-label {
  margin: 28px 0 8px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.apply-guide h3 {
  margin: 0;
  font-size: 28px;
  font-weight: 650;
  line-height: 1.36;
  letter-spacing: 0;
}

.apply-guide h3 strong {
  color: var(--brand);
  font-weight: 900;
}

.apply-benefits {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.apply-benefits li {
  padding: 20px 0;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.apply-benefits li > span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
}

.apply-benefits strong {
  display: block;
  color: var(--white);
  font-size: 15px;
}

.apply-benefits p {
  margin: 3px 0 0;
  color: #aeb5b8;
  font-size: 13px;
  line-height: 1.55;
}

.operator-note {
  margin: auto 0 0;
  padding-top: 24px;
  color: #8f979b;
  font-size: 11px;
}

.apply-form {
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 19px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-top: 6px solid var(--brand);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(36, 41, 45, 0.14);
}

.form-heading {
  grid-column: 1 / -1;
  margin-bottom: 6px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.form-heading > strong {
  display: block;
  margin-top: 9px;
  font-size: 28px;
  font-weight: 900;
}

.form-badge {
  display: inline-flex;
  padding: 5px 10px;
  color: var(--brand-deep);
  background: var(--brand-soft);
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 900;
}

.form-heading p {
  margin: 2px 0 0;
  color: var(--ink-muted);
  font-size: 13px;
}

.field-row {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field-row.full,
.agree.full,
.button.full,
.form-helper.full,
.form-status.full {
  grid-column: 1 / -1;
}

.field-row label {
  font-size: 13px;
  font-weight: 800;
}

.field-row label span {
  color: var(--ink-muted);
  font-size: 11px;
  font-weight: 600;
}

.field-row input,
.field-row select,
.field-row textarea {
  width: 100%;
  color: var(--ink);
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: 5px;
  outline: 0;
  transition: background-color 160ms var(--ease), border-color 160ms var(--ease), box-shadow 160ms var(--ease);
}

.field-row input,
.field-row select {
  height: 52px;
  padding: 0 14px;
}

.field-row textarea {
  min-height: 96px;
  padding: 13px 14px;
  resize: vertical;
}

.field-row input:focus,
.field-row select:focus,
.field-row textarea:focus {
  background: var(--white);
  border-color: var(--brand-deep);
  box-shadow: 0 0 0 3px rgba(167, 214, 45, 0.18);
}

.field-row input::placeholder,
.field-row textarea::placeholder {
  color: #a1a7ab;
}

.agree {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--ink-soft);
  font-size: 12px;
  cursor: pointer;
}

.agree input {
  width: 17px;
  height: 17px;
  margin: 3px 0 0;
  accent-color: var(--brand-deep);
}

.apply-form .button {
  min-height: 58px;
  margin-top: 2px;
  border: 0;
}

.form-helper {
  margin: -8px 0 0;
  color: var(--ink-muted);
  font-size: 12px;
  text-align: center;
}

.form-status {
  min-height: 0;
  margin: 0;
  color: #9a5b13;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.form-status:not(:empty) {
  min-height: 38px;
  padding: 8px 10px;
  background: #fff7e7;
  border: 1px solid #f0d6a9;
  border-radius: 4px;
}

.site-footer {
  padding-block: 50px;
  color: #aeb5b8;
  background: #181c1f;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px 50px;
  align-items: start;
}

.footer-inner img {
  filter: brightness(1.2);
}

.footer-inner p {
  margin: 8px 0 0;
  font-size: 13px;
}

.footer-inner nav {
  display: flex;
  gap: 24px;
  color: #dfe3e5;
  font-size: 13px;
  font-weight: 700;
}

.footer-note {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-sticky-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  :root {
    --section: 96px;
  }

  .nav-shell {
    gap: 24px;
  }

  .nav-links {
    gap: 20px;
  }

  .hero-inner {
    min-height: 620px;
    grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1.05fr);
    gap: 38px;
  }

  .program-card {
    grid-column: span 6;
  }

  .program-card-main {
    grid-column: span 6;
  }

  .program-card-wide {
    grid-column: span 12;
  }

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

  .match-panel {
    gap: 38px;
  }

  .course-card {
    min-height: 340px;
  }

  .curriculum-layout,
  .faq-layout,
  .apply-layout {
    gap: 54px;
  }
}

@media (max-width: 860px) {
  .section-shell,
  .nav-shell {
    width: min(calc(100% - 36px), var(--content));
  }

  .nav-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-button {
    width: 42px;
    height: 42px;
    padding: 0;
    display: grid;
    place-content: center;
    gap: 6px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 5px;
    cursor: pointer;
  }

  .menu-button > span:not(.sr-only) {
    width: 18px;
    height: 2px;
    background: var(--ink);
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    bottom: auto;
    left: 0;
    z-index: 110;
    height: calc(100dvh - 76px);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms var(--ease), transform 180ms var(--ease);
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 17px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 18px;
  }

  .nav-links .mobile-menu-apply {
    min-height: 52px;
    margin-top: 22px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #26310f;
    background: var(--brand);
    border: 0;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 900;
  }

  .nav-links .mobile-menu-apply::after {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hero-inner {
    padding-block: 62px 46px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 42px;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero-media > img {
    aspect-ratio: 16 / 10;
  }

  .trust-items {
    min-height: 0;
    grid-template-columns: 1fr;
    padding-block: 22px;
  }

  .trust-items p,
  .trust-items p:first-child,
  .trust-items p:last-child {
    min-height: 64px;
    padding: 10px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .trust-items p:last-child {
    border-bottom: 0;
  }

  .curriculum-layout,
  .faq-layout,
  .apply-layout {
    grid-template-columns: 1fr;
  }

  .curriculum-layout .section-heading,
  .faq-layout .section-heading {
    position: static;
    margin-inline: auto;
    text-align: center;
  }

  .curriculum-layout .section-heading > p:last-child,
  .faq-layout .section-heading > p:last-child {
    margin-inline: auto;
  }

  .apply-form {
    grid-column: 1;
    grid-row: 1;
    order: initial;
  }

  .apply-guide {
    grid-column: 1;
    grid-row: 2;
    order: initial;
  }

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

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

  .match-panel {
    grid-template-columns: 1fr;
  }

  .match-panel-guide {
    padding: 26px 0 0;
    border-top: 1px solid var(--line-strong);
    border-left: 0;
  }

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

  .change-item,
  .change-item:first-child,
  .change-item:last-child {
    min-height: 0;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .change-item:last-child {
    border-bottom: 0;
  }

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

  .plan-description {
    min-height: 0;
  }

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

  .process-list li,
  .process-list li:first-child,
  .process-list li:last-child {
    min-height: 210px;
    padding: 26px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .process-list li:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 620px) {
  :root {
    --section: 76px;
  }

  body {
    font-size: 15px;
  }

  .section-shell,
  .nav-shell {
    width: min(calc(100% - 28px), var(--content));
  }

  .nav-shell {
    min-height: 68px;
  }

  .brand {
    width: 126px;
    height: 42px;
  }

  .brand img {
    width: 124px;
  }

  .nav-links {
    height: calc(100dvh - 68px);
  }

  .hero-inner {
    padding-block: 48px 34px;
    gap: 34px;
  }

  .hero h1 {
    font-size: 39px;
    line-height: 1.16;
  }

  .hero-lead {
    margin-top: 20px;
    font-size: 16px;
  }

  .hero-actions {
    margin-top: 28px;
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-assurance {
    gap: 7px 12px;
  }

  .hero-media {
    margin-inline: -14px;
  }

  .hero-media > img {
    aspect-ratio: 3 / 2;
    border-radius: 0;
  }

  .lesson-status {
    right: 12px;
    bottom: 12px;
    padding: 10px 12px;
  }

  .status-icon {
    width: 34px;
    height: 34px;
  }

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

  .section-heading h2,
  .apply-intro h2 {
    font-size: 31px;
  }

  .section-heading > p:last-child {
    margin-top: 16px;
    font-size: 15px;
  }

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

  .program-card,
  .program-card-main,
  .program-card-wide {
    min-height: 0;
    padding: 25px;
    grid-column: 1;
  }

  .program-card-main h3 {
    font-size: 28px;
  }

  .program-card-wide {
    align-items: flex-start;
    flex-direction: column;
  }

  .course-card {
    min-height: 310px;
    padding: 25px;
  }

  .match-tabs {
    grid-template-columns: 1fr;
    padding: 4px;
  }

  .match-tabs button {
    min-height: 48px;
    text-align: left;
  }

  .match-panel {
    min-height: 0;
    padding: 28px;
  }

  .match-panel h3 {
    font-size: 27px;
  }

  .match-panel-guide {
    padding-top: 22px;
  }

  .change-item strong {
    max-width: none;
    font-size: 19px;
  }

  .curriculum-layout {
    gap: 38px;
  }

  .curriculum-steps li {
    min-height: 0;
    padding: 23px 0;
    grid-template-columns: 66px 1fr;
    gap: 10px;
  }

  .curriculum-steps strong {
    font-size: 18px;
  }

  .plan-card {
    padding: 27px;
  }

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

  .process-list li,
  .process-list li:first-child,
  .process-list li:last-child,
  .process-list li:nth-child(2n) {
    min-height: 0;
    padding: 25px 0;
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 12px;
    border-right: 0;
  }

  .process-list strong {
    margin-top: 0;
  }

  .faq-layout {
    gap: 36px;
  }

  .faq-list summary {
    padding-block: 22px;
    font-size: 15px;
  }

  .apply-section {
    padding-block: 76px 96px;
  }

  .apply-layout {
    margin-top: 38px;
    gap: 14px;
  }

  .apply-intro > p:last-child {
    font-size: 15px;
  }

  .apply-guide {
    padding: 28px;
  }

  .apply-guide h3 {
    font-size: 24px;
  }

  .apply-form {
    padding: 24px;
    grid-template-columns: 1fr;
  }

  .field-row {
    grid-column: 1;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner nav {
    flex-wrap: wrap;
    gap: 10px 20px;
  }

  .footer-note {
    grid-column: 1;
  }

  .mobile-sticky-cta {
    position: fixed;
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    left: 14px;
    z-index: 90;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #26310f;
    background: var(--brand);
    border: 1px solid rgba(38, 49, 15, 0.14);
    border-radius: 6px;
    box-shadow: 0 14px 32px rgba(36, 41, 45, 0.22);
    font-weight: 900;
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 22px));
    transition: opacity 200ms var(--ease), transform 200ms var(--ease);
  }

  body.show-sticky-cta .mobile-sticky-cta {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  body.apply-visible .mobile-sticky-cta,
  body.match-visible .mobile-sticky-cta {
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 22px));
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.trust-mark{margin:0 0 14px;color:var(--ink-soft);font-size:13px;font-weight:700;line-height:1.5}
.site-role-note{margin:12px 0 0;color:var(--ink-muted);font-size:13px;line-height:1.6}
.cta-helper{margin:14px 0 0;color:var(--ink-soft);font-size:14px;font-weight:700}
.form-status[data-state="error"],.field-row.is-error input,.field-row.is-error select,.field-row.is-error textarea,.reason-field.is-error .reason-options,.agree.is-error{border-color:#c73b57}
.form-status[data-state="pending"]{color:var(--ink);background:var(--brand-soft);border-color:var(--brand-deep)}
@media (max-width:620px){.trust-mark{font-size:12px}.mobile-sticky-cta{bottom:calc(14px + env(safe-area-inset-bottom))}}
