.btn,
.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: 0.2s ease;
  white-space: nowrap;
  box-sizing: border-box;
}

@media (hover: hover) and (pointer: fine) {
  .btn:hover,
  .button-primary:hover,
  .button-secondary:hover { text-decoration: none; }
}

.btn-gold,
.button-primary {
  background: var(--brass-500);
  border-color: var(--brass-500);
  color: var(--navy-950);
}

.btn-gold:hover,
.button-primary:hover {
  background: var(--brass-400);
  border-color: var(--brass-400);
  color: var(--navy-950);
}

.btn-outline,
.button-secondary {
  background: transparent;
  border-color: currentColor;
  color: inherit;
}

.btn-outline:hover { background: rgba(255,255,255,0.12); color: #fff; }

.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}

.btn-ghost:hover { border-color: var(--brass-400); color: var(--brass-400); }

.btn-purple {
  background: var(--navy-900);
  border-color: var(--navy-900);
  color: #fff;
}
.btn-purple:hover { background: var(--navy-950); color: #fff; }

.btn-brand {
  background: #7f268f;
  border-color: #7f268f;
  color: #fff;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
}
.btn-brand:hover {
  background: #6d1f7c;
  border-color: #6d1f7c;
  color: #fff;
}

.btn-line,
.button-secondary.btn-line {
  background: #fff;
  border-color: var(--navy-800);
  color: var(--navy-900);
}

.btn-line:hover {
  border-color: var(--purple-700);
  color: var(--purple-700);
}

.btn.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

.card,
.service-card {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(24, 28, 38, 0.05);
}

.service-card__title {
  margin: 18px 0 10px;
  font-size: 19px;
  line-height: 1.45;
}

.service-card__description {
  margin: 0;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.75;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.why-card {
  display: flex;
  flex-direction: column;
  padding: 30px;
  height: 100%;
  min-width: 0;
}

.why-card h3 { margin-bottom: 10px; }
.why-card p { margin-bottom: 0; flex: 1; color: var(--eeum-muted); }

.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--ivory-100);
  color: var(--purple-700);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.icon-badge svg {
  width: 24px;
  height: 24px;
}

@media (hover: hover) and (pointer: fine) {
  .why-card:hover {
    transform: none;
    border-color: var(--border);
  }
}

.grid-4, .grid-3, .grid-2 {
  display: grid;
  gap: 22px;
}

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

.section {
  padding-block: 92px;
}

.section-head { max-width: 720px; margin-bottom: 42px; }
.section-head .en {
  font-family: var(--font-en);
  letter-spacing: 0.08em;
  color: var(--eeum-purple);
  font-size: 0.82rem;
  font-weight: 700;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  position: relative;
}

.timeline-step {
  background: #fff;
  border-radius: 16px;
  padding: 18px 14px;
  border: 1px solid var(--eeum-line);
  text-align: center;
}

.timeline-step strong {
  display: block;
  color: var(--eeum-purple);
  font-family: var(--font-en);
  margin-bottom: 8px;
}

.faq-section {
  padding-block: 88px 104px;
}

.faq-list {
  width: 100%;
  margin: 0;
  padding: 0;
  border-top: 1px solid #ded9df;
}

.faq-item {
  margin: 0;
  padding: 0;
  border: 0;
  border-bottom: 1px solid #ded9df;
}

.faq-question {
  width: 100%;
  min-height: 62px;
  height: auto;
  margin: 0;
  padding: 14px 8px 14px 4px;
  border: 0;
  background: transparent;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px;
  align-items: center;
  column-gap: 20px;
  text-align: left;
  cursor: pointer;
  font-family: "Pretendard", "Noto Sans KR", sans-serif;
  font-size: 16px;
  font-weight: 600;
  font-style: normal;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: #182236;
  word-break: keep-all;
  font-synthesis: none;
  box-shadow: none;
  position: relative;
}

.faq-question::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.faq-question-text {
  display: block;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
  word-break: inherit;
  position: static;
  transform: none;
}

.faq-arrow {
  width: 8px;
  height: 8px;
  margin: 0;
  padding: 0;
  justify-self: center;
  align-self: center;
  border: 0;
  border-right: 1.5px solid #76268c;
  border-bottom: 1.5px solid #76268c;
  background: transparent;
  transform: translateY(-2px) rotate(45deg);
  transform-origin: 50% 50%;
  transition: transform 0.22s ease;
}

.faq-item.is-open .faq-arrow {
  transform: translateY(2px) rotate(225deg);
}

.faq-answer {
  display: none;
  margin: 0 0 10px;
  padding: 16px 18px;
  color: #3d4450;
  background: #f6f3ed;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: -0.012em;
  word-break: keep-all;
}

.faq-item.is-open .faq-answer {
  display: block;
}

@media (max-width: 767px) {
  .faq-section {
    padding-block: 60px 72px;
  }

  .faq-list {
    width: 100%;
  }

  .faq-question {
    min-height: 62px;
    padding: 12px 2px;
    grid-template-columns: minmax(0, 1fr) 22px;
    column-gap: 14px;
    font-size: 16px;
    line-height: 1.45;
    letter-spacing: -0.02em;
  }

  .faq-answer {
    margin-bottom: 8px;
    padding: 14px 16px;
    font-size: 15px;
    line-height: 1.75;
  }
}

.checklist {
  list-style: none;
  display: grid;
  gap: 10px;
}

.checklist li {
  background: #fff;
  border: 1px solid var(--eeum-line);
  border-radius: 12px;
  padding: 14px 16px 14px 44px;
  position: relative;
}

.checklist li::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid var(--eeum-purple);
  border-radius: 4px;
  position: absolute;
  left: 16px;
  top: 16px;
  background: linear-gradient(var(--eeum-gold), var(--eeum-gold)) center 3px / 10px 6px no-repeat;
}

.form {
  display: grid;
  gap: 18px;
  max-width: 720px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
}

.req { color: #c0392b; }

.field input,
.field select,
.field textarea {
  width: 100%;
  max-width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  min-height: 48px;
  background: #fff;
}

.field textarea { min-height: 140px; resize: vertical; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--eeum-purple);
}

.form-submit { min-width: 200px; }
.form-submit[disabled] { opacity: 0.7; cursor: wait; }

.field-error {
  color: #b42318;
  font-size: 0.88rem;
  margin-top: 6px;
  display: none;
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: #b42318;
}

.field.is-invalid .field-error { display: block; }

.check-agree {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.check-agree input { min-width: 20px; min-height: 20px; margin-top: 4px; }

.form-status {
  padding: 14px 16px;
  border-radius: 12px;
  display: none;
}

.form-status.is-ok { display: block; background: #eefaf1; color: #17633a; }
.form-status.is-err { display: block; background: #fff1f0; color: #9b1c1c; }
.form-status.is-info { display: block; background: var(--eeum-lavender); color: var(--eeum-deep); }

.map-card {
  padding: 12px;
  min-height: 320px;
}

.page-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background: var(--navy-950);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--navy-900);
}

.page-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
}

.page-hero--student .page-hero__img { object-position: 58% 42%; }
.page-hero--checklist .page-hero__img { object-position: 40% 45%; }
.page-hero--process .page-hero__img { object-position: 62% 28%; }
.page-hero--restricted .page-hero__img { object-position: 58% 42%; }
.page-hero--faq .page-hero__img { object-position: 48% 28%; }
.page-hero--air .page-hero__img { object-position: 72% 48%; }
.page-hero--packing .page-hero__img { object-position: 55% 42%; }
.page-hero--exhibition .page-hero__img { object-position: 42% 48%; }
.page-hero--express .page-hero__img { object-position: 48% 45%; }

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(16, 22, 34, 0.78) 0%,
    rgba(16, 22, 34, 0.48) 38%,
    rgba(16, 22, 34, 0.12) 68%,
    rgba(16, 22, 34, 0) 85%
  );
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  padding: 64px 0 56px;
}

.page-hero__content {
  width: min(640px, 100%);
  margin: 0;
  text-align: left;
}

.page-hero .eyebrow {
  color: var(--brass-400);
}

.page-hero h1,
.page-hero__title {
  color: #fff;
  font-size: clamp(36px, 3.5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.3;
  word-break: keep-all;
  margin: 10px 0 0;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.38);
}

.page-hero .lead,
.page-hero__description {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: -0.012em;
  word-break: keep-all;
  margin: 16px 0 0;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.38);
}

.crumbs {
  margin: 0 0 14px;
}

.crumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
}

.crumbs__item {
  color: rgba(255,255,255,0.82);
  display: flex;
  align-items: center;
}

.crumbs__item a {
  color: rgba(255,255,255,0.9);
}

.crumbs__item a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.crumbs__item:not(:last-child)::after {
  content: '›';
  margin: 0 8px;
  opacity: 0.7;
}

.prose {
  overflow-wrap: anywhere;
  word-break: keep-all;
}

.container.prose,
.site-container.prose {
  width: var(--site-container-width);
  max-width: var(--container-max);
  margin-inline: auto;
}

.container.prose > *,
.site-container.prose > * {
  max-width: 760px;
}

.site-container .prose {
  width: min(760px, 100%);
  margin: 0;
  text-align: left;
}

.prose h2 {
  margin: 0 0 20px;
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.prose h3 {
  margin: 32px 0 14px;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.prose p {
  margin: 0 0 16px;
  line-height: 1.75;
  letter-spacing: -0.012em;
}

.prose ul, .prose ol { padding-left: 1.2em; margin: 0 0 16px; }
.prose li + li { margin-top: 8px; }
.prose > :last-child { margin-bottom: 0; }

.service-inner,
.page-hero--align-1120 .subpage-hero__inner,
.site-footer .footer__inner {
  width: min(var(--site-width), calc(100% - (var(--site-gutter) * 2)));
  max-width: none;
  margin-inline: auto;
}

.service-content {
  padding-top: 72px;
  padding-bottom: 72px;
  overflow-x: hidden;
}

.service-content,
.service-content p,
.service-consult p {
  letter-spacing: -0.012em;
  word-break: keep-all;
}

.service-intro h2 {
  margin: 0;
  color: #172033;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.035em;
  word-break: keep-all;
}

.service-intro__copy {
  max-width: 720px;
  margin-top: 20px;
}

.service-intro__copy p {
  margin: 0;
  color: #3d4450;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}

.service-intro__copy p + p {
  margin-top: 14px;
}

.service-scope {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 56px;
  margin-top: 64px;
}

.service-scope--compare {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
}

.service-scope__item {
  margin: 0;
  padding: 18px 0 0;
  background: transparent;
  border: 0;
  border-top: 1px solid #c7a45d;
  border-radius: 0;
  box-shadow: none;
}

.service-scope__code {
  margin: 0 0 8px;
  color: #7f268f;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.2;
}

.service-scope__item h3 {
  margin: 0 0 12px;
  color: #172033;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.03em;
  word-break: keep-all;
}

.service-scope__item p {
  margin: 0;
  color: #4a5160;
  font-size: 16px;
  line-height: 1.8;
}

.service-scope__meta {
  margin-top: 16px;
  color: #8a8380;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
}

.service-flow {
  background: #101a2b;
  color: #ffffff;
}

.service-flow__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding-block: 72px;
}

.service-flow__step {
  min-width: 0;
  padding: 0 36px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.service-flow__step:first-child {
  padding-left: 0;
  border-left: 0;
}

.service-flow__step:last-child {
  padding-right: 0;
}

.service-flow__num {
  display: block;
  color: #c7a45d;
  font-family: "Montserrat", "Pretendard", sans-serif;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.service-flow__title {
  display: block;
  margin-top: 16px;
  color: #ffffff;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.03em;
  word-break: keep-all;
}

.service-flow__text {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
}

.service-consult {
  padding: 56px 0 80px;
}

.service-consult__text {
  max-width: 720px;
  margin: 0 0 22px;
  color: #4a5160;
  font-size: 15px;
  line-height: 1.8;
}

@media (max-width: 767px) {
  .service-inner,
  .page-hero--align-1120 .subpage-hero__inner,
  .site-footer .footer__inner {
    width: calc(100% - 40px);
  }

  .service-content {
    padding-top: 52px;
    padding-bottom: 48px;
  }

  .service-intro h2 {
    font-size: 28px;
  }

  .service-intro__copy p {
    font-size: 15px;
  }

  .service-scope,
  .service-scope--compare {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 48px;
  }

  .service-scope__item h3 {
    font-size: 20px;
  }

  .service-scope__item p {
    font-size: 15px;
  }

  .service-flow__grid {
    grid-template-columns: 1fr;
    padding-block: 48px;
  }

  .service-flow__step,
  .service-flow__step:first-child,
  .service-flow__step:last-child {
    padding: 24px 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .service-flow__step:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .service-flow__step:last-child {
    padding-bottom: 0;
  }

  .service-flow__num {
    font-size: 40px;
  }

  .service-flow__title {
    font-size: 20px;
  }

  .service-consult {
    padding: 40px 0 64px;
  }

  .service-consult .btn-brand {
    width: 100%;
  }
}

.page-content ul,
.page-content ol {
  padding-left: 1.2em;
  margin: 0 0 1em;
}

.table-wrap { overflow-x: auto; }
.simple-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}
.simple-table th, .simple-table td {
  border: 1px solid var(--eeum-line);
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
  overflow-wrap: anywhere;
}
.simple-table th { background: var(--eeum-lavender); width: 28%; }

.notice-lead {
  margin: 0 0 20px;
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: -0.012em;
  word-break: keep-all;
}

.notice-empty {
  margin: 0;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: -0.012em;
}

.notice-list {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #fff;
  border: 1px solid var(--eeum-line);
  border-radius: 12px;
}

.notice-list li + li {
  border-top: 1px solid var(--eeum-line);
}

.notice-list a {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 24px 32px;
  color: inherit;
  text-decoration: none;
}

.notice-list a:hover {
  background: #faf8f6;
}

.notice-list a:hover strong {
  color: var(--purple-700);
}

.notice-list time {
  flex: 0 0 7.6em;
  width: 7.6em;
  color: var(--eeum-muted);
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.notice-list strong {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.02em;
  word-break: keep-all;
}

.notice-list__more {
  flex: 0 0 auto;
  color: var(--purple-700);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.notice-article__date {
  margin: 0 0 28px;
  color: var(--eeum-muted);
  font-size: 15px;
}

.notice-article__date time {
  white-space: nowrap;
}

.notice-article__body {
  margin-bottom: 36px;
}

@media (max-width: 767px) {
  .notice-list a {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 16px;
    row-gap: 10px;
    padding: 22px 20px;
  }

  .notice-list time {
    flex: none;
    width: auto;
    grid-column: 1;
    grid-row: 1;
  }

  .notice-list__more {
    grid-column: 2;
    grid-row: 1;
  }

  .notice-list strong {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 1199px) {
  .why-grid,
  .grid-4,
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1100px) {
  .timeline { grid-template-columns: 1fr; }
  .timeline-step { text-align: left; display: grid; grid-template-columns: 64px 1fr; align-items: center; gap: 8px; }
  .section-head { margin-bottom: 28px; }
}

@media (max-width: 767px) {
  .why-grid,
  .grid-4,
  .grid-3,
  .grid-2,
  .form-row { grid-template-columns: 1fr; }
  .why-card { padding: 28px; }
  .form-submit { width: 100%; }
  .btn-row { gap: 10px; }
  .simple-table th { width: 36%; }
  .page-hero {
    min-height: 340px;
  }
  .page-hero__inner {
    width: calc(100% - 40px);
    padding: 48px 0 36px;
  }
  .page-hero__content { width: 100%; }
  .page-hero::before {
    background: linear-gradient(
      180deg,
      rgba(16, 22, 34, 0.18) 0%,
      rgba(16, 22, 34, 0.42) 48%,
      rgba(16, 22, 34, 0.78) 100%
    );
  }
  .page-hero h1,
  .page-hero__title {
    font-size: clamp(32px, 9vw, 38px);
    letter-spacing: -0.035em;
    line-height: 1.28;
  }
  .page-hero__img { object-position: 68% 38%; }
  .page-hero--student .page-hero__img { object-position: 58% 32%; }
  .page-hero--checklist .page-hero__img { object-position: 38% 42%; }
  .page-hero--process .page-hero__img { object-position: 62% 18%; }
  .page-hero--restricted .page-hero__img { object-position: 52% 38%; }
  .page-hero--faq .page-hero__img { object-position: 42% 18%; }
  .page-hero--air .page-hero__img { object-position: 78% 42%; }
  .page-hero--packing .page-hero__img { object-position: 50% 35%; }
  .page-hero--exhibition .page-hero__img { object-position: 38% 42%; }
  .page-hero--express .page-hero__img { object-position: 42% 40%; }
}

@media (max-width: 1023px) and (min-width: 768px) {
  .page-hero__content,
  .company-hero__content,
  .about-hero__content { width: min(70%, 100%); }
}
