:root {
  --navy: #102f58;
  --blue: #1b499f;
  --teal: #159ea6;
  --teal-dark: #0c7178;
  --gold: #b08239;
  --ink: #17243a;
  --muted: #5d697b;
  --line: #dbe2e8;
  --paper: #f7f9fb;
  --white: #fff;
  --success: #087a55;
  --danger: #b42318;
  --shadow: 0 18px 50px rgba(16, 47, 88, 0.12);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 32px;
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

html:lang(ko) body {
  word-break: keep-all;
  overflow-wrap: break-word;
}

html:lang(ko) :is(h1, h2, h3, .hero-title-b2b, .page-hero h1) {
  word-break: keep-all;
  overflow-wrap: break-word;
  text-wrap: balance;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0 0 auto;
  height: 680px;
  content: "";
  background:
    radial-gradient(circle at 85% 15%, rgba(21, 158, 166, 0.14), transparent 28%),
    radial-gradient(circle at 10% 20%, rgba(176, 130, 57, 0.09), transparent 24%);
  pointer-events: none;
}

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

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

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

:focus-visible {
  outline: 3px solid #f0a92e;
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-160%);
}

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(219, 226, 232, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.header-row {
  display: flex;
  min-height: 78px;
  align-items: center;
  gap: 12px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  min-height: 48px;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  display: block;
  width: 176px;
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

/* Frame the supplied original's white margins without altering the artwork. */
.header-logo-frame {
  display: block;
  position: relative;
  width: 100px;
  height: 56px;
  overflow: hidden;
}

.header-logo-frame .brand-logo {
  position: absolute;
  width: 176px;
  max-width: none;
  height: auto;
  left: -34px;
  top: -29px;
}

.site-nav > a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 8px;
  border-radius: 10px;
  color: #304059;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}

.site-nav > a:hover,
.site-nav > a[aria-current="page"] {
  color: var(--blue);
  background: #eef4ff;
}

.header-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
}

.lang-switch {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.lang-switch a {
  display: grid;
  min-width: 36px;
  min-height: 44px;
  place-items: center;
  border-radius: 8px;
  color: var(--muted);
  font-weight: 800;
  font-size: 12px;
}

.lang-switch a[aria-current="true"] {
  color: var(--white);
  background: var(--navy);
}

.button,
.button-ghost {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.25;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 10px 24px rgba(27, 73, 159, 0.22);
}

.button:hover {
  background: #133d8d;
  transform: translateY(-2px);
}

.button-ghost {
  border-color: var(--line);
  color: var(--navy);
  background: var(--white);
}

.button-ghost:hover {
  border-color: #a8b8ca;
  background: var(--paper);
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.hero {
  overflow: hidden;
  padding: 88px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: 64px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--teal-dark);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 3px;
  border-radius: 3px;
  content: "";
  background: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--navy);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

h1 em {
  color: var(--teal-dark);
  font-style: normal;
}

.hero-title-b2b {
  font-size: clamp(42px, 4.4vw, 64px);
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin: 30px 0 0;
  padding: 0;
  color: #3f4f63;
  font-size: 14px;
  list-style: none;
}

.hero-trust li::before {
  margin-right: 7px;
  color: var(--teal-dark);
  content: "✓";
  font-weight: 900;
}

.student-hero-proof {
  display: grid;
  max-width: 660px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.student-hero-proof li {
  display: grid;
  min-width: 0;
  gap: 2px;
  padding: 12px 14px;
  border: 1px solid #d7e6eb;
  border-left: 4px solid var(--teal);
  border-radius: var(--radius-sm);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  line-height: 1.35;
}

.student-hero-proof strong {
  color: var(--navy);
  font-size: 22px;
  line-height: 1.1;
}

.hero-visual {
  position: relative;
  min-height: 500px;
}

.hero-visual::before {
  position: absolute;
  inset: 2% 0 0 10%;
  border-radius: 45% 45% 42% 58%;
  content: "";
  background: linear-gradient(145deg, #e7f6f5, #eaf0fb);
  transform: rotate(-4deg);
}

.hero-visual img {
  position: relative;
  width: 100%;
  height: 500px;
  object-fit: contain;
}

.hero-visual--student {
  overflow: hidden;
  border-radius: 32px;
  background: #e7f6f5;
  box-shadow: var(--shadow);
}

.hero-visual--student::before {
  display: none;
}

.hero-visual .hero-student-photo {
  height: 500px;
  object-fit: cover;
  object-position: center 28%;
}

.student-photo-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.student-photo-strip figure,
.student-story-card {
  overflow: hidden;
  margin: 0;
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.student-photo-strip img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.student-photo-strip figcaption,
.student-story-card figcaption {
  padding: 14px 18px 18px;
  color: var(--navy);
  font-weight: 700;
}

.student-story-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.student-story-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.journey-modules {
  display: grid;
  gap: 24px;
}

.journey-module {
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.journey-module h2 {
  color: var(--navy);
}

.route-pair,
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 24px 0;
}

.route-pair > div,
.timeline-grid > div {
  padding: 20px;
  border-radius: var(--radius-sm);
  background: var(--paper);
}

.route-pair strong,
.timeline-grid strong {
  color: var(--teal-dark);
  font-size: 19px;
}

.check-list,
.numbered-checklist {
  display: grid;
  gap: 10px;
  padding-left: 24px;
}

.content-caution {
  padding: 14px 16px;
  border-left: 4px solid var(--gold);
  background: #fffaf1;
}

.source-link {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.problem-map a {
  display: grid;
  gap: 6px;
  min-height: 132px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
}

.problem-map strong {
  color: var(--navy);
}

.problem-map span {
  color: var(--muted);
}

.floating-note {
  position: absolute;
  right: -8px;
  bottom: 44px;
  max-width: 230px;
  padding: 18px;
  border: 1px solid rgba(219, 226, 232, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.floating-note strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
}

.floating-note span {
  color: var(--muted);
  font-size: 13px;
}

.stats {
  position: relative;
  z-index: 2;
  margin-top: -10px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.stat {
  min-height: 154px;
  padding: 28px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.stat:last-child {
  border: 0;
}

.stat strong {
  display: block;
  color: #77e0de;
  font-size: 33px;
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: #d7e4f0;
  font-size: 14px;
}

.section {
  padding: 100px 0;
}

.section-tint {
  background: var(--paper);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
}

.section-head h2 {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.18;
  letter-spacing: -0.045em;
}

.section-head p {
  max-width: 460px;
  margin-bottom: 5px;
  color: var(--muted);
}

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

.path-card {
  position: relative;
  display: flex;
  min-height: 290px;
  flex-direction: column;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.path-card:hover {
  border-color: #aac9d1;
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.path-card::after {
  position: absolute;
  right: -26px;
  bottom: -32px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  content: "";
  background: rgba(21, 158, 166, 0.08);
}

.path-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 26px;
  place-items: center;
  border-radius: 16px;
  color: var(--white);
  background: var(--teal-dark);
  font-size: 24px;
}

.path-card:nth-child(2) .path-icon {
  background: var(--gold);
}

.path-card:nth-child(3) .path-icon {
  background: var(--blue);
}

.path-card:nth-child(4) .path-icon {
  background: #683b59;
}

.path-card h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 22px;
  letter-spacing: -0.025em;
}

.path-card p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 15px;
}

.card-link {
  position: relative;
  z-index: 1;
  margin-top: auto;
  color: var(--blue);
  font-weight: 900;
  font-size: 14px;
}

.card-link::after {
  content: " →";
}

.language-route-note {
  display: block;
  margin-top: auto;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

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

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

.student-slot-heading {
  grid-column: 1 / -1;
}

.student-slot-heading h2 {
  margin: 0;
  color: var(--navy);
}

.student-slot {
  display: flex;
  flex-direction: column;
}

.student-slot .card-link {
  margin-top: auto;
}

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

.balance-grid > div {
  display: grid;
  gap: 4px;
  padding: 12px;
  border-radius: var(--radius-sm);
  background: var(--paper);
}

.balance-grid strong {
  color: var(--navy);
  font-size: 13px;
}

.balance-grid span {
  color: var(--teal-dark);
  font-weight: 900;
  font-size: 16px;
}

.journey-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 12px;
  margin: 0 0 20px;
}

.journey-steps a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 64px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--navy);
  background: var(--white);
  font-weight: 800;
}

.journey-steps a:hover,
.journey-steps a:focus-visible {
  border-color: var(--blue);
  color: var(--blue);
}

.journey-steps a span {
  color: var(--blue);
  font-size: 22px;
}

.journey-step-arrow {
  color: var(--blue);
  font-size: 24px;
  font-weight: 900;
}

.journey-module[id] {
  scroll-margin-top: 112px;
}

.partner-logo-section {
  overflow: hidden;
}

.partner-logo-belt {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: 92px;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.partner-logo-belt li {
  display: grid;
  min-height: 0;
  place-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.partner-logo-belt img {
  width: auto;
  max-width: 100%;
  height: 48px;
  max-height: 58px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.8;
}

.proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.proof-list li {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--paper);
  font-size: 14px;
  font-weight: 800;
}

.proof-list--links a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.interview-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.interview-card-grid a {
  display: grid;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--navy);
  background: var(--white);
  text-decoration: none;
}

.interview-card-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.interview-card-grid a > span {
  display: grid;
  gap: 3px;
  padding: 9px;
}

.interview-card-grid strong {
  font-size: 0.84rem;
}

.interview-card-grid a > span > span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
}

.interview-card-grid a:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
}

.result-proof {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.result-proof h2,
.result-proof p {
  margin-bottom: 0;
}

.platform-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 46px 50px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(16, 47, 88, 0.98), rgba(27, 73, 159, 0.93)),
    var(--navy);
  box-shadow: var(--shadow);
}

.platform-banner .eyebrow {
  color: #9be5e2;
}

.platform-banner h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.platform-banner p {
  max-width: 690px;
  margin-bottom: 0;
  color: #d7e4f0;
}

.platform-banner .button {
  color: var(--navy);
  background: var(--white);
  box-shadow: none;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 24px 28px 24px 0;
  counter-increment: step;
}

.step::before {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  content: counter(step, decimal-leading-zero);
  background: var(--teal-dark);
  font-weight: 900;
  font-size: 13px;
}

.step:not(:last-child)::after {
  position: absolute;
  top: 45px;
  right: 20px;
  left: 60px;
  height: 1px;
  content: "";
  background: var(--line);
}

.step h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 19px;
}

.step p {
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  padding: 72px 0 100px;
  color: #d7e4f0;
  background: #0a233f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.8fr;
  gap: 60px;
}

.site-footer .brand-logo--footer {
  width: 120px;
}

.site-footer p,
.site-footer address {
  color: #b9c9d9;
  font-style: normal;
  font-size: 14px;
}

.footer-title {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a:hover {
  color: #77e0de;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #94a9bc;
  font-size: 13px;
}

.staff-link {
  color: #b9c9d9;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mobile-bar {
  display: none;
}

.page-hero {
  padding: 88px 0 70px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(247, 249, 251, 0.96), rgba(232, 247, 247, 0.72));
}

.page-hero .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.5fr);
  align-items: end;
  gap: 60px;
}

.page-hero .container > * {
  min-width: 0;
}

.page-hero h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(42px, 5.5vw, 68px);
  overflow-wrap: break-word;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 19px;
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

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

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

.info-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.info-card h2,
.info-card h3 {
  color: var(--navy);
  letter-spacing: -0.025em;
}

.info-card h2 {
  font-size: 25px;
}

.info-card h3 {
  font-size: 20px;
}

.info-card p,
.info-card li {
  color: var(--muted);
}

.info-card ul,
.check-list {
  margin-bottom: 0;
  padding-left: 20px;
}

.info-card.highlight {
  border: 0;
  color: var(--white);
  background: var(--navy);
}

.info-card.highlight h2,
.info-card.highlight h3,
.info-card.highlight p,
.info-card.highlight li {
  color: inherit;
}

.university-detail-facts,
.university-detail-costs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
}

.university-detail-facts > div,
.university-detail-costs > div {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.university-detail-costs {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.university-detail-facts dt,
.university-detail-costs dt {
  margin-bottom: 10px;
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.university-detail-facts dd,
.university-detail-costs dd {
  margin: 0;
  color: var(--navy);
  font-weight: 800;
  font-size: 20px;
}

.university-detail-costs dd {
  display: grid;
  gap: 6px;
}

.university-detail-costs dd span,
.university-detail-costs dd small {
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}

.university-detail-empty {
  min-height: 30px;
}

.university-accreditation-card p {
  margin-bottom: 0;
  color: var(--navy);
  font-weight: 800;
}

.pill {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 5px 11px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: #e7f6f5;
  font-weight: 800;
  font-size: 12px;
}

.feature-list {
  display: grid;
  gap: 16px;
}

.feature-row {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.feature-row:last-child {
  border-bottom: 0;
}

.feature-number {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  color: var(--white);
  background: var(--teal-dark);
  font-weight: 900;
}

.feature-row h2,
.feature-row h3 {
  margin-bottom: 6px;
  color: var(--navy);
}

.feature-row p {
  margin-bottom: 0;
  color: var(--muted);
}

.callout {
  padding: 28px 32px;
  border-left: 5px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: #fbf7f0;
}

.callout strong {
  color: var(--navy);
}

.consult-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 36px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.consult-cta h2 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: clamp(32px, 4vw, 46px);
  letter-spacing: -0.04em;
}

.consult-cta-copy > p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
}

.consult-cta .button {
  min-width: 220px;
}

.login-grid,
.tool-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.login-card,
.tool-card {
  display: flex;
  min-height: 240px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.login-card h2,
.tool-card h3 {
  color: var(--navy);
}

.login-card p,
.tool-card p {
  color: var(--muted);
}

.login-card .button,
.tool-card .button,
.tool-card .button-ghost {
  width: 100%;
  margin-top: auto;
}

.tool-card[aria-disabled="true"] {
  opacity: 0.65;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.faq-list summary {
  min-height: 60px;
  padding: 17px 50px 17px 20px;
  cursor: pointer;
  color: var(--navy);
  font-weight: 900;
}

.faq-list details p {
  padding: 0 20px 20px;
  color: var(--muted);
}

.filter-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.filter-form {
  display: grid;
  grid-template-columns: minmax(220px, 1.5fr) repeat(4, minmax(130px, 1fr)) auto;
  align-items: end;
  gap: 14px;
}

/* Journey-first page system · 2026-08-06 */
.path-grid--b2b {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.institution-flow-visual {
  position: relative;
  min-height: 480px;
  margin: 0;
  overflow: hidden;
  padding: clamp(26px, 3.2vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(circle at 82% 12%, rgba(31, 188, 190, 0.34), transparent 31%),
    linear-gradient(145deg, #0b2d55, #174f79);
  box-shadow: var(--shadow);
}

.institution-flow-visual::after {
  position: absolute;
  right: -22px;
  bottom: -56px;
  color: rgba(255, 255, 255, 0.035);
  content: "GEA";
  font-size: 150px;
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
  pointer-events: none;
}

.institution-flow-heading {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 6px;
}

.institution-flow-heading span {
  color: #bcecef;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.institution-flow-heading strong {
  max-width: 360px;
  color: var(--white);
  font-size: clamp(21px, 2.1vw, 27px);
  line-height: 1.3;
}

.institution-flow-steps {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.institution-flow-steps::before {
  position: absolute;
  top: 34px;
  bottom: 34px;
  left: 33px;
  width: 2px;
  background: linear-gradient(#9ce3e5, rgba(156, 227, 229, 0.34));
  content: "";
}

.institution-flow-step {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 72px;
  padding: 10px 14px 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.institution-flow-marker {
  position: relative;
  z-index: 2;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(188, 236, 239, 0.62);
  border-radius: 50%;
  color: #bcecef;
  background: #17476e;
}

.institution-flow-marker svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.institution-flow-step:not(:last-child) .institution-flow-marker::after {
  position: absolute;
  bottom: -17px;
  left: 50%;
  z-index: 3;
  width: 7px;
  height: 7px;
  border-right: 2px solid #9ce3e5;
  border-bottom: 2px solid #9ce3e5;
  content: "";
  transform: translateX(-50%) rotate(45deg);
}

.institution-flow-step:last-child {
  border-color: rgba(188, 236, 239, 0.48);
  background: rgba(188, 236, 239, 0.13);
}

.institution-flow-step:last-child .institution-flow-marker {
  color: var(--navy);
  background: #bcecef;
}

.institution-flow-copy {
  min-width: 0;
  line-height: 1.25;
}

.institution-flow-copy > span {
  display: inline-flex;
  min-width: 30px;
  min-height: 22px;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  border-radius: 999px;
  color: #bcecef;
  background: rgba(7, 33, 64, 0.48);
  font-size: 11px;
  font-weight: 900;
}

.institution-flow-copy strong {
  color: var(--white);
  font-size: 16px;
}

.institution-flow-copy small {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.visual-split {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: center;
  gap: clamp(36px, 6vw, 76px);
}

.visual-split > div > .content-grid {
  grid-template-columns: 1fr;
}

.visual-photo {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.visual-photo::after {
  position: absolute;
  inset: 42% 0 0;
  content: "";
  background: linear-gradient(transparent, rgba(10, 31, 59, 0.86));
  pointer-events: none;
}

.visual-photo img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.visual-photo figcaption {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 22px;
  left: 24px;
  color: var(--white);
  font-weight: 800;
}

.journey-rail,
.workflow-strip,
.arrival-timeline,
.readiness-checklist,
.meeting-checklist {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.journey-rail {
  display: grid;
  gap: 12px;
}

.journey-rail li {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: start;
  gap: 14px;
}

.journey-rail li > span,
.workflow-strip li > span,
.arrival-timeline li > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.journey-rail strong,
.workflow-strip strong,
.arrival-timeline strong,
.readiness-checklist strong {
  color: var(--navy);
  font-size: 17px;
}

.journey-rail p,
.workflow-strip p,
.arrival-timeline p,
.readiness-checklist p {
  margin: 2px 0 0;
  color: var(--muted);
}

.program-matrix,
.university-decision-lenses,
.service-deliverables,
.settlement-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.program-matrix article,
.university-decision-lenses article,
.service-deliverables article,
.settlement-board article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(16, 47, 88, 0.06);
}

.program-matrix article > span,
.university-decision-lenses article > span,
.service-deliverables article > span,
.settlement-board article > span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 11px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(21, 158, 166, 0.12);
  font-size: 12px;
  font-weight: 900;
}

.program-matrix h3,
.university-decision-lenses h3,
.service-deliverables h3,
.settlement-board h3 {
  margin: 18px 0 8px;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.35;
}

.program-matrix strong {
  display: block;
  color: var(--blue);
}

.program-matrix p,
.university-decision-lenses p,
.service-deliverables p,
.settlement-board p {
  margin: 8px 0 0;
  color: var(--muted);
}

.service-visual-intro {
  padding-bottom: 32px;
}

.service-visual-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.62fr) minmax(0, 1.38fr);
  align-items: center;
  gap: clamp(30px, 6vw, 72px);
}

.service-visual-copy p:last-child {
  max-width: 520px;
  color: var(--muted);
}

.service-journey-map {
  position: relative;
  margin: 0;
  overflow: hidden;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-lg);
  color: var(--white);
  background: radial-gradient(circle at 88% 10%, rgba(50, 200, 199, 0.3), transparent 32%), linear-gradient(145deg, #0b294f, #16577b);
  box-shadow: var(--shadow);
}

.service-journey-map__stage {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: center;
  gap: 2px 14px;
}

.service-journey-map__stage > span {
  display: grid;
  width: 52px;
  height: 52px;
  grid-row: 1 / 3;
  place-items: center;
  border-radius: 16px;
  color: var(--navy);
  background: var(--white);
  font-size: 22px;
  font-weight: 900;
}

.service-journey-map__stage strong {
  color: #bcecef;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.service-journey-map__stage small {
  overflow-wrap: anywhere;
  font-size: 20px;
  font-weight: 900;
}

.service-journey-map ol {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.service-journey-map li {
  position: relative;
  min-width: 0;
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
}

.service-journey-map li:not(:last-child)::after {
  position: absolute;
  z-index: 1;
  top: 44px;
  right: -18px;
  width: 24px;
  color: #bcecef;
  content: "→";
  font-weight: 900;
  text-align: center;
}

.service-journey-map li > span {
  display: block;
  margin-bottom: 10px;
  color: #bcecef;
  font-size: 11px;
  font-weight: 900;
}

.service-journey-map li strong {
  display: block;
  overflow-wrap: anywhere;
  font-size: 15px;
  line-height: 1.35;
}

.service-journey-map figcaption {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.workflow-strip,
.arrival-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.arrival-timeline {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.workflow-strip li,
.arrival-timeline li {
  position: relative;
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.workflow-strip li:not(:last-child)::after,
.arrival-timeline li:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 40px;
  right: -23px;
  width: 30px;
  color: var(--teal-dark);
  content: "→";
  font-weight: 900;
  text-align: center;
}

.workflow-strip strong,
.arrival-timeline strong {
  display: block;
  margin-top: 22px;
}

.role-lanes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.role-lanes article {
  padding: 24px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--navy);
}

.role-lanes article:last-child {
  background: linear-gradient(135deg, var(--blue), var(--teal-dark));
}

.role-lanes span {
  display: block;
  margin-bottom: 8px;
  color: #bcecef;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.role-lanes h3 {
  margin: 0;
  color: inherit;
  font-size: 20px;
}

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

.intent-grid a {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--navy);
  background: var(--white);
  font-weight: 800;
}

.intent-grid a:hover,
.intent-grid a:focus-visible {
  border-color: var(--teal);
  transform: translateY(-2px);
}

.faq-intent-strip {
  margin-bottom: 18px;
  padding: 18px 22px;
  border-radius: var(--radius-sm);
  color: var(--navy);
  background: rgba(21, 158, 166, 0.1);
  font-weight: 800;
  text-align: center;
}

.handoff-gate {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 28px;
  align-items: stretch;
}

.readiness-checklist {
  display: grid;
  gap: 12px;
}

.readiness-checklist li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.readiness-checklist li > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--success);
  font-weight: 900;
}

.handoff-gate > aside {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 4vw, 42px);
  border-radius: var(--radius-lg);
  color: var(--white);
  background: linear-gradient(145deg, var(--navy), #173f75);
  box-shadow: var(--shadow);
}

.handoff-gate > aside :is(h2, p) {
  color: inherit;
}

.handoff-gate > aside .eyebrow {
  color: #bcecef;
}

.handoff-gate > aside .button,
.handoff-gate > aside .button-ghost {
  width: 100%;
  margin-top: 10px;
  text-align: center;
}

.handoff-gate > aside .button-ghost {
  border-color: rgba(255, 255, 255, 0.58);
  color: var(--white);
  background: transparent;
}

.handoff-gate > aside .button-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

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

.meeting-checklist li {
  min-height: 112px;
  padding: 22px;
  border-top: 4px solid var(--teal);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(16, 47, 88, 0.06);
}

.service-responsibility {
  display: grid;
  grid-template-columns: minmax(240px, 0.65fr) minmax(0, 1.35fr);
  align-items: center;
  gap: 42px;
}

.service-responsibility .role-lanes {
  margin: 0;
}

.university-profile-hero {
  padding: 46px 0 54px;
  color: var(--white);
  background: linear-gradient(135deg, #0b294f 0%, #164e78 68%, #167d84 100%);
}

.university-profile-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 74px);
}

.university-profile-copy,
.university-profile-visual {
  min-width: 0;
}

.university-profile-copy h1 {
  max-width: 720px;
  margin: 14px 0;
  color: var(--white);
  font-size: clamp(38px, 5.5vw, 68px);
  line-height: 1.06;
  letter-spacing: -0.04em;
  overflow-wrap: anywhere;
  word-break: normal;
}

.university-profile-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.university-profile-copy .button-ghost {
  border-color: var(--white);
  color: var(--navy);
  background: var(--white);
}

.university-profile-copy .page-hero-actions,
.university-profile-copy .page-hero-actions > * {
  min-width: 0;
  overflow-wrap: anywhere;
}

.university-profile-logo {
  display: inline-grid;
  min-width: 110px;
  min-height: 76px;
  max-width: 280px;
  place-items: center;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.96);
}

.university-profile-logo img {
  width: auto;
  max-height: 64px;
  object-fit: contain;
}

.university-profile-monogram {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: #e5eef8;
  font-size: 24px;
  font-weight: 900;
}

.university-profile-visual {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius-lg);
  background: rgba(5, 24, 46, 0.35);
  box-shadow: 0 24px 64px rgba(3, 17, 35, 0.3);
}

.university-profile-visual > img,
.university-profile-fallback {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.university-profile-fallback {
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 65% 30%, rgba(255, 255, 255, 0.25), transparent 30%), linear-gradient(145deg, #1c5b91, #159ea6);
}

.university-profile-fallback span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 110px;
  font-weight: 900;
}

.university-profile-visual figcaption {
  padding: 12px 18px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
}

.source-gap {
  margin: 18px 0 0;
  padding: 16px 18px;
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--muted);
  background: #fff9ed;
}

.source-gap strong {
  color: var(--navy);
}

.university-handoff > div:first-child {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
}

@media (max-width: 980px) {
  .visual-split,
  .service-responsibility,
  .service-visual-layout,
  .university-profile-hero__grid,
  .handoff-gate {
    grid-template-columns: 1fr;
  }

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

  .institution-flow-visual {
    width: 100%;
    max-width: 720px;
    justify-self: center;
  }

  .service-journey-map ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-journey-map li:nth-child(2)::after {
    display: none;
  }

  .workflow-strip,
  .meeting-checklist {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .workflow-strip li:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 760px) {
  .path-grid--b2b {
    grid-template-columns: 1fr;
  }

  .institution-flow-visual {
    min-height: 0;
    padding: 24px 20px;
  }

  .institution-flow-heading strong {
    font-size: 21px;
  }

  .institution-flow-steps {
    margin-top: 18px;
  }

  .institution-flow-step {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    padding-left: 8px;
  }

  .institution-flow-steps::before {
    left: 29px;
  }

  .institution-flow-marker {
    width: 44px;
    height: 44px;
  }

  .institution-flow-marker svg {
    width: 21px;
    height: 21px;
  }

  .service-journey-map ol {
    grid-template-columns: 1fr;
  }

  .service-journey-map li {
    min-height: 0;
  }

  .service-journey-map li:nth-child(2)::after,
  .service-journey-map li:not(:last-child)::after {
    display: block;
    top: auto;
    right: 50%;
    bottom: -20px;
    transform: translateX(50%) rotate(90deg);
  }

  .visual-photo,
  .visual-photo img {
    min-height: 320px;
  }

  .program-matrix,
  .university-decision-lenses,
  .service-deliverables,
  .settlement-board,
  .workflow-strip,
  .arrival-timeline,
  .meeting-checklist,
  .intent-grid,
  .role-lanes {
    grid-template-columns: 1fr;
  }

  .workflow-strip li,
  .arrival-timeline li {
    min-height: 0;
  }

  .workflow-strip li:not(:last-child)::after,
  .arrival-timeline li:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -25px;
    transform: translateX(50%) rotate(90deg);
  }

  .workflow-strip li:nth-child(2)::after {
    display: block;
  }

  .university-profile-hero {
    padding: 32px 0 42px;
  }

  .university-profile-copy h1 {
    font-size: clamp(36px, 11vw, 50px);
  }

  .university-profile-visual > img,
  .university-profile-fallback {
    height: 240px;
  }

  .university-profile-copy .page-hero-actions > * {
    flex: 1 1 100%;
  }

  .handoff-gate > aside,
  .university-handoff > div:first-child {
    padding: 26px 22px;
  }
}

.filter-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-weight: 800;
  font-size: 13px;
}

.filter-form select,
.filter-form input {
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid #b9c4d0;
  border-radius: 10px;
  background: var(--white);
}

.results-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 28px 0 16px;
}

.university-sort {
  display: grid;
  flex: 0 0 min(240px, 100%);
  gap: 7px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.university-sort select {
  min-height: 44px;
  padding: 9px 12px;
  border: 1px solid #b9c4d0;
  border-radius: 10px;
  background: var(--white);
}

.result-count {
  margin: 0;
  color: var(--navy);
  font-weight: 900;
}

.result-count[data-state="error"] {
  color: var(--danger);
}

.university-results {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.university-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(250px, 1.25fr) 125px minmax(285px, 1.35fr) minmax(190px, 0.9fr) 48px;
  align-items: center;
  gap: 18px;
  min-height: 116px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.university-row:hover,
.university-row:focus-within {
  border-color: #91b5c1;
  box-shadow: 0 14px 28px rgba(16, 47, 88, 0.09);
  transform: translateY(-1px);
}

.university-row__trigger {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: inherit;
  background: transparent;
  cursor: pointer;
}

.university-row__trigger:focus-visible {
  outline: 3px solid #f0a92e;
  outline-offset: 2px;
}

.university-row__identity,
.university-row__location,
.university-row__accreditation,
.university-row__tuition {
  min-width: 0;
}

.university-row__identity h2 {
  margin: 0;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.25;
}

.university-row .university-name-en {
  min-height: 0;
  margin: 5px 0 0;
  line-height: 1.35;
}

.university-row__label {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.university-row__location strong,
.university-row__location small,
.university-row__tuition strong,
.university-row__tuition small {
  display: block;
}

.university-row__location strong,
.university-row__tuition strong {
  color: var(--navy);
}

.university-row__location small,
.university-row__tuition small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.university-row__tuition strong {
  font-size: 14px;
  font-variant-numeric: tabular-nums;
}

.university-row__tuition strong.is-empty {
  color: var(--muted);
}

.university-row__accreditation > div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.university-row__arrow {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-size: 20px;
  transition: background 160ms ease, transform 160ms ease;
}

.university-row:hover .university-row__arrow,
.university-row:focus-within .university-row__arrow {
  background: var(--teal-dark);
  transform: translateX(2px);
}

.university-modal-open {
  overflow: hidden;
}

.university-modal-layer[hidden] {
  display: none;
}

.university-modal-layer {
  position: fixed;
  z-index: 900;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

.university-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 20, 40, 0.76);
  backdrop-filter: blur(8px);
}

.university-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  max-height: calc(100vh - 48px);
  max-height: calc(100dvh - 48px);
  overflow: auto;
  overscroll-behavior: contain;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 28px 90px rgba(16, 47, 88, 0.28);
}

.university-modal-close {
  position: absolute;
  z-index: 5;
  top: 18px;
  right: 18px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(16, 47, 88, 0.16);
  border-radius: 50%;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.95);
  cursor: pointer;
  font-size: 31px;
  line-height: 1;
  box-shadow: 0 8px 24px rgba(16, 47, 88, 0.16);
}

.university-modal-visual {
  position: relative;
  display: grid;
  height: 270px;
  place-items: center;
  overflow: hidden;
  border-radius: 27px 27px 0 0;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 26%, rgba(255, 255, 255, 0.19), transparent 22%),
    radial-gradient(circle at 22% 82%, rgba(21, 158, 166, 0.52), transparent 30%),
    linear-gradient(128deg, hsl(calc(204deg + var(--identity-tone) * 1deg) 63% 31%), var(--navy) 72%);
}

.university-modal-visual::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 20, 40, 0.42), transparent 62%),
    repeating-linear-gradient(120deg, transparent 0 38px, rgba(255, 255, 255, 0.035) 38px 40px);
  pointer-events: none;
}

.university-modal-visual__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.university-modal-visual__monogram {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.2);
  font-size: clamp(118px, 18vw, 220px);
  font-weight: 900;
  letter-spacing: -0.09em;
  line-height: 0.8;
}

.university-modal-visual__label {
  position: absolute;
  z-index: 2;
  top: 22px;
  right: 80px;
  left: 24px;
  margin: 0;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.university-modal-heading {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 138px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin: -52px 42px 0;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(16, 47, 88, 0.14);
}

.university-modal-mark {
  display: grid;
  width: 138px;
  height: 112px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--blue);
  background: linear-gradient(145deg, #f7fbff, #edf4ff);
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.university-modal-mark img {
  display: block;
  max-width: calc(100% - 20px);
  max-height: calc(100% - 20px);
  object-fit: contain;
}

.university-modal-eyebrow {
  margin: 0 0 7px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.university-modal-title {
  margin: 0;
  color: var(--navy);
  font-size: clamp(31px, 3.4vw, 46px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.university-modal-subtitle {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.university-modal-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.university-modal-profile-link {
  min-width: 152px;
  white-space: nowrap;
}

.university-modal-content {
  padding: 26px 42px 32px;
}

.university-modal-evidence-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.university-modal-evidence-card {
  min-height: 122px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
}

.university-modal-evidence-card span,
.university-modal-evidence-card small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.university-modal-evidence-card strong {
  display: block;
  margin: 8px 0 4px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.25;
}

.university-modal-focus-steps {
  display: none;
}

.university-modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.university-modal-footer > p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.university-modal-actions {
  flex: 0 0 auto;
}

.university-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.university-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.region-label {
  color: var(--muted);
  font-size: 13px;
}

.university-card h2 {
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 21px;
}

.university-name-en {
  min-height: 44px;
  color: var(--muted);
  font-size: 13px;
}

.university-meta {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 7px 10px;
  margin: 18px 0 24px;
  font-size: 13px;
}

.university-meta dt {
  color: var(--navy);
  font-weight: 900;
}

.university-meta dd {
  margin: 0;
  color: var(--muted);
}

.university-card .card-link {
  align-self: center;
}

.availability-summary {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.cost-availability {
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
}

.cost-availability.is-available {
  background: #dff4e7;
  color: #166534;
}

.cost-availability.is-unavailable {
  background: #edf1f4;
  color: #53616d;
}

.cost-availability-reason {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.university-tuition {
  display: grid;
  gap: 3px;
  min-height: 50px;
  margin: 16px 0 0;
}

.university-tuition span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.university-tuition strong {
  color: var(--navy);
  font-variant-numeric: tabular-nums;
}

.university-tuition.is-empty {
  visibility: hidden;
}

.university-card-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 20px;
}

.university-compare-button {
  min-height: 44px;
}

.university-compare-button[aria-pressed="true"] {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.university-compare-button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.university-comparison {
  margin: 24px 0 30px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.university-comparison[hidden] {
  display: none;
}

.comparison-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.comparison-head h2 {
  margin: 4px 0 6px;
  color: var(--navy);
}

.comparison-head p {
  margin-bottom: 0;
}

.comparison-status {
  color: var(--navy);
  font-weight: 900;
  white-space: nowrap;
}

.university-comparison-table {
  min-width: 720px;
}

.accreditation-legend {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 12px;
  align-items: start;
  margin: 24px 0 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
}

.accreditation-legend > span {
  color: var(--blue);
  font-size: 20px;
}

.accreditation-legend p {
  margin: 0;
  color: var(--navy);
  font-weight: 700;
}

.accreditation-legend div {
  display: flex;
  grid-column: 2;
  flex-wrap: wrap;
  gap: 8px;
}

.accreditation-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.accreditation-badge--excellent {
  color: var(--white);
  background: var(--blue);
  font-weight: 900;
}

.accreditation-badge--certified {
  color: var(--navy);
  border: 1px solid #6f8baa;
  background: #e7eff8;
}

.accreditation-badge--general {
  color: #59636d;
  background: #edf0f2;
}

.accreditation-badge--strict-review {
  color: #7a271a;
  border: 1px solid #e8b4a8;
  background: #fff0ec;
}

.comparison-bottom-bar {
  position: fixed;
  z-index: 55;
  right: max(20px, env(safe-area-inset-right));
  bottom: 20px;
  left: max(20px, env(safe-area-inset-left));
  display: flex;
  max-width: 920px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 auto;
  padding: 12px;
  border: 1px solid #b8c9db;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.comparison-bottom-bar[hidden] {
  display: none;
}

.comparison-bottom-bar > span {
  color: var(--navy);
  font-weight: 900;
}

body.comparison-active {
  padding-bottom: 116px;
}

#university-comparison {
  scroll-margin-top: 112px;
  scroll-margin-bottom: 116px;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 50px 20px;
  border: 1px dashed #aebdca;
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
}

.cost-basis {
  margin: 0 0 18px;
  color: var(--muted);
  font-weight: 700;
}

.currency-note {
  margin: 18px auto 0;
  max-width: var(--container);
  color: var(--muted);
  font-size: 13px;
}

.footer-office-label {
  color: var(--white);
}

.floating-contact {
  position: fixed;
  z-index: 70;
  right: max(20px, env(safe-area-inset-right));
  bottom: 20px;
}

.floating-contact-trigger {
  min-height: 48px;
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue);
  box-shadow: var(--shadow);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.floating-contact-menu {
  display: grid;
  gap: 4px;
  min-width: 220px;
  margin: 0 0 10px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: var(--shadow);
}

.floating-contact-menu[hidden] {
  display: none;
}

.floating-contact-menu a,
.floating-contact-unavailable {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--navy);
  font-weight: 700;
}

.floating-contact-menu a:hover,
.floating-contact-menu a:focus-visible {
  color: var(--blue);
  background: var(--paper);
}

.floating-contact-unavailable {
  color: var(--muted);
  cursor: not-allowed;
}

.cost-summary-grid,
.cost-sequence {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.cost-summary-grid article {
  display: grid;
  gap: 8px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.cost-summary-grid strong {
  color: var(--navy);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
}

.cost-summary-grid span,
.cost-sequence span {
  color: var(--muted);
}

.cost-sequence {
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: cost-step;
}

.cost-sequence li {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 180px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  counter-increment: cost-step;
}

.cost-sequence li::before {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal-dark);
  font-weight: 900;
  content: counter(cost-step);
}

.cost-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.cost-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.cost-table--tuition {
  min-width: 1480px;
}

.cost-table th,
.cost-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.cost-table thead th {
  color: var(--white);
  background: var(--navy);
}

.cost-table tbody th {
  min-width: 220px;
  color: var(--navy);
  background: #f7fafc;
}

.cost-table tbody tr:last-child > * {
  border-bottom: 0;
}

.cost-number {
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.cost-empty {
  min-width: 90px;
}

.section-action {
  margin: 22px 0 0;
}

.card-link--light {
  color: var(--white);
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.metric-box {
  padding: 28px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--navy);
}

.metric-box strong {
  display: block;
  color: #77e0de;
  font-size: 34px;
}

.cooperation-message {
  margin: 0 0 28px;
  padding: 20px 24px;
  border-left: 5px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--navy);
  background: #fffaf0;
  font-weight: 900;
  font-size: clamp(18px, 2.2vw, 24px);
}

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

.cooperation-stage {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.cooperation-stage.is-primary {
  border-color: #8db2ec;
  background: #f4f8ff;
}

.cooperation-stage.is-cross {
  grid-column: 1 / -1;
}

.cooperation-stage-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.cooperation-stage-head > span {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  background: var(--navy);
  font-weight: 900;
}

.cooperation-stage-head h3 {
  margin: 0;
  color: var(--navy);
  font-size: 22px;
}

.cooperation-items {
  display: grid;
  gap: 12px;
}

.cooperation-stage.is-cross .cooperation-items {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cooperation-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.cooperation-card:hover {
  border-color: #8db2ec;
  box-shadow: 0 12px 30px rgba(16, 47, 88, 0.1);
  transform: translateY(-2px);
}

.cooperation-card.is-featured {
  border-color: var(--blue);
  box-shadow: 0 12px 30px rgba(27, 73, 159, 0.12);
}

.cooperation-number {
  grid-row: 1 / span 3;
  color: var(--gold);
  font-weight: 900;
  font-size: 13px;
}

.cooperation-card strong {
  color: var(--navy);
  font-size: 18px;
}

.primary-mark {
  display: inline-flex;
  margin-left: 6px;
  padding: 2px 7px;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue);
  font-size: 10px;
  vertical-align: middle;
  text-transform: uppercase;
}

.cooperation-card p {
  margin: 0;
  color: var(--muted);
}

.cooperation-card .card-link {
  margin-top: 4px;
}

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

.contact-channel-card,
.institution-detail-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(16, 47, 88, 0.08);
}

.contact-channel-card h2,
.institution-detail-card h2 {
  color: var(--navy);
}

.contact-channel-card > a {
  color: var(--blue);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.institution-detail-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 18px;
}

.institution-detail-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
}

.institution-detail-card .button,
.institution-detail-card .button-ghost {
  width: 100%;
  margin-top: auto;
}

.email-subject {
  display: grid;
  gap: 6px;
  padding: 12px;
  border-radius: 10px;
  background: var(--paper);
}

.email-subject code {
  color: var(--navy);
  white-space: normal;
  overflow-wrap: anywhere;
}

.is-disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.institution-detail-card address {
  color: var(--muted);
  font-style: normal;
}

.story-quote {
  position: relative;
  padding-top: 50px;
}

.story-quote::before {
  position: absolute;
  top: 0;
  color: #c9d8e8;
  content: "“";
  font-family: Georgia, serif;
  font-size: 78px;
  line-height: 1;
}

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

.resource-link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 88px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.resource-link:hover {
  border-color: #aac9d1;
  box-shadow: var(--shadow);
}

.resource-link time {
  color: var(--muted);
  font-size: 13px;
}

.resource-link strong {
  color: var(--navy);
}

.resource-link span:last-child {
  color: var(--blue);
  font-weight: 900;
}

.site-nav > .mobile-login {
  display: none;
}

@media (max-width: 1280px) {
  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    padding: 14px 20px 20px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 18px 30px rgba(16, 47, 88, 0.1);
  }

  .site-nav[data-open="true"] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-nav > a {
    min-width: 0;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .menu-button {
    display: grid;
    flex: 0 0 auto;
    place-items: center;
  }

  .header-actions .button,
  .header-actions > .button-ghost {
    display: none;
  }

  .site-nav > .mobile-login {
    display: inline-flex;
  }

  .header-actions {
    margin-left: auto;
  }
}

@media (max-width: 1080px) {

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

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

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

  .partner-logo-belt {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .filter-form {
    grid-template-columns: repeat(3, 1fr);
  }

  .filter-form .button-ghost {
    grid-column: 1 / -1;
  }

  .university-row {
    grid-template-columns: minmax(240px, 1fr) 120px minmax(260px, 1.2fr) minmax(180px, 0.8fr) 48px;
  }

  .university-modal-heading {
    grid-template-columns: 120px minmax(0, 1fr);
    margin-inline: 28px;
  }

  .university-modal-mark {
    width: 120px;
  }

  .university-modal-profile-link {
    grid-column: 2;
    justify-self: start;
  }

  .university-modal-content {
    padding-inline: 28px;
  }

  .university-modal-evidence-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100% - 28px, 680px);
  }

  .university-row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-areas:
      "identity identity"
      "location tuition"
      "accreditation accreditation";
    gap: 12px 10px;
    min-height: 0;
    padding: 14px 58px 14px 14px;
  }

  .results-head {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .university-sort {
    flex-basis: auto;
    width: 100%;
  }

  .university-row__identity,
  .university-row__accreditation {
    grid-column: 1 / -1;
  }

  .university-row__identity {
    grid-area: identity;
  }

  .university-row__location {
    grid-area: location;
  }

  .university-row__accreditation {
    grid-area: accreditation;
  }

  .university-row__tuition {
    grid-area: tuition;
  }

  .university-row__identity h2 {
    font-size: 18px;
  }

  .university-row__accreditation > .university-row__label {
    display: none;
  }

  .university-row__arrow {
    position: absolute;
    top: 14px;
    right: 12px;
  }

  .university-modal-layer {
    align-items: end;
    padding: 10px;
  }

  .university-modal-dialog {
    width: 100%;
    max-height: calc(100vh - 20px);
    max-height: calc(100dvh - 20px);
    border-radius: 24px;
  }

  .university-modal-close {
    top: 12px;
    right: 12px;
  }

  .university-modal-visual {
    height: 250px;
    border-radius: 23px 23px 0 0;
  }

  .university-modal-visual__label {
    top: 18px;
    right: 76px;
    left: 18px;
    font-size: 11px;
  }

  .university-modal-heading {
    display: block;
    margin: -44px 22px 0;
    padding: 18px;
  }

  .university-modal-mark {
    width: 112px;
    height: 86px;
    margin-bottom: 18px;
    font-size: 27px;
  }

  .university-modal-title {
    font-size: clamp(30px, 9vw, 38px);
  }

  .university-modal-profile-link {
    width: 100%;
    margin-top: 18px;
  }

  .university-modal-content {
    padding: 22px 22px 24px;
  }

  .university-modal-evidence-grid {
    display: none;
  }

  .university-modal-focus-steps {
    display: grid;
    gap: 0;
  }

  .university-modal-focus-step {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-top: 1px solid var(--line);
  }

  .university-modal-focus-step:first-child {
    border-top: 0;
  }

  .university-modal-focus-step__index {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 50%;
    color: var(--blue);
    background: #edf4ff;
    font-size: 12px;
    font-weight: 900;
  }

  .university-modal-focus-step span,
  .university-modal-focus-step strong {
    display: block;
  }

  .university-modal-focus-step > div > span,
  .university-modal-focus-step > small {
    color: var(--muted);
    font-size: 12px;
  }

  .university-modal-focus-step strong {
    color: var(--navy);
  }

  .university-modal-focus-step > small {
    grid-column: 2;
  }

  .university-modal-footer {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .university-modal-actions,
  .university-modal-actions .button {
    width: 100%;
  }

  .university-card-actions,
  .comparison-head {
    align-items: stretch;
    flex-direction: column;
  }

  .student-slot-grid,
  .trust-proof-grid,
  .result-proof {
    grid-template-columns: 1fr;
  }

  .interview-card-grid {
    grid-template-columns: 1fr;
  }

  .result-proof {
    align-items: stretch;
  }

  .comparison-bottom-bar {
    right: 14px;
    bottom: 82px;
    left: 14px;
    flex-wrap: wrap;
  }

  body.comparison-active {
    padding-bottom: 198px;
  }

  .university-card .card-link {
    align-self: flex-start;
  }

  .comparison-status {
    white-space: normal;
  }

  .university-comparison {
    padding: 20px;
  }

  body {
    padding-bottom: 72px;
  }

  .header-row {
    min-height: 68px;
    gap: 8px;
  }

  .brand-logo {
    width: 148px;
  }

  .header-actions {
    margin-left: auto;
  }

  .lang-switch a {
    min-width: 34px;
  }

  .hero {
    padding: 58px 0 44px;
  }

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

  h1 {
    font-size: clamp(39px, 12vw, 58px);
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-visual {
    min-height: 320px;
  }

  .hero-visual img {
    height: 340px;
  }

  .hero-visual .hero-student-photo {
    height: 420px;
  }

  .hero--student {
    padding-top: 40px;
  }

  .hero--student h1 {
    font-size: clamp(38px, 11vw, 46px);
  }

  .student-hero-proof {
    gap: 8px;
  }

  .student-hero-proof li {
    padding: 10px 11px;
    font-size: 11px;
  }

  .student-hero-proof strong {
    font-size: 20px;
  }

  .floating-note {
    right: 0;
    bottom: 8px;
  }

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

  .stat {
    min-height: 125px;
    padding: 22px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .stat:nth-child(2) {
    border-right: 0;
  }

  .section {
    padding: 72px 0;
  }

  .section-head {
    display: block;
  }

  .section-head h2 {
    margin-bottom: 16px;
    font-size: 34px;
  }

  .path-grid,
  .steps,
  .footer-grid,
  .content-grid,
  .content-grid.two,
  .login-grid,
  .tool-grid,
  .university-results,
  .metric-strip,
  .cost-summary-grid,
  .cost-sequence,
  .cooperation-grid,
  .contact-channel-grid,
  .institution-detail-grid,
  .cooperation-stage.is-cross .cooperation-items {
    grid-template-columns: 1fr;
  }

  .partner-logo-belt {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .floating-contact {
    display: none;
  }

  .floating-contact--university-explorer {
    position: static;
    display: none;
    justify-content: flex-end;
    margin: 14px 14px 86px;
  }

  .journey-steps {
    grid-template-columns: 1fr;
  }

  .journey-step-arrow {
    justify-self: center;
    transform: rotate(90deg);
  }

  .university-detail-facts,
  .university-detail-costs {
    grid-template-columns: 1fr;
  }

  .cooperation-stage.is-cross {
    grid-column: auto;
  }

  .student-photo-strip,
  .student-story-gallery,
  .route-pair,
  .timeline-grid,
  .problem-map {
    grid-template-columns: 1fr;
  }

  .student-photo-strip img,
  .student-story-card img {
    height: 360px;
  }

  .path-card {
    min-height: 240px;
  }

  .platform-banner {
    grid-template-columns: 1fr;
    padding: 36px 26px;
  }

  .platform-banner .button {
    width: 100%;
  }

  .page-hero {
    padding: 56px 0 46px;
  }

  .page-hero .container,
  .consult-cta {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .page-hero-actions {
    justify-content: flex-start;
  }

  .page-hero-actions .button,
  .page-hero-actions .button-ghost {
    flex: 1 1 100%;
  }

  .filter-form {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .filter-panel {
    padding: 18px;
  }

  .filter-form .button-ghost {
    grid-column: 1;
  }

  .consult-cta {
    padding: 28px 24px;
  }

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

  .step {
    padding-right: 0;
  }

  .step:not(:last-child)::after {
    top: 69px;
    bottom: -2px;
    left: 21px;
    width: 1px;
    height: auto;
  }

  .site-footer {
    padding-bottom: 50px;
  }

  .footer-grid {
    gap: 36px;
  }

  .footer-bottom {
    display: grid;
  }

  .mobile-bar {
    position: fixed;
    z-index: 60;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 8px max(8px, env(safe-area-inset-right)) calc(8px + env(safe-area-inset-bottom)) max(8px, env(safe-area-inset-left));
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 -8px 24px rgba(16, 47, 88, 0.1);
    backdrop-filter: blur(12px);
  }

  .mobile-bar a {
    display: grid;
    min-height: 50px;
    place-items: center;
    border-radius: 10px;
    color: var(--navy);
    font-weight: 800;
    font-size: 12px;
  }

  .mobile-bar a:last-child {
    color: var(--white);
    background: var(--blue);
  }
}

/* 자주 찾는 페이지 띠 — 첫 화면 바로 아래 (2026-09-02) */
.quick-access {
  padding: 28px 0 8px;
}

.quick-access-label {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.quick-access-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 88px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.quick-access-item:hover,
.quick-access-item:focus-visible {
  border-color: var(--blue);
  transform: translateY(-2px);
}

.quick-access-item strong {
  color: var(--navy);
  font-size: 1.02rem;
}

.quick-access-item span {
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .quick-access-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .quick-access-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* 로그인 = 버튼 하나 (2026-09-02) */
.login-grid--single {
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  align-items: start;
}

@media (max-width: 760px) {
  .login-grid--single {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* 모바일 터치 영역 — 하단바·상세 링크 최소 44px (2026-09-02) */
.footer-links a,
.university-detail-facts a,
.info-card .card-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

/* 유학생 안내 1장 — 카드 4장 한 줄 (2026-09-02) */
.content-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 980px) {
  .content-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .content-grid--four {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* 구역 끝 질문 버튼 · 신뢰 구역 통합 · 로고 한 줄 (2026-09-02 배치 조정) */
.slot-ask {
  margin-top: 14px;
}

.journey-rail .slot-ask {
  margin-top: 10px;
}

.university-detail-costs + .slot-ask {
  margin: 0 0 18px;
}

.partner-logo-belt--row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}

.partner-logo-belt--row li {
  flex: 0 0 150px;
  height: 92px;
  scroll-snap-align: start;
}

.source-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12.5px;
}

.students-before .interview-card-grid {
  margin-bottom: 22px;
}

.result-proof--card {
  display: block;
  padding: 24px;
  border: none;
  background: var(--white);
}

.result-proof--card .button-ghost {
  margin-top: 14px;
}

.student-photo-strip--compact {
  max-width: 640px;
  margin-top: 22px;
}

.university-profile-hero__grid--single {
  grid-template-columns: minmax(0, 1fr);
}

.copy-button {
  margin-left: 10px;
  padding: 8px 14px;
  font-size: 0.9rem;
}

/* 실물 증빙 격자 — 학생 홈 신뢰 구역 (2026-09-04) */
.proof-gallery-head {
  margin: 26px 0 14px;
}

.proof-gallery-head h3 {
  margin: 4px 0 6px;
  font-size: 1.25rem;
}

.proof-gallery-head p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.proof-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.proof-gallery li {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.proof-gallery img {
  display: block;
  width: 100%;
  height: 250px;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: top;
}

.proof-gallery li > span {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 10px 10px;
  font-size: 0.8rem;
  line-height: 1.3;
}

.proof-gallery li > span strong {
  color: var(--navy);
}

.proof-gallery li > span span {
  color: var(--muted);
}

@media (max-width: 980px) {
  .proof-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .proof-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-gallery img {
    height: 210px;
  }
}

/* 실물 증빙 띠 — 옆으로 흐른다. 마우스를 올리면 멈추고, 움직임 줄이기 설정이면 손으로 넘긴다 (발주자 지시 2026-09-04) */
.proof-belt {
  display: flex;
  gap: 12px;
  margin: 0 0 26px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.proof-gallery--belt {
  display: flex;
  flex: none;
  gap: 12px;
  margin: 0;
  animation: proof-belt-scroll 150s linear infinite;
}

.proof-gallery--belt li {
  flex: 0 0 180px;
}

.proof-belt:hover .proof-gallery--belt,
.proof-belt:focus-within .proof-gallery--belt {
  animation-play-state: paused;
}

@keyframes proof-belt-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-100% - 12px)); }
}

@media (prefers-reduced-motion: reduce) {
  .proof-belt {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .proof-gallery--belt {
    animation: none;
  }

  .proof-gallery--belt[aria-hidden="true"] {
    display: none;
  }
}

/* 대학 방문·협약 현장 띠 (2026-09-04) — 가로 사진이라 타일이 넓다 */
.visits-belt .proof-gallery--belt li {
  flex: 0 0 300px;
}

.visits-belt .proof-gallery img {
  height: 200px;
  object-position: center;
}

.visits-gallery {
  animation-duration: 120s;
}

.visits-gallery li > span span {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 560px) {
  .visits-belt .proof-gallery--belt li {
    flex-basis: 240px;
  }

  .visits-belt .proof-gallery img {
    height: 160px;
  }
}
