:root {
  --primary: #183B5B;
  --secondary: #EAF4FB;
  --accent: #F28C28;
  --background: #FFFFFF;
  --text: #334155;
  --muted: #64748B;
  --line: #D9E6EF;
  --soft: #F7FBFE;
  --shadow: 0 14px 32px rgba(24, 59, 91, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: "Pretendard", "Noto Sans KR", sans-serif;
  line-height: 1.75;
}

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

img {
  display: block;
  width: 100%;
  height: auto;
}

p,
h1,
h2,
h3 {
  margin: 0;
  overflow-wrap: break-word;
  word-break: keep-all;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.nav {
  width: min(1120px, calc(100% - 40px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  color: var(--primary);
  font-size: 18px;
  font-weight: 800;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}

.nav-cta,
.menu-button,
.mobile-menu-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 700;
}

.nav-cta {
  padding: 0 16px;
  background: var(--primary);
  color: #fff;
  font-size: 15px;
  white-space: nowrap;
}

.menu-button,
.mobile-menu-button {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--primary);
  font-size: 14px;
}

.nav a:focus-visible,
.menu-button:focus-visible,
.mobile-menu-button:focus-visible,
.button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(242, 140, 40, 0.42);
  outline-offset: 3px;
}

.hero {
  width: min(1120px, calc(100% - 40px));
  min-height: 650px;
  margin: 0 auto;
  padding: 72px 0;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: 64px;
}

.hero-content {
  max-width: 590px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--primary);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.6;
}

.hero-kicker {
  width: fit-content;
  margin-bottom: 28px;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
}

h1 {
  color: var(--primary);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

h2 {
  color: var(--primary);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0;
}

h3 {
  color: var(--primary);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.hero-description {
  max-width: 560px;
  margin-top: 24px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.helper-text {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.hero-tags {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags span {
  min-height: 34px;
  padding: 6px 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--soft);
  color: var(--primary);
  font-size: 14px;
  font-weight: 800;
}

.hero-tags span:nth-child(2) {
  color: #127a62;
}

.hero-tags span:nth-child(3) {
  color: var(--accent);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 800;
}

.button-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 22px rgba(242, 140, 40, 0.18);
}

.hero-image {
  overflow: hidden;
  border-radius: 8px;
  background: var(--secondary);
  box-shadow: var(--shadow);
}

.hero-image img {
  height: min(520px, 42vw);
  min-height: 420px;
  object-fit: cover;
}

.trust-strip {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto 16px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.trust-item {
  min-height: 72px;
  padding: 18px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  color: var(--primary);
  font-size: 15px;
  font-weight: 700;
}

.stats-section {
  padding: 54px 0;
  background: #fff8ed;
}

.stats-grid {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.stats-grid article {
  min-height: 260px;
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
  border-radius: 8px;
}

.stats-grid img {
  width: 92px;
  height: 92px;
  margin-bottom: 18px;
  object-fit: contain;
}

.stats-grid strong {
  color: #f05a0a;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.1;
}

.stats-grid h2 {
  margin-top: 6px;
  color: #111827;
  font-size: 22px;
  line-height: 1.35;
}

.stats-grid p {
  max-width: 190px;
  margin-top: 12px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
}

.section {
  padding: 80px 0;
}

.blue-section {
  background: var(--secondary);
}

.section-heading,
.card-grid,
.feature-showcase,
.step-grid,
.check-grid,
.process-list,
.program-grid,
.link-card-grid,
.empty-card,
.review-placeholder-grid,
.faq-list,
.section-cta {
  width: min(1120px, calc(100% - 40px));
  margin-right: auto;
  margin-left: auto;
}

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

.section-heading h2 {
  max-width: 760px;
}

.case-carousel {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(680px, 1fr);
  gap: 20px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.case-carousel::-webkit-scrollbar {
  display: none;
}

.case-slide {
  min-height: 300px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.78fr);
  border-radius: 8px;
  scroll-snap-align: start;
  box-shadow: var(--shadow);
}

.case-slide-copy {
  padding: 42px;
  display: grid;
  align-content: center;
}

.case-slide-copy span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  font-weight: 800;
}

.case-slide-copy h3 {
  margin-top: 16px;
  color: #fff;
  font-size: 34px;
  line-height: 1.32;
}

.case-slide-copy p {
  max-width: 430px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.75;
}

.case-slide img {
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.case-slide-blue {
  background: #183B5B;
}

.case-slide-navy {
  background: #0f2f58;
}

.case-slide-orange {
  background: #a64f16;
}

.case-dots {
  width: min(1120px, calc(100% - 40px));
  margin: 16px auto 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.case-dots span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(24, 59, 91, 0.18);
}

.case-dots span.is-active {
  background: var(--accent);
}

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

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

.feature-showcase article {
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.feature-badge {
  width: fit-content;
  min-height: 32px;
  padding: 6px 13px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.feature-blue {
  background: #eef2ff;
  color: #33459c;
}

.feature-green {
  background: #e4f8ef;
  color: #13795b;
}

.feature-orange {
  background: #fff0e7;
  color: #db5d13;
}

.feature-gray {
  background: #f1f5f9;
  color: #475569;
}

.feature-yellow {
  background: #fff5cf;
  color: #9a6b00;
}

.feature-sky {
  background: #e8f5ff;
  color: #136b9f;
}

.feature-showcase h3 {
  margin-top: 18px;
  font-size: 25px;
}

.feature-showcase p {
  margin-top: 14px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.8;
}

.feature-showcase img {
  width: 100%;
  margin-top: 24px;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  object-fit: cover;
}

.admission-grid {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.admission-grid article {
  position: relative;
  min-height: 320px;
  padding: 30px;
  padding-right: 150px;
  display: grid;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.admission-avatar {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 112px;
  height: 112px;
  margin: 0;
  overflow: hidden;
  border: 3px solid #fff;
  border-radius: 999px;
  background: var(--secondary);
  box-shadow: 0 10px 24px rgba(24, 59, 91, 0.14);
}

.admission-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admission-grid span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(242, 140, 40, 0.12);
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.admission-grid h3 {
  color: var(--primary);
  font-size: 22px;
  line-height: 1.38;
}

.admission-grid p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.info-card,
.step-card,
.link-card-grid article,
.review-placeholder-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.info-card {
  min-height: 210px;
  padding: 24px;
}

.info-card p,
.step-card p,
.program-card p,
.empty-card p,
.review-placeholder-grid p,
.faq-list p,
.consultation-section p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

#learning-content .section-heading h2 {
  max-width: 820px;
}

#learning-content .hero-description {
  max-width: 840px;
}

.learning-content-grid {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.learning-card {
  min-height: 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.learning-card > span {
  display: inline-flex;
  min-width: 42px;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(242, 140, 40, 0.12);
  color: var(--accent);
  font-size: 14px;
  font-weight: 900;
}

.learning-card h3 {
  margin-top: 14px;
  color: var(--primary);
  font-size: 23px;
  line-height: 1.35;
}

.learning-card p {
  margin-top: 14px;
  color: var(--text);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.78;
}

.learning-card small {
  margin-top: 16px;
  padding: 13px 14px;
  display: block;
  border: 1px solid rgba(24, 59, 91, 0.1);
  border-radius: 8px;
  background: var(--soft);
  color: var(--primary);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.55;
}

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

.step-card {
  padding: 24px;
}

.step-card span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 15px;
  font-weight: 800;
}

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

.check-grid div {
  min-height: 76px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  font-weight: 700;
}

.check-grid div::before {
  content: "✓";
  color: var(--primary);
  font-weight: 800;
}

#teacher-standard {
  padding: 64px 0;
}

#teacher-standard .section-heading {
  margin-bottom: 24px;
}

.teacher-standard-grid {
  gap: 10px;
}

.teacher-standard-grid div {
  min-height: 60px;
  padding: 15px 18px;
  line-height: 1.55;
}

#principles {
  padding: 56px 0;
}

#principles .section-heading {
  margin-bottom: 22px;
}

#principles .section-heading h2 {
  max-width: 640px;
}

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

.principles-grid div {
  min-height: 58px;
  padding: 15px 18px;
}

.process-section {
  background: #fff;
}

.process-list {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  counter-increment: process;
}

.process-list li::before {
  content: counter(process, decimal-leading-zero);
  display: block;
  margin-bottom: 18px;
  color: var(--accent);
  font-weight: 800;
}

.process-list strong {
  color: var(--primary);
  font-size: 19px;
}

.process-list p {
  margin-top: 10px;
  color: var(--muted);
}

.process-heading {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto 38px;
  display: grid;
  justify-items: center;
  text-align: center;
}

.process-heading .hero-kicker {
  margin-bottom: 26px;
}

.process-heading h2 {
  max-width: 620px;
  color: #111827;
  font-size: 46px;
  line-height: 1.35;
}

.process-heading p {
  margin-top: 24px;
  color: var(--text);
  font-size: 21px;
  line-height: 1.65;
}

.process-flow {
  width: min(720px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0;
  display: grid;
  gap: 22px;
  list-style: none;
}

.process-flow > li {
  display: grid;
  justify-items: center;
  gap: 12px;
}

.process-flow > li > span {
  min-height: 38px;
  padding: 6px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #111827;
  border-radius: 999px;
  background: #fff;
  color: #111827;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
}

.process-flow article {
  position: relative;
  width: 100%;
  min-height: 250px;
  overflow: hidden;
  padding: 34px 34px 96px;
  border-radius: 8px;
  color: #fff;
}

.process-flow h3 {
  color: #fff;
  font-size: 28px;
  line-height: 1.35;
}

.process-flow p {
  max-width: 560px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.75;
}

.process-flow img {
  position: absolute;
  right: 22px;
  bottom: 18px;
  width: 150px;
  opacity: 0.84;
}

.process-blue article {
  background: #4f93df;
}

.process-purple article {
  background: #7d7ad8;
}

.process-dark article {
  background: #6a6d6e;
}

.process-gold article {
  background: #d4c891;
}

.process-teal article {
  background: #63a99f;
}

.diagnosis-section {
  overflow: hidden;
  background: var(--soft);
}

.diagnosis-carousel {
  width: 100%;
  overflow: hidden;
}

.diagnosis-track {
  width: max-content;
  display: flex;
  gap: 24px;
  animation: diagnosis-slide 28s linear infinite;
  will-change: transform;
}

.diagnosis-carousel:hover .diagnosis-track {
  animation-play-state: paused;
}

.diagnosis-track article {
  width: min(456px, calc(100vw - 56px));
  overflow: hidden;
  flex: 0 0 auto;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.diagnosis-track img {
  width: 100%;
  height: auto;
}

@keyframes diagnosis-slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 12px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .diagnosis-track {
    animation: none;
    overflow-x: auto;
  }
}

.section-cta {
  margin-top: 32px;
}

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

.program-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.program-card img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.program-card div {
  padding: 26px;
}

.program-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--primary);
  font-weight: 800;
}

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

.link-card-grid article {
  padding: 24px;
  display: grid;
  gap: 10px;
}

.link-card-grid h3 {
  margin-bottom: 8px;
}

.link-card-grid a {
  color: var(--text);
  font-weight: 600;
}

.internal-link-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.internal-link-grid article {
  align-content: start;
}

.internal-link-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.65;
}

.internal-link-grid a {
  width: fit-content;
  margin-top: 4px;
  color: var(--primary);
  font-weight: 900;
}

.empty-card {
  padding: 32px;
  border: 1px dashed rgba(24, 59, 91, 0.28);
  border-radius: 8px;
  background: var(--soft);
}

.case-fields {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.case-fields span,
.review-placeholder-grid span {
  padding: 14px;
  border-radius: 8px;
  background: #fff;
  color: var(--primary);
  font-weight: 700;
}

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

.review-placeholder-grid article {
  padding: 24px;
}

.review-placeholder-grid span {
  display: inline-flex;
  margin-top: 18px;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.faq-list summary {
  min-height: 52px;
  padding: 14px 20px;
  color: var(--primary);
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
}

.faq-list p {
  padding: 0 20px 16px;
}

.consultation-section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto 80px;
  padding: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
}

.consultation-section .eyebrow,
.consultation-section h2,
.consultation-section p {
  color: #fff;
}

.consultation-section h2 {
  max-width: 660px;
}

.consultation-section p {
  color: rgba(255, 255, 255, 0.82);
}

.consultation-section span {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.site-footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.72);
}

.footer-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.75fr 1fr;
  gap: 40px;
}

.site-footer h2 {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}

.footer-brand p {
  max-width: 320px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-menu {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-menu h2,
.footer-info h2 {
  margin-bottom: 6px;
}

.footer-menu a,
.footer-legal a,
.footer-info a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-menu a:hover,
.footer-legal a:hover,
.footer-info a:hover {
  color: #fff;
}

.footer-info dl {
  margin: 12px 0 0;
  display: grid;
  gap: 6px;
}

.footer-info div {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 12px;
}

.footer-info dt,
.footer-info dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
}

.footer-info dt {
  color: rgba(255, 255, 255, 0.52);
}

.footer-info dd {
  color: rgba(255, 255, 255, 0.78);
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
}

@media (max-width: 1024px) {
  .nav-links {
    gap: 14px;
    font-size: 14px;
  }

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

  .case-carousel {
    grid-auto-columns: minmax(560px, 84vw);
  }

  .card-grid,
  .admission-grid,
  .feature-showcase,
  .step-grid,
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-strip,
  .stats-grid,
  .check-grid,
  .link-card-grid,
  .review-placeholder-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .nav {
    min-height: auto;
    padding: 16px 0;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .menu-button,
  .mobile-menu-button {
    display: inline-flex;
    padding: 0 12px;
  }

  .nav-links {
    order: 3;
    width: 100%;
    display: none;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .nav-links.is-open {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 56px 0 64px;
    gap: 34px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  .hero-description {
    font-size: 16px;
  }

  #concerns .section-heading {
    margin-bottom: 22px;
  }

  #concerns .card-grid {
    gap: 12px;
  }

  #concerns .info-card {
    min-height: 0;
    padding: 18px 20px;
  }

  #concerns .info-card p {
    margin-top: 8px;
    line-height: 1.65;
  }

  .hero-actions .button,
  .section-cta .button,
  .consultation-section .button {
    width: 100%;
  }

  .case-carousel {
    width: min(100% - 40px, 1120px);
    grid-auto-columns: 100%;
  }

  .case-slide {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .case-slide-copy {
    padding: 28px;
  }

  .case-slide-copy h3 {
    font-size: 28px;
  }

  .case-slide img {
    min-height: 190px;
    max-height: 230px;
    width: 100%;
  }

  .admission-grid article {
    min-height: auto;
    padding: 28px 128px 28px 24px;
  }

  .admission-avatar {
    top: 24px;
    right: 24px;
    width: 84px;
    height: 84px;
  }

  .hero-image img {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .section {
    padding: 64px 0;
  }

  .process-heading {
    margin-bottom: 30px;
  }

  .process-heading h2 {
    font-size: 34px;
  }

  .process-heading p {
    margin-top: 18px;
    font-size: 18px;
  }

  .process-flow {
    gap: 18px;
  }

  .process-flow article {
    min-height: 230px;
    padding: 28px 24px 88px;
  }

  .process-flow h3 {
    font-size: 24px;
  }

  .process-flow p {
    font-size: 16px;
  }

  .process-flow img {
    width: 124px;
  }

  .stats-section {
    padding: 28px 0;
  }

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

  .stats-grid article {
    min-height: 156px;
    padding: 16px 10px;
    background: rgba(255, 255, 255, 0.58);
  }

  .stats-grid img {
    width: 54px;
    height: 54px;
    margin-bottom: 8px;
  }

  .stats-grid strong {
    font-size: 28px;
  }

  .stats-grid h2 {
    margin-top: 2px;
    font-size: 17px;
  }

  .stats-grid p {
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.45;
  }

  .trust-strip,
  .card-grid,
  .learning-content-grid,
  .admission-grid,
  .feature-showcase,
  .step-grid,
  .check-grid,
  .process-list,
  .program-grid,
  .link-card-grid,
  .case-fields,
  .review-placeholder-grid {
    grid-template-columns: 1fr;
  }

  .consultation-section {
    padding: 34px 24px;
    align-items: stretch;
    flex-direction: column;
  }

  .footer-inner {
    padding: 42px 0 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    margin-top: 30px;
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .nav,
  .hero,
  .trust-strip,
  .stats-grid,
  .case-carousel,
  .case-dots,
  .section-heading,
  .card-grid,
  .admission-grid,
  .feature-showcase,
  .step-grid,
  .check-grid,
  .process-list,
  .program-grid,
  .link-card-grid,
  .empty-card,
  .review-placeholder-grid,
  .faq-list,
  .section-cta,
  .consultation-section,
  .footer-inner {
    width: min(100% - 40px, 1120px);
  }

  .footer-info div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .footer-legal {
    flex-wrap: wrap;
    gap: 12px;
  }
}

.hero-description,
.section-heading p:not(.eyebrow),
.trust-strip p,
.stats-grid p,
.case-slide-copy p,
.feature-showcase p,
.admission-grid p,
.info-card p,
.empty-card p,
.review-placeholder-grid p,
.faq-list p,
.consultation-section p,
.process-list p,
.process-heading p,
.process-flow p,
.program-grid p,
.check-grid p,
.link-card-grid a,
.case-fields span,
.footer-brand p,
.footer-info dd,
.footer-bottom p,
.footer-legal {
  font-size: 17px;
  font-weight: 700;
}

main p,
main li,
main dd,
main small {
  font-size: 17px;
  font-weight: 700;
}
