/* ============================================================
   오원트금융연구소 홈페이지 — 디자인 시스템
   겉: 일본 Moneiro(크림·부드러움) / 속: 미국 SUPERAGENT(다크·CTA)
   ============================================================ */

/* ---------- 1. 변수 ---------- */
:root {
  /* 컬러 */
  --navy: #0F1A35;
  --navy-light: #1A2B5C;
  --gold: #D4A574;
  --gold-deep: #B8884C;
  --cream: #F5F3F2;
  --cream-dark: #EDE7DE;
  --white: #FFFFFF;
  --text-dark: #0F1A35;
  --text-sub: #5A6478;
  --text-light: #8B92A5;
  --text-white-sub: #B8C2D6;
  --footer-bg: #0A1226;

  /* 간격 */
  --container: 1160px;
  --container-narrow: 780px;
  --radius: 10px;
  --radius-lg: 16px;
  --section-pad: 100px;

  /* 그림자 */
  --shadow-sm: 0 4px 14px rgba(15, 26, 53, 0.06);
  --shadow-md: 0 12px 32px rgba(15, 26, 53, 0.10);
  --shadow-lg: 0 24px 60px rgba(15, 26, 53, 0.16);

  /* 타이포 */
  --font: 'Pretendard Variable', 'Pretendard', 'Apple SD Gothic Neo', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ---------- 2. 리셋 ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  font-size: 15px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ---------- 3. 레이아웃 유틸 ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: var(--container-narrow); }
.text-gold { color: var(--gold); }
.only-desktop { display: inline; }

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

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 10px;
}

.section__head {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 48px;
}
.section__head--center { justify-content: center; text-align: center; }
.step-no {
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  color: var(--cream-dark);
  letter-spacing: -2px;
  flex-shrink: 0;
}
.section--cream .step-no { color: #DDD3C4; }
.section__title {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -1.2px;
  line-height: 1.3;
  color: var(--navy);
}

/* ---------- 4. 버튼 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.3px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn i { font-size: 18px; }
.btn--lg { padding: 16px 30px; font-size: 16px; }
.btn--navy { background: var(--navy); color: var(--white); }
.btn--navy:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--gold { background: var(--gold); color: var(--navy); box-shadow: 0 8px 22px rgba(212,165,116,.35); }
.btn--gold:hover { background: var(--gold-deep); color: var(--white); transform: translateY(-2px); }
.btn--line-light { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.4); }
.btn--line-light:hover { background: rgba(255,255,255,.1); border-color: var(--white); transform: translateY(-2px); }

/* ---------- 5. 뱃지 ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.badge--gold { background: rgba(212,165,116,.18); color: var(--gold); border: 1px solid rgba(212,165,116,.4); }
.badge--free { position: absolute; top: 22px; right: 22px; background: var(--gold); color: var(--navy); }
.badge--limit { position: absolute; top: 22px; right: 22px; background: var(--gold); color: var(--navy); }

/* ============================================================
   섹션 1. 네비게이션
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(15,26,53,.06);
  transition: padding .25s ease, box-shadow .25s ease;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; transition: height .25s ease; }
.nav.is-shrunk { box-shadow: var(--shadow-sm); }
.nav.is-shrunk .nav__inner { height: 60px; }

.brand { display: flex; align-items: center; gap: 10px; }
.brand__mark {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  background: var(--navy);
  color: var(--gold);
  border-radius: 8px;
  font-weight: 700;
  font-size: 18px;
}
.brand__name { font-size: 17px; font-weight: 700; letter-spacing: -0.6px; color: var(--navy); }

.nav__menu { display: flex; gap: 30px; }
.nav__menu a {
  font-size: 15px; font-weight: 500; color: var(--text-sub);
  position: relative; transition: color .2s;
}
.nav__menu a::after {
  content: ''; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; background: var(--gold); transition: width .2s;
}
.nav__menu a:hover { color: var(--navy); }
.nav__menu a:hover::after { width: 100%; }

.nav__right { display: flex; align-items: center; gap: 12px; }
.nav__cta { padding: 10px 20px; font-size: 14px; }
.nav__toggle { display: none; font-size: 26px; color: var(--navy); padding: 4px; }

/* ============================================================
   섹션 2. HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-light) 55%, #24397a 100%);
}
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.32;
  filter: blur(1px);
  z-index: 0;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,26,53,.82) 0%, rgba(15,26,53,.72) 100%);
  z-index: 1;
}
/* 동영상 없어도 예쁜 사선 패턴 */
.hero__pattern {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    repeating-linear-gradient(135deg, rgba(212,165,116,.05) 0px, rgba(212,165,116,.05) 1px, transparent 1px, transparent 22px),
    radial-gradient(circle at 78% 22%, rgba(212,165,116,.14) 0%, transparent 42%);
  pointer-events: none;
}
.hero__content { position: relative; z-index: 2; max-width: 760px; }
.hero__title {
  margin: 22px 0 20px;
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -2px;
  line-height: 1.25;
  color: var(--white);
}
.hero__sub { font-size: 17px; color: var(--text-white-sub); line-height: 1.75; margin-bottom: 34px; }
.hero__sub strong { color: var(--white); font-weight: 600; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__proof {
  margin-top: 30px;
  font-size: 14px;
  color: var(--text-white-sub);
  display: flex; align-items: center; flex-wrap: wrap; gap: 4px;
}
.hero__proof i { color: var(--gold); }

/* Hero 60/40 분할 + 인물 사진 */
.hero__content { display: flex; align-items: center; gap: 56px; max-width: var(--container); }
.hero__text { flex: 1 1 58%; max-width: 640px; }
.hero__figure { flex: 0 0 38%; position: relative; display: flex; flex-direction: column; align-items: center; }
.hero__photo-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid rgba(212,165,116,.45);
  box-shadow: 0 30px 70px rgba(0,0,0,.45), 0 0 0 6px rgba(212,165,116,.08);
  background: linear-gradient(160deg, #2a3a6e 0%, #1A2B5C 100%);
}
.hero__photo { width: 100%; height: auto; display: block; }
.hero__figure-badge {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
  padding: 9px 18px; border-radius: 100px;
  background: rgba(15,26,53,.82); backdrop-filter: blur(8px);
  border: 1px solid rgba(212,165,116,.4);
  color: var(--white); font-size: 13px; font-weight: 600;
}
.hero__figure-badge i { color: var(--gold); font-size: 16px; }

/* 살아있는 배경 글로우 (동영상 없이 시각적 생동감) */
.hero::before, .final-cta::before {
  content: ''; position: absolute; inset: -20%;
  z-index: 1; pointer-events: none;
  background:
    radial-gradient(closest-side at 20% 30%, rgba(212,165,116,.16), transparent 70%),
    radial-gradient(closest-side at 80% 70%, rgba(58,90,180,.28), transparent 70%);
  filter: blur(10px);
  animation: heroGlow 14s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  0%   { transform: translate3d(-3%, -2%, 0) scale(1); opacity: .9; }
  50%  { transform: translate3d(3%, 2%, 0) scale(1.08); opacity: 1; }
  100% { transform: translate3d(-2%, 3%, 0) scale(1.03); opacity: .85; }
}

/* ============================================================
   섹션 3. TRUST BAR
   ============================================================ */
.trust { background: var(--navy); padding: 46px 0; }
.trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trust__item { text-align: center; border-right: 1px solid rgba(255,255,255,.1); }
.trust__item:last-child { border-right: none; }
.trust__num { display: block; font-size: 40px; font-weight: 700; color: var(--gold); letter-spacing: -1.5px; line-height: 1.1; }
.trust__num em { font-size: 18px; font-style: normal; font-weight: 600; margin-left: 2px; }
.trust__label { font-size: 14px; color: var(--text-white-sub); margin-top: 6px; display: block; }

/* ============================================================
   섹션 4. 우리의 철학
   ============================================================ */
.philosophy { background: var(--cream); padding: var(--section-pad) 0; }
.philosophy__inner { max-width: var(--container-narrow); margin: 0 auto; text-align: center; }
.philosophy__quote {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -1.5px;
  line-height: 1.4;
  color: var(--navy);
  font-style: italic;
  margin: 14px 0 30px;
}
.philosophy__body { font-size: 16px; color: var(--text-sub); line-height: 1.85; }
.philosophy__body strong { color: var(--navy); font-weight: 600; }

/* ============================================================
   카드 그리드 (배우다·진단하다·성장하다)
   ============================================================ */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

.card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  display: flex;
  flex-direction: column;
}
.card--link:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.card--dark { background: var(--navy); border-color: var(--navy); }
.card--dark .card__title { color: var(--white); }
.card--dark .card__text { color: var(--text-white-sub); }
.card--gold { background: linear-gradient(140deg, var(--gold) 0%, var(--gold-deep) 100%); border-color: transparent; }
.card--gold .card__title { color: var(--navy); }
.card--gold .card__text { color: rgba(15,26,53,.78); }

.card__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: grid; place-items: center;
  font-size: 26px;
  margin-bottom: 20px;
}
.card__icon--navy { background: var(--navy); color: var(--gold); }
.card__icon--dark { background: var(--navy); color: var(--gold); }
.card__title { font-size: 20px; font-weight: 600; letter-spacing: -0.6px; color: var(--navy); margin-bottom: 10px; }
.card__text { font-size: 14.5px; color: var(--text-sub); line-height: 1.7; flex-grow: 1; }
.card__more {
  margin-top: 20px;
  font-size: 14px; font-weight: 600; color: var(--gold-deep);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap .2s;
}
.card--link:hover .card__more { gap: 11px; }
.card__more--dark { color: var(--navy); }
.card__more--light { color: var(--gold); }

.card__channels { display: flex; flex-wrap: wrap; gap: 8px 16px; margin-top: 16px; }
.card__channels span { font-size: 13px; font-weight: 600; color: var(--navy); display: inline-flex; align-items: center; gap: 5px; }

/* 프로필 원형 (뽀글이) */
.profile-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--white);
  display: grid; place-items: center;
  font-size: 24px; font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 6px 16px rgba(212,165,116,.4);
}
.profile-circle--photo {
  object-fit: cover;
  object-position: 50% 30%;
  border: 2px solid var(--gold);
  background: var(--cream-dark);
}

/* 강의 카드 */
.card--course { padding-top: 30px; }
.card__tag { font-size: 12px; font-weight: 700; letter-spacing: 1px; color: var(--gold-deep); text-transform: uppercase; margin-bottom: 12px; }
.card__tag--light { color: var(--gold); }
.card__price { margin-top: 18px; font-size: 16px; font-weight: 500; color: var(--text-sub); }
.card__price span { font-size: 32px; font-weight: 700; color: var(--navy); letter-spacing: -1px; margin-right: 2px; }
.card__price--light { color: var(--text-white-sub); }
.card__price--light span { color: var(--white); }

/* ============================================================
   섹션 8. 설립자
   ============================================================ */
.founder { display: grid; grid-template-columns: 280px 1fr; gap: 48px; align-items: center; }
.founder__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  display: grid; place-items: center;
  box-shadow: var(--shadow-md);
}
.founder__photo i { font-size: 96px; color: var(--gold); }
.founder__photo-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  border-radius: var(--radius-lg);
  display: block;
}
.founder__photo-note {
  position: absolute; bottom: 14px; left: 0; right: 0; text-align: center;
  font-size: 11px; color: var(--text-white-sub); letter-spacing: 0.3px;
}
.founder__name { font-size: 26px; font-weight: 700; color: var(--navy); letter-spacing: -1px; margin: 6px 0 4px; }
.founder__hanja { font-size: 15px; font-weight: 500; color: var(--text-light); letter-spacing: 0; }
.founder__role { font-size: 15px; font-weight: 600; color: var(--gold-deep); margin-bottom: 18px; }
.founder__bio { font-size: 15.5px; color: var(--text-sub); line-height: 1.85; margin-bottom: 26px; }
.founder__bio strong { color: var(--navy); font-weight: 600; }

/* ============================================================
   섹션 9. FAQ
   ============================================================ */
.faq { margin-top: 12px; }
.faq__item { border-bottom: 1px solid var(--cream-dark); }
.faq__q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 4px;
  text-align: left;
  font-size: 17px; font-weight: 600; letter-spacing: -0.5px; color: var(--navy);
  transition: color .2s;
}
.faq__q:hover { color: var(--gold-deep); }
.faq__icon { font-size: 22px; color: var(--gold-deep); flex-shrink: 0; transition: transform .3s ease; }
.faq__item.is-open .faq__icon { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq__a p { padding: 0 4px 24px; font-size: 15px; color: var(--text-sub); line-height: 1.8; }
.faq__a strong { color: var(--navy); font-weight: 600; }

/* ============================================================
   섹션 10. FINAL CTA
   ============================================================ */
.final-cta {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  text-align: center;
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-light) 60%, #24397a 100%);
}
.final-cta__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.3; filter: blur(1px); z-index: 0;
}
.final-cta__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(15,26,53,.8) 0%, rgba(15,26,53,.72) 100%);
}
.final-cta__pattern {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image:
    repeating-linear-gradient(135deg, rgba(212,165,116,.05) 0px, rgba(212,165,116,.05) 1px, transparent 1px, transparent 22px),
    radial-gradient(circle at 22% 78%, rgba(212,165,116,.14) 0%, transparent 42%);
}
.final-cta__content { position: relative; z-index: 2; }
.final-cta__title { font-size: 40px; font-weight: 600; letter-spacing: -1.8px; line-height: 1.3; color: var(--white); margin-bottom: 16px; }
.final-cta__sub { font-size: 17px; color: var(--text-white-sub); margin-bottom: 34px; }
.final-cta .hero__cta { justify-content: center; }

/* ============================================================
   섹션 11. 푸터
   ============================================================ */
.footer { background: var(--footer-bg); padding: 54px 0; }
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.footer__slogan { font-size: 16px; font-weight: 600; color: var(--gold); letter-spacing: -0.5px; margin-bottom: 8px; }
.footer__copy { font-size: 13px; color: var(--text-light); }
.footer__menu { display: flex; gap: 26px; flex-wrap: wrap; }
.footer__menu a { font-size: 14px; color: var(--text-white-sub); transition: color .2s; }
.footer__menu a:hover { color: var(--gold); }

/* 맨 위로 버튼 */
.to-top {
  position: fixed; bottom: 26px; right: 26px; z-index: 90;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--navy); color: var(--gold);
  display: grid; place-items: center; font-size: 22px;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .25s, transform .25s, visibility .25s, background .2s;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--navy-light); }

/* ============================================================
   v3 — Hero 심플 중앙 정렬
   ============================================================ */
.hero__content--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  gap: 0;
}
.hero__title--xl {
  font-size: 72px;
  line-height: 1.18;
  letter-spacing: -3px;
  margin: 24px 0 22px;
}
.hero__content--center .hero__sub { margin-left: auto; margin-right: auto; }
.hero__content--center .hero__cta { justify-content: center; }
.hero__content--center .hero__proof { justify-content: center; }

/* ============================================================
   v3 — 02 진단허브 (인터랙티브 금융집짓기)
   ============================================================ */
.diag__lead { text-align: center; font-size: 16px; color: var(--text-sub); line-height: 1.8; margin: 0 0 30px; }
.diag__lead strong { color: var(--navy); font-weight: 600; }
.diag__lead-hint { display: inline-block; margin-left: 4px; color: var(--gold-deep); font-weight: 700; font-size: 14px; white-space: nowrap; }

.house {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  line-height: 0;
}
.house__img { width: 100%; height: auto; display: block; }
.house__hot { position: absolute; display: block; border-radius: 8px; cursor: pointer; z-index: 2; }
.house__hot::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(212,165,116,0);
  border: 2px solid transparent; border-radius: 8px;
  transition: background .2s ease, border-color .2s ease;
}
.house__hot:hover::before { background: rgba(212,165,116,.30); border-color: var(--gold); }
.house__pulse {
  position: absolute; top: 50%; left: 50%;
  width: 15px; height: 15px; margin: -7.5px 0 0 -7.5px;
  border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 0 0 rgba(212,165,116,.7);
  animation: pulseHint 2s infinite;
}
@keyframes pulseHint {
  0%   { box-shadow: 0 0 0 0 rgba(212,165,116,.7); transform: scale(1); }
  70%  { box-shadow: 0 0 0 15px rgba(212,165,116,0); transform: scale(1.1); }
  100% { box-shadow: 0 0 0 0 rgba(212,165,116,0); transform: scale(1); }
}
.house__hot:hover .house__pulse { opacity: 0; }
.house__label {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(.85);
  background: var(--navy); color: #fff;
  font-size: 13px; font-weight: 700; letter-spacing: -0.3px;
  line-height: 1; padding: 8px 13px; border-radius: 8px; white-space: nowrap;
  opacity: 0; transition: opacity .2s ease, transform .2s ease;
  pointer-events: none; box-shadow: var(--shadow-md); z-index: 3;
}
.house__hot:hover .house__label { opacity: 1; transform: translate(-50%,-50%) scale(1); }

/* 진단 칩 */
.diag-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 32px 0 4px; }
.diag-chip {
  padding: 9px 18px; border-radius: 100px;
  background: var(--white); border: 1px solid var(--cream-dark);
  font-size: 14px; font-weight: 600; color: var(--navy);
  transition: transform .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.diag-chip:hover { border-color: var(--gold); color: var(--gold-deep); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.diag-chip--gold { background: var(--navy); color: #fff; border-color: var(--navy); }
.diag-chip--gold:hover { background: var(--navy-light); color: var(--gold); }

/* 진단 카드 8개 */
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.diag-cards { margin-top: 28px; }
.diag-card { padding: 24px 22px; }
.diag-card .card__icon { width: 46px; height: 46px; font-size: 22px; border-radius: 12px; margin-bottom: 14px; }
.diag-card .card__title { font-size: 17px; margin-bottom: 6px; }
.diag-card .card__text { font-size: 13.5px; }
.diag-card .card__more { margin-top: 14px; font-size: 13px; }
.diag-card__badge {
  position: absolute; top: 14px; right: 14px;
  padding: 4px 10px; border-radius: 100px;
  background: var(--navy); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 0.3px; line-height: 1;
}
.diag-card__badge--gold { background: var(--gold); color: var(--navy); }
.diag-card--featured { border: 2px solid var(--gold); box-shadow: 0 12px 30px rgba(212,165,116,.22); }
.card__icon--gold { background: linear-gradient(140deg, var(--gold) 0%, var(--gold-deep) 100%); color: #fff; }

/* 뽀글이 코멘트 + 무료 상담 배너 */
.diag-consult {
  display: flex; align-items: center; gap: 22px;
  margin-top: 42px; padding: 24px 30px;
  background: var(--white); border: 1px solid var(--cream-dark);
  border-radius: 16px; box-shadow: var(--shadow-sm);
}
.diag-consult__face {
  width: 72px; height: 72px; border-radius: 50%;
  object-fit: cover; object-position: 50% 30%;
  border: 2px solid var(--gold); flex-shrink: 0;
}
.diag-consult__text { flex: 1; }
.diag-consult__quote { font-size: 16px; font-weight: 600; color: var(--navy); line-height: 1.6; letter-spacing: -0.3px; }
.diag-consult__by { font-size: 13px; color: var(--text-light); font-weight: 600; }
.diag-consult__cta { flex-shrink: 0; }

/* ============================================================
   스크롤 등장 애니메이션
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* ============================================================
   반응형
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-pad: 80px; }
  .hero__title { font-size: 38px; }
  .hero__title--xl { font-size: 58px; letter-spacing: -2px; }
  .founder { grid-template-columns: 220px 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px; }
  .only-desktop { display: none; }

  /* 네비 */
  .nav__menu {
    position: fixed; top: 60px; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--cream-dark);
    box-shadow: var(--shadow-md);
    padding: 8px 0;
    transform: translateY(-140%);
    transition: transform .3s ease;
    max-height: calc(100vh - 60px); overflow-y: auto;
  }
  .nav__menu.is-open { transform: translateY(0); }
  .nav__menu a { padding: 15px 24px; font-size: 16px; }
  .nav__menu a::after { display: none; }
  .nav__toggle { display: block; }
  .nav__cta { display: none; }
  .nav__inner { height: 60px; }

  /* Hero */
  .hero { min-height: auto; padding: 116px 0 64px; }
  .hero__content { flex-direction: column; gap: 0; }
  .hero__text { max-width: 100%; flex-basis: auto; }
  .hero__figure { width: 100%; max-width: 300px; margin: 0 auto; flex-basis: auto; }
  .hero__figure-badge { font-size: 12px; padding: 7px 14px; }
  .hero__title { font-size: 31px; letter-spacing: -1.2px; }
  .hero__title--xl { font-size: 42px; letter-spacing: -1.5px; margin: 18px 0; }
  .hero__sub { font-size: 15.5px; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }

  /* 진단허브 모바일 */
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .diag__lead { font-size: 15px; }
  .diag__lead-hint { display: block; margin: 8px auto 0; }
  .house__label { font-size: 11px; padding: 5px 9px; }
  .house__pulse { width: 12px; height: 12px; margin: -6px 0 0 -6px; }
  .diag-consult { flex-direction: column; text-align: center; gap: 16px; padding: 24px; }
  .diag-consult__cta { width: 100%; }
  .diag-card { padding: 20px 16px; }
  .diag-card .card__text { font-size: 13px; }

  /* Trust */
  .trust__grid { grid-template-columns: repeat(2, 1fr); gap: 28px 12px; }
  .trust__item:nth-child(2) { border-right: none; }
  .trust__num { font-size: 34px; }

  /* 철학 */
  .philosophy__quote { font-size: 27px; }

  /* 섹션 헤드 */
  .section__head { gap: 14px; margin-bottom: 34px; }
  .step-no { font-size: 40px; }
  .section__title { font-size: 23px; }

  /* 그리드 */
  .grid--2, .grid--3 { grid-template-columns: 1fr; }

  /* 설립자 */
  .founder { grid-template-columns: 1fr; gap: 26px; }
  .founder__photo { max-width: 240px; margin: 0 auto; }
  .founder__info { text-align: center; }

  /* FAQ */
  .faq__q { font-size: 15.5px; padding: 20px 2px; }

  /* Final */
  .final-cta__title { font-size: 30px; }

  /* 푸터 */
  .footer__inner { flex-direction: column; align-items: flex-start; text-align: left; }

  .to-top { bottom: 76px; right: 18px; width: 44px; height: 44px; }
}

/* 모바일 하단 고정 CTA 바 (기본 숨김, 모바일에서만 노출) */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 96;
  display: none;
  align-items: center; justify-content: center; gap: 8px;
  padding: 15px 20px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--navy);
  font-size: 15px; font-weight: 700; letter-spacing: -0.3px;
  box-shadow: 0 -6px 22px rgba(0,0,0,.20);
  transform: translateY(110%); transition: transform .32s ease;
}
.sticky-cta strong { color: var(--navy); }
.sticky-cta i { font-size: 18px; }

@media (max-width: 768px) {
  .sticky-cta { display: flex; }
  .sticky-cta.is-visible { transform: translateY(0); }
}

@media (max-width: 380px) {
  .container { padding: 0 18px; }
  .hero__title { font-size: 27px; }
}

/* 접근성: 모션 최소화 선호 */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .hero__video, .final-cta__video { display: none; }
}
