/* Core theme stylesheet (loaded on all pages).
   Page-specific styling lives in `assets/css/pages/*.css`. */

/* =============================================
       DESIGN SYSTEM — pasan.html 기준
       ============================================= */
    :root {
      --navy: #0a0f1e;
      --navy-mid: #141b2d;
      --navy-light: #1e2a3f;
      --gold: #b8924a;
      --gold-light: #d4b978;
      --gold-muted: rgba(184,146,74,0.12);
      --text-primary: #1a1a1a;
      --text-secondary: #4a4a4a;
      --text-muted: #777;
      --text-light: #999;
      --bg-page: #f8f7f5;
      --bg-warm: #f5f3ef;
      --bg-card: #ffffff;
      --border-light: #e8e5e0;
      --border-subtle: #f0ede8;
      --header-h: 72px;
      --max-width: 1080px;
      --font-serif: "Noto Serif KR", "Batang", serif;
      --font-sans: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
      --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      --success: #15803d;
      --warning: #b45309;
    }

    html { scroll-behavior: smooth; }
    * { box-sizing: border-box; }
    body {
      margin: 0;
      padding: var(--header-h) 0 0;
      font-family: var(--font-sans);
      color: var(--text-primary);
      background: var(--bg-page);
      line-height: 1.6;
    }
    img { max-width: 100%; height: auto; }
    video, iframe { max-width: 100%; }
    .ksl-a11y-hidden {
      position: absolute !important;
      width: 1px !important;
      height: 1px !important;
      padding: 0 !important;
      margin: -1px !important;
      overflow: hidden !important;
      clip: rect(0, 0, 0, 0) !important;
      white-space: nowrap !important;
      border: 0 !important;
    }
    /* Index hero sits behind the fixed header; avoid double offset. */
    body.ksl-page-index { padding-top: 0; }
    a { text-decoration: none; color: inherit; transition: var(--transition); }
    ul, li { list-style: none; padding: 0; margin: 0; }
    button { cursor: pointer; border: none; font-family: inherit; }

    /* ---- HEADER ---- */
    .site-header {
      background: rgba(255,255,255,0.97);
      height: var(--header-h);
      border-bottom: 1px solid var(--border-subtle);
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      backdrop-filter: blur(8px);
    }
    .header-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      height: 100%;
      padding: 0 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .logo-area { display: flex; align-items: center; gap: 10px; }
    .logo-img { height: 34px; width: auto; }
    .logo-text { display: flex; flex-direction: column; line-height: 1.2; }
    .logo-main {
      font-family: var(--font-serif);
      font-size: 17px; font-weight: 700;
      color: var(--navy); letter-spacing: -0.01em;
    }
    .logo-sub { font-size: 11px; color: var(--text-muted); letter-spacing: 0.04em; }

    .gnb { display: flex; align-items: center; gap: 32px; height: 100%; }
    .nav-list { display: flex; gap: 28px; height: 100%; }
    .nav-item { position: relative; height: 100%; display: flex; align-items: center; }
    .nav-link {
      font-size: 14px; font-weight: 600;
      color: var(--text-secondary); padding: 0 2px;
      position: relative;
      background: transparent;
      border: 0;
      appearance: none;
    }
    .nav-link::after {
      content: '';
      position: absolute; bottom: -1px; left: 0;
      width: 0; height: 2px;
      background: var(--gold);
      transition: width var(--transition);
    }
    .nav-link:hover, .nav-link.active { color: var(--navy); font-weight: 700; }
    .nav-link:hover::after, .nav-link.active::after { width: 100%; }

    .sub-menu {
      position: absolute; top: 100%; left: 50%;
      transform: translateX(-50%) translateY(10px);
      background: #fff; min-width: 150px;
      border: 1px solid var(--border-light);
      box-shadow: 0 8px 24px rgba(0,0,0,0.08);
      border-radius: var(--radius-md);
      overflow: hidden;
      opacity: 0; visibility: hidden;
      transition: all 0.2s ease; padding: 8px 0;
    }
    .nav-item:hover .sub-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
    .sub-menu a { display: block; padding: 10px 18px; font-size: 14px; color: var(--text-secondary); }
    .sub-menu a:hover { background: var(--bg-warm); color: var(--navy); font-weight: 700; }

    .nav-cta {
      padding: 10px 22px;
      background: var(--navy); color: #fff;
      font-size: 13px; font-weight: 700;
      border-radius: var(--radius-md);
      transition: var(--transition);
    }
    .nav-cta:hover { background: var(--navy-mid); }

    .menu-toggle { display: none; width: 26px; height: 20px; position: relative; z-index: 1100; }
    .menu-toggle span {
      display: block; width: 100%; height: 2px;
      background: var(--navy); position: absolute; left: 0;
      transition: 0.3s; border-radius: var(--radius-sm);
    }
    .menu-toggle span:nth-child(1) { top: 0; }
    .menu-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
    .menu-toggle span:nth-child(3) { bottom: 0; }
    .menu-toggle.active span:nth-child(1) { top: 50%; transform: rotate(45deg); }
    .menu-toggle.active span:nth-child(2) { opacity: 0; }
    .menu-toggle.active span:nth-child(3) { bottom: auto; top: 50%; transform: rotate(-45deg); }

    @media (max-width: 992px) {
      .gnb {
        position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
        background: #fff; flex-direction: column; padding-top: 80px;
        transition: 0.3s ease-in-out; z-index: 10000;
        box-shadow: -5px 0 20px rgba(0,0,0,0.05);
        align-items: flex-start; gap: 0;
      }
      .gnb.open { right: 0; }
      .nav-list { flex-direction: column; width: 100%; height: auto; gap: 0; overflow-y: auto; }
      .nav-item { width: 100%; height: auto; flex-direction: column; align-items: flex-start; border-bottom: 1px solid var(--border-subtle); }
      .nav-link { display: block; width: 100%; padding: 16px 24px; font-size: 16px; color: var(--navy); font-weight: 700; }
      .nav-link::after { display: none; }
      .sub-menu {
        position: static; width: 100%; box-shadow: none; border: none;
        background: var(--bg-warm); transform: none;
        opacity: 1; visibility: visible; padding: 0; display: none;
      }
      .nav-item.active .sub-menu {
        display: block; padding: 8px 0 12px;
        border-top: 1px solid var(--border-light);
      }
      .sub-menu a { padding: 12px 32px; font-size: 14px; border-top: 1px solid var(--border-light); font-weight: 700; color: var(--navy); }
      .sub-menu a:first-child { border-top: none; }
      .nav-cta { margin: 30px auto; width: 90%; text-align: center; padding: 14px; font-size: 16px; border-radius: var(--radius-md); }
      .menu-toggle { display: block; z-index: 10001; }
    }
    @media (max-width: 640px) {
      body { font-size: 16px; line-height: 1.8; letter-spacing: -0.01em; }
      p, li { line-height: 1.85; }
    }

/* =========================================================
   Core UI (unified)
   - Header / Footer / CTA / Desktop CTA / Common tokens
   ========================================================= */

:root {
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --success: #15803d;
  --warning: #b45309;
}

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

body {
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.inner,
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 20000;
  padding: 10px 14px;
  background: #fff;
  color: var(--navy);
  border-radius: 10px;
  border: 1px solid var(--border-light);
  box-shadow: 0 16px 40px rgba(10, 15, 30, 0.18);
  transition: top 0.2s ease;
}

.skip-link:focus { top: 16px; }

/* ========== Header ========== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 2px 12px rgba(10,15,30,0.06);
}

.header-inner {
  max-width: var(--max-width); margin: 0 auto; height: 100%;
  padding: 0 24px; display: flex; align-items: center; justify-content: space-between;
}

.logo-area { display: flex; align-items: center; gap: 10px; }
.logo-img { height: 34px; width: auto; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-main {
  font-family: var(--font-serif); font-size: 18px; font-weight: 700;
  color: var(--navy); letter-spacing: -0.02em;
}
.logo-sub { font-size: 10px; color: var(--text-muted); letter-spacing: 0.12em; text-transform: uppercase; }

.gnb { display: flex; align-items: center; gap: 24px; height: 100%; }
.nav-list { display: flex; gap: 4px; height: 100%; }
.nav-item { position: relative; height: 100%; display: flex; align-items: center; }
.nav-link {
  display: inline-flex; align-items: center;
  height: 38px; padding: 0 12px;
  font-size: 14px; font-weight: 700;
  color: var(--text-secondary); border-radius: 6px;
  background: transparent;
  border: 0;
  appearance: none;
}
.nav-link:hover, .nav-link.active { background: var(--gold-muted); color: var(--navy); }
.sub-menu {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--bg-card); min-width: 160px;
  border: 1px solid var(--border-light);
  box-shadow: 0 12px 32px rgba(10,15,30,0.12);
  opacity: 0; visibility: hidden; transition: all 0.2s ease; padding: 6px;
}
.nav-item:hover .sub-menu,
.nav-item.has-sub.active .sub-menu,
.nav-item.menu-item-has-children.active .sub-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.sub-menu a { display: block; padding: 9px 12px; font-size: 13px; font-weight: 700; color: var(--text-secondary); }
.sub-menu a:hover { background: var(--bg-warm); color: var(--navy); }
/* 외부 법인 사이트 바로가기 — 일반 항목과 구분되는 버튼형 강조 */
.sub-menu a.sub-link-ext {
  margin: 6px 8px 2px; padding: 9px 12px; border-radius: var(--radius-sm, 6px);
  background: var(--navy); color: #fff; text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.sub-menu a.sub-link-ext:hover { background: var(--navy-mid, #1d2b50); color: #fff; }
.sub-menu a.sub-link-ext i { font-size: 11px; }
.nav-caret {
  display: inline-block;
  margin-left: 6px;
  font-size: 9px;
  opacity: 0.7;
  transition: transform 0.2s ease;
}
.nav-item.has-sub.active .nav-caret,
.nav-item.menu-item-has-children.active .nav-caret { transform: rotate(180deg); }
.nav-cta { height: 40px; padding: 0 18px; background: var(--navy); color: #fff; font-size: 13px; font-weight: 700; }
.nav-cta:hover { background: var(--navy-mid); }

.menu-toggle {
  display: none; width: 24px; height: 18px;
  position: relative; z-index: 1100; background: none; padding: 0;
}
.menu-toggle span { display: block; width: 100%; height: 2px; background: var(--navy); position: absolute; left: 0; transition: 0.3s; }
.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.menu-toggle span:nth-child(3) { bottom: 0; }
.menu-toggle.active span:nth-child(1) { top: 50%; transform: rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { bottom: auto; top: 50%; transform: rotate(-45deg); }

/* Front page hero header variant */
.site-header.site-header--hero {
  height: auto;
  background: rgba(10,15,30,0.42);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  box-shadow: none;
}
.site-header.site-header--hero .header-inner { height: 72px; }
.site-header.site-header--hero .logo-main { color: rgba(255,255,255,0.95); }
.site-header.site-header--hero .logo-sub { color: rgba(255,255,255,0.68); }
.site-header.site-header--hero .nav-link { color: rgba(255,255,255,0.84); }
.site-header.site-header--hero .nav-link:hover,
.site-header.site-header--hero .nav-link.active { background: rgba(184,146,74,0.18); color: #fff; }
.site-header.site-header--hero .nav-cta { background: var(--gold); color: var(--navy); }
.site-header.site-header--hero .nav-cta:hover { background: var(--gold-light); }
.site-header.site-header--hero .menu-toggle span { background: rgba(255,255,255,0.9); }

/* Compact translucent header variant (location/selfcheck) */
.site-header.site-header--compact {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 2px 12px rgba(10,15,30,0.06);
}
.site-header.site-header--compact .header-inner {
  max-width: var(--max-width); margin: 0 auto; height: 100%;
  padding: 0 24px; display: flex; align-items: center; justify-content: space-between;
}
.site-header.site-header--compact .logo-area { display: flex; align-items: center; gap: 10px; }
.site-header.site-header--compact .logo-img { height: 34px; width: auto; }
.site-header.site-header--compact .logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.site-header.site-header--compact .logo-main {
  font-family: var(--font-serif); font-size: 18px; font-weight: 700;
  color: var(--navy); letter-spacing: -0.02em;
}
.site-header.site-header--compact .logo-sub {
  font-size: 10px; color: var(--text-muted);
  letter-spacing: 0.12em; text-transform: uppercase;
}
.site-header.site-header--compact .gnb { display: flex; align-items: center; gap: 24px; height: 100%; }
.site-header.site-header--compact .nav-list { display: flex; gap: 4px; height: 100%; }
.site-header.site-header--compact .nav-item { position: relative; height: 100%; display: flex; align-items: center; }
.site-header.site-header--compact .nav-link {
  display: inline-flex; align-items: center;
  height: 38px; padding: 0 12px;
  font-size: 14px; font-weight: 700;
  color: var(--text-secondary); border-radius: 6px;
}
.site-header.site-header--compact .nav-link::after { display: none; }
.site-header.site-header--compact .nav-link:hover,
.site-header.site-header--compact .nav-link.active { background: var(--gold-muted); color: var(--navy); }
.site-header.site-header--compact .sub-menu {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--bg-card); min-width: 160px;
  border: 1px solid var(--border-light);
  box-shadow: 0 12px 32px rgba(10,15,30,0.12);
  opacity: 0; visibility: hidden; transition: all 0.2s ease; padding: 6px;
}
.site-header.site-header--compact .nav-item:hover .sub-menu,
.site-header.site-header--compact .nav-item.has-sub.active .sub-menu,
.site-header.site-header--compact .nav-item.menu-item-has-children.active .sub-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.site-header.site-header--compact .sub-menu a { display: block; padding: 9px 12px; font-size: 13px; font-weight: 700; color: var(--text-secondary); }
.site-header.site-header--compact .sub-menu a:hover { background: var(--bg-warm); color: var(--navy); }
.site-header.site-header--compact .nav-cta { height: 40px; padding: 0 18px; background: var(--navy); color: #fff; font-size: 13px; font-weight: 700; }
.site-header.site-header--compact .nav-cta:hover { background: var(--navy-mid); }
.site-header.site-header--compact .menu-toggle span { background: var(--navy); }

.header-topline {
  background: rgba(10,15,30,0.58);
  border-bottom: 1px solid rgba(184,146,74,0.22);
  color: rgba(255,255,255,0.75);
  font-size: 12px;
  letter-spacing: 0.02em;
}
.header-topline-inner {
  height: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.topline-copy { font-weight: 600; }
.topline-links {
  display: flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
  font-weight: 700;
}
.topline-links a { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.82); }
.topline-links a:hover { color: var(--gold-light); }

/* Index page uses overlay header, so do not reserve padding */
body.ksl-page-index { padding-top: 0; }

/* ========== Fade ========== */
.fade-section { opacity: 1; transform: none; }
body.js-enhanced.ksl-reveal-ready .fade-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
body.js-enhanced.ksl-reveal-ready .fade-section.visible { opacity: 1; transform: none; }

/* ========== Reusable: Corp Lead Section ========== */
.corp-lead-section {
  background: linear-gradient(135deg, #0a0f1e 0%, #141b2d 100%);
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  color: #fff;
}
.corp-lead-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 820px 520px at 15% 15%, rgba(184,146,74,0.18), transparent 70%),
    radial-gradient(ellipse 640px 540px at 90% 90%, rgba(184,146,74,0.10), transparent 70%);
  pointer-events: none;
}
.corp-lead-section .container { position: relative; z-index: 1; }
.corp-lead-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 44px 48px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(184,146,74,0.30);
  border-radius: var(--radius-lg);
  text-align: center;
  backdrop-filter: blur(8px);
}
.corp-lead-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  background: rgba(184,146,74,0.16);
  border: 1px solid rgba(184,146,74,0.45);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 18px;
}
.corp-lead-title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 16px;
}
.corp-lead-accent { color: var(--gold-light); }
.corp-lead-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  margin: 0 0 24px;
  word-break: keep-all;
}
.corp-lead-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}
.corp-lead-points li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}
.corp-lead-points i { color: var(--gold-light); font-size: 12px; }
.corp-lead-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.corp-lead-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  font-size: 14px;
  font-weight: 800;
  border-radius: var(--radius-md);
  transition: var(--transition);
  text-decoration: none;
  border: 1px solid transparent;
}
.corp-lead-btn--primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 10px 28px rgba(184,146,74,0.30);
}
.corp-lead-btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(184,146,74,0.40);
}
.corp-lead-btn--ghost {
  background: transparent;
  color: rgba(255,255,255,0.92);
  border-color: rgba(255,255,255,0.28);
}
.corp-lead-btn--ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(184,146,74,0.55);
}

/* ========== Reusable: Mid CTA Block ========== */
.mid-cta-block {
  padding: 48px 0;
  background: var(--bg-warm);
  background-image: radial-gradient(ellipse 760px 520px at 50% 50%, rgba(184,146,74,0.08), transparent 70%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.mid-cta-block--rehab,
.mid-cta-block--pasan,
.mid-cta-block--about {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-top: 1px solid rgba(184,146,74,0.20);
  border-bottom: 1px solid rgba(184,146,74,0.20);
  color: #fff;
  background-image:
    radial-gradient(ellipse 760px 460px at 20% 30%, rgba(184,146,74,0.16), transparent 70%),
    radial-gradient(ellipse 640px 440px at 90% 80%, rgba(184,146,74,0.10), transparent 70%);
}
.mid-cta-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}
.mid-cta-copy { text-align: left; }
.mid-cta-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  background: rgba(184,146,74,0.14);
  border: 1px solid rgba(184,146,74,0.40);
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 14px;
}
.mid-cta-block--rehab .mid-cta-kicker,
.mid-cta-block--pasan .mid-cta-kicker,
.mid-cta-block--about .mid-cta-kicker {
  color: var(--gold-light);
  background: rgba(184,146,74,0.18);
  border-color: rgba(184,146,74,0.45);
}
.mid-cta-title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  line-height: 1.35;
  color: var(--navy);
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}
.mid-cta-block--rehab .mid-cta-title,
.mid-cta-block--pasan .mid-cta-title,
.mid-cta-block--about .mid-cta-title { color: #fff; }
.mid-cta-accent { color: var(--gold); }
.mid-cta-block--rehab .mid-cta-accent,
.mid-cta-block--pasan .mid-cta-accent,
.mid-cta-block--about .mid-cta-accent { color: var(--gold-light); }
.mid-cta-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0;
  word-break: keep-all;
}
.mid-cta-block--rehab .mid-cta-desc,
.mid-cta-block--pasan .mid-cta-desc,
.mid-cta-block--about .mid-cta-desc { color: rgba(255,255,255,0.72); }
.mid-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
}
.mid-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 800;
  border-radius: var(--radius-md);
  transition: var(--transition);
  text-decoration: none;
  border: 1px solid transparent;
  white-space: nowrap;
}
.mid-cta-btn--primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 8px 20px rgba(184,146,74,0.25);
}
.mid-cta-btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.mid-cta-btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.mid-cta-block--rehab .mid-cta-btn--outline,
.mid-cta-block--pasan .mid-cta-btn--outline,
.mid-cta-block--about .mid-cta-btn--outline {
  color: rgba(255,255,255,0.92);
  border-color: rgba(255,255,255,0.32);
}
.mid-cta-btn--outline:hover {
  background: var(--navy);
  color: #fff;
}
.mid-cta-block--rehab .mid-cta-btn--outline:hover,
.mid-cta-block--pasan .mid-cta-btn--outline:hover,
.mid-cta-block--about .mid-cta-btn--outline:hover {
  background: rgba(255,255,255,0.10);
  border-color: var(--gold-light);
}
.mid-cta-btn--tel {
  background: transparent;
  color: var(--text-secondary);
  border-color: var(--border-light);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.mid-cta-block--rehab .mid-cta-btn--tel,
.mid-cta-block--pasan .mid-cta-btn--tel,
.mid-cta-block--about .mid-cta-btn--tel {
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.16);
}
.mid-cta-btn--tel:hover { background: var(--bg-warm); color: var(--navy); }

/* ========== Reusable: Blog Promo ========== */
.blog-promo-section {
  padding: 72px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}
.blog-promo-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 720px 480px at 88% 50%, rgba(46,125,50,0.06), transparent 70%);
  pointer-events: none;
}
.blog-promo-section .container { position: relative; z-index: 1; }
.blog-promo-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
.blog-promo-copy { text-align: left; }
.blog-promo-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 11px;
  background: rgba(46,125,50,0.10);
  border: 1px solid rgba(46,125,50,0.30);
  color: #2e7d32;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 14px;
}
.blog-promo-title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 700;
  line-height: 1.32;
  color: var(--navy);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.blog-promo-accent { color: #2e7d32; }
.blog-promo-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0 0 20px;
  word-break: keep-all;
}
.blog-promo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}
.blog-promo-tags li {
  display: inline-flex;
  align-items: center;
  padding: 5px 11px;
  background: var(--bg-warm);
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
}
.blog-promo-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: #2e7d32;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  border-radius: var(--radius-md);
  transition: var(--transition);
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(46,125,50,0.25);
}
.blog-promo-btn:hover {
  background: #1b5e20;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(46,125,50,0.35);
  color: #fff;
}
.blog-promo-visual {
  position: relative;
  height: 280px;
  perspective: 800px;
}
.blog-promo-card {
  position: absolute;
  width: 80%;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 28px rgba(10,15,30,0.12);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: var(--transition);
}
.blog-promo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(10,15,30,0.18);
}
.blog-promo-card--1 {
  top: 0;
  right: 0;
  transform: rotate(-3deg);
}
.blog-promo-card--2 {
  top: 90px;
  right: 18%;
  transform: rotate(2deg);
  z-index: 2;
}
.blog-promo-card--3 {
  top: 180px;
  right: 4%;
  transform: rotate(-1.5deg);
}
.blog-promo-card-tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 3px 8px;
  background: var(--gold-muted);
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  border-radius: 4px;
}
.blog-promo-card-title {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
}

/* ========== Pasan Hero enhancements (rehab/pasan/corp pages) ========== */
.pasan-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 26px 0 18px;
}
.pasan-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  font-size: 14px;
  font-weight: 800;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid transparent;
}
.pasan-hero-btn--primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 10px 28px rgba(184,146,74,0.35);
}
.pasan-hero-btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}
.pasan-hero-btn--ghost {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.95);
  border-color: rgba(255,255,255,0.30);
  backdrop-filter: blur(6px);
}
.pasan-hero-btn--ghost:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(184,146,74,0.55);
}
.pasan-hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.pasan-hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(184,146,74,0.10);
  border: 1px solid rgba(184,146,74,0.30);
  color: rgba(255,255,255,0.88);
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
}
.pasan-hero-trust i { color: var(--gold-light); font-size: 11px; }
.pasan-hero-accent { color: var(--gold-light); }

/* ========== Corp site banner (corp.php) ========== */
.corp-site-banner {
  background: linear-gradient(90deg, rgba(184,146,74,0.16) 0%, rgba(184,146,74,0.08) 100%);
  border-top: 1px solid rgba(184,146,74,0.35);
  border-bottom: 1px solid rgba(184,146,74,0.20);
  padding: 14px 0;
}
.corp-site-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.corp-site-banner-text {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
}
.corp-site-banner-text i { color: var(--gold); font-size: 16px; }
.corp-site-banner-text strong { color: var(--navy); font-weight: 800; }
.corp-site-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  border-radius: var(--radius-md);
  transition: var(--transition);
  text-decoration: none;
}
.corp-site-banner-btn:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-1px);
}

/* ========== About hero actions ========== */
.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
}
.about-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  font-size: 14px;
  font-weight: 800;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid transparent;
}
.about-hero-btn--primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 10px 28px rgba(184,146,74,0.30);
}
.about-hero-btn--primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.about-hero-btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--border-light);
}
.about-hero-btn--ghost:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ========== cta-box actions (about page bottom) ========== */
.cta-box-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 4px;
}
.cta-btn--ghost {
  background: rgba(255,255,255,0.08) !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.30) !important;
}
.cta-btn--ghost:hover { background: rgba(255,255,255,0.16) !important; }

/* ========== Consult title accent ========== */
.consult-accent { color: var(--gold) !important; }

/* ========== Receipt note simplification ========== */
.receipt-meta { font-size: 12px; opacity: 0.85; display: inline-block; margin-top: 4px; }
.contact-receipt-note .receipt-meta a { color: var(--gold-light); text-decoration: underline; }

/* ========== Footer blog/corp links ========== */
.footer-blog-link,
.footer-corp-link {
  background: rgba(184,146,74,0.10) !important;
  color: var(--gold-light) !important;
  border: 1px solid rgba(184,146,74,0.25);
}
.footer-blog-link i,
.footer-corp-link i { font-size: 12px; }
.footer-blog-link:hover,
.footer-corp-link:hover {
  background: rgba(184,146,74,0.18) !important;
  border-color: rgba(184,146,74,0.55);
}

/* ========== Responsive ========== */
@media (max-width: 900px) {
  .corp-lead-card { padding: 32px 24px; }
  .mid-cta-inner { grid-template-columns: 1fr; gap: 22px; }
  .mid-cta-copy { text-align: center; }
  .mid-cta-kicker { margin: 0 auto 12px; }
  .mid-cta-actions { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .mid-cta-btn { flex: 1 1 auto; min-width: 140px; }
  .blog-promo-grid { grid-template-columns: 1fr; gap: 36px; }
  .blog-promo-visual { height: 240px; max-width: 360px; margin: 0 auto; }
  .corp-site-banner-inner { flex-direction: column; align-items: stretch; text-align: center; gap: 10px; }
  .corp-site-banner-text { justify-content: center; }
  .corp-site-banner-btn { justify-content: center; }
}
@media (max-width: 640px) {
  .corp-lead-section { padding: 56px 0; }
  .corp-lead-card { padding: 28px 20px; }
  .corp-lead-actions { flex-direction: column; }
  .corp-lead-btn { width: 100%; justify-content: center; }
  .mid-cta-actions { flex-direction: column; }
  .mid-cta-btn { width: 100%; }
  .blog-promo-section { padding: 56px 0; }
  .blog-promo-visual { height: 210px; }
  .blog-promo-card { width: 88%; padding: 14px 16px; }
  .blog-promo-card-title { font-size: 13px; }
  .pasan-hero-actions { flex-direction: column; align-items: stretch; }
  .pasan-hero-btn { justify-content: center; }
  .about-hero-actions { flex-direction: column; }
  .about-hero-btn { justify-content: center; }
  .cta-box-actions { flex-direction: column; }
}

/* ========== Footer ========== */
.site-footer {
  background: #050a14;
  color: #e5e7eb;
  padding: 56px 24px 34px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-family: var(--font-sans);
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-logo { display: flex; align-items: center; gap: 12px; }
.footer-logo-img { width: 40px; height: 40px; object-fit: contain; flex-shrink: 0; }
.footer-logo-text { display: flex; flex-direction: column; gap: 2px; }
.footer-logo-main {
  font-family: var(--font-serif);
  font-size: 17px; font-weight: 700;
  color: #f0ede8; letter-spacing: -0.02em;
}
.footer-logo-sub { font-size: 11px; color: #9ca3af; letter-spacing: 0.06em; }
.footer-desc { font-size: 13px; line-height: 1.75; color: #9ca3af; }
.footer-contact { font-size: 13px; line-height: 1.85; color: #d1d5db; }
.footer-contact .label { color: var(--gold); font-weight: 700; margin-right: 6px; }
.footer-col h4 { font-size: 14px; font-weight: 700; margin: 0 0 12px; color: #f8f8f6; }
.footer-links { display: grid; gap: 7px; font-size: 13px; }
.footer-links a { color: #d1d5db; opacity: 0.85; }
.footer-links a:hover { color: var(--gold-light); opacity: 1; }
.footer-quick { display: grid; grid-template-columns: repeat(2, 1fr); gap: 7px; }
.footer-quick a {
  display: flex; align-items: center; gap: 7px;
  padding: 8px 10px; background: rgba(255,255,255,0.04);
  color: #d1d5db; font-size: 12px; font-weight: 700;
}
.footer-quick a:hover { background: rgba(184,146,74,0.1); color: var(--gold-light); }
.footer-line { max-width: var(--max-width); margin: 26px auto 16px; height: 1px; background: rgba(255,255,255,0.07); }
.footer-notice { max-width: var(--max-width); margin: 0 auto; font-size: 12px; line-height: 1.8; color: #6b7280; }
.footer-bottom {
  max-width: var(--max-width); margin: 14px auto 0;
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: space-between; align-items: center;
  font-size: 12px; color: #6b7280;
}

/* ========== Desktop fixed consult bar ========== */
:root {
  --desktop-consult-bar-h: 112px;
}
.desktop-consult-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9997;
  display: none;
  background: rgba(10,15,30,0.96);
  border-top: 1px solid rgba(184,146,74,0.38);
  box-shadow: 0 -12px 42px rgba(0,0,0,0.28);
  backdrop-filter: blur(10px);
}
.desktop-consult-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 18px;
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.desktop-consult-copy { flex: 0 0 auto; min-width: 220px; }
.desktop-consult-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(184,146,74,0.55);
  background: rgba(184,146,74,0.12);
  color: rgba(212,185,120,0.98);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.desktop-consult-title {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
}
.desktop-consult-sub {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.68);
  letter-spacing: -0.01em;
}
.desktop-consult-form { flex: 1 1 520px; min-width: 320px; }
.desktop-consult-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.desktop-consult-fields {
  display: flex;
  gap: 10px;
  align-items: center;
}
.desktop-consult-field { flex: 0 0 auto; }
.desktop-consult-field--message { flex: 1 1 auto; min-width: 220px; }
.desktop-consult-input {
  height: 42px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.92);
  outline: none;
  transition: var(--transition);
  font-size: 14px;
}
.desktop-consult-input::placeholder { color: rgba(255,255,255,0.5); }
.desktop-consult-input:focus {
  border-color: rgba(184,146,74,0.7);
  box-shadow: 0 0 0 3px rgba(184,146,74,0.14);
}
.desktop-consult-select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 30px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='%23d4b978'><path d='M2 4l4 4 4-4'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 10px 10px;
  cursor: pointer;
  min-width: 130px;
}
#desktopConsultRegion { min-width: 92px; max-width: 112px; }
.form-label-note { color: var(--text-muted); font-size: 12px; font-weight: 500; }
.desktop-consult-select option { background: var(--navy); color: #fff; }
.desktop-consult-textarea {
  height: 42px;
  padding: 10px 12px;
  resize: none;
  line-height: 1.4;
  overflow: hidden;
}
.desktop-consult-submit {
  height: 42px;
  padding: 0 16px;
  border-radius: 10px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 900;
  font-size: 14px;
  border: 1px solid rgba(184,146,74,0.9);
  transition: var(--transition);
  white-space: nowrap;
}
.desktop-consult-submit:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-1px); }
.desktop-consult-submit:disabled { opacity: 0.7; transform: none; cursor: not-allowed; }
.desktop-consult-meta {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.desktop-consult-privacy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.72);
  font-weight: 600;
}
.desktop-consult-privacy input { width: 14px; height: 14px; accent-color: var(--gold); }
.desktop-consult-privacy-link {
  font-size: 12px;
  color: rgba(184,146,74,0.95);
  font-weight: 800;
}
.desktop-consult-privacy-link:hover { color: var(--gold-light); }
.desktop-consult-status {
  font-size: 12px;
  color: rgba(255,255,255,0.72);
  font-weight: 600;
}
.desktop-consult-status[data-tone="success"] { color: rgba(212,185,120,0.98); }
.desktop-consult-status[data-tone="error"] { color: rgba(248,113,113,0.92); }
@media (min-width: 993px) {
  body { padding-bottom: calc(var(--desktop-consult-bar-h, 112px) + env(safe-area-inset-bottom, 0px)); }
  .desktop-consult-bar { display: block; }
  .desktop-consult-bar { animation: desktopConsultIn 320ms ease-out both; }
}
@keyframes desktopConsultIn {
  from { transform: translateY(14px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .desktop-consult-bar { animation: none !important; }
}
@media (max-width: 1200px) {
  .desktop-consult-sub { display: none; }
}
@media (max-width: 1120px) {
  .desktop-consult-copy { min-width: 0; flex: 0 0 auto; }
  .desktop-consult-title { font-size: 14px; }
  .desktop-consult-kicker { font-size: 10px; padding: 3px 8px; }
  .desktop-consult-select { min-width: 110px; }
}
@media (max-width: 1024px) {
  .desktop-consult-fields { flex-wrap: wrap; }
  .desktop-consult-field--message { min-width: 100%; flex: 1 1 100%; }
  .desktop-consult-submit { flex: 0 0 auto; }
}
/* Right floating CTA: shift up so it doesn't overlap the bottom consult bar */
@media (min-width: 993px) {
  .desktop-right-cta {
    top: auto;
    bottom: calc(var(--desktop-consult-bar-h, 112px) + 24px);
    transform: none;
  }
  .desktop-right-cta-stack { gap: 6px; }
  .desktop-right-cta-btn { min-width: 152px; padding: 9px 12px; }
  .desktop-right-cta-text .main { font-size: 12px; }
  .desktop-right-cta-text .sub { font-size: 10px; }
}

/* ========== Desktop right CTA ========== */
.desktop-right-cta {
  position: fixed; right: 18px; top: 50%;
  transform: translateY(-50%); z-index: 9998; display: none;
}
.desktop-right-cta-stack { display: flex; flex-direction: column; gap: 8px; align-items: stretch; }
.desktop-right-cta-btn {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  background: rgba(10,15,30,0.93);
  color: #f0ede8;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  transition: var(--transition);
  min-width: 164px;
  backdrop-filter: blur(10px);
}
.desktop-right-cta-btn.primary { background: var(--gold); color: var(--navy); border-color: transparent; }
.desktop-right-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(0,0,0,0.35); }
.desktop-right-cta-btn i { font-size: 17px; width: 20px; text-align: center; }
.desktop-right-cta-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.desktop-right-cta-text .main { font-weight: 800; font-size: 13px; line-height: 1.1; white-space: nowrap; }
.desktop-right-cta-text .sub { font-weight: 600; font-size: 11px; opacity: 0.75; white-space: nowrap; }
.desktop-right-cta-text .sub.mono { font-feature-settings: "tnum"; letter-spacing: 0.02em; }
.desktop-right-cta-details { position: relative; }
.desktop-right-cta-details > summary { list-style: none; }
.desktop-right-cta-details > summary::-webkit-details-marker { display: none; }
.desktop-right-cta-arrow { margin-left: auto; font-size: 12px; opacity: 0.7; transition: transform 0.2s ease; }
.desktop-right-cta-details[open] .desktop-right-cta-arrow { transform: rotate(180deg); }
.desktop-right-cta-dropdown {
  position: absolute; right: calc(100% + 10px); top: 50%; transform: translateY(-50%);
  width: 220px; background: var(--bg-card);
  border: 1px solid var(--border-light);
  box-shadow: 0 16px 48px rgba(10,15,30,0.2);
  border-radius: var(--radius-lg);
  overflow: hidden; padding: 6px;
}
.desktop-right-cta-dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 11px; font-weight: 700; font-size: 13px; color: var(--navy);
}
.desktop-right-cta-dropdown a:hover { background: var(--bg-warm); }
.desktop-right-cta-chip {
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--navy); color: var(--gold-light);
  font-size: 11px; font-weight: 800; flex-shrink: 0;
  border-radius: var(--radius-sm);
}

/* Desktop CTA variants */
.desktop-right-cta.desktop-right-cta--light { right: 20px; }
.desktop-right-cta--light .desktop-right-cta-btn {
  padding: 14px 16px;
  background: rgba(10,15,30,0.92);
  color: #e8e8e8;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  min-width: 180px;
  backdrop-filter: blur(12px);
}
.desktop-right-cta--light .desktop-right-cta-btn.primary { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.desktop-right-cta--light .desktop-right-cta-btn:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.desktop-right-cta--light .desktop-right-cta-btn i { font-size: 16px; opacity: 0.9; }
.desktop-right-cta--light .desktop-right-cta-text .main { font-weight: 700; line-height: 1.2; }
.desktop-right-cta--light .desktop-right-cta-text .sub { font-weight: 500; opacity: 0.6; }
.desktop-right-cta--light .desktop-right-cta-arrow { opacity: 0.6; }
.desktop-right-cta--light .desktop-right-cta-details[open] > summary.desktop-right-cta-btn { border-color: rgba(184,146,74,0.4); }
.desktop-right-cta--light .desktop-right-cta-dropdown {
  right: calc(100% + 12px);
  background: #fff;
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}
.desktop-right-cta--light .desktop-right-cta-dropdown a {
  padding: 12px 14px;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition);
}
.desktop-right-cta--light .desktop-right-cta-chip { color: var(--gold); font-weight: 700; }

.desktop-right-cta.desktop-right-cta--dark { right: 20px; }
.desktop-right-cta--dark .desktop-right-cta-btn {
  padding: 12px 16px;
  background: rgba(10,15,30,0.94);
  color: #f8fafc;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  min-width: 168px;
  border-radius: var(--radius-md);
  backdrop-filter: none;
}
.desktop-right-cta--dark .desktop-right-cta-btn.primary { background: var(--gold); color: #fff; border-color: transparent; }
.desktop-right-cta--dark .desktop-right-cta-btn:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.35); }
.desktop-right-cta--dark .desktop-right-cta-btn i { font-size: 16px; opacity: 1; }
.desktop-right-cta--dark .desktop-right-cta-dropdown {
  right: calc(100% + 12px);
  background: #fff;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  padding: 8px;
}
.desktop-right-cta--dark .desktop-right-cta-dropdown a { padding: 10px 12px; }
.desktop-right-cta--dark .desktop-right-cta-chip { color: var(--gold); font-weight: 900; }

/* ========== Fixed CTA bar (mobile) ========== */
body.has-fixed-cta { padding-bottom: calc(58px + env(safe-area-inset-bottom, 0px)); }
body.ksl-page-index.has-fixed-cta { padding-bottom: calc(60px + env(safe-area-inset-bottom, 0px)); }
body.has-fixed-cta.ksl-cta-light { padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px)); }
body.has-fixed-cta.ksl-cta-dark { padding-bottom: calc(60px + env(safe-area-inset-bottom, 0px)); }
.fixed-cta-bar {
  position: fixed; left: 0; bottom: 0; width: 100%;
  background: var(--navy);
  border-top: 1px solid rgba(184,146,74,0.3);
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
  box-shadow: 0 -8px 24px rgba(0,0,0,0.35);
  z-index: 9999;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.fixed-cta-bar.fixed-cta-bar--light { box-shadow: 0 -8px 32px rgba(0,0,0,0.3); }
.fixed-cta-bar.fixed-cta-bar--dark {
  border-top: 1px solid rgba(184,146,74,0.35);
  box-shadow: 0 -8px 24px rgba(0,0,0,0.3);
}
.fixed-cta-inner { width: 100%; max-width: 1280px; margin: 0 auto; display: flex; align-items: stretch; flex-wrap: nowrap; }
.fixed-cta-inner > * { flex: 1 1 0; min-width: 0; }
.cta-dropdown-wrap, .cta-faq-wrap { position: relative; display: flex; }
.cta-dropdown-btn, #ctaFaq { width: 100%; height: 100%; }

.fixed-cta-bar--compact .cta-btn {
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 3px;
  padding: 12px 0; min-height: 58px;
  border: none; border-right: 1px solid rgba(255,255,255,0.07);
  background: var(--navy); color: rgba(255,255,255,0.88);
  font-size: 11px; font-weight: 700;
  white-space: nowrap; cursor: pointer; touch-action: manipulation;
  transition: background 0.15s;
}
.fixed-cta-bar--compact .cta-btn.primary { background: var(--gold); color: var(--navy); }
.fixed-cta-bar--compact .cta-btn.primary:hover { background: var(--gold-light); }
.fixed-cta-bar--compact .cta-btn:hover { background: var(--navy-mid); }
body.ksl-page-index .fixed-cta-bar--compact .cta-btn { padding: 13px 0; font-size: 12px; }
.fixed-cta-bar--compact .cta-icon {
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800;
  background: rgba(255,255,255,0.1); color: var(--gold-light);
}
.fixed-cta-bar--compact .cta-btn.primary .cta-icon { background: rgba(10,15,30,0.18); color: var(--navy); }
.fixed-cta-bar--compact .cta-label-main { font-size: 11px; font-weight: 700; }
.fixed-cta-bar--compact .arrow { font-size: 9px; opacity: 0.7; }
.fixed-cta-bar--compact .cta-dropdown,
.fixed-cta-bar--compact #ctaFaqBox {
  display: none;
  position: absolute; bottom: calc(58px + env(safe-area-inset-bottom, 0px));
  left: 0; width: 100%;
  background: var(--bg-card); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: 0 -8px 24px rgba(10,15,30,0.18); z-index: 2;
}
.fixed-cta-bar--compact .cta-dropdown.open,
.fixed-cta-bar--compact #ctaFaqBox.open { display: block; }
.fixed-cta-bar--compact .cta-dropdown a,
.fixed-cta-bar--compact #ctaFaqBox a {
  padding: 11px 14px; display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; color: var(--navy);
  border-bottom: 1px solid var(--border-subtle);
}
.fixed-cta-bar--compact .cta-dropdown a:last-child,
.fixed-cta-bar--compact #ctaFaqBox a:last-child { border-bottom: none; }
.fixed-cta-bar--compact .sub-icon {
  width: 20px; height: 20px; display: flex; align-items: center; justify-content: center;
  background: var(--navy); color: var(--gold-light); font-size: 11px; font-weight: 800; flex-shrink: 0;
}

.fixed-cta-bar--light .cta-btn {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  border-radius: 0; padding: 14px 0; min-height: 56px;
  border: none; background: var(--navy); color: #e0e0e0;
  text-decoration: none; font-size: 12px; font-weight: 600;
  white-space: nowrap; cursor: pointer; touch-action: manipulation;
  transition: background 0.16s ease;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.fixed-cta-bar--light .cta-btn:last-child { border-right: none; }
.fixed-cta-bar--light .cta-btn.primary { background: var(--gold); color: var(--navy); font-weight: 700; }
.fixed-cta-bar--light .cta-icon {
  width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  background: rgba(255,255,255,0.1); color: var(--gold);
}
.fixed-cta-bar--light .cta-btn.primary .cta-icon { background: rgba(10,15,30,0.15); color: var(--navy); }
.fixed-cta-bar--light .cta-label-sub { font-size: 10px; opacity: 0.7; }
.fixed-cta-bar--light .cta-dropdown {
  display: none; position: absolute;
  bottom: calc(56px + env(safe-area-inset-bottom, 0px));
  left: 0; width: 100%;
  background: #fff; border: none;
  border-radius: var(--radius-lg);
  box-shadow: 0 -12px 40px rgba(0,0,0,0.2); z-index: 2;
}
.fixed-cta-bar--light .cta-dropdown.open { display: block; }
.fixed-cta-bar--light .cta-dropdown a {
  padding: 14px 16px; display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--text-primary); font-weight: 600;
  text-decoration: none; border-bottom: 1px solid var(--border-subtle);
}
.fixed-cta-bar--light .cta-dropdown a:last-child { border-bottom: none; }
.fixed-cta-bar--light .cta-dropdown a:hover { background: var(--bg-warm); }
.fixed-cta-bar--light .sub-icon {
  width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy); color: var(--gold); font-size: 10px; font-weight: 700;
}
.fixed-cta-bar--light #ctaFaqBox {
  display: none; position: absolute;
  bottom: calc(56px + env(safe-area-inset-bottom, 0px));
  left: 0; width: 100%;
  background: #fff; border: none;
  border-radius: var(--radius-lg);
  box-shadow: 0 -12px 40px rgba(0,0,0,0.2); z-index: 2;
}
.fixed-cta-bar--light #ctaFaqBox.open { display: block; }
.fixed-cta-bar--light #ctaFaqBox a {
  padding: 14px 16px; display: flex;
  font-size: 14px; color: var(--text-primary); font-weight: 600;
  text-decoration: none; border-bottom: 1px solid var(--border-subtle);
}
.fixed-cta-bar--light #ctaFaqBox a:last-child { border-bottom: none; }
.fixed-cta-bar--light #ctaFaqBox a:hover { background: var(--bg-warm); }

.fixed-cta-bar--dark .cta-btn {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; border-radius: 0; padding: 14px 0; min-height: 60px;
  border: none; border-right: 1px solid rgba(255,255,255,0.06);
  background: var(--navy); color: rgba(255,255,255,0.85);
  text-decoration: none; font-size: 13px; font-weight: 700;
  white-space: nowrap; cursor: pointer; touch-action: manipulation;
  transition: background 0.16s ease;
}
.fixed-cta-bar--dark .cta-btn:last-child { border-right: none; }
.fixed-cta-bar--dark .cta-btn.primary { background: var(--gold); color: #fff; border-right-color: rgba(255,255,255,0.1); }
.fixed-cta-bar--dark .cta-btn.primary:hover { background: var(--gold-light); }
.fixed-cta-bar--dark .cta-icon {
  width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; background: rgba(255,255,255,0.12); color: #fff;
}
.fixed-cta-bar--dark .cta-btn.primary .cta-icon { background: rgba(0,0,0,0.15); }
.fixed-cta-bar--dark .cta-label-sub { font-size: 11px; opacity: 0.7; }
.fixed-cta-bar--dark .cta-dropdown,
.fixed-cta-bar--dark #ctaFaqBox {
  display: none; position: absolute;
  bottom: calc(60px + env(safe-area-inset-bottom, 0px));
  left: 0; width: 100%;
  border-radius: var(--radius-lg);
  background: #fff; box-shadow: 0 -12px 32px rgba(0,0,0,0.2); z-index: 2;
}

.fixed-cta-inner > :first-child .cta-btn { border-top-left-radius: var(--radius-lg); }
.fixed-cta-inner > :last-child .cta-btn { border-top-right-radius: var(--radius-lg); }
.fixed-cta-bar--dark .cta-dropdown.open,
.fixed-cta-bar--dark #ctaFaqBox.open { display: block; }
.fixed-cta-bar--dark .cta-dropdown a {
  padding: 12px 16px; display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--navy); text-decoration: none;
  border-bottom: 1px solid var(--border-subtle); font-weight: 600;
}
.fixed-cta-bar--dark .cta-dropdown a:last-child { border-bottom: none; }
.fixed-cta-bar--dark #ctaFaqBox a {
  padding: 12px 16px; display: flex; font-size: 13px;
  color: var(--navy); text-decoration: none;
  border-bottom: 1px solid var(--border-subtle); font-weight: 600;
}
.fixed-cta-bar--dark #ctaFaqBox a:last-child { border-bottom: none; }
.fixed-cta-bar--dark .sub-icon {
  width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy); color: var(--gold); font-size: 11px; font-weight: 900;
}

/* ========== Responsive ========== */
@media (min-width: 993px) {
  .desktop-right-cta { display: block; }
  .fixed-cta-bar { display: none; }
  body.has-fixed-cta { padding-bottom: 0 !important; }
}

@media (max-width: 992px) {
  .gnb {
    position: fixed; top: var(--header-h); right: -100%;
    width: min(100%, 360px); height: calc(100vh - var(--header-h));
    background: var(--bg-card); flex-direction: column;
    padding: 20px 0 40px; overflow-y: auto;
    color: var(--navy);
    border-left: 1px solid var(--border-light);
    border-top-left-radius: var(--radius-lg);
    border-bottom-left-radius: var(--radius-lg);
    box-shadow: -4px 0 20px rgba(0,0,0,0.08);
    transition: right 0.3s ease; z-index: 1000; align-items: flex-start; gap: 0;
  }
  .gnb.open { right: 0; }
  .nav-list { flex-direction: column; width: 100%; height: auto; gap: 0; }
  .nav-item { width: 100%; height: auto; flex-direction: column; align-items: flex-start; border-bottom: 1px solid var(--border-subtle); padding: 4px 0; }
  .nav-link { width: calc(100% - 24px); height: auto; padding: 15px 18px; margin: 0 12px; font-size: 16px; border-radius: var(--radius-md); }

  /* Mobile drawer: enforce high-contrast menu text (fixes hero-header white-on-white) */
  .site-header .gnb .nav-link {
    color: var(--navy);
    font-weight: 800;
    letter-spacing: -0.01em;
  }
  .site-header .gnb .nav-link:hover,
  .site-header .gnb .nav-link.active {
    background: rgba(184,146,74,0.14);
    color: var(--navy);
  }
  .site-header .gnb .nav-item.active > .nav-link,
  .site-header .gnb .menu-item-has-children.active > a {
    background: rgba(184,146,74,0.14);
    color: var(--navy);
  }
  .sub-menu {
    position: static; width: calc(100% - 24px);
    margin: 0 12px 8px;
    box-shadow: none;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    background: var(--bg-warm);
    opacity: 1; visibility: visible; transform: none;
    padding: 6px; display: none;
  }
  .nav-item.active .sub-menu,
  .menu-item-has-children.active .sub-menu { display: block; }
  .sub-menu a { padding: 11px 20px; margin: 2px 6px; border-radius: var(--radius-sm); font-size: 14px; color: var(--navy); font-weight: 700; }
  .sub-menu a:hover { background: rgba(184,146,74,0.12); color: var(--navy); }
  .nav-cta { margin: 24px auto; width: calc(100% - 48px); text-align: center; height: 46px; justify-content: center; display: flex; }
  .menu-toggle { display: flex; align-items: center; }

  .site-header .gnb .nav-link:focus-visible,
  .site-header .gnb .sub-menu a:focus-visible,
  .site-header .gnb .nav-cta:focus-visible {
    outline: 3px solid rgba(184,146,74,0.55);
    outline-offset: -3px;
  }
}

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
}

@media (max-width: 768px) {
  html body { font-size: 16px; }
  body.has-fixed-cta.ksl-cta-light { padding-bottom: calc(52px + env(safe-area-inset-bottom, 0px)); }
  body.has-fixed-cta.ksl-cta-dark { padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px)); }

  .fixed-cta-bar--light .cta-btn { padding: 10px 0; min-height: 52px; font-size: 11px; }
  .fixed-cta-bar--light .cta-label-sub { display: none; }
  .fixed-cta-bar--light .cta-dropdown,
  .fixed-cta-bar--light #ctaFaqBox { bottom: calc(52px + env(safe-area-inset-bottom, 0px)); }

  .fixed-cta-bar--dark .cta-btn { padding: 12px 0; min-height: 56px; font-size: 12px; }
  .fixed-cta-bar--dark .cta-label-sub { display: none; }
  .fixed-cta-bar--dark .cta-dropdown,
  .fixed-cta-bar--dark #ctaFaqBox { bottom: calc(56px + env(safe-area-inset-bottom, 0px)); }
}

@media (max-width: 640px) {
  .site-footer { padding: 40px 16px 28px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-quick { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  body .container,
  body .inner,
  body .header-inner { padding-left: 16px; padding-right: 16px; }

  body .footer-desc,
  body .footer-contact,
  body .footer-links { font-size: 14px; }
  body .footer-quick a { font-size: 13px; }
  body .footer-notice,
  body .footer-bottom { font-size: 13px; }
}
