/* =============================================
   K-신탁 | Global Stylesheet
   Design: Elegant · Minimal · Premium
   ============================================= */

/* ---------- CSS Custom Properties ---------- */
:root {
  --navy:    #0A1628;
  --navy2:   #0F1F38;
  --navy3:   #162840;
  --gold:    #C9A96E;
  --gold2:   #E2C28A;
  --gold3:   #A8884A;
  --cream:   #F0EBE0;
  --cream2:  #E6E0D4;
  --white:   #FFFFFF;
  --dark:    #0A0A0A;
  --mid:     #4A4A4A;
  --light:   #888888;
  --border:  rgba(0,0,0,0.10);
  --border-light: rgba(255,255,255,0.08);
  --shadow:  0 4px 32px rgba(0,0,0,0.14);
  --shadow2: 0 16px 64px rgba(0,0,0,0.22);
  --radius:  10px;
  --radius2: 18px;
  --serif:   'Noto Serif KR', 'Cormorant Garamond', Georgia, serif;
  --sans:    'Noto Sans KR', sans-serif;
  --en:      'Cormorant Garamond', Georgia, serif;
  --trans:   0.3s ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ---------- Layout ---------- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 40px;
}
.section {
  padding: 100px 0;
}
.section-label {
  font-family: var(--en);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.30em;
  color: var(--gold);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 20px;
}
.section-desc {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.9;
  margin-bottom: 60px;
}

/* =============================================
   HEADER / NAV
   ============================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(250,250,248,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(10,22,40,0.08);
  height: 64px;
  transition: box-shadow var(--trans);
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.logo-k { color: var(--navy); }
.logo-dash { color: var(--gold); margin: 0 2px; }
.logo-trust { color: var(--navy); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-menu li a {
  font-size: 0.88rem;
  font-weight: 400;
  color: #666;
  padding: 6px 14px;
  border-radius: 6px;
  transition: all var(--trans);
  letter-spacing: 0.02em;
}
.nav-menu li a:hover { color: var(--navy); background: rgba(10,22,40,0.05); }
.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 8px 20px !important;
  border-radius: 6px !important;
  font-weight: 500 !important;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--navy) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--trans);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  background: #0d0d0b;
  display: flex;
  align-items: stretch;
  padding-top: 64px;
  overflow: hidden;
}

/* 좌우 2분할 */
.hero-inner {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* ── 왼쪽: 비주얼 패널 ── */
.hero-visual {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  background: #0d0d0b;
  min-height: calc(100vh - 64px);
}

/* 철학 이미지 — 상단 절반 채움 */
.hero-phil {
  position: relative;
  overflow: hidden;
}
.hero-phil-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  display: block;
  opacity: 0;
  transition: opacity 1s ease, transform 8s ease;
  filter: brightness(1.14) contrast(1.28) saturate(1.30);
  transform: scale(1.04);
}
.hero-phil-img.loaded {
  opacity: 1;
  transform: scale(1.0);
}
/* 아래쪽 자연스러운 페이드 */
.hero-phil::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 48px;
  background: linear-gradient(to bottom, transparent, #0d0d0b);
  pointer-events: none;
}

/* 책 패널 — 왼쪽 하단 */
.hero-book-panel {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 24px 40px 48px;
  background: #0d0d0b;
}
.hero-book-panel .book-wrap {
  position: relative;
  width: 160px;
  flex-shrink: 0;
}
.hero-book-panel .book-img {
  width: 100%;
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: block;
  box-shadow: 6px 12px 40px rgba(0,0,0,0.5);
}
.hero-book-panel .book-wrap::before {
  content: '';
  position: absolute;
  top: 1px; left: -6px; bottom: 1px;
  width: 10px;
  background: linear-gradient(to right, #6a6050, #a09080);
  border-radius: 1px 0 0 1px;
  z-index: -1;
}
.hero-book-panel .book-shadow {
  position: absolute;
  bottom: -14px;
  left: 4%; right: 0;
  height: 20px;
  background: rgba(0,0,0,0.3);
  filter: blur(14px);
  border-radius: 50%;
  z-index: -1;
}

/* 오른쪽으로 페이드아웃 */
.hero-visual::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 100px;
  background: linear-gradient(to right, transparent, #F5F2EB);
  pointer-events: none;
  z-index: 3;
}

/* ── 오른쪽: 텍스트 패널 ── */
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px 80px 64px;
  background: linear-gradient(160deg, #14222f 0%, #0e1b27 60%, #0c1820 100%);
  position: relative;
  border-left: 1px solid rgba(201,169,110,0.15);
}
/* 상단 미세 골드 강조 */
.hero-text::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, rgba(201,169,110,0.4), rgba(201,169,110,0.08));
  pointer-events: none;
}

.hero-eyebrow {
  font-family: var(--en);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  color: rgba(201,169,110,0.85);
  text-transform: uppercase;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: rgba(201,169,110,0.60);
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3.6rem, 5.2vw, 5.4rem);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero-title-dash {
  color: var(--gold);
  font-weight: 300;
  margin: 0 3px;
}

.hero-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 28px;
  opacity: 0.65;
}

.hero-sub {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  line-height: 2.0;
  margin-bottom: 36px;
  font-weight: 300;
  letter-spacing: 0.01em;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 40px;
}
.hero-tags span {
  font-size: 0.74rem;
  font-weight: 400;
  color: rgba(255,255,255,0.68);
  border: 1px solid rgba(255,255,255,0.22);
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  background: rgba(255,255,255,0.05);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Book fallback (어두운 배경 위) */
.book-fallback {
  display: none;
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #1a1a18 0%, #2a2820 100%);
  border-radius: 2px;
  box-shadow: 6px 12px 40px rgba(0,0,0,0.5);
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px 18px;
  border-top: 3px solid var(--gold);
}
.book-fallback-eyebrow {
  font-family: var(--serif);
  font-size: 0.65rem;
  color: rgba(201,169,110,0.6);
  letter-spacing: 0.18em;
  margin-bottom: 14px;
}
.book-fallback-title {
  font-family: var(--serif);
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin-bottom: 16px;
}
.book-fallback-title strong {
  font-size: 1.3rem;
  font-weight: 700;
  display: block;
  margin-top: 6px;
  color: var(--gold);
}
.book-fallback-author {
  font-family: var(--en);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.4);
}

/* Hero btn overrides — 어두운 배경 위 */
.hero .btn-primary {
  background: transparent;
  color: #FFFFFF;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: 1.5px solid rgba(255,255,255,0.55);
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
.hero .btn-primary:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.85);
  box-shadow: 0 0 0 2px rgba(255,255,255,0.12);
  transform: translateY(-1px);
}
.hero .btn-ghost {
  color: #FFFFFF;
  border: 1.5px solid rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.10);
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
.hero .btn-ghost:hover {
  color: #FFFFFF;
  border-color: var(--gold);
  background: rgba(201,169,110,0.18);
  box-shadow: 0 0 0 2px rgba(201,169,110,0.20);
}

/* 배경 — 불필요한 크림 그라데이션 제거됨 */
/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 13px 28px;
  border-radius: 8px;
  transition: all var(--trans);
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
}
.btn-primary:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,169,110,0.35);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.80);
  font-size: 0.9rem;
  font-weight: 400;
  padding: 12px 28px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.22);
  transition: all var(--trans);
  cursor: pointer;
  letter-spacing: 0.03em;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,169,110,0.06);
}
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 8px;
  transition: all var(--trans);
  cursor: pointer;
  border: none;
  letter-spacing: 0.03em;
}
.btn-gold:hover {
  background: var(--gold2);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,169,110,0.4);
}
.btn-full { width: 100%; justify-content: center; }
.btn-sm { font-size: 0.82rem; padding: 8px 16px; }

/* =============================================
   WHAT IS TRUST
   ============================================= */
.what-trust { background: #F6F3EC; }
.what-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.what-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: all var(--trans);
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.what-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  transform: translateY(-4px);
}
.what-icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 18px;
}
.what-card h3 {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.what-card p {
  font-size: 0.87rem;
  color: var(--mid);
  line-height: 1.75;
}

/* Trust Flow */
.trust-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--navy);
  border-radius: var(--radius2);
  padding: 40px;
  flex-wrap: wrap;
  gap: 12px;
}
.flow-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 24px 36px;
  border-radius: var(--radius);
  min-width: 140px;
}
.flow-grantor { background: rgba(201,169,110,0.15); border: 1px solid rgba(201,169,110,0.3); }
.flow-trustee { background: rgba(201,169,110,0.25); border: 1px solid rgba(201,169,110,0.5); }
.flow-beneficiary { background: rgba(201,169,110,0.15); border: 1px solid rgba(201,169,110,0.3); }
.flow-box i { color: var(--gold); font-size: 1.6rem; }
.flow-role {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
}
.flow-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
}
.flow-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--gold);
  font-size: 0.75rem;
  padding: 0 8px;
}
.flow-arrow i { font-size: 1rem; }

/* =============================================
   TRUST TYPES
   ============================================= */
.trust-types { background: #F6F3EC; }

.featured-label {
  font-family: var(--en);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 28px;
}

/* Featured 5 */
.trust-featured {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-bottom: 20px;
}
.trust-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius2);
  padding: 28px 20px 24px;
  cursor: pointer;
  transition: all var(--trans);
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  text-align: center;
  overflow: hidden;
}
.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow2);
  border-color: var(--gold);
}
.trust-badge-star {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  background: rgba(201,169,110,0.1);
  padding: 3px 7px;
  border-radius: 4px;
  border: 1px solid rgba(201,169,110,0.3);
}
.trust-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
}
.trust-card h3 {
  font-family: var(--serif);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.3;
}
.trust-card-sub {
  font-size: 0.72rem;
  color: var(--gold);
  font-family: var(--en);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  display: block;
}
.trust-card-desc {
  font-size: 0.82rem;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 14px;
}
.trust-card-link {
  font-size: 0.8rem;
  color: var(--navy);
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: color var(--trans);
}
.trust-card:hover .trust-card-link { color: var(--gold); }

/* Other Trust Grid */
.trust-others {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.other-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  cursor: pointer;
  transition: all var(--trans);
  border: 1px solid var(--border);
}
.other-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.other-icon {
  width: 42px;
  height: 42px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}
.other-text { flex: 1; }
.other-text h4 {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 5px;
}
.other-text p {
  font-size: 0.82rem;
  color: var(--mid);
  line-height: 1.65;
}
.other-link {
  color: var(--light);
  font-size: 1rem;
  align-self: center;
  transition: color var(--trans);
  flex-shrink: 0;
}
.other-card:hover .other-link { color: var(--gold); }

/* =============================================
   CEO TRUST PLAN
   ============================================= */
.ceo-trust {
  background: var(--navy);
  background-image:
    radial-gradient(ellipse at 0% 0%, rgba(201,169,110,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 100% 100%, rgba(201,169,110,0.05) 0%, transparent 50%);
}
.ceo-trust .section-label { color: var(--gold); opacity: 0.8; }
.ceo-trust .section-title { color: var(--white); }
.ceo-trust .section-desc { color: rgba(255,255,255,0.55); }

.ceo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius2);
  overflow: hidden;
  margin-bottom: 50px;
  border: 1px solid rgba(201,169,110,0.15);
}
.ceo-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 30px;
  background: rgba(255,255,255,0.03);
  transition: background var(--trans);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.ceo-item:hover { background: rgba(201,169,110,0.07); }
.ceo-num {
  font-family: var(--en);
  font-size: 1.6rem;
  font-weight: 300;
  color: rgba(201,169,110,0.5);
  line-height: 1;
  min-width: 36px;
  padding-top: 3px;
}
.ceo-content h4 {
  font-family: var(--serif);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.ceo-content p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}
.ceo-cta { text-align: center; }

/* =============================================
   EXPERT
   ============================================= */
.expert { background: var(--navy); }
.expert-card {
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius2);
  overflow: hidden;
  display: grid;
  grid-template-columns: 260px 1fr 240px;
  box-shadow: 0 2px 48px rgba(0,0,0,0.4);
  border: 1px solid rgba(201,169,110,0.18);
}
.expert-left {
  background: rgba(201,169,110,0.07);
  border-right: 1px solid rgba(201,169,110,0.15);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}
.expert-emblem {
  width: 140px;
  flex-shrink: 0;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 4px 8px 32px rgba(0,0,0,0.22), 0 2px 6px rgba(0,0,0,0.10);
}
/* 책 왼쪽 두께 표현 */
.expert-emblem::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 8px;
  background: linear-gradient(to right, #8a7a60, #b8a880);
  z-index: 1;
}
.expert-book-img {
  width: 100%;
  display: block;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.expert-emblem-fallback {
  width: 100%;
  aspect-ratio: 3/4;
  background: rgba(201,169,110,0.15);
  border: 2px solid rgba(201,169,110,0.35);
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex-direction: row;
}
.expert-emblem-fallback span {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.expert-contact-quick {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  transition: background var(--trans);
  text-align: left;
}
.contact-item:hover { background: rgba(201,169,110,0.12); }
.contact-item i { color: var(--gold); font-size: 0.9rem; flex-shrink: 0; width: 16px; }
.contact-item span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.4;
}
.contact-item span em {
  font-style: normal;
  color: rgba(255,255,255,0.45);
  font-size: 0.72rem;
}

.expert-right {
  padding: 50px 48px;
  background: rgba(255,255,255,0.025);
}

/* 프로필 사진 패널 */
.expert-photo-panel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #1a2535 0%, #0e1820 100%);
  border-left: 1px solid rgba(201,169,110,0.12);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.expert-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  opacity: 0;
  transition: opacity 0.8s ease;
  filter: contrast(1.05) brightness(1.02);
}
.expert-tag {
  font-family: var(--en);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
  opacity: 0.85;
}
.expert-name {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.expert-title {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.50);
  margin-bottom: 28px;
}
.expert-divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 28px;
}
.expert-career {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.career-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.78);
}
.career-item i { color: var(--gold); width: 16px; font-size: 0.9rem; }
.expert-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.98rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.85;
  border-left: 2px solid rgba(201,169,110,0.5);
  padding-left: 20px;
  margin: 0;
}

/* =============================================
   CONSULT
   ============================================= */
.consult { background: #F6F3EC; }
.consult-wrap {
  max-width: 680px;
  margin: 0 auto;
}
.consult-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.req { color: var(--gold); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--cream);
  transition: border-color var(--trans), box-shadow var(--trans);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(13,27,42,0.06);
  background: var(--white);
}
.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230D1B2A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.form-group select option,
.form-group select optgroup {
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--white);
}

/* Topic Select */
.topic-select {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.topic-btn {
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--mid);
  background: var(--cream);
  border: 1.5px solid var(--border);
  padding: 7px 15px;
  border-radius: 20px;
  cursor: pointer;
  transition: all var(--trans);
}
.topic-btn:hover { border-color: var(--navy); color: var(--navy); }
.topic-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* Checkbox */
.check-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.87rem;
  color: var(--mid);
}
.check-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--navy);
  cursor: pointer;
  flex-shrink: 0;
}

/* 소개자 전문인 체크박스 */
.referral-check-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 9px;
  cursor: pointer;
  user-select: none;
}
.referral-check-label input[type="checkbox"] {
  display: none;
}
.referral-check-box {
  width: 17px;
  height: 17px;
  border: 1.5px solid rgba(0,0,0,0.22);
  border-radius: 4px;
  background: var(--white);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, border-color 0.18s;
  position: relative;
}
.referral-check-box::after {
  content: '';
  display: block;
  width: 5px;
  height: 9px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(45deg) translateY(-1px);
  opacity: 0;
  transition: opacity 0.15s;
}
.referral-check-label input[type="checkbox"]:checked ~ .referral-check-box {
  background: var(--navy);
  border-color: var(--navy);
}
.referral-check-label input[type="checkbox"]:checked ~ .referral-check-box::after {
  opacity: 1;
}
.referral-check-text {
  font-size: 0.82rem;
  color: var(--mid);
  line-height: 1.4;
}
.referral-check-label:hover .referral-check-box {
  border-color: var(--navy);
}

.form-submit {
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* 또는 구분선 */
.consult-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
  color: #aaa;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}
.consult-divider::before,
.consult-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(0,0,0,0.10);
}

/* 카카오톡 상담 버튼 */
.btn-kakao-consult {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  background: #FEE500;
  color: #3A1D1D;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 12px rgba(254,229,0,0.30);
}
.btn-kakao-consult:hover {
  background: #fdd800;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(254,229,0,0.45);
}
.btn-kakao-consult:active {
  transform: translateY(0);
}
.form-notice {
  font-size: 0.8rem;
  color: var(--light);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}
.form-notice strong { color: var(--mid); }

.consult-success {
  text-align: center;
  padding: 60px 20px;
}
.success-icon {
  font-size: 3.5rem;
  color: var(--gold);
  margin-bottom: 20px;
}
.consult-success h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.consult-success p {
  font-size: 0.95rem;
  color: var(--mid);
  margin-bottom: 28px;
  line-height: 1.8;
}

/* =============================================
   SHARE / QR
   ============================================= */
.share-section { background: var(--white); }
.share-wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: center;
  max-width: 700px;
}
.qr-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
#qrcode canvas,
#qrcode img {
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.qr-label {
  font-size: 0.8rem;
  color: var(--light);
  letter-spacing: 0.1em;
}
.share-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 24px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--trans);
  border: none;
  text-decoration: none;
}
.share-copy {
  background: var(--navy);
  color: var(--white);
}
.share-copy:hover { background: #1a3050; }
.share-kakao { background: #FEE500; color: #3A1D1D; }
.share-kakao:hover { background: #fdd800; }
.share-sms { background: #34C759; color: var(--white); }
.share-sms:hover { background: #2db54e; }
.share-yt { background: #FF0000; color: var(--white); }
.share-yt:hover { background: #cc0000; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--navy);
  padding: 56px 0 40px;
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.footer-logo .logo-k,
.footer-logo .logo-trust { color: var(--white); }
.footer-logo .logo-dash { color: var(--gold); }
.footer-info { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.9; }
.footer-info a { color: rgba(255,255,255,0.7); transition: color var(--trans); }
.footer-info a:hover { color: var(--gold); }
.footer-sponsor {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.3); }

/* =============================================
   CEO ITEM — 클릭 가능 스타일
   ============================================= */
.ceo-item {
  cursor: pointer;
  position: relative;
}
.ceo-item:hover {
  background: rgba(201,169,110,0.10);
  border-color: rgba(201,169,110,0.35);
  transform: translateY(-2px);
}
.ceo-more {
  display: inline-block;
  font-family: var(--en);
  font-size: 0.70rem;
  letter-spacing: 0.12em;
  color: rgba(201,169,110,0.65);
  margin-top: 10px;
  transition: color var(--trans);
}
.ceo-item:hover .ceo-more {
  color: var(--gold);
}

/* =============================================
   CEO MODAL — 전용 스타일
   ============================================= */
.ceo-modal {
  max-width: 600px;
}
.ceo-modal-header {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 36px 36px 28px;
  background: linear-gradient(135deg, #0d1b2a 0%, #1a2e42 100%);
  border-bottom: 2px solid rgba(201,169,110,0.25);
}
.ceo-modal-num {
  font-family: var(--en);
  font-size: 3.2rem;
  font-weight: 700;
  color: rgba(201,169,110,0.25);
  line-height: 1;
  flex-shrink: 0;
  letter-spacing: -0.04em;
}
.ceo-modal-title-wrap {
  flex: 1;
}
.ceo-modal-category {
  display: block;
  font-family: var(--en);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: rgba(201,169,110,0.65);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.ceo-modal-title-wrap h2 {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.2;
}
.ceo-modal-title-wrap p {
  font-family: var(--en);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
}

/* 닫기 버튼 — 다크 헤더 위 */
.ceo-modal .modal-close {
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.7);
}
.ceo-modal .modal-close:hover {
  background: rgba(255,255,255,0.22);
  color: #fff;
}

/* 이런 분께 필요합니다 박스 */
.ceo-modal-why {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  border-radius: 0 10px 10px 0;
  padding: 18px 20px;
  margin: 20px 0 22px;
}
.ceo-modal-why h4 {
  font-family: var(--serif);
  font-size: 0.90rem;
  color: var(--navy);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ceo-modal-why h4 i {
  color: var(--gold);
  font-size: 0.85rem;
}
.ceo-modal-why ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ceo-modal-why ul li {
  font-size: 0.85rem;
  color: var(--mid);
  padding-left: 14px;
  position: relative;
  line-height: 1.6;
}
.ceo-modal-why ul li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* 포인트 리스트 */
.ceo-modal-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.ceo-mp {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}
.ceo-mp > i {
  color: var(--gold);
  font-size: 0.78rem;
  flex-shrink: 0;
  margin-top: 4px;
}
.ceo-mp > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.ceo-mp strong {
  font-size: 0.90rem;
  color: var(--navy);
  font-weight: 600;
}
.ceo-mp span {
  font-size: 0.84rem;
  color: var(--mid);
  line-height: 1.7;
}

/* 세금 최적화 주의 안내 박스 */
.ceo-modal-notice {
  display: flex;
  gap: 12px;
  background: rgba(201,169,110,0.08);
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: 10px;
  padding: 16px 18px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.ceo-modal-notice > i {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.ceo-modal-notice p {
  font-size: 0.84rem;
  color: var(--mid);
  line-height: 1.7;
  margin: 0;
}

/* =============================================
   MODALS
   ============================================= */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 990;
  backdrop-filter: blur(4px);
}
.modal-overlay.active { display: block; }

.modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  z-index: 1000;
  background: var(--white);
  border-radius: var(--radius2);
  width: 92%;
  max-width: 540px;
  max-height: 88vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
  opacity: 0;
  transition: all 0.25s ease;
}
.modal.active {
  display: block;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  z-index: 1;
  transition: background var(--trans);
}
.modal-close:hover { background: rgba(255,255,255,0.3); }
.modal-header {
  padding: 40px 36px 32px;
  text-align: center;
  color: var(--white);
}
.modal-icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
  display: block;
}
.modal-header h2 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 6px;
}
.modal-header p { font-size: 0.85rem; opacity: 0.75; }
.modal-body {
  padding: 32px 36px 36px;
}
.modal-body > p {
  font-size: 0.93rem;
  color: var(--mid);
  line-height: 1.85;
  margin-bottom: 22px;
}
.modal-points {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 28px;
}
.modal-point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--dark);
}
.modal-point i { color: var(--gold); font-size: 0.8rem; flex-shrink: 0; }
.modal-highlight {
  background: var(--cream);
  border-radius: 10px;
  padding: 18px 20px;
  margin-bottom: 16px;
}
.modal-highlight h4 {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 7px;
}
.modal-highlight p { font-size: 0.85rem; color: var(--mid); line-height: 1.75; }
.modal-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
.compare-col {
  background: var(--cream);
  border-radius: 10px;
  padding: 18px;
}
.compare-win {
  background: rgba(13,27,42,0.05);
  border: 1.5px solid var(--gold);
}
.compare-col h5 {
  font-family: var(--serif);
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 600;
}
.compare-col ul { display: flex; flex-direction: column; gap: 7px; }
.compare-col li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--dark);
  list-style: none;
}
.compare-col li .fa-xmark { color: #cc4444; }
.compare-col li .fa-check { color: var(--gold); }

/* =============================================
   TOAST
   ============================================= */
.toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--navy);
  color: var(--white);
  font-size: 0.88rem;
  padding: 11px 24px;
  border-radius: 30px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
  white-space: nowrap;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* =============================================
   FLOATING BUTTONS
   ============================================= */
.float-btns {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 800;
}
.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: all var(--trans);
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.float-btn:hover { transform: scale(1.1); }
.float-sms { background: #34C759; color: var(--white); }
.float-consult { background: var(--navy); color: var(--gold); }

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
[data-aos="fade-right"] {
  transform: translateX(-24px);
}
[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
}
[data-aos="fade-left"] {
  transform: translateX(24px);
}
[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .trust-featured { grid-template-columns: repeat(3, 1fr); }
  .what-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr 1fr; }
  .hero-text { padding: 60px 48px; }
}

@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .section { padding: 70px 0; }
  /* 히어로: 세로로 전환, 비주얼 위 / 텍스트 아래 */
  .hero-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
  .hero-visual {
    min-height: 56vw;
    grid-template-rows: 1fr;
  }
  .hero-book-panel { display: none; }
  .hero-visual::after { display: none; }
  .hero-text {
    padding: 56px 32px 64px;
    align-items: center;
    text-align: center;
    background: linear-gradient(180deg, #12202e 0%, #0e1b27 100%);
    border-left: none;
    border-top: 1px solid rgba(201,169,110,0.15);
  }
  .hero-text::after {
    top: 0; height: 2px;
    background: linear-gradient(to right, rgba(201,169,110,0.15), rgba(201,169,110,0.4), rgba(201,169,110,0.15));
  }
  .hero-eyebrow { justify-content: center; }
  .hero-tags { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-divider { margin: 0 auto 28px; }

  .trust-featured { grid-template-columns: repeat(2, 1fr); }
  .trust-others { grid-template-columns: 1fr 1fr; }

  .expert-card { grid-template-columns: 1fr; }
  .expert-left { padding: 36px 24px; }
  .expert-right { padding: 36px 28px; }
  .expert-name { font-size: 2.2rem; }
  .expert-photo-panel { min-height: 320px; border-left: none; border-top: 1px solid rgba(201,169,110,0.12); }

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

  .share-wrap { grid-template-columns: 1fr; justify-items: center; }
  .share-btns { width: 100%; max-width: 320px; }

  .nav-menu {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(10,18,28,0.98);
    flex-direction: column;
    padding: 20px 24px;
    gap: 4px;
    transform: translateY(-100%);
    opacity: 0;
    transition: all var(--trans);
    pointer-events: none;
    border-bottom: 1px solid rgba(201,169,110,0.10);
    backdrop-filter: blur(20px);
  }
  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-menu li a {
    display: block;
    padding: 10px 16px;
    font-size: 0.95rem;
  }
  .hamburger { display: flex; }
}

@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .container { padding: 0 20px; }
  .hero-container { padding: 0; gap: 0; }
  .hero-title { font-size: 3.2rem; }
  .hero-text { padding: 40px 20px 48px; }

  .trust-featured { grid-template-columns: 1fr; }
  .trust-others { grid-template-columns: 1fr; }
  .what-grid { grid-template-columns: 1fr; }

  .trust-flow {
    flex-direction: column;
    gap: 8px;
    padding: 28px 20px;
  }
  .flow-arrow { transform: rotate(90deg); }
  .flow-box { padding: 16px 20px; width: 100%; }

  .form-row { grid-template-columns: 1fr; }
  .modal-body { padding: 24px 20px 28px; }
  .modal-header { padding: 28px 24px 20px; }
  .modal-compare { grid-template-columns: 1fr; }

  .expert-name { font-size: 1.9rem; }
  .ceo-item { padding: 20px 20px; }
  .ceo-num { font-size: 1.3rem; }

  .nav-inner { padding: 0 20px; }
  .footer-inner { padding: 0 20px; }

  .share-wrap { gap: 32px; }
}

/* =============================================
   SECTION-SPECIFIC COLOR OVERRIDES
   ============================================= */

/* 신탁이란 / 상담신청 / 공유: light bg → dark text */
.what-trust .section-title,
.consult .section-title,
.share-section .section-title { color: var(--navy); }

.what-trust .section-desc,
.consult .section-desc,
.share-section .section-desc { color: var(--mid); }

/* 신탁종류: light bg */
.trust-types .section-title { color: var(--navy); }
.trust-types .section-desc { color: var(--mid); }
.trust-types .featured-label { color: var(--gold3); }

/* 전문가 소개: dark bg → light text */
.expert .section-label { color: var(--gold); opacity: 0.7; }

/* 상담 신청 폼 — btn-ghost 오버라이드 (밝은 배경 위) */
.consult .btn-ghost,
.consult-success .btn-ghost {
  color: var(--navy);
  border-color: rgba(13,27,42,0.28);
}
.consult .btn-ghost:hover,
.consult-success .btn-ghost:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* Hero btn overrides — 밝은 배경 */
.hero .btn-primary {
  background: var(--navy);
  color: var(--white);
  font-weight: 500;
}
.hero .btn-primary:hover {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 8px 28px rgba(201,169,110,0.28);
}
/* hero ghost btn — dark panel override removed */

/* Book image shadow enhancement */
.book-img {
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.5));
}

/* Gold divider line decoration */
.section-label::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  margin-left: 10px;
  vertical-align: middle;
  opacity: 0.6;
}

/* Form inputs in light section */
.consult .form-group input,
.consult .form-group select,
.consult .form-group textarea {
  background: var(--white);
  border-color: rgba(0,0,0,0.12);
}
.consult .form-group input:focus,
.consult .form-group select:focus,
.consult .form-group textarea:focus {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(10,22,40,0.06);
}

/* Other card on light bg */
.trust-types .other-card {
  background: #F6F3EC;
}
.trust-types .other-card:hover {
  background: var(--white);
}

