/* ========================================
   ONEROAD Landing Page — Redesigned CSS
   Color: Charcoal Dark / Off-white / Gold
   ======================================== */

:root {
  /* 브랜드 골드 */
  --gold:        #C9A84C;
  --gold-light:  #E8C96A;
  --gold-dark:   #A07828;

  /* 다크 배경 — 짙은 차콜, 남색 제거 */
  --bg-900:  #0E0E0E;   /* 최상위 배경 */
  --bg-800:  #161616;
  --bg-700:  #1E1E1E;
  --bg-600:  #252525;
  --bg-card: #1C1C1C;

  /* 텍스트 */
  --text-100: #FFFFFF;
  --text-200: #E8E8E8;
  --text-400: #A0A0A0;
  --text-600: #606060;

  /* 강조 — 골드 계열만 사용 */
  --accent:       var(--gold);
  --accent-light: var(--gold-light);

  /* 시멘틱 */
  --green:  #4CAF7D;
  --red:    #E05C5C;
  --orange: #E07C3A;

  /* 기타 */
  --border:     rgba(255,255,255,0.08);
  --border-gold: rgba(201,168,76,0.3);
  --radius:    14px;
  --radius-sm:  8px;
  --shadow:    0 20px 60px rgba(0,0,0,0.5);
  --font:      'Noto Sans KR', 'Inter', sans-serif;
  --transition: 0.28s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg-900);
  color: var(--text-200);
  line-height: 1.7;
  overflow-x: hidden;
}
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-900); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ─── 공통 텍스트 ─── */
.text-gold   { color: var(--gold); }
.text-accent { color: var(--gold); }

.section-tag {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border-gold);
  padding: 4px 14px; border-radius: 100px;
  margin-bottom: 0.9rem;
}
.section-tag.light { color: var(--gold); }

.section-title {
  font-size: clamp(1.75rem,3.8vw,2.75rem);
  font-weight: 800; line-height: 1.25;
  margin-bottom: 0.9rem;
  color: var(--text-100);
}
.section-title.center { text-align: center; }
.section-title.light  { color: var(--text-100); }

.section-desc {
  font-size: 1rem; color: var(--text-400);
  margin-bottom: 2.5rem; line-height: 1.8;
}
.section-desc.center { text-align: center; }
.section-desc.light  { color: rgba(255,255,255,0.6); }
.section-desc strong { color: var(--gold); }

/* ─── 버튼 ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0A0A0A; font-weight: 800; font-size: 1rem;
  padding: 14px 30px; border-radius: 50px;
  text-decoration: none; border: none; cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.5);
}
.btn-primary.btn-large { font-size: 1.1rem; padding: 16px 38px; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--text-200);
  font-weight: 600; font-size: 1rem;
  padding: 14px 30px; border-radius: 50px;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.2);
  cursor: pointer; transition: var(--transition);
}
.btn-ghost:hover {
  border-color: var(--gold); color: var(--gold);
  background: rgba(201,168,76,0.05);
}
.btn-ghost.btn-large { font-size: 1.1rem; padding: 16px 38px; }

/* ─── HEADER ─── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(14,14,14,0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(14,14,14,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.header-inner {
  max-width: 1120px; margin: 0 auto; padding: 0 24px;
  height: 66px; display: flex; align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex; align-items: center; gap: 8px;
  text-decoration: none; color: white;
}
.logo-icon {
  width: 34px; height: 34px;
  background: var(--gold);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; color: #0A0A0A;
}
.logo-text { font-size: 1.1rem; font-weight: 400; letter-spacing: 0.05em; color: white; }
.logo-text strong { font-weight: 900; color: var(--gold); }
.logo-icon-sm { margin-right: 4px; font-size: 0.8rem; color: var(--gold); }

.header-nav { display: flex; align-items: center; gap: 2rem; }
.header-nav a {
  color: var(--text-400); text-decoration: none;
  font-size: 0.88rem; font-weight: 500;
  transition: var(--transition);
}
.header-nav a:hover, .header-nav a.active { color: white; }
.btn-header-cta {
  background: var(--gold) !important;
  color: #0A0A0A !important;
  font-weight: 700 !important;
  padding: 8px 20px; border-radius: 50px;
}
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: white; border-radius: 2px;
  transition: var(--transition);
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(201,168,76,0.1) 0%, transparent 55%),
    linear-gradient(180deg, var(--bg-900) 0%, var(--bg-800) 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero-glow {
  position: absolute; border-radius: 50%;
  filter: blur(110px); pointer-events: none;
}
.hero-glow-1 {
  width: 480px; height: 480px;
  background: rgba(201,168,76,0.12);
  top: -80px; left: -80px;
}
.hero-glow-2 {
  width: 380px; height: 380px;
  background: rgba(201,168,76,0.08);
  bottom: 0; right: -40px;
}
.hero .container { position: relative; z-index: 1; text-align: center; }

.hero-fax-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-size: 0.85rem; font-weight: 500;
  padding: 8px 20px; border-radius: 100px;
  margin-bottom: 1.5rem;
  animation: fadeDown 0.6s ease both;
}
.hero-title {
  font-size: clamp(2.2rem,5.5vw,3.8rem);
  font-weight: 900; line-height: 1.2;
  margin-bottom: 1.1rem;
  animation: fadeUp 0.7s ease 0.1s both;
  color: var(--text-100);
}
.hero-sub {
  font-size: clamp(1rem,1.8vw,1.15rem);
  color: var(--text-400);
  margin-bottom: 2.5rem;
  animation: fadeUp 0.7s ease 0.2s both;
}
.hero-sub strong { color: var(--gold); }

/* 히어로 비주얼 */
.hero-visual {
  position: relative; display: flex;
  align-items: center; justify-content: center;
  gap: 28px;
  margin: 0 auto 2.5rem; max-width: 1040px;
  animation: fadeUp 0.8s ease 0.3s both;
}
.badge-left, .badge-right {
  display: flex; flex-direction: column; gap: 14px; z-index: 2;
  flex-shrink: 0;
}
.badge-left  { margin-right: 0; }
.badge-right { margin-left: 0; }

.badge-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px; text-align: center;
  backdrop-filter: blur(12px); min-width: 130px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.badge-item.badge-highlight {
  border-color: var(--border-gold);
  background: rgba(201,168,76,0.06);
}
.badge-num {
  display: block; font-size: 2rem; font-weight: 900;
  color: white; line-height: 1; margin-bottom: 4px;
}
.badge-num small { font-size: 1rem; font-weight: 600; }
.badge-label { display: block; font-size: 0.7rem; color: var(--text-400); font-weight: 500; }

/* 대시보드 */
.hero-dashboard {
  flex: 1; max-width: 500px;
  background: rgba(22,22,22,0.97);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05);
}
.dashboard-bar {
  background: rgba(255,255,255,0.03);
  padding: 10px 14px;
  display: flex; align-items: center; gap: 7px;
  border-bottom: 1px solid var(--border);
}
.db-dot { width: 11px; height: 11px; border-radius: 50%; }
.db-dot.red    { background: #FF5F57; }
.db-dot.yellow { background: #FEBC2E; }
.db-dot.green  { background: #28C840; }
.db-title {
  font-size: 0.7rem; color: var(--text-400);
  margin-left: 4px; flex: 1; text-align: center;
}
.dashboard-body { display: flex; height: 200px; }
.db-sidebar {
  width: 140px; border-right: 1px solid var(--border); padding: 8px;
}
.db-menu {
  padding: 8px 10px; border-radius: 6px;
  font-size: 0.68rem; color: var(--text-400);
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 2px; transition: var(--transition);
}
.db-menu.active {
  background: rgba(201,168,76,0.15);
  color: var(--gold); font-weight: 700;
}
.db-main { flex: 1; padding: 12px; display: flex; flex-direction: column; gap: 10px; }
.db-stats { display: flex; gap: 8px; }
.db-stat-card {
  flex: 1; background: rgba(255,255,255,0.03);
  border-radius: 8px; padding: 8px;
  text-align: center; border: 1px solid var(--border);
}
.db-stat-card.highlight {
  border-color: var(--border-gold);
  background: rgba(201,168,76,0.05);
}
.stat-label { display: block; font-size: 0.58rem; color: var(--text-400); margin-bottom: 2px; }
.stat-val { display: block; font-size: 0.9rem; font-weight: 700; color: white; }
.stat-val.zero { color: var(--green); }
.stat-val.gold { color: var(--gold); }
.db-chart-area {
  flex: 1; display: flex; align-items: flex-end;
  gap: 6px; padding: 0 4px;
}
.db-chart-bar {
  flex: 1; background: rgba(255,255,255,0.1);
  border-radius: 3px 3px 0 0;
}
.db-chart-bar.highlight {
  background: linear-gradient(180deg, var(--gold), var(--gold-dark));
}

/* 비교 카드 */
.compare-card {
  border-radius: var(--radius-sm);
  padding: 14px 18px; text-align: center; min-width: 110px;
}
.compare-card.other {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
}
.compare-label { display: block; font-size: 0.65rem; color: var(--text-400); margin-bottom: 4px; }
.compare-num {
  display: block; font-size: 1.5rem;
  font-weight: 900; color: var(--red);
}
.compare-card.oneroad {
  background: linear-gradient(145deg, #1a1200, #2a1e00);
  border: 2px solid var(--gold);
  box-shadow: 0 0 28px rgba(201,168,76,0.25);
}
.compare-brand { display: block; font-size: 0.68rem; font-weight: 700; color: var(--gold); margin-bottom: 2px; }
.compare-num-big { display: block; font-size: 2.2rem; font-weight: 900; color: white; line-height: 1; }
.compare-tag { display: block; font-size: 0.68rem; color: var(--gold); font-weight: 600; }

.hero-cta {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.4s both;
}
.pulse-btn { animation: pulse 2.2s infinite; }
@keyframes pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(201,168,76,0.35); }
  50%      { box-shadow: 0 4px 40px rgba(201,168,76,0.6), 0 0 0 8px rgba(201,168,76,0.1); }
}
.hero-footnote {
  margin-top: 1.5rem; font-size: 0.78rem; color: var(--text-400);
  animation: fadeUp 0.8s ease 0.5s both;
}
.hero-footnote i { color: var(--gold); margin-right: 4px; }

.scroll-down {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: var(--text-600); font-size: 0.72rem;
  animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(7px); }
}

/* ─── STATS STRIP ─── */
.stats-strip {
  background: var(--bg-700);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 52px 0;
}
.stats-strip-inner {
  display: flex; justify-content: center;
  align-items: center; flex-wrap: wrap;
}
.stat-block { padding: 0 60px; position: relative; text-align: center; }
.stat-block:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 10%;
  height: 80%; width: 1px; background: var(--border);
}
.stat-block-num {
  font-size: clamp(2.4rem,4.5vw,3.4rem);
  font-weight: 900; color: var(--text-100);
  line-height: 1; display: block;
}
.stat-block-num span { color: var(--gold); }
.stat-block-label {
  font-size: 0.88rem; color: var(--text-400);
  margin-top: 6px; display: block; font-weight: 500;
}

/* ─── TRUST BAR ─── */
.trust-bar {
  padding: 36px 0;
  background: var(--bg-800);
  border-bottom: 1px solid var(--border);
}
.trust-label {
  text-align: center; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-600); margin-bottom: 1.2rem;
}
.trust-items {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0;
}
.trust-item {
  display: flex; flex-direction: column;
  align-items: center; gap: 10px;
  padding: 0 48px; text-align: center;
}
.trust-item span { font-size: 0.88rem; font-weight: 600; color: var(--text-200); line-height: 1.45; }
.trust-icon {
  width: 52px; height: 52px;
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--gold);
}
.trust-divider { width: 1px; height: 52px; background: var(--border); }

/* ─── PAIN POINT 빙산 ─── */
.pain-point {
  padding: 100px 0;
  background: var(--bg-900);
}
.pain-point .container { max-width: 1000px; }
.pain-point .section-title,
.pain-point .section-tag { text-align: center; display: block; }
.pain-point .section-tag { margin: 0 auto 0.9rem; }

/* ─── 빙산 레이아웃: 전체 이미지 + 오버레이 ─── */
.iceberg-wrapper {
  position: relative;
  max-width: 680px;
  margin: 3rem auto 2.5rem;
}

.iceberg-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.7);
}

.iceberg-img-wrap img {
  width: 100%;
  display: block;
  filter: brightness(0.72) saturate(1.15);
}

/* ── 수면 위: 보이는 것 배지 ── */
.ice-overlay-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 42%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, transparent 100%);
  z-index: 3;
}
.ice-surface-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 10px 26px;
  border-radius: 100px;
  font-size: 1.05rem;
  font-weight: 700;
  color: white;
}
.ice-surface-label i { color: var(--gold-light); font-size: 1rem; }

/* ── 수면선 ── */
.ice-waterline-overlay {
  position: absolute;
  left: 0; right: 0;
  top: 42%;
  height: 2.5px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(120,210,255,0.9) 15%,
    rgba(180,240,255,1) 50%,
    rgba(120,210,255,0.9) 85%,
    transparent 100%
  );
  z-index: 4;
}
.ice-waterline-overlay::after {
  content: '수면 (WATER LINE)';
  position: absolute;
  top: 50%; right: 18px;
  transform: translateY(-50%);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: rgba(180,240,255,0.95);
  background: rgba(0,20,40,0.6);
  backdrop-filter: blur(6px);
  padding: 3px 10px;
  border-radius: 4px;
}

/* ── 수면 아래: 비용 항목 오버레이 ── */
.ice-overlay-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 58%;
  background: linear-gradient(0deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.55) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 28px;
  gap: 12px;
  z-index: 3;
}

/* 각 항목 — 기본 숨김, 스크롤 reveal로 순차 등장 */
.ice-cost-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(14,14,14,0.72);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 4px solid;
  border-radius: 12px;
  padding: 14px 18px;
  /* 초기: 아래로 숨김 */
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
/* 스크롤로 노출 시 */
.ice-cost-item.ice-visible {
  opacity: 1;
  transform: translateY(0);
}
/* 순차 딜레이 */
.ice-cost-item[data-reveal="1"] { transition-delay: 0.1s; }
.ice-cost-item[data-reveal="2"] { transition-delay: 0.35s; }
.ice-cost-item[data-reveal="3"] { transition-delay: 0.6s; }

/* 색상 */
.ice-cost-item:nth-child(1) { border-left-color: #E05555; }
.ice-cost-item:nth-child(2) { border-left-color: #E07730; }
.ice-cost-item:nth-child(3) { border-left-color: #D4A040; }

.ice-cost-pct {
  font-size: 1.7rem;
  font-weight: 900;
  min-width: 56px;
  line-height: 1;
}
.ice-cost-item:nth-child(1) .ice-cost-pct { color: #E05555; }
.ice-cost-item:nth-child(2) .ice-cost-pct { color: #E07730; }
.ice-cost-item:nth-child(3) .ice-cost-pct { color: #D4A040; }

.ice-cost-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  line-height: 1.45;
}

.ice-cost-bar {
  display: block;
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 6px;
  max-width: 160px;
}
.ice-cost-bar-fill {
  height: 100%;
  border-radius: 2px;
  width: 0%;
  transition: width 1.4s ease 0.3s;
}
.ice-cost-item.ice-visible:nth-child(1) .ice-cost-bar-fill { width: 100%; background: #E05555; }
.ice-cost-item.ice-visible:nth-child(2) .ice-cost-bar-fill { width: 50%;  background: #E07730; }
.ice-cost-item.ice-visible:nth-child(3) .ice-cost-bar-fill { width: 50%;  background: #D4A040; }

/* ── 반응형 ── */
@media (max-width: 700px) {
  .bms-nodes {
    grid-template-columns: repeat(2, 1fr);
  }
  .ice-overlay-bottom { padding: 16px 14px; gap: 8px; }
  .ice-cost-pct { font-size: 1.3rem; min-width: 44px; }
  .ice-cost-name { font-size: 0.8rem; }
}

.ice-honest {
  text-align: center;
  font-size: 0.7rem;
  color: var(--text-600);
  font-style: italic;
  margin-top: 8px;
}

.pain-conclusion {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.pain-card {
  background: var(--bg-700);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 28px;
  display: flex; align-items: flex-start; gap: 14px;
  width: 100%; text-align: left;
}
.pain-card i { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; color: var(--red); }
.pain-card.solution i { color: var(--green); }
.pain-card p { font-size: 0.94rem; line-height: 1.65; color: var(--text-200); }
.pain-card strong { color: var(--gold); }
.pain-arrow { font-size: 1.3rem; color: var(--text-600); }

/* ─── EXPERTISE (BMS) ─── */
.expertise {
  padding: 100px 0;
  background: var(--bg-800);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.expertise::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(201,168,76,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.expertise .container { position: relative; z-index: 1; }

/* BMS 네트워크: 중앙 허브 + 그리드 노드 레이아웃 */
.bms-network {
  position: relative;
  max-width: 900px;
  margin: 3rem auto 0;
}

/* 중앙 허브 — 독립 블록 */
.bms-hub {
  position: relative;
  z-index: 3;
  width: 160px; height: 160px;
  background: linear-gradient(135deg, #2a1e00, #4a3400);
  border: 2.5px solid var(--gold);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 0 80px rgba(201,168,76,0.45);
  margin: 0 auto 2.5rem;
}
.hub-icon { font-size: 2.4rem; color: var(--gold); }
.bms-hub span { font-size: 0.88rem; font-weight: 800; color: var(--gold); text-align: center; line-height: 1.4; letter-spacing: 0.04em; }

/* 연결 데코 선 */
.bms-hub-connector {
  display: flex; justify-content: center; align-items: center;
  gap: 0; margin-bottom: 2rem;
}
.bms-hub-connector-line {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.5), transparent);
}
.bms-hub-connector-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(201,168,76,0.6);
}

/* 노드 그리드 */
.bms-nodes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: static;
}
.bms-node {
  position: static;
  width: 100%; height: auto;
  padding: 28px 20px;
  background: var(--bg-card);
  border: 1.5px solid rgba(201,168,76,0.3);
  border-radius: 16px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-start; gap: 14px;
  font-size: 0.82rem; color: var(--text-400);
  text-align: center; transition: var(--transition);
  line-height: 1.5; font-weight: 600;
  transform: none !important;
}
.bms-node i {
  font-size: 2.4rem;
  color: var(--gold);
  display: block;
  margin-bottom: 2px;
  filter: drop-shadow(0 0 8px rgba(201,168,76,0.35));
}
.bms-node span {
  font-size: 0.85rem;
  color: var(--text-200);
  font-weight: 700;
  line-height: 1.5;
}
.bms-node:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.06);
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 40px rgba(201,168,76,0.15);
}

/* SVG 라인 숨김 (그리드 레이아웃에서는 불필요) */
.bms-lines { display: none; }

/* ─── DIRECT COST ─── */
.direct-cost {
  padding: 100px 0;
  background: #F5F3EE;  /* 크림색 — 화이트에 가까운 warm */
  color: #1A1208;
}
.direct-cost .section-title { color: #1A1208; }
.direct-cost .section-tag { color: var(--gold-dark); background: rgba(160,120,40,0.1); border-color: rgba(160,120,40,0.25); }

.cost-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0; align-items: center;
  max-width: 860px; margin: 3rem auto;
}
.cost-card { padding: 36px; border-radius: var(--radius); }
.cost-card.visible-cost {
  background: white; border: 2px solid #E5E0D5;
  text-align: center;
}
.cost-card.hidden-cost {
  background: #1A1208;
  border: 2px solid rgba(201,168,76,0.35);
  color: white;
}
.cost-card-top { display: flex; align-items: center; gap: 10px; margin-bottom: 1.2rem; }
.cost-card-top i { font-size: 1.2rem; }
.cost-card.visible-cost .cost-card-top i { color: #C0B090; }
.cost-card.hidden-cost .cost-card-top i { color: var(--gold); }
.cost-card-top h3 { font-size: 0.98rem; font-weight: 700; }
.cost-card.visible-cost .cost-card-top h3 { color: #6B6050; }

.cost-big-num {
  font-size: 4rem; font-weight: 900;
  color: #D8CEB5; line-height: 1; margin-bottom: 0.5rem;
}
.cost-big-num span { font-size: 1.5rem; }
.cost-card.visible-cost p { font-size: 0.88rem; color: #8C7F6A; }

.cost-items { display: flex; flex-direction: column; gap: 14px; }
.cost-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px; background: rgba(255,255,255,0.05);
  border-radius: 10px; border-left: 3px solid var(--gold);
}
.cost-item i { font-size: 1rem; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.cost-item strong { display: block; font-size: 0.9rem; font-weight: 700; color: white; }
.cost-item span { font-size: 0.78rem; color: rgba(255,255,255,0.55); }

.cost-vs { display: flex; align-items: center; justify-content: center; width: 70px; }
.cost-vs span {
  font-size: 1.2rem; font-weight: 900; color: #C0B090;
  background: white; width: 52px; height: 52px;
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; border: 2px solid #E5E0D5;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.cost-conclusion {
  max-width: 700px; margin: 2rem auto 0; text-align: center;
  background: #FBF8F2; border: 1.5px solid #DDD0B0;
  border-radius: var(--radius); padding: 22px 30px;
}
.cost-conclusion p { font-size: 0.98rem; color: #3A2E18; line-height: 1.85; }
.cost-conclusion strong { color: var(--gold-dark); }
.cost-conclusion i { color: var(--gold-dark); margin-right: 5px; }

/* ─── LEMON MARKET ─── */
.lemon-market { padding: 100px 0; background: var(--bg-800); text-align: center; }

.lemon-vs {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 24px;
  max-width: 920px; margin: 3rem auto;
}
.lemon-card {
  background: var(--bg-card);
  border-radius: var(--radius); padding: 36px 30px;
  text-align: center; border: 1px solid var(--border);
  position: relative; transition: var(--transition);
}
.lemon-card:hover { transform: translateY(-4px); }
.lemon-card.broker { border-color: rgba(224,92,92,0.2); }
.lemon-card.oneroad { border-color: var(--border-gold); background: rgba(201,168,76,0.03); }

.lemon-card-tag {
  position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px; border-radius: 100px;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.08em; white-space: nowrap;
}
.lemon-card-tag.bad  { background: var(--red); color: white; }
.lemon-card-tag.good { background: var(--gold); color: #0A0A0A; }

.lemon-icon { font-size: 2.4rem; margin: 0.5rem 0 1rem; }
.lemon-card.broker .lemon-icon { color: var(--red); }
.lemon-card.oneroad .lemon-icon { color: var(--gold); }
.lemon-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.7rem; color: var(--text-100); }
.lemon-card p { font-size: 0.88rem; color: var(--text-400); margin-bottom: 1.2rem; line-height: 1.65; }
.lemon-card p strong { color: var(--text-100); }

.lemon-list { list-style: none; text-align: left; display: flex; flex-direction: column; gap: 8px; }
.lemon-list li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.86rem; color: var(--text-400);
}
.lemon-list i.fa-times { color: var(--red); }
.lemon-list i.fa-check { color: var(--green); }

.lemon-vs-badge {
  font-size: 1.1rem; font-weight: 900; color: var(--text-400);
  background: var(--bg-600); border: 1px solid var(--border);
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.compare-table-wrap { max-width: 800px; margin: 0 auto; overflow-x: auto; }
.compare-table {
  width: 100%; border-collapse: collapse;
  background: var(--bg-card); border-radius: var(--radius);
  overflow: hidden;
}
.compare-table th {
  padding: 14px 20px; font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.05em; background: rgba(255,255,255,0.03);
  color: var(--text-400);
}
.compare-table th:first-child { text-align: left; }
.compare-table td {
  padding: 14px 20px; font-size: 0.88rem;
  text-align: center; border-top: 1px solid var(--border);
}
.compare-table td:first-child { text-align: left; color: var(--text-400); font-weight: 500; }
.col-bad  { color: var(--red); }
.col-good { color: var(--green); }
.col-bad  i { margin-right: 4px; }
.col-good i { margin-right: 4px; }
.compare-table th.col-bad  { color: var(--red); }
.compare-table th.col-good { color: var(--green); }

/* ─── OPERATION ─── */
.operation {
  padding: 100px 0;
  background: #F5F3EE; color: #1A1208;
  text-align: center;
}
.operation .section-title { color: #1A1208; }
.operation .section-title .text-accent { color: var(--gold-dark); }
.operation .section-tag { color: var(--gold-dark); background: rgba(160,120,40,0.1); border-color: rgba(160,120,40,0.25); }

.op-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0; align-items: start; margin-top: 3rem;
}
.op-card {
  background: white; border: 1.5px solid #E5E0D5;
  border-radius: var(--radius); padding: 34px 26px;
  text-align: center; transition: var(--transition);
}
.op-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.op-card.result {
  background: linear-gradient(135deg, #FBF5E8, #F5EBD0);
  border-color: rgba(160,120,40,0.3);
}
.op-num { font-size: 2.4rem; font-weight: 900; color: #E5E0D5; line-height: 1; margin-bottom: 10px; }
.op-card.result .op-num { color: var(--gold-dark); opacity: 0.35; }
.op-icon { font-size: 2rem; color: var(--gold-dark); margin-bottom: 10px; }
.op-card h3 { font-size: 1rem; font-weight: 700; color: #1A1208; margin-bottom: 10px; }
.op-highlight-num { font-size: 2.4rem; font-weight: 900; color: var(--gold-dark); line-height: 1; margin-bottom: 7px; }
.op-highlight-num span { font-size: 0.95rem; }
.op-card p { font-size: 0.86rem; color: #5A4E38; line-height: 1.7; }
.op-card p strong { color: var(--gold-dark); }

.op-sub-items { display: flex; flex-direction: column; gap: 7px; margin-top: 10px; }
.op-sub-items span {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; font-size: 0.78rem; color: var(--gold-dark);
  background: rgba(160,120,40,0.08); padding: 5px 10px;
  border-radius: 6px; font-weight: 600;
}
.op-result-badge { display: flex; flex-direction: column; gap: 6px; margin-top: 10px; }
.op-result-badge span {
  background: var(--gold-dark); color: white;
  font-size: 0.78rem; font-weight: 700;
  padding: 5px 12px; border-radius: 6px;
}
.op-arrow {
  display: flex; align-items: center; justify-content: center;
  width: 58px; color: #C0B090; font-size: 1.1rem; padding-top: 76px;
}

/* ─── DIAGNOSIS ─── */
.diagnosis { padding: 100px 0; background: var(--bg-900); text-align: center; }

.calculator-box {
  max-width: 580px; margin: 2.5rem auto 4rem;
  background: var(--bg-700);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 40px;
  position: relative;
}
.calc-step { display: none; }
.calc-step.active { display: block; animation: fadeIn 0.3s ease; }
.calc-step-header { display: flex; align-items: center; gap: 14px; margin-bottom: 1.5rem; text-align: left; }
.step-num {
  width: 34px; height: 34px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700; color: #0A0A0A; flex-shrink: 0;
}
.step-title { font-size: 1.02rem; font-weight: 700; color: var(--text-100); }

.calc-input-group { display: flex; align-items: center; gap: 8px; margin-bottom: 0.75rem; }
.calc-input-group input, .calc-custom-rate input {
  flex: 1;
  background: var(--bg-600);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px; color: white;
  font-size: 1rem; font-family: var(--font);
  transition: var(--transition);
}
.calc-input-group input:focus, .calc-custom-rate input:focus {
  outline: none; border-color: var(--gold);
  background: rgba(201,168,76,0.04);
}
.input-unit { font-size: 0.88rem; color: var(--text-400); font-weight: 600; }
.calc-hint { font-size: 0.78rem; color: var(--text-400); text-align: left; margin-bottom: 1.2rem; }

.calc-options { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; margin-bottom: 1rem; }
.calc-option {
  padding: 12px; background: var(--bg-600);
  border: 1.5px solid var(--border);
  border-radius: 10px; color: var(--text-200);
  font-size: 1rem; font-weight: 600; cursor: pointer;
  transition: var(--transition); font-family: var(--font);
}
.calc-option:hover, .calc-option.selected {
  background: rgba(201,168,76,0.1); border-color: var(--gold); color: var(--gold);
}
.calc-custom-rate { display: flex; align-items: center; gap: 8px; margin-bottom: 1rem; }

.btn-calc-next, .btn-calc-prev {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 50px;
  font-size: 0.92rem; font-weight: 600;
  cursor: pointer; transition: var(--transition); font-family: var(--font); border: none;
}
.btn-calc-next { background: var(--gold); color: #0A0A0A; }
.btn-calc-next:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-calc-prev {
  background: var(--bg-600); color: var(--text-400);
  border: 1px solid var(--border);
}
.btn-calc-prev:hover { color: white; }
.calc-nav { display: flex; gap: 10px; margin-top: 1.2rem; }
.calc-cta { display: inline-flex; align-items: center; gap: 8px; }

.calc-result { display: flex; flex-direction: column; gap: 12px; margin-bottom: 1.2rem; }
.calc-result-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 0; border-bottom: 1px solid var(--border); font-size: 0.92rem;
}
.calc-result-row.total {
  border-bottom: none; padding-top: 14px; font-weight: 700; font-size: 1.02rem;
}
.calc-result-divider { height: 1px; background: var(--border); margin: 4px 0; }
.result-num { font-weight: 700; }
.result-num.bad  { color: var(--red); }
.result-num.good { color: var(--green); }
.result-num.save { color: var(--gold); font-size: 1.3rem; }
.calc-result-msg {
  font-size: 0.88rem; color: var(--text-200);
  background: rgba(201,168,76,0.07);
  border: 1px solid var(--border-gold);
  border-radius: 8px; padding: 12px; margin-bottom: 1rem;
  text-align: left; line-height: 1.6;
}

.calc-progress {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-top: 1.5rem;
}
.prog-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--border); transition: var(--transition);
}
.prog-dot.active { background: var(--gold); box-shadow: 0 0 8px rgba(201,168,76,0.5); }
.prog-line { height: 2px; width: 40px; background: var(--border); }

/* 자가진단 */
.self-diag-intro { margin: 0 auto 1.5rem; max-width: 600px; }
.self-diag-intro h3 { font-size: 1.45rem; font-weight: 800; margin-bottom: 0.4rem; color: var(--text-100); }
.tag-5min {
  display: inline-block; background: var(--gold); color: #0A0A0A;
  font-size: 0.72rem; font-weight: 700;
  padding: 2px 10px; border-radius: 4px; margin-left: 6px; vertical-align: middle;
}
.self-diag-intro p { font-size: 0.92rem; color: var(--text-400); }

.wizard-box {
  max-width: 660px; margin: 0 auto;
  background: var(--bg-700);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 38px;
}
.wizard-step { display: none; }
.wizard-step.active { display: block; animation: fadeIn 0.3s ease; }
.wiz-step-indicator { margin-bottom: 1.5rem; }
.wiz-step-label { font-size: 0.72rem; color: var(--text-400); font-weight: 700; letter-spacing: 0.08em; }
.wiz-progress-bar { height: 4px; background: var(--border); border-radius: 2px; margin-top: 6px; overflow: hidden; }
.wiz-progress-fill {
  height: 100%; border-radius: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  transition: width 0.5s ease;
}
.wizard-step h4 { font-size: 1.08rem; font-weight: 700; margin-bottom: 1.4rem; text-align: left; color: var(--text-100); }

.wiz-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 1.5rem; }
.wiz-field { display: flex; flex-direction: column; gap: 5px; }
.wiz-field label { font-size: 0.78rem; color: var(--text-400); font-weight: 600; text-align: left; }
.wiz-field input, .wiz-field select {
  background: var(--bg-600); border: 1.5px solid var(--border);
  border-radius: 8px; padding: 10px 12px;
  color: white; font-size: 0.88rem; font-family: var(--font);
  transition: var(--transition);
}
.wiz-field input:focus, .wiz-field select:focus {
  outline: none; border-color: var(--gold);
}
.wiz-field select option { background: var(--bg-700); color: white; }

.wiz-radio-group { display: flex; gap: 10px; flex-wrap: wrap; }
.radio-label {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.82rem; color: var(--text-400); cursor: pointer;
  padding: 6px 12px; border-radius: 6px;
  border: 1px solid var(--border); transition: var(--transition);
}
.radio-label:hover { border-color: var(--gold); color: var(--gold); }
.radio-label input { accent-color: var(--gold); }

.wiz-check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 1.5rem; }
.wiz-check {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 8px;
  border: 1px solid var(--border); cursor: pointer;
  font-size: 0.8rem; color: var(--text-400);
  transition: var(--transition); text-align: left;
}
.wiz-check:hover { border-color: var(--gold); }
.wiz-check input { display: none; }
.wiz-check span i { color: transparent; margin-right: 4px; font-size: 0.68rem; }
.wiz-check input:checked ~ span { color: var(--green); }
.wiz-check input:checked ~ span i { color: var(--green); }
.wiz-check:has(input:checked) {
  border-color: rgba(76,175,125,0.4);
  background: rgba(76,175,125,0.05);
}

.btn-wiz-next, .btn-wiz-prev {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 50px;
  font-size: 0.92rem; font-weight: 600;
  cursor: pointer; transition: var(--transition); font-family: var(--font); border: none;
}
.btn-wiz-next { background: var(--gold); color: #0A0A0A; }
.btn-wiz-next:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-wiz-prev {
  background: var(--bg-600); color: var(--text-400);
  border: 1px solid var(--border);
}
.btn-wiz-prev:hover { color: white; }
.wiz-nav { display: flex; gap: 10px; margin-top: 1rem; }

.wiz-result { display: flex; flex-direction: column; gap: 1.5rem; align-items: center; margin-bottom: 1.5rem; }
.wiz-result-score { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.score-circle {
  width: 100px; height: 100px; border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-size: 2rem; font-weight: 900;
  border: 4px solid var(--gold);
  box-shadow: 0 0 24px rgba(201,168,76,0.35);
}
.score-circle small { font-size: 0.72rem; color: var(--text-400); }
.score-grade { font-size: 1.05rem; font-weight: 700; }
.wiz-result-items { width: 100%; display: flex; flex-direction: column; gap: 8px; text-align: left; }
.wiz-result-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 8px; font-size: 0.86rem;
}
.wiz-result-item.ok   { background: rgba(76,175,125,0.08); border: 1px solid rgba(76,175,125,0.25); color: var(--green); }
.wiz-result-item.warn { background: rgba(224,124,58,0.08); border: 1px solid rgba(224,124,58,0.25); color: var(--orange); }

.wiz-result-cta { text-align: center; padding: 18px; background: rgba(201,168,76,0.06); border: 1px solid var(--border-gold); border-radius: 10px; }
.wiz-result-cta p { font-size: 0.88rem; color: var(--text-400); margin-bottom: 12px; }
.wiz-result-cta p strong { color: var(--text-100); }

/* ─── FAQ ─── */
.faq { padding: 100px 0; background: #F5F3EE; color: #1A1208; }
.faq .section-title { color: #1A1208; }
.faq-list { max-width: 760px; margin: 2.5rem auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: white; border: 1.5px solid #E5E0D5;
  border-radius: var(--radius-sm); overflow: hidden; transition: var(--transition);
}
.faq-item.open { border-color: var(--gold); box-shadow: 0 4px 16px rgba(160,120,40,0.1); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; background: none; border: none; cursor: pointer;
  text-align: left; font-size: 0.98rem; font-weight: 600;
  color: #1A1208; font-family: var(--font); transition: var(--transition);
}
.faq-q:hover { color: var(--gold-dark); }
.faq-item.open .faq-q { color: var(--gold-dark); }
.faq-q i { transition: transform 0.3s ease; color: #C0B090; font-size: 0.88rem; flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(45deg); color: var(--gold-dark); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a p { padding: 0 24px 20px; font-size: 0.9rem; color: #5A4E38; line-height: 1.85; }
.faq-a p strong { color: var(--gold-dark); }

/* ─── CONTACT ─── */
.contact {
  padding: 100px 0;
  background: var(--bg-800);
}
.contact-wrap {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 48px; align-items: start;
  max-width: 900px; margin: 2.5rem auto 0;
}
.contact-info { display: flex; flex-direction: column; gap: 18px; }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 18px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.contact-info-item i { font-size: 1.1rem; color: var(--gold); width: 22px; flex-shrink: 0; margin-top: 2px; }
.contact-info-item strong { display: block; font-size: 0.76rem; color: var(--text-400); margin-bottom: 4px; }
.contact-info-item span { font-size: 0.92rem; font-weight: 600; color: var(--text-200); }

/* 카카오톡 단계별 안내 */
.contact-info-item.kakao-guide {
  border-color: rgba(255, 225, 0, 0.25);
  background: linear-gradient(135deg, var(--bg-card), rgba(255,225,0,0.04));
}
.kakao-icon { font-size: 1.4rem !important; color: #FFE01B !important; }
.kakao-step {
  display: flex !important;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem !important;
  color: var(--text-200) !important;
  font-weight: 500 !important;
  line-height: 1.6;
  margin-top: 2px;
}
.kakao-step strong { color: var(--gold-light); font-weight: 700; }
.kakao-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  min-width: 22px;
  background: rgba(201,168,76,0.2);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--gold);
}

.contact-qr { display: flex; justify-content: center; margin-top: 8px; }
.qr-placeholder {
  width: 115px; height: 115px;
  background: var(--bg-card);
  border: 2px dashed var(--border);
  border-radius: var(--radius-sm);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 7px; color: var(--text-600);
}
.qr-placeholder i { font-size: 2.4rem; }
.qr-placeholder span { font-size: 0.68rem; text-align: center; line-height: 1.4; }

.contact-form {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 34px;
}
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--text-400); margin-bottom: 5px; }
.required { color: var(--red); }
.form-group input, .form-group textarea {
  width: 100%; background: var(--bg-600);
  border: 1.5px solid var(--border); border-radius: 8px;
  padding: 11px 14px; color: white;
  font-size: 0.88rem; font-family: var(--font);
  transition: var(--transition); resize: none;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold); background: rgba(201,168,76,0.03);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-600); }

/* ── 개인정보 고지형 안내 박스 ── */
.privacy-notice {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(76,175,125,0.06);
  border: 1px solid rgba(76,175,125,0.22);
  border-radius: 10px;
  padding: 16px 18px;
  margin-bottom: 14px;
}
.privacy-notice-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: rgba(76,175,125,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.privacy-notice-icon i { font-size: 0.9rem; color: var(--green); }
.privacy-notice-title {
  font-size: 0.75rem; font-weight: 800;
  color: var(--green); letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 5px;
}
.privacy-notice-text {
  font-size: 0.82rem; color: var(--text-400); line-height: 1.7;
}
.privacy-notice-text strong { color: var(--text-200); }
.link-underline {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(201,168,76,0.4);
  font-weight: 600;
  transition: color 0.2s;
}
.link-underline:hover { color: var(--gold-light); }

/* ── 마케팅 선택 동의 ── */
.marketing-agree {
  background: rgba(201,168,76,0.04);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 18px;
}
.marketing-agree-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.marketing-agree-label input[type="checkbox"] { display: none; }
.marketing-agree-box {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border: 2px solid rgba(201,168,76,0.35);
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  background: transparent;
}
.marketing-agree-box i { font-size: 0.65rem; color: transparent; transition: color 0.2s; }
.marketing-agree-label input:checked ~ .marketing-agree-box {
  background: var(--gold);
  border-color: var(--gold);
}
.marketing-agree-label input:checked ~ .marketing-agree-box i { color: #000; }
.marketing-agree-text {
  font-size: 0.86rem; font-weight: 600;
  color: var(--text-200); line-height: 1.5;
  flex: 1;
}
.marketing-agree-badge {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  color: var(--gold);
  font-size: 0.72rem; font-weight: 800;
  padding: 1px 7px; border-radius: 4px;
  margin-right: 6px;
  vertical-align: middle;
}
.marketing-agree-ch {
  display: block;
  font-size: 0.75rem; font-weight: 400;
  color: var(--text-600);
  margin-top: 2px; font-style: normal;
}
.marketing-agree-detail {
  font-size: 0.78rem; color: var(--text-600);
  line-height: 1.7; margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.marketing-agree-detail strong { color: var(--text-400); }

/* ── 약관 링크 ── */
.form-terms-link {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-600);
  margin-top: 10px;
}
.form-terms-link a {
  color: var(--text-400);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.15);
  transition: color 0.2s;
}
.form-terms-link a:hover { color: var(--gold); }

/* 기존 체크박스 (삭제됨 — 하위 호환) */
.form-agree { margin-bottom: 1.1rem; display: flex; flex-direction: column; gap: 7px; }
.agree-label {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.78rem; color: var(--text-400); cursor: pointer;
}
.agree-label input { accent-color: var(--gold); }

.btn-submit {
  width: 100%; padding: 15px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0A0A0A; border: none; border-radius: 8px;
  font-size: 1rem; font-weight: 800; cursor: pointer;
  font-family: var(--font);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.btn-submit:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,0.3); }

.form-success {
  display: flex; flex-direction: column;
  align-items: center; gap: 12px; padding: 22px;
  background: rgba(76,175,125,0.08);
  border: 1px solid rgba(76,175,125,0.3);
  border-radius: 8px; margin-top: 1rem; text-align: center;
}
.form-success i { font-size: 1.9rem; color: var(--green); }
.form-success p { font-size: 0.88rem; color: var(--text-200); line-height: 1.6; }
.form-success.hidden { display: none; }

/* ─── FOOTER ─── */
.footer {
  background: #0A0A0A;
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
}
.footer-inner {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 40px;
  flex-wrap: wrap; margin-bottom: 28px;
}
.footer-brand .logo-text {
  font-size: 1rem; color: white;
  display: flex; align-items: center; gap: 6px;
}
.footer-brand p { font-size: 0.78rem; color: var(--text-600); margin-top: 6px; }
.footer-info p { font-size: 0.78rem; color: var(--text-600); line-height: 2.1; }
.footer-links { display: flex; gap: 18px; flex-direction: column; align-items: flex-end; }
.footer-links a {
  font-size: 0.78rem; color: var(--text-600);
  text-decoration: none; transition: var(--transition);
}
.footer-links a:hover { color: var(--text-400); }
.footer-copy {
  font-size: 0.72rem; color: rgba(255,255,255,0.2);
  text-align: center; border-top: 1px solid var(--border); padding-top: 18px;
}

/* ─── FLOATING BUTTONS ─── */
.float-btns {
  position: fixed; right: 18px; bottom: 38px;
  display: flex; flex-direction: column; gap: 10px; z-index: 999;
}
.float-btn {
  width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; text-decoration: none; border: none;
  cursor: pointer; transition: var(--transition);
  box-shadow: 0 4px 14px rgba(0,0,0,0.35);
}
.float-btn:hover { transform: scale(1.1); }
.float-btn.phone { background: var(--green); color: white; }
.float-btn.kakao { background: #FEE500; color: #1A1208; }
.float-btn.email { background: var(--bg-600); color: var(--gold); border: 1px solid var(--border-gold); }
.float-btn.top   { background: rgba(255,255,255,0.07); color: white; border: 1px solid var(--border); opacity: 0; pointer-events: none; transition: opacity 0.3s ease, transform 0.3s ease; }
.float-btn.top.visible { opacity: 1; pointer-events: all; }

/* ─── MOBILE NAV ─── */
.mobile-nav-overlay {
  position: fixed; inset: 0;
  background: rgba(10,10,10,0.98);
  z-index: 2000;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mobile-nav-overlay.open { transform: translateX(0); }
.mobile-nav-close {
  position: absolute; top: 20px; right: 20px;
  background: none; border: none; color: white;
  font-size: 1.4rem; cursor: pointer;
}
.mobile-nav-links { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.mobile-nav-links a {
  color: var(--text-400); text-decoration: none;
  font-size: 1.25rem; font-weight: 600; transition: var(--transition);
}
.mobile-nav-links a:hover { color: white; }
.mobile-cta {
  background: var(--gold) !important; color: #0A0A0A !important;
  padding: 14px 36px !important; border-radius: 50px; margin-top: 0.5rem;
}

/* ─── STICKY CTA ─── */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--gold);
  color: #0A0A0A;
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
  z-index: 998; font-weight: 700; font-size: 0.92rem;
  transform: translateY(100%); transition: transform 0.4s ease;
  box-shadow: 0 -4px 24px rgba(201,168,76,0.3);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta a {
  background: #0A0A0A; color: var(--gold);
  padding: 8px 18px; border-radius: 50px;
  text-decoration: none; font-weight: 700; font-size: 0.82rem; flex-shrink: 0;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp   { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:none; } }
@keyframes fadeDown { from { opacity:0; transform:translateY(-16px); } to { opacity:1; transform:none; } }
@keyframes fadeIn   { from { opacity:0; } to { opacity:1; } }

.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity:1; transform:none; }

.hidden { display: none !important; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .header-nav { display: none; }
  .hamburger  { display: flex; }

  .hero-visual { flex-direction: column; gap: 16px; }
  .badge-left, .badge-right { flex-direction: row; margin: 0; }
  .hero-dashboard { max-width: 100%; }

  .cost-grid { grid-template-columns: 1fr; }
  .cost-vs   { display: none; }

  .lemon-vs { grid-template-columns: 1fr; }
  .lemon-vs-badge { display: none; }

  .op-grid { grid-template-columns: 1fr; gap: 16px; }
  .op-arrow { transform: rotate(90deg); padding: 0; height: 36px; justify-content: center; }

  .contact-wrap { grid-template-columns: 1fr; }

  .trust-items  { gap: 24px; }
  .trust-item   { padding: 0 16px; }
  .trust-divider{ display: none; }

  .wiz-form-grid  { grid-template-columns: 1fr; }
  .wiz-check-grid { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; gap: 22px; }
  .footer-links { align-items: flex-start; flex-direction: row; }

  .stat-block { padding: 0 28px; }
}

@media (max-width: 600px) {
  .hero-title { font-size: 2rem; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .btn-primary.btn-large, .btn-ghost.btn-large { text-align: center; justify-content: center; }

  .wizard-box, .calculator-box { padding: 22px 16px; }
  .contact-form { padding: 22px 16px; }

  .float-btns { right: 10px; bottom: 22px; }
  .float-btn  { width: 42px; height: 42px; font-size: 0.88rem; }

  .iceberg-wrapper { max-width: 100%; }
}
