@charset "utf-8";
:root {
  --primary: #1c5fd4;
  --navy: #14315b;
  --text: #111827;
  --muted: #5f6b7a;
  --line: rgba(17, 24, 39, 0.08);
  --white: #ffffff;
  --radius: 24px;
  --radius-lg: 32px;
  --shadow: 0 18px 44px rgba(19, 49, 91, 0.08);
}
.inner { width: min(100% - 40px, 1320px); margin: 0 auto; }
.section-space { padding: 110px 0; }
.eyebrow { margin-bottom: 16px; font-size: 14px; font-weight: 800; letter-spacing: .14em; color: var(--primary); }
.section-head h3 { font-size: 50px; line-height: 1.22; letter-spacing: -0.04em; }
.row-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 58px; padding: 0 28px; border-radius: 999px; font-weight: 700; }
.btn-primary { background: var(--primary); color: var(--white); }
.btn-outline { border: 1px solid rgba(28, 95, 212, 0.24); background: var(--white); color: var(--navy); }
.text-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--navy); }
.topbar { background: #edf2fb; border-bottom: 1px solid var(--line); }
.topbar-inner, .header-inner, .footer-inner { display: flex; align-items: center; justify-content: space-between; }
.topbar-inner { min-height: 42px; font-size: 13px; color: var(--muted); }
.topbar-right { display: flex; gap: 18px; }
.site-header { position: sticky; top: 0; z-index: 40; background: rgba(255,255,255,0.94); backdrop-filter: blur(18px); border-bottom: 1px solid transparent; }
.site-header.is-scrolled { border-color: var(--line); }
.header-inner { min-height: 90px; gap: 24px; }
.logo img { width: 186px; }
.gnb { flex: 1; }
.gnb-list { display: flex; justify-content: center; gap: 12px; }
.gnb-list > li { position: relative; }
.gnb-list > li > a { display: inline-flex; min-height: 90px; align-items: center; padding: 0 18px; font-weight: 700; }
.depth2 {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  min-width: 190px; padding: 18px; border-radius: 20px; background: var(--white);
  box-shadow: var(--shadow); opacity: 0; visibility: hidden; transition: .25s ease;
}
.depth2 a { display: block; padding: 10px 8px; color: var(--muted); }
.gnb-list > li:hover .depth2 { opacity: 1; visibility: visible; }
.header-utils { display: flex; align-items: center; gap: 12px; }
.search-btn { width: 42px; height: 42px; border-radius: 50%; background: #f1f5fb; font-size: 22px; }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 0; }
.menu-toggle span { display: block; width: 24px; height: 2px; margin: 5px auto; background: #111827; transition: .25s ease; }
.mobile-menu { display: none; border-top: 1px solid var(--line); background: var(--white); }
.mobile-menu-inner { padding: 18px 20px 28px; }
.mobile-item + .mobile-item { border-top: 1px solid var(--line); }
.mobile-item button { width: 100%; display: flex; justify-content: space-between; align-items: center; min-height: 56px; font-weight: 700; text-align: left; }
.mobile-depth2 { display: none; padding: 0 0 14px; }
.mobile-depth2 a { display: block; padding: 10px 0; color: var(--muted); }
.site-footer { padding: 38px 0 46px; background: #0f1f37; color: rgba(255,255,255,.78); }
.footer-inner { align-items: flex-end; gap: 30px; }
.footer-brand img { width: 180px; filter: brightness(0) invert(1); }
.footer-brand p { margin-top: 14px; }
.footer-info { text-align: right; line-height: 1.9; }

@media (max-width: 1439px) {
  .section-head h3 { font-size: 44px; }
}
@media (max-width: 1279px) {
  .gnb { display: none; }
  .menu-toggle { display: inline-block; }
  .mobile-menu.is-open { display: block; }
  .section-space { padding: 90px 0; }
  .section-head h3 { font-size: 40px; }
}
@media (max-width: 767px) {
  .inner { width: min(100% - 24px, 1320px); }
  .topbar { display: none; }
  .header-inner { min-height: 76px; }
  .logo img { width: 160px; }
  .section-space { padding: 72px 0; }
  .section-head h3 { font-size: 30px; }
  .row-head { align-items: start; flex-direction: column; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
  .footer-info { text-align: left; }
}
@media (max-width: 320px) {
  .logo img { width: 146px; }
}
