/* ============================================
   LicenseMania — Design System & Global Styles
   ============================================ */

/* ── 1. CSS 변수 (Design Tokens) ── */
:root {
  --black:      #0a0a0a;
  --black2:     #111111;
  --black3:     #1a1a1a;
  --gold:       #C9A84C;
  --gold-light: #E8C97A;
  --gold-dim:   rgba(201, 168, 76, 0.15);
  --gold-border:rgba(201, 168, 76, 0.25);
  --white:      #F7F5F0;
  --gray:       #b8b8b0;
  --gray2:      #888880;
  --green:      #4CAF50;
  --red:        #E05555;
  --blue:       #5B8DEF;

  --font-serif:  'Pretendard', "맑은 고딕", "Malgun Gothic", sans-serif;
  --font-sans:   'Pretendard', "맑은 고딕", "Malgun Gothic", sans-serif;

  --radius:      2px;
  --radius-lg:   4px;
  --transition:  0.2s ease;
  --shadow-gold: 0 0 30px rgba(201, 168, 76, 0.1);
  --nav-height:  72px;

  --max-width:   1280px;
  --section-pad: 100px;
}

/* ── 2. Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

em { font-style: normal; color: var(--gold); }

/* ── 3. 공통 레이아웃 ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
}

.section {
  padding: var(--section-pad) 0;
}

.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--gray);
  max-width: 560px;
  line-height: 1.7;
}

/* ── 4. 버튼 ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--black);
  padding: 13px 36px;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 1px solid rgba(247, 245, 240, 0.4);
  color: var(--white);
  padding: 13px 36px;
  border-radius: var(--radius);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-sm {
  padding: 9px 20px;
  font-size: 12px;
}

.btn-kakao-footer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FEE500;
  color: #3A1D1D;
  padding: 11px 20px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  margin-top: 20px;
  transition: opacity var(--transition);
}
.btn-kakao-footer:hover { opacity: 0.85; }

/* ── 5. 카드 ── */
.card {
  position: relative;
  background: var(--black2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.card:hover {
  border-color: var(--gold-border);
  transform: translateY(-2px);
}
.card-accent::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
}

/* ── 6. 입력창 ── */
.input,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea,
select {
  background: var(--black3);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  padding: 14px 18px;
  border-radius: var(--radius);
  width: 100%;
  font-size: 15px;
  transition: border-color var(--transition);
  outline: none;
  appearance: none;
}
.input:focus,
input:focus,
textarea:focus,
select:focus {
  border-color: rgba(201, 168, 76, 0.5);
}
.input::placeholder,
input::placeholder,
textarea::placeholder {
  color: var(--gray2);
}

/* ── 7. 공지바 ── */
.notice-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--gold-dim);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  padding: 13px 24px;
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  position: relative;
}
.notice-cta {
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.notice-cta:hover { text-decoration: underline; }
.notice-close {
  position: absolute;
  right: 20px;
  background: none;
  border: none;
  color: var(--gray2);
  font-size: 16px;
  padding: 4px;
  line-height: 1;
  transition: color var(--transition);
}
.notice-close:hover { color: var(--white); }

/* ── 8. 네비게이션 ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: var(--nav-height);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
}

.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 26px;
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
}

.nav-link {
  color: var(--gray);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active {
  color: var(--white);
}
.nav-link.active::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: var(--gold);
  margin-top: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* 언어 전환 */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 4px;
}
.lang-btn {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--gray2);
  padding: 4px 8px;
  border-radius: 1px;
  transition: background var(--transition), color var(--transition);
}
.lang-btn:hover,
.lang-btn.active {
  background: var(--gold-dim);
  color: var(--gold);
}

/* 사용자 칩 */
.user-chip {
  display: flex;
  align-items: center;
  gap: 8px;
}
.user-avatar {
  width: 28px;
  height: 28px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
}
.user-name {
  font-size: 13px;
  color: var(--white);
}
.user-name:hover { color: var(--gold); }

/* 모바일 전용 메뉴 액션 */
.nav-mobile-actions { display: none; }
.nav-mobile-cta {
  display: block;
  background: var(--gold);
  color: var(--black) !important;
  text-align: center;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  text-decoration: none;
}

/* 햄버거 */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition);
}

/* ── 9. 푸터 ── */
.footer {
  background: var(--black2);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 72px 0 40px;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.footer-desc {
  font-size: 11px;
  color: var(--gray2);
  line-height: 1.7;
}
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.social-link {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 14px;
  border-radius: var(--radius);
  transition: border-color var(--transition), color var(--transition);
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }

.footer-col-title {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray2);
  margin-bottom: 20px;
  font-weight: 400;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 14px;
  color: var(--gray);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-contact-list { list-style: none; }
.footer-contact-list li {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
}
.contact-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray2);
  margin-bottom: 2px;
}
.contact-value {
  font-size: 14px;
  color: var(--gray);
}
a.contact-value:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
}
.footer-rights {
  font-size: 13px;
  color: var(--gray2);
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 12px;
  color: var(--gray2);
  letter-spacing: 0.04em;
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--gray); }

/* ── 10. 카카오 플로팅 버튼 ── */
.kakao-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #FEE500;
  color: #3A1D1D;
  padding: 12px 20px 12px 16px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform var(--transition), box-shadow var(--transition);
}
.kakao-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
}

/* ── 11. 별점 ── */
.stars { display: inline-flex; gap: 2px; }
.star { font-size: 14px; }
.star.filled { color: var(--gold); }
.star.empty  { color: rgba(255, 255, 255, 0.15); }

/* ── 12. 페이지네이션 ── */
.pagination { margin-top: 56px; display: flex; justify-content: center; }
.pagination ul {
  display: flex;
  align-items: center;
  gap: 6px;
}
.page-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-size: 14px;
  color: var(--gray);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.page-btn:hover { border-color: var(--gold); color: var(--gold); }
.page-btn.active { background: var(--gold); border-color: var(--gold); color: var(--black); }
.page-ellipsis { color: var(--gray2); font-size: 14px; padding: 0 4px; }

/* ── 13. 탭/필터 ── */
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-tab {
  padding: 8px 20px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--gray);
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.filter-tab:hover,
.filter-tab.active {
  background: var(--gold-dim);
  border-color: var(--gold-border);
  color: var(--gold);
}

/* ── 14. 아코디언 ── */
.accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
}
.accordion-btn:hover { color: var(--gold); }
.accordion-icon {
  font-size: 20px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}
.accordion-btn[aria-expanded="true"] .accordion-icon {
  transform: rotate(45deg);
}
.accordion-body {
  display: none;
  padding: 0 0 22px 0;
  font-size: 15px;
  color: var(--gray);
  line-height: 1.8;
}
.accordion-body.open { display: block; }

/* ── 15. 구분선 ── */
.divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 20px 0;
}
.divider-full {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 40px 0;
}

/* ── 16. 뱃지 ── */
.badge {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 1px;
  font-weight: 500;
}
.badge-gold {
  background: var(--gold-dim);
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.3);
}
.badge-gray {
  background: rgba(255, 255, 255, 0.05);
  color: var(--gray2);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ── 17. 로딩 스피너 ── */
.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(201, 168, 76, 0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── 18. 알림/토스트 ── */
.toast-container {
  position: fixed;
  top: calc(var(--nav-height) + 16px);
  right: 24px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.toast {
  background: var(--black2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  min-width: 280px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  animation: slideIn 0.25s ease;
}
.toast.success { border-left: 3px solid var(--green); }
.toast.error   { border-left: 3px solid var(--red); }
.toast.info    { border-left: 3px solid var(--gold); }
@keyframes slideIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── 19. 모달 ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal {
  background: var(--black2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 620px;
  max-height: 85vh;
  overflow-y: auto;
  transform: translateY(16px);
  transition: transform var(--transition);
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.modal-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 300;
}
.modal-close {
  background: none;
  border: none;
  color: var(--gray2);
  font-size: 22px;
  line-height: 1;
  padding: 4px;
  transition: color var(--transition);
}
.modal-close:hover { color: var(--white); }
.modal-body { padding: 28px; }

/* ── 20. 빈 상태 ── */
.empty-state {
  text-align: center;
  padding: 80px 24px;
}
.empty-state-icon {
  font-size: 48px;
  opacity: 0.2;
  margin-bottom: 16px;
}
.empty-state-text {
  color: var(--gray2);
  font-size: 15px;
}

/* ── 21. 스크롤바 (Webkit) ── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--black2); }
::-webkit-scrollbar-thumb { background: rgba(201, 168, 76, 0.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(201, 168, 76, 0.5); }

/* ── 22. 선택 텍스트 ── */
::selection { background: rgba(201, 168, 76, 0.2); color: var(--white); }

/* ── 23. body padding for fixed nav ── */
body { padding-top: var(--nav-height); }
/* 데스크탑: notice-bar는 position:relative(flow)이므로 추가 패딩 불필요 */
body.has-notice { padding-top: var(--nav-height); }

/* ── 24. 반응형 ── */
@media (max-width: 1100px) {
  .nav-menu { gap: 18px; }
  .nav-link { font-size: 12px; }
  .container { padding: 0 32px; }
  .footer-inner { padding: 0 32px; }
}

@media (max-width: 900px) {
  :root {
    --nav-height: 60px;
  }

  .nav {
    height: 60px;
    top: 0 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(10,10,10,0.98) !important;
  }

  .nav-inner {
    padding: 0 16px;
    height: 60px;
  }

  .nav-center, .nav-links, .lang {
    display: none !important;
  }

  .nav-hamburger {
    display: flex !important;
  }

  .nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #F7F5F0;
  }

  .btn-cta, .nav-cta {
    padding: 7px 12px !important;
    font-size: 11px !important;
  }

  .notice-bar {
    position: fixed !important;
    top: 60px !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 998 !important;
    height: 44px !important;
    padding: 0 24px !important;
    box-sizing: border-box;
  }

  body {
    padding-top: 60px !important;
  }

  body.has-notice {
    padding-top: calc(60px + 44px) !important;
  }

  .nav-menu {
    position: fixed !important;
    top: 60px !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 999 !important;
    background: rgba(10,10,10,0.98) !important;
    flex-direction: column !important;
    padding: 20px 32px 28px !important;
    transform: translateY(calc(-100% - 60px)) !important;
    transition: transform 0.3s ease !important;
  }

  .nav-menu.open {
    transform: translateY(0) !important;
  }

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

  .nav-mobile-actions {
    display: flex !important;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .breadcrumb {
    position: relative !important;
    z-index: 1 !important;
    margin-top: 0 !important;
  }
}

@media (max-width: 600px) {
  :root { --section-pad: 56px; }

  .container { padding: 0 20px; }
  .footer-inner { padding: 0 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .nav-inner { padding: 0 20px; }
  .btn-primary, .btn-ghost { padding: 11px 24px; }

  .kakao-float { bottom: 20px; right: 20px; padding: 10px 16px 10px 12px; font-size: 13px; }

  .section-title { font-size: 32px; }

  * {
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
  }
}

em, i { font-style: normal !important; }
.hero-title em, .cta-title em, .sec-title em { font-style: normal !important; }

* {
    word-break: keep-all;
    overflow-wrap: break-word;
}

/* ── Section Theme Helpers (global) ── */
.section-light {
    background: #F5F5F7 !important;
    color: #1d1d1f !important;
}
.section-dark  { background: var(--black) !important; }

/* section-light: .card (global widget override) */
.section-light .card { background: #ffffff; border-color: rgba(0,0,0,0.1); }
.section-light .card:hover { border-color: rgba(201,168,76,0.3); }

.section-light h1,
.section-light h2,
.section-light h3,
.section-light h4,
.section-light .section-title,
.section-light .sec-title,
.section-light .hero-title,
.section-light .page-title {
    color: #1d1d1f !important;
}
.section-light p,
.section-light .hero-desc,
.section-light .sec-desc,
.section-light .card-text,
.section-light .desc {
    color: #6e6e73 !important;
}
.section-light .sec-eyebrow,
.section-light .eyebrow {
    color: #C9A84C !important;
}
.section-light .gold,
.section-light [style*="color:#C9A84C"],
.section-light [style*="color: #C9A84C"] {
    color: #C9A84C !important;
}

/* ══════════════════════════════════════════════════
   전 페이지 타이포그래피 통일 — v2
   모든 페이지 히어로 제목 / 아이브로우 / 본문을 일관되게
══════════════════════════════════════════════════ */

/* ── 히어로 메인 제목 (모든 페이지) ── */
.hero-title,
.page-title,
.rv-hero-title,
.fq-hero-title,
.ev-hero-title,
.jb-hero .page-title,
.lc-hero .page-title,
.why-hero .page-title {
  font-family: var(--font-serif) !important;
  font-size: clamp(38px, 4.2vw, 52px) !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
  color: var(--white) !important;
}

/* ── 아이브로우 (eyebrow) — 모든 페이지 ── */
.eyebrow,
.sec-eyebrow,
.section-eyebrow,
.rv-eyebrow,
.fq-eyebrow,
.ev-eyebrow,
.lc-eyebrow,
.jb-eyebrow {
  font-family: var(--font-sans) !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  color: var(--gold) !important;
  margin-bottom: 18px !important;
  display: block;
}

/* ── 히어로 부제목 / 설명문 ── */
.hero-body,
.page-desc,
.rv-hero-desc,
.fq-hero-desc,
.ev-hero-desc,
.lc-hero-desc {
  font-family: var(--font-sans) !important;
  font-size: 15px !important;
  line-height: 1.85 !important;
  color: var(--gray) !important;
  font-weight: 400 !important;
}

/* ── 섹션 제목 (sec-title) ── */
.sec-title,
.section-title {
  font-family: var(--font-serif) !important;
  font-size: clamp(26px, 3vw, 38px) !important;
  font-weight: 300 !important;
  line-height: 1.2 !important;
  color: var(--white) !important;
  letter-spacing: -0.01em;
}
