  html { scroll-behavior: smooth; }
  body { font-family: 'Pretendard Variable', 'Pretendard', -apple-system, system-ui, sans-serif; }

  .dot-grid {
    background-image: radial-gradient(rgba(255,255,255,.14) 1px, transparent 1px);
    background-size: 22px 22px;
  }
  .fade-mask {
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
            mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
  }
  .card-hover { transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease; }
  .card-hover:hover { box-shadow: 0 12px 30px rgba(8,13,26,.08); transform: translateY(-3px); border-color: #cbd5e1; }

  .hero-swiper { width: 100%; height: 640px; }
  .hero-swiper .swiper-button-prev:after,
  .hero-swiper .swiper-button-next:after { color: #fff; font-size: 22px; }
  .hero-swiper .swiper-pagination-bullet { background: #fff; opacity: .5; }
  .hero-swiper .swiper-pagination-bullet-active { background: #22d3ee; opacity: 1; }
  @media (max-width: 906px) {
    .hero-swiper { height: 560px; }
    .hero-swiper .swiper-button-prev,
    .hero-swiper .swiper-button-next { display: none; }
  }

  .stat-num { font-variant-numeric: tabular-nums; letter-spacing: -.02em; }

  #overlay {
    position: fixed; inset: 0; z-index: 100;
    display: none; align-items: center; justify-content: center;
    background: rgba(8,13,26,.8);
  }
  .spinner {
    width: 42px; height: 42px; border-radius: 9999px;
    border: 4px solid rgba(255,255,255,.2); border-top-color: #22d3ee;
    animation: sp-anime .8s linear infinite;
  }
  @keyframes sp-anime { to { transform: rotate(360deg); } }
  
  .pagination { display: flex; align-items: center; justify-content: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
  .pagination .page-link {
    display: flex; align-items: center; justify-content: center;
    min-width: 34px; height: 34px; padding: 0 8px;
    border-radius: .5rem; font-size: .8rem; color: #475569;
    text-decoration: none; transition: background-color .15s ease, color .15s ease;
  }
  .pagination li:not(.disabled):not(.active) .page-link:hover { background: #f1f5f9; color: #0c1526; }
  .pagination .page-item.active .page-link { background: #080d1a; color: #fff; font-weight: 700; }
  .pagination .page-item.disabled .page-link { color: #cbd5e1; cursor: default; }

  
  .info-row { display: flex; align-items: center; padding: .85rem 0; border-bottom: 1px solid #e2e8f0; }
  .info-row:last-child { border-bottom: none; }
  .info-label { width: 6.5rem; flex-shrink: 0; font-size: .875rem; font-weight: 600; color: #64748b; }
  .info-value { font-size: .9rem; color: #1e293b; }

  
  .field-input {
    height: 46px; border-radius: .5rem; border: 1px solid #cbd5e1; padding: 0 14px; font-size: .9rem; width: 100%;
  }
  .field-input:focus { outline: none; border-color: #06b6d4; box-shadow: 0 0 0 3px rgba(6,182,212,.15); }