@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css");

:root {
  --black: #000000;
  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f4f4f5;
  --gray-200: #e4e4e7;
  --gray-300: #d4d4d8;
  --gray-500: #71717a;
  --gray-700: #3f3f46;
  --gray-900: #18181b;
  --max: 1180px;
  --radius-lg: 22px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Pretendard",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.65;
  word-break: keep-all;
}

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

ul,
li {
  list-style: none;
}

button {
  font-family: inherit;
}

.container {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.section {
  padding: 100px 0;
}

.section-sm {
  padding: 72px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 44px;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--gray-500);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-head-dark .eyebrow {
  color: rgba(255, 255, 255, 0.65);
}

.section-head-dark .section-title {
  color: #ffffff;
}

.section-head-dark .section-desc {
  color: rgba(255, 255, 255, 0.72);
}

.section-title {
  color: var(--black);
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.12;
  letter-spacing: -0.055em;
  font-weight: 700;
}

.section-desc {
  margin-top: 18px;
  color: var(--gray-700);
  font-size: 17px;
  line-height: 1.75;
}

.btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn-black {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn-black:hover {
  background: var(--gray-900);
  border-color: var(--gray-900);
}

.btn-white {
  background: var(--white);
  color: var(--black);
  border-color: var(--gray-300);
}

.btn-white:hover {
  border-color: var(--black);
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--gray-200);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(100% - 40px, var(--max));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 17px;
  font-weight: 900;
}

.logo-text strong {
  display: block;
  color: var(--black);
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.logo-text span {
  display: block;
  margin-top: 3px;
  color: var(--gray-500);
  font-size: 12px;
  font-weight: 600;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;         
  border-bottom: 1px solid transparent; 
  backdrop-filter: none;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.header.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--gray-200);
  backdrop-filter: blur(14px);
}

/* Text trắng khi chưa scroll */
.header:not(.is-scrolled) .logo-text strong,
.header:not(.is-scrolled) .logo-mark {
  color: var(--white);
}
.header:not(.is-scrolled) .logo-mark {
  background: var(--white);
  color: var(--black);
}
.header:not(.is-scrolled) .nav a {
  color: rgba(255, 255, 255, 0.85);
}
.header:not(.is-scrolled) .nav a:hover {
  color: var(--white);
}
.header:not(.is-scrolled) .logo-text span {
  color: rgba(255, 255, 255, 0.65);
}
.header:not(.is-scrolled) .btn-black {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.header:not(.is-scrolled) .mobile-toggle {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--gray-700);
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  padding: 8px 0;
}

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

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gray-300);
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  font-size: 20px;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 15px 24px;
  border-bottom: 1px solid var(--gray-200);
  color: var(--gray-700);
  font-weight: 700;
}

/* =========================
       Main Visual Video Hero
    ========================= */

.hero {
  position: relative;
  min-height: 945px;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  padding-top: 77px;
  margin-top: -77px;
}

.hero-swiper {
  position: absolute !important;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0 !important;
}

.hero-swiper .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.85;
  filter: saturate(1.08) contrast(1.03);
}

.hero-slide-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.12),
      transparent 34%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.7) 100%);
  pointer-events: none;
}

.hero-content-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.hero-content-wrap .hero-content,
.hero-content-wrap .btn,
.hero-content-wrap .note-item,
.hero-content-wrap a {
  pointer-events: auto;
}

.hero-inner {
  min-height: 760px;
  display: flex;
  align-items: center;
  padding: 120px 0;
}

.hero-content {
  width: min(100%, 760px);
}

.hero-pagination {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.hero-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.45);
  opacity: 1;
  transition: all 0.3s ease;
  cursor: pointer;
}

.hero-pagination .swiper-pagination-bullet-active {
  background: #fff;
  width: 24px;
  border-radius: 4px;
}

.hero-prev,
.hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 0.2s ease;
  pointer-events: auto;
  user-select: none;
}

.hero-prev {
  left: 12%;
}
.hero-next {
  right: 12%;
}

.hero-prev:hover,
.hero-next:hover {
  background: rgba(255, 255, 255, 0.28);
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  background: var(--black);
}

.hero-bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.8;
  filter: saturate(1.08) contrast(1.03);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  /* background:
        linear-gradient(
          90deg,
          rgba(0, 0, 0, 0.86) 0%,
          rgba(0, 0, 0, 0.68) 42%,
          rgba(0, 0, 0, 0.32) 100%
        ); */
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.12),
      transparent 34%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.7) 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 760px;
  display: flex;
  align-items: center;
  padding: 120px 0;
}

.hero-content {
  width: min(100%, 760px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  margin-bottom: 26px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.hero-title {
  color: var(--white);
  font-size: clamp(64px, 10vw, 104px);
  line-height: 0.9;
  letter-spacing: -0.065em;
  font-weight: 650;
}

.hero-sub {
  margin-top: 28px;
  color: var(--white);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.22;
  letter-spacing: -0.055em;
  font-weight: 450;
}

.hero-desc {
  margin-top: 10px;
  max-width: 500px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
}

.hero .btns {
  margin-top: 36px;
}

.hero .btn-black {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.hero .btn-white {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

.hero .btn-white:hover {
  border-color: var(--white);
}

.hero-note {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.note-item {
  padding: 14px 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 500;
  backdrop-filter: blur(8px);
}

.hero-school-list {
  position: absolute;
  right: 0;
  bottom: 86px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 8px;
}

.hero-school-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.summary {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  padding: 26px 0;
}

.summary-card {
  padding: 24px 20px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--gray-200);
}

.summary-card small {
  display: block;
  margin-bottom: 10px;
  color: var(--gray-500);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.summary-card strong {
  display: block;
  color: #0a39e2;
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: -0.05em;
}

.summary-card p {
  margin-top: 8px;
  color: var(--gray-500);
  font-size: 14px;
  line-height: 1.5;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 50px;
  align-items: start;
}

.intro-sticky {
  position: sticky;
  top: 110px;
}

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

.flat-card {
  padding: 30px;
  border-radius: var(--radius-lg);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
}

.flat-card .num {
  color: var(--gray-500);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.flat-card h3 {
  margin-top: 12px;
  color: var(--black);
  font-size: 25px;
  line-height: 1.25;
  letter-spacing: -0.05em;
  font-weight: 850;
}

.flat-card p {
  margin-top: 12px;
  color: var(--gray-700);
  font-size: 16px;
}

.gray-section {
  background: #151515;
  /* border-top: 1px solid var(--gray-200); */
  border-bottom: 1px solid var(--gray-200);
}

.process-grid {
  width: 100%;
  display: grid;
  gap: 16px;
}

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

.step {
  position: relative;
  min-height: 260px;
  padding: 28px;
  border-radius: 18px;
  background: #151515;
  border: 1px solid #151515;
}

.process-grid .step {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.process-grid .step.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.process-grid .step:nth-child(1) {
  transition-delay: 0s;
}
.process-grid .step:nth-child(2) {
  transition-delay: 0.2s;
}
.process-grid .step:nth-child(3) {
  transition-delay: 0.4s;
}
.process-grid .step:nth-child(4) {
  transition-delay: 0.6s;
}
.process-grid .step:nth-child(5) {
  transition-delay: 0.8s;
}
.process-grid .step:nth-child(6) {
  transition-delay: 1s;
}

.step-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 16px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  color: var(--gray-500);
  font-size: 12px;
  font-weight: 900;
}

.step-no {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
}

.step h3 {
  color: var(--black);
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.045em;
  font-weight: 750;
}

.step p {
  margin-top: 12px;
  color: var(--gray-700);
  font-size: 15px;
  line-height: 1.6;
}

.step b {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  font-size: 14px;
  font-weight: 500;
}

.step--dark {
  background: #0f1923;
  border-color: #1e2d3d;
  position: relative;
}

.step--dark h3 {
  color: #ffffff;
  font-size: 28px;
}

.step--dark p {
  color: rgba(255, 255, 255, 0.6);
}

.step--dark b {
  background: #1e2d3d;
  color: #a4e0ff;
  border: 1px solid #2a4060;
}

.step--dark .step-no {
  background: #1f5eff;
  color: #fff;
  font-weight: 900;
}

.step--dark .step-icon {
  background: #0f1923;
  border-color: #2a4060;
}

.animate-fade,
.animate-slide-left,
.animate-slide-left-delay,
.content-wrap .message-box,
.content-wrap .point-box,
.content-wrap .flat-card {
  will-change: opacity, transform;
}

.animate-fade {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-fade:nth-child(1) { transition-delay: 0s; }
.animate-fade:nth-child(2) { transition-delay: 0.1s; }
.animate-fade:nth-child(3) { transition-delay: 0.2s; }
.animate-fade:nth-child(4) { transition-delay: 0.3s; }
.animate-fade:nth-child(5) { transition-delay: 0.4s; }
.animate-fade:nth-child(6) { transition-delay: 0.5s; }

.process-grid .step {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}
.process-grid .step.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.process-grid .step:nth-child(1) { transition-delay: 0s; }
.process-grid .step:nth-child(2) { transition-delay: 0.1s; }
.process-grid .step:nth-child(3) { transition-delay: 0.2s; }
.process-grid .step:nth-child(4) { transition-delay: 0.3s; }
.process-grid .step:nth-child(5) { transition-delay: 0.4s; }
.process-grid .step:nth-child(6) { transition-delay: 0.5s; }

.animate-slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-slide-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-slide-left-delay {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease-out 0.15s, transform 0.6s ease-out 0.15s;
}
.animate-slide-left-delay.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.content-wrap .message-box,
.content-wrap .point-box,
.content-wrap .flat-card {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.content-wrap .message-box.is-visible,
.content-wrap .point-box.is-visible,
.content-wrap .flat-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.content-wrap .flat-card:nth-child(1) { transition-delay: 0s; }
.content-wrap .flat-card:nth-child(2) { transition-delay: 0.1s; }
.content-wrap .flat-card:nth-child(3) { transition-delay: 0.2s; }
.content-wrap .flat-card:nth-child(4) { transition-delay: 0.3s; }

/* .step--dark .step-icon img {
  filter: brightness(0) saturate(100%) invert(85%) sepia(60%) saturate(500%) hue-rotate(60deg);
} */

.system-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.school-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.school {
  padding: 26px;
  min-height: 160px;
  border-radius: 18px;
  background: var(--black);
  color: var(--white);
}

.school strong {
  display: block;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.055em;
}

.school span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}

.flow-list {
  display: grid;
  gap: 10px;
}

.flow-item {
  display: grid;
  grid-template-columns: 110px 1fr 160px;
  gap: 16px;
  align-items: center;
  padding: 22px;
  border-radius: 18px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
}

.flow-item small {
  color: var(--gray-500);
  font-size: 18px;
  font-weight: 600;
}

.flow-item strong {
  color: var(--black);
  font-size: 18px;
  letter-spacing: -0.04em;
}

.flow-item span {
  color: var(--gray-500);
  font-size: 14px;
  text-align: right;
}

.apply-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
}

.info-box {
  padding: 34px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--gray-200);
}

.info-box h3 {
  color: var(--black);
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: -0.055em;
  font-weight: 850;
}

.info-box p {
  margin-top: 16px;
  color: var(--gray-700);
  font-size: 16px;
}

.info-box--dark {
  background: #0f1923;
  border-color: #1e2d3d;
  color: #fff;
}

.info-box--dark h3 {
  color: #1f5eff;
  font-size: 32px;
}

.info-box--dark p {
  color: rgba(255, 255, 255, 0.75);
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.8;
}

.info-box-label {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 12px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: #aaff5e;
  color: #0f1923;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.info-box--dark .check-list li {
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
}

.info-box--dark .check-list li::before {
  background: #1f5eff;
}

.check-list {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--gray-700);
  font-size: 18px;
  font-weight: 600;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--black);
}

.doc-list {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.doc-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 14px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  transition:
    border-color 0.2s,
    background 0.2s;
}

.doc-item:hover {
  border-color: #111;
  background: #fff;
}

.doc-item--required {
  border-left: 4px solid #1f5eff;
}

.doc-check {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #a4e0ff;
  color: #1f5eff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.doc-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

.doc-info .flex-doc {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.doc-tag {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 10px;
  border-radius: 999px;
  background: #1f5eff;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  width: fit-content;
}

.doc-info strong {
  color: var(--black);
  font-size: 16px;
  font-weight: 700;
}

.doc-info span {
  color: var(--gray-500);
  font-size: 13px;
}

.doc-table {
  width: 100%;
  margin-top: 24px;
  border-collapse: collapse;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  overflow: hidden;
}

.doc-table th,
.doc-table td {
  padding: 16px;
  border-bottom: 1px solid var(--gray-200);
  text-align: left;
  font-size: 18px;
}

.doc-table th {
  background: var(--gray-50);
  color: var(--black);
  font-weight: 900;
}

.doc-table td {
  background: var(--white);
  color: var(--gray-700);
}

.doc-table tr:last-child td {
  border-bottom: 0;
}

.download-box {
  position: relative;
  overflow: hidden;
  padding: 60px;
  border-radius: 28px;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.68)),
    url("/public/assets/img/download_bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}

.download-top {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: start;
  margin-bottom: 34px;
}

.download-top h2 {
  color: var(--white);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.06em;
  font-weight: 900;
}

.download-top p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
}

.download-box .eyebrow {
  color: rgba(255, 255, 255, 0.5);
}

.download-box .btn-black {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.download-box .btn-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}

.agency-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.agency {
  padding: 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.agency strong {
  display: block;
  color: var(--white);
  font-size: 26px;
  letter-spacing: -0.055em;
}

.agency p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.agency a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: #1f5eff;
  color: #fff;
  font-size: 13px;
  font-weight: 300;
}

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

.benefit {
  padding: 30px;
  min-height: 340px;
  border-radius: var(--radius-lg);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
}

.benefit.final {
  background: #1f5eff;
  color: var(--white);
  border-color: #1f5eff;
}

.benefit small {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--gray-700);
  font-size: 12px;
  font-weight: 700;
}

.benefit.final small {
  background: rgba(39, 39, 39, 0.12);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.benefit h3 {
  margin-top: 24px;
  color: inherit;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.06em;
  font-weight: 900;
}

.benefit ul {
  margin-top: 22px;
  display: grid;
  gap: 10px;
}

.benefit li {
  position: relative;
  padding-left: 16px;
  color: var(--gray-700);
  font-size: 15px;
}

.benefit.final li {
  color: rgba(255, 255, 255, 0.72);
}

.benefit li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.money {
  margin-top: 24px;
  padding: 16px;
  border-radius: 14px;
  background: var(--white);
  color: var(--black);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: -0.03em;
}

.benefit.final .money {
  background: var(--white);
  color: var(--black);
}

.notice-wrap {
  max-width: 980px;
  margin: 0 auto;
}

.accordion {
  margin-top: 34px;
  display: grid;
  gap: 10px;
}

.acc-item {
  overflow: hidden;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  background: var(--white);
}

.acc-btn {
  width: 100%;
  padding: 22px 24px;
  border: 0;
  background: var(--white);
  color: var(--black);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
}

.acc-content {
  display: none;
  padding: 0 24px 22px;
  color: var(--gray-700);
  font-size: 15px;
}

.acc-item.is-open .acc-content {
  display: block;
}

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

.faq {
  padding: 26px;
  border-radius: 18px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
}

.faq h3 {
  color: var(--black);
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.04em;
  font-weight: 700;
}

.faq p {
  margin-top: 12px;
  color: var(--gray-700);
  font-size: 15px;
}

.final-cta {
  padding: 72px 36px;
  border-radius: 30px;

  background-image:
    linear-gradient(rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.68)),
    url("/public/assets/img/final_cta_bg.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.final-cta h2 {
  color: var(--white);
  font-size: clamp(36px, 5.4vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.07em;
  font-weight: 750;
}

.final-cta p {
  max-width: 620px;
  margin: 20px auto 30px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
}

.final-cta .btns {
  justify-content: center;
}

.final-cta .btn-black {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.final-cta .btn-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
}

.footer {
  padding: 56px 0;
  background: var(--white);
  color: var(--black);
  border-top: 1px solid var(--gray-200);
}

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

.footer h2 {
  font-size: 28px;
  letter-spacing: -0.055em;
}

.footer p,
.footer a {
  color: var(--gray-700);
  font-size: 14px;
}

.footer strong {
  display: block;
  margin-bottom: 12px;
  color: var(--black);
  font-size: 15px;
}

.footer-menu {
  display: grid;
  gap: 8px;
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--gray-500);
  font-size: 13px;
}

.summary {
  padding: 60px 0;
  background: #fff;
}

.summary-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.summary-logo-item {
  height: 116px;
  border: 1px solid #dcdcdc;
  border-radius: 20px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  box-sizing: border-box;
}

.summary-logo-item img {
  max-width: 50%;
  max-height: 64px;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}

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

.summary-card {
  padding: 28px 24px;
  border: 1px solid #e7e7e7;
  border-radius: 20px;
  background: #fff;
}

.summary-card small {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  color: #777;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.summary-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 800;
  color: #111;
}

.summary-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

.gravity-program {
  padding: 120px 0;
  background: #f7f8fa;
  color: #111;
  font-family:
    "Pretendard",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

.gravity-program .container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.gravity-program .intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.gravity-program .intro-sticky {
  position: sticky;
  top: 100px;
}

.gravity-program .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1f5eff;
}

.gravity-program .eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1f5eff;
}

.blue-text {
  color: #1f5eff;
}

.gravity-program .section-title {
  margin: 0 0 28px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.06em;
  color: #111;
}

.gravity-program .section-desc {
  margin: 0;
  max-width: 360px;
  font-size: 18px;
  line-height: 1.75;
  font-weight: 500;
  color: #555;
  letter-spacing: -0.03em;
}

.section-title .line-reveal {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

.action-title .line-reveal {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

.gravity-program .content-wrap {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.gravity-program .message-box {
  padding: 42px;
  background: #fff;
  border: 1px solid #e6e8ee;
  border-radius: 0;
}

.gravity-program .message-label {
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1f5eff;
}

.gravity-program .message-title {
  margin: 0 0 24px;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: -0.05em;
  color: #111;
}

.gravity-program .message-text {
  margin: 0;
  font-size: 18px;
  line-height: 1.85;
  font-weight: 500;
  color: #333;
  letter-spacing: -0.035em;
  word-break: keep-all;
}

.gravity-program .message-text + .message-text {
  margin-top: 18px;
}

.gravity-program .point-box {
  padding: 42px;
  background: #111;
  color: #fff;
  border-radius: 0;
}

.gravity-program .point-title {
  margin: 0 0 18px;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.gravity-program .point-text {
  margin: 0;
  font-size: 17px;
  line-height: 1.85;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: -0.035em;
  word-break: keep-all;
}

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

.gravity-program .flat-card {
  min-height: 260px;
  padding: 34px;
  background: #fff;
  border: 1px solid #e6e8ee;
  border-radius: 0;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.gravity-program .flat-card:hover {
  transform: translateY(-6px);
  border-color: #111;
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.08);
}

.gravity-program .num {
  margin-bottom: 34px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #1f5eff;
}

.gravity-program .flat-card h3 {
  margin: 0 0 16px;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 900;
  letter-spacing: -0.045em;
  color: #111;
  word-break: keep-all;
}

.gravity-program .flat-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 500;
  color: #555;
  letter-spacing: -0.03em;
  word-break: keep-all;
}

.gravity-program .video-box {
  height: 300px;
  padding: 0;
  overflow: hidden;
  background: #111;
  border-radius: 0;
}

.gravity-program .point-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.gravity-action {
  position: relative;
  padding: 120px 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.68)),
    url("/public/assets/img/bg_01.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  font-family:
    "Pretendard",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

.gravity-action .container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.gravity-action .action-head {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 52px;
}

.gravity-action .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1f5eff;
}

.gravity-action .eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1f5eff;
}

.mint-text {
  color: #1f5eff;
}

.gravity-action .action-title {
  margin: 0;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.065em;
  word-break: keep-all;
}

.gravity-action .action-desc {
  margin: 0;
  font-size: 20px;
  line-height: 1.85;
  font-weight: 350;
  letter-spacing: -0.035em;
  color: rgba(255, 255, 255, 0.74);
  word-break: keep-all;
}

.gravity-action .action-desc strong {
  color: #fff;
  font-weight: 500;
}

.gravity-action .action-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: stretch;
}

.gravity-action .big-copy {
  min-height: 360px;
  padding: 46px;
  background: #fff;
  color: #111;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.gravity-action .big-copy-title {
  margin: 0;
  font-size: clamp(30px, 3.4vw, 52px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.06em;
  word-break: keep-all;
}

.gravity-action .big-copy-text {
  margin: 40px 0 0;
  max-width: 680px;
  font-size: 18px;
  line-height: 1.85;
  font-weight: 500;
  color: #333;
  letter-spacing: -0.035em;
  word-break: keep-all;
}

.gravity-action .support-card {
  padding: 42px;
  background: #1f5eff;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.gravity-action .support-label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.gravity-action .support-price {
  margin: 34px 0 18px;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.06em;
}

.support-sub {
  font-size: 26px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 6px;
  letter-spacing: -0.02em;
}

.gravity-action .support-text {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.86);
  letter-spacing: -0.03em;
  word-break: keep-all;
}

.gravity-action .keyword-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.gravity-action .keyword-card {
  min-height: 220px;
  padding: 34px;
  background: #1b1b1b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.gravity-action .keyword-card:hover {
  transform: translateY(-6px);
  background: #202020;
  border-color: rgba(255, 255, 255, 0.32);
}

.gravity-action .keyword-num {
  margin-bottom: 42px;
  font-size: 13px;
  font-weight: 800;
  color: #7ea2ff;
  letter-spacing: 0.04em;
}

.gravity-action .keyword-card h3 {
  margin: 0 0 14px;
  font-size: 25px;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: -0.045em;
  color: #fff;
}

.gravity-action .keyword-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.64);
  letter-spacing: -0.03em;
  word-break: keep-all;
}

.step-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.date-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.step-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  background: none;
  border: 0;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon img {
  width: 38px;
  height: 38px;
  display: block;
  object-fit: contain;
}

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

.school {
  position: relative;
  min-height: 155px;
  padding: 20px;
  border-radius: 20px;
  overflow: hidden;
  background-image:
    linear-gradient(135deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.38)),
    var(--school-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  box-sizing: border-box;
}

.school::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.45));
  pointer-events: none;
}

.school-content {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.school strong {
  display: block;
  margin-bottom: 10px;
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #fff;
}

.school span {
  display: block;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 1745px) {
  .hero-prev {
    left: 5%;
  }
}

@media (max-width: 1180px) {
  .hero-prev {
    left: 1%;
  }
  .nav {
    display: none;
  }

  .mobile-toggle {
    display: grid;
    place-items: center;
  }

  .intro-grid,
  .system-layout,
  .apply-grid,
  .download-top {
    grid-template-columns: 1fr;
  }

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

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

  .intro-sticky {
    position: static;
  }

  .hero-school-list {
    position: static;
    margin-top: 36px;
    grid-template-columns: repeat(4, auto);
    justify-content: flex-start;
  }
}

@media (max-width: 1024px) {
  .summary-logos {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .gravity-program {
    padding: 90px 0;
  }

  .gravity-program .intro-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .gravity-program .intro-sticky {
    position: relative;
    top: auto;
  }

  .gravity-program .section-desc {
    max-width: 100%;
  }

  .gravity-action {
    padding: 90px 0;
  }

  .gravity-action .action-head,
  .gravity-action .action-panel {
    grid-template-columns: 1fr;
  }

  .gravity-action .action-head {
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .section {
    padding: 76px 0;
  }

  .section-sm {
    padding: 64px 0;
  }

  .header-inner {
    width: min(100% - 28px, var(--max));
    height: 68px;
  }

  .hero-prev,
  .hero-next {
    display: none;
  }

  .header .btn {
    display: none;
  }

  .logo-text span {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .hero-inner {
    min-height: 720px;
    padding: 78px 0;
  }

  .hero-title {
    font-size: 64px;
  }

  .hero-sub {
    font-size: 25px;
  }

  .hero-school-list {
    grid-template-columns: repeat(2, auto);
  }

  .summary-grid,
  .process-grid,
  .school-grid,
  .agency-grid,
  .benefit-grid,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .flow-item {
    grid-template-columns: 1fr;
  }

  .flow-item span {
    text-align: left;
    position: absolute;
    right: 10%;
  }

  .doc-table {
    display: table;
    overflow-x: auto;
    /* white-space: nowrap; */
  }

  .download-box {
    padding: 28px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .agency {
    position: relative;
  }

  .agency a {
    position: absolute;
    right: 10%;
    top: 18%;
  }

  .gravity-program {
    padding: 72px 0;
  }

  .gravity-program .container {
    width: min(100% - 32px, 1180px);
  }

  .gravity-program .message-box {
    padding: 30px 24px;
  }

  .gravity-program .message-text,
  .gravity-program .point-text {
    font-size: 16px;
  }

  .gravity-program .flat-list {
    grid-template-columns: 1fr;
  }

  .gravity-program .flat-card {
    min-height: auto;
    padding: 30px 24px;
  }

  .gravity-program .num {
    margin-bottom: 24px;
  }

  .gravity-program .flat-card h3 {
    font-size: 22px;
  }

  .gravity-action {
    padding: 72px 0;
  }

  .gravity-action .container {
    width: min(100% - 32px, 1180px);
  }

  .gravity-action .action-head {
    margin-bottom: 36px;
  }

  .gravity-action .action-desc {
    font-size: 17px;
  }

  .gravity-action .big-copy,
  .gravity-action .support-card {
    min-height: auto;
    padding: 30px 24px;
  }

  .gravity-action .big-copy-text {
    margin-top: 28px;
    font-size: 16px;
  }

  .gravity-action .support-price {
    margin: 28px 0 14px;
  }

  .gravity-action .keyword-grid {
    grid-template-columns: 1fr;
  }

  .gravity-action .keyword-card {
    min-height: auto;
    padding: 30px 24px;
  }

  .gravity-action .keyword-num {
    margin-bottom: 26px;
  }

  .gravity-action {
    background:
      linear-gradient(rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.68)),
      url("/public/assets/img/bg_01_mo.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .school-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }

  .school {
    min-height: 150px;
    padding: 24px;
    border-radius: 20px;
    width: calc(50% - 10px);
  }

  .school-content {
    min-height: 100px;
  }

  .school strong {
    font-size: 28px;
  }

  .footer-bottom {
      justify-content: center;
      align-items: center;
      gap: 5px;
  }
}

@media (max-width: 640px) {
  .summary {
    padding: 30px 0;
  }

  .summary-logos {
    /* grid-template-columns: 1fr; */
    gap: 12px;
    margin-bottom: 24px;
  }

  .summary-logo-item {
    height: 110px;
    border-radius: 16px;
  }

  .summary-logo-item img {
    max-width: 70%;
    max-height: 52px;
  }

  .summary-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .summary-card {
    padding: 22px 18px;
    border-radius: 16px;
  }

  .summary-card strong {
    font-size: 20px;
  }
}

@media (max-width: 400px) {
  .info-box {
    padding: 15px;
  }

  .doc-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
  }

  .doc-check {
    width: 26px;
    height: 26px;
  }

  .doc-info strong {
    font-size: 13px;
  }

  .download-box {
      padding: 28px 18px;
  }

  .btns {
      flex-wrap: nowrap;
  }

  .btn {
      padding: 0 12px;
      font-size: 14px;
  }
}

@media (max-width: 400px) {
  .btn {
      padding: 0 8px;
      font-size: 12px;
      min-height: 40px;
  }

}

/* hwp 다운로드 아이콘 정렬 */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.btn-icon svg {
  display: block;
}
