:root {
  --color-navy: #0b2c5d;
  --color-blue: #1e4fa3;
  --color-red: #c62828;
  --color-bg: #f5f7fa;
  --color-white: #ffffff;
  --color-title: #0f172a;
  --color-body: #334155;
  --color-muted: #64748b;
  --color-border: #e5e7eb;
  --color-border-soft: #cbd5e1;

  --radius-card: 8px;
  --radius-button: 6px;

  --shadow-soft: 0 8px 24px rgba(15, 23, 42, 0.04);

  --font-sans: "Pretendard", "Noto Sans KR", system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Typography – NotoSansKR 폰트를 Pretendard 대체로 사용 */
@font-face {
  font-family: "Pretendard";
  src: url("./font/NotoSansKR-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Pretendard";
  src: url("./font/NotoSansKR-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Pretendard";
  src: url("./font/NotoSansKR-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Pretendard";
  src: url("./font/NotoSansKR-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Pretendard";
  src: url("./font/NotoSansKR-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: "Pretendard";
  src: url("./font/NotoSansKR-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-body);
  font-weight: 500;
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

strong {
  font-weight: 600;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-alt {
  background-color: #f9fafb;
}

.section-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section-two-column {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: 40px;
  align-items: center;
}

.section-title {
  font-size: 32px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--color-title);
  margin: 0 0 16px;
  word-break: keep-all;
}

.section-lead {
  font-size: 17px;
  color: var(--color-body);
  margin: 0 0 16px;
  word-break: keep-all;
}

.section-description {
  font-size: 16px;
  color: var(--color-muted);
  margin: 0 0 32px;
  word-break: keep-all;
}

.section-note {
  font-size: 14px;
  color: var(--color-muted);
  margin: 16px 0 0;
  word-break: keep-all;
}

.section-text p {
  margin: 0 0 10px;
}

.section-text p:last-child {
  margin-bottom: 0;
}

.section-inner>.section-title,
.section-inner>.section-lead,
.section-inner>.section-description,
.section-header {
  text-align: center;
}

.section-header {
  max-width: 720px;
  margin: 0 auto 8px;
}

.section-eyebrow {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-blue);
  margin: 0 0 8px;
  font-weight: 600;
}

.grid {
  display: grid;
  gap: 20px;
}

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

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

.card {
  background-color: var(--color-white);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  padding: 20px 20px 22px;
}

.card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-title);
  margin: 0 0 10px;
  word-break: keep-all;
}

.card-body {
  font-size: 15px;
  color: var(--color-body);
  margin: 0;
  word-break: keep-all;
}

.service-card {
  min-height: 180px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  width: 78px;
  height: 100px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-kor {
  font-size: 17px;
  font-weight: 800;
  color: #000000;
  line-height: 1.2;
}

.brand-en {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-navy);
  margin-top: 2px;
  line-height: 1.2;
}

.brand-tagline {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-blue);
  margin-top: 4px;
  letter-spacing: -0.02em;
}

.main-nav {
  display: flex;
  align-items: center;
  font-size: 14px;
}

.main-nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.main-nav a {
  text-decoration: none;
  padding: 6px 4px;
  /* padding 오타 수정 */
  font-weight: 700;

}

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

.nav-cta {
  padding: 10px 20px;
  border-radius: var(--radius-button);
  border: 1px solid var(--color-navy);
  background-color: var(--color-navy);
  color: var(--color-white);
  font-weight: 700;
  font-size: 14px;
  margin-left: 24px;
  transition: background-color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}

.nav-cta:hover {
  background-color: var(--color-blue);
  border-color: var(--color-blue);
  color: var(--color-white);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  padding: 8px;
  margin-left: auto;
  cursor: pointer;
  border-radius: 6px;
  width: 40px;
  height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: all 0.2s ease;
}

.nav-toggle:hover {
  background-color: rgba(11, 44, 93, 0.05);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-navy);
  border-radius: 2px;
  transition: all 0.3s ease;
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-backdrop {
  display: none !important;
}

.nav-close {
  display: none;
}

.nav-logo-footer {
  display: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-button);
  border: 1px solid transparent;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease,
    border-color 0.15s ease, box-shadow 0.15s ease;
  font-family: inherit;
}

.btn-primary {
  background-color: var(--color-navy);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-blue);
}

.btn-secondary {
  background-color: var(--color-white);
  color: var(--color-navy);
  border-color: var(--color-border-soft);
}

.btn-secondary:hover {
  border-color: var(--color-blue);
  color: var(--color-blue);
}

.btn-block {
  width: 100%;
}

.consult-form .btn-primary {
  background: linear-gradient(135deg, var(--color-navy), var(--color-blue));
  border: none;
  padding: 16px 32px;
  font-size: 16px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(11, 44, 93, 0.25);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.consult-form .btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-blue), #60a5fa);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.consult-form .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(11, 44, 93, 0.35);
}

.consult-form .btn-primary:hover::before {
  opacity: 1;
}

.consult-form .btn-primary span {
  position: relative;
  z-index: 1;
}

/* Hero */
.hero-section {
  position: relative;
  padding-top: 96px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(15, 23, 42, 0.5),
      rgba(15, 23, 42, 0.7));
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  align-items: center;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(30, 79, 163, 0.2);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-navy);
  background-color: #e0edff;
  width: fit-content;
}

.hero-title {
  font-size: 40px;
  line-height: 1.3;
  font-weight: 600;
  color: #f9fafb;
  margin: 0;
  word-break: keep-all;
}

.hero-subtitle {
  font-size: 17px;
  color: #e5e7eb;
  margin: 0;
  word-break: keep-all;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 4px 0 0;
  list-style: none;
  justify-content: center;
  text-align: center;
}

.hero-badges li {
  font-size: 13px;
  color: #e5e7eb;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  padding: 6px 12px;
  background-color: rgba(15, 23, 42, 0.5);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
  justify-content: center;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-main {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-border);
  position: relative;
  min-height: 260px;
  max-height: 360px;
}

.hero-slider {
  background-color: #020617;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide.is-active {
  opacity: 1;
  position: relative;
}

.hero-image-floating {
  position: absolute;
  bottom: -18px;
  left: -12px;
  background-color: var(--color-white);
  border-radius: 12px;
  border: 1px solid var(--color-border);
  padding: 10px 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}

.hero-image-floating img {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  object-fit: cover;
}

.hero-image-caption {
  font-size: 12px;
  color: var(--color-muted);
  margin: 0;
}

/* Media 카드 */
.section-media {
  display: flex;
  justify-content: flex-end;
}

.about-layout .section-text {
  text-align: left;
}

.about-slider {
  position: relative;
  overflow: hidden;
  min-height: 260px;
}

.about-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.about-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-slide.is-active {
  opacity: 1;
  position: relative;
}

#network .section-text {
  text-align: center;
}

.media-card {
  background-color: var(--color-white);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  padding: 10px;
  box-shadow: var(--shadow-soft);
}

.media-card img {
  border-radius: 6px;
  width: 100%;
  min-height: 280px;
  object-fit: cover;
}

.media-caption {
  font-size: 13px;
  color: var(--color-muted);
  margin: 10px 4px 0;
}

.media-card.stacked {
  position: relative;
  padding: 12px;
}

.media-card.stacked .media-overlay {
  position: absolute;
  width: 45%;
  bottom: 16px;
  right: 16px;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.16);
  border: 2px solid #f9fafb;
}

/* 신뢰 섹션 */
.trust-grid {
  align-items: stretch;
}

.trust-card {
  border-radius: 14px;
  padding: 18px 18px 20px;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.trust-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 14px;
  border-radius: 999px;
  background-color: #e0edff;
  color: var(--color-blue);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
}

.trust-card .card-title {
  font-size: 20px;
}

.service-card {
  min-height: 180px;
  text-align: center;
}

/* 글로벌 네트워크 – 국기 스트립 */
.flag-strip-section {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.flag-strip-section .container {
  max-width: 100%;
  padding: 0;
}

.flag-strip-section .section-description {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}

.flag-strip {
  margin-top: 24px;
  border-radius: 0;
  border: none;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background-color: var(--color-white);
  overflow: hidden;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.flag-track {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 24px 0;
  min-width: max-content;
  animation: flag-scroll 50s linear infinite;
}

.flag-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-body);
  white-space: nowrap;
}

.flag-item img {
  width: 56px;
  height: 40px;
  border-radius: 4px;
  border: 2px solid var(--color-border);
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
}

@keyframes flag-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* 현장 스냅샷 갤러리 */
.field-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.field-item img {
  border-radius: 10px;
  height: 180px;
  width: 100%;
  object-fit: cover;
}

.field-caption {
  font-size: 13px;
  color: var(--color-muted);
  margin-top: 6px;
}

/* 파란색 섹션 (네이비 배경) */
.section-blue {
  background: linear-gradient(135deg, #0b2c5d, #123f8f);
  color: #e5e7eb;
}

.section-blue .section-title,
.section-blue .section-lead,
.section-blue .section-description,
.section-blue .section-note {
  color: #f9fafb;
}

.section-blue .section-eyebrow {
  color: #bfdbfe;
}

.section-blue .card {
  background-color: rgba(15, 23, 42, 0.92);
  border-color: rgba(148, 163, 184, 0.6);
}

.section-blue .card-title {
  color: #f9fafb;
}

.section-blue .card-body {
  color: #e5e7eb;
}

.section-blue strong {
  color: #ffffff;
}

.section-blue a {
  color: #bfdbfe;
}

.section-blue .trust-tag {
  background-color: rgba(15, 23, 42, 0.9);
  color: #e0edff;
}

/* 자격증 / 비자 이미지 스트립 */
.image-strip-section {
  padding-top: 40px;
}

.image-strip {
  overflow: hidden;
  border-radius: 0;
  border: none;
  background-color: #ffffff;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.image-track {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 24px;
  min-width: max-content;
}

.image-track img {
  height: 360px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.35);
}

@media (max-width: 720px) {
  .image-track img {
    height: 280px;
  }
}

.cert-track {
  animation: cert-scroll 40s linear infinite;
}

.visa-track {
  animation: visa-scroll 42s linear infinite;
}

@keyframes cert-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes visa-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* 프로세스 */
.process-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.process-step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: center;
  text-align: center;
  background-color: var(--color-white);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  padding: 14px 16px;
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background-color: var(--color-navy);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  margin: 0 auto 6px;
}

.step-content h3 {
  font-size: 16px;
  color: var(--color-title);
  margin: 0 0 4px;
}

.step-content p {
  font-size: 14px;
  color: var(--color-body);
  margin: 0;
}

/* 상담 섹션 */
.consult-section {
  background-color: #eef2f7;
}

.consult-section .container {
  max-width: 1120px;
  padding-left: 24px;
  padding-right: 24px;
}

.consult-section .section-text {
  text-align: center;
}

.consult-section .section-title {
  text-align: center;
}

.consult-section .section-lead {
  text-align: center;
}

.consult-section .section-note {
  text-align: center;
}

.consult-points {
  list-style: none;
  padding-left: 0;
  margin: 16px auto 0;
  max-width: 600px;
  text-align: left;
}

.consult-points li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  margin-bottom: 10px;
}

.consult-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-blue);
  font-weight: 700;
  font-size: 16px;
}

.consult-form {
  background: linear-gradient(145deg, #ffffff, #f8fafc);
  border-radius: 20px;
  border: 2px solid transparent;
  background-clip: padding-box;
  position: relative;
  padding: 32px 28px;
  box-shadow: 0 20px 60px rgba(11, 44, 93, 0.12);
}

.consult-form::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, var(--color-navy), var(--color-blue), #60a5fa);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.form-title {
  font-size: 22px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-navy), var(--color-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 24px;
  text-align: center;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field-full {
  grid-column: 1 / -1;
}

label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-title);
  margin-bottom: 2px;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="date"],
input[type="file"],
textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 2px solid var(--color-border);
  outline: none;
  background-color: #f9fafb;
  transition: all 0.3s ease;
}

input:focus,
textarea:focus {
  border-color: var(--color-blue);
  background-color: #ffffff;
  box-shadow: 0 4px 20px rgba(30, 79, 163, 0.15);
  transform: translateY(-2px);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.field-hint {
  font-size: 12px;
  color: var(--color-muted);
  margin: 2px 0 0;
}

.form-result {
  font-size: 13px;
  color: var(--color-blue);
  margin: 10px 0 0;
  min-height: 18px;
}

/* Footer */
.site-footer {
  margin-top: 40px;
  background-color: var(--color-navy);
  color: rgba(241, 245, 249, 0.96);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 0 18px;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.footer-title {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 4px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(226, 232, 240, 0.8);
  margin: 0;
}

.footer-contact p {
  margin: 0 0 4px;
  font-size: 14px;
}

.footer-contact-item {
  text-align: right;
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.4);
}

.footer-bottom-inner {
  padding: 10px 0 12px;
  font-size: 12px;
  color: rgba(226, 232, 240, 0.8);
}

/* 반응형 */
@media (max-width: 960px) {

  .hero-inner,
  .section-two-column {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 60px 0;
  }

  .hero-section {
    padding-top: 84px;
  }

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

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

  .main-nav {
    font-size: 13px;
  }

  .about-slider {
    min-height: 350px;
  }

  .about-slide img {
    height: auto;
    min-height: 350px;
    object-fit: cover;
  }

  .media-card img {
    min-height: 350px;
  }
}

@media (max-width: 720px) {
  .header-inner {
    height: 91px;
    padding: 0;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0;
  }

  .brand-logo {
    width: 72px;
    height: 100px;
  }

  .nav-toggle {
    margin-right: 8px;
  }

  .nav-cta {
    padding: 10px 28px;
  }

  .main-nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

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

  .hero-image-floating {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 16px;
  }

  .hero-image-floating img {
    width: 36px;
    height: 36px;
  }

  .hero-image-caption {
    font-size: 11px;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

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

  .brand-text {
    display: flex;
    margin-left: 4px;
  }

  .brand-kor {
    font-size: 14px;
    font-weight: 800;
  }

  .brand-en {
    font-size: 11px;
    font-weight: 600;
  }

  .brand-tagline {
    font-size: 10px;
    margin-top: 2px;
  }

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

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-brand {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo {
    width: 60px;
    height: 60px;
  }

  .footer-contact {
    text-align: center;
  }

  .footer-contact-item {
    text-align: center;
  }

  .footer-bottom-inner {
    text-align: center;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .consult-section .container {
    padding-left: 36px;
    padding-right: 36px;
  }

  .consult-section .section-inner {
    padding-left: 0;
    padding-right: 0;
  }

  .consult-section .section-text {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .consult-section .section-title,
  .consult-section .section-lead,
  .consult-section .section-note {
    text-align: center;
    width: 100%;
  }

  .consult-points {
    text-align: left;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
  }

  .consult-form {
    padding: 32px 28px;
    margin: 0;
    max-width: 100%;
    box-sizing: border-box;
  }

  .form-grid {
    gap: 12px;
  }

  input[type="text"],
  input[type="tel"],
  input[type="email"],
  input[type="date"],
  input[type="file"],
  textarea {
    font-size: 14px;
    padding: 10px 14px;
    width: 100%;
    box-sizing: border-box;
  }

  .main-nav {
    flex-wrap: nowrap;
    row-gap: 0;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    background-color: var(--color-white);
    flex-direction: column;
    align-items: center;
    padding: 72px 32px 32px;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    box-shadow: -4px 0 24px rgba(15, 23, 42, 0.15);
    z-index: 30;
  }

  body.nav-open .main-nav {
    transform: translateX(0);
  }

  .main-nav-links {
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .main-nav a {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-title);
    width: 100%;
    text-align: center;
  }

  .nav-cta {
    margin-left: 0;
    width: 100%;
    text-align: center;
    color: var(--color-white) !important;
  }

  .nav-close {
    display: flex;
    position: absolute;
    top: 20px;
    right: 20px;
    border: none;
    background-color: rgba(11, 44, 93, 0.08);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    color: var(--color-navy);
    transition: all 0.2s ease;
  }

  .nav-close:hover {
    background-color: rgba(11, 44, 93, 0.15);
    transform: rotate(90deg);
  }

  .cert-track {
    animation-duration: 24s;
  }

  .visa-track {
    animation-duration: 26s;
  }

  .flag-track {
    animation-duration: 30s;
    gap: 32px;
    padding: 20px 0;
  }

  .flag-item {
    font-size: 14px;
    gap: 12px;
  }

  .flag-item img {
    width: 48px;
    height: 34px;
  }

  .nav-logo-footer {
    display: flex;
    margin-top: auto;
    width: 100%;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
    justify-content: center;
    align-items: center;
  }

  .nav-logo-footer img {
    width: 80px;
    height: 80px;
    object-fit: contain;
  }
}

/* TOP 버튼 */
.top-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--color-navy);
  color: var(--color-white);
  border: none;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  box-shadow: 0 4px 12px rgba(11, 44, 93, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-btn.is-visible {
  opacity: 1;
  visibility: visible;
}

.top-btn:hover {
  background-color: var(--color-blue);
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(11, 44, 93, 0.4);
}

@media (max-width: 720px) {
  .top-btn {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
}