:root {
  --navy: #1B2A4A;
  --navy-mid: #2C4270;
  --teal: #1A7F6E;
  --teal-light: #22A08A;
  --teal-pale: #E8F5F2;
  --orange: #F47B2B;
  --orange-light: #FFF0E5;
  --white: #FFFFFF;
  --off-white: #F8F9FC;
  --gray-100: #F2F4F7;
  --gray-200: #E4E8EF;
  --gray-400: #9BA5B7;
  --gray-600: #5A6478;
  --gray-800: #2D3648;
  --text: #1C2434;
  --pad-x: clamp(24px, 7vw, 96px);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans KR', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  font-size: 17px;
  line-height: 1.85;
  letter-spacing: -0.01em;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}

/* 본문 단락 전역 가독성 */
p { line-height: 1.9; word-break: keep-all; }
strong { font-weight: 700; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--teal-light); border-radius: 3px; }

/* ── TOPBAR ── */
.topbar {
  position: fixed; top: 0; width: 100%; z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  padding: 16px var(--pad-x);
  display: flex; align-items: center; justify-content: space-between;
  transition: box-shadow 0.3s;
}
.topbar.scrolled { box-shadow: 0 4px 24px rgba(27,42,74,0.08); }
.logo-wrap { display: flex; align-items: center; gap: 10px; }
.logo-icon {
  width: 36px; height: 36px;
  background: var(--teal);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.logo-text {
  font-family: 'Noto Serif KR', serif;
  font-size: 17px; font-weight: 700;
  color: var(--navy);
}
.logo-text span { color: var(--teal); }
.nav-cta {
  background: var(--teal);
  color: var(--white);
  font-weight: 700; font-size: 13px;
  padding: 10px 22px;
  border: none; border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.03em;
}
.nav-cta:hover { background: var(--teal-light); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(26,127,110,0.25); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(150deg, #F0F7F5 0%, #FFFFFF 50%, #FFF6F0 100%);
  display: flex; align-items: center;
  padding: 120px var(--pad-x) 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(26,127,110,0.07) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute; bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(244,123,43,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner {
  max-width: 1100px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  position: relative; z-index: 1;
  padding: 0 var(--pad-x);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal-pale);
  border: 1px solid rgba(26,127,110,0.2);
  color: var(--teal);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em;
  padding: 7px 16px; border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeInUp 0.6s ease both;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.7)} }
.hero-title {
  font-family: 'Noto Serif KR', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900; line-height: 1.25;
  color: var(--navy); margin-bottom: 24px;
  animation: fadeInUp 0.6s ease 0.1s both;
}
.hero-title .accent { color: var(--teal); }
.hero-title .underline {
  position: relative; display: inline-block;
}
.hero-title .underline::after {
  content: '';
  position: absolute; bottom: 2px; left: 0; right: 0;
  height: 6px;
  background: rgba(26,127,110,0.15);
  z-index: -1;
}
.hero-desc {
  font-size: 16px; color: var(--gray-600);
  line-height: 1.85; margin-bottom: 40px;
  animation: fadeInUp 0.6s ease 0.2s both;
}
.hero-desc strong { color: var(--navy); font-weight: 600; }
.hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.3s both;
}
.btn-main {
  background: var(--teal);
  color: var(--white);
  font-weight: 700; font-size: 15px;
  padding: 16px 36px; border: none;
  border-radius: 8px; cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(26,127,110,0.25);
}
.btn-main:hover { background: var(--teal-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(26,127,110,0.3); }
.btn-sub {
  background: transparent;
  color: var(--navy); font-weight: 600; font-size: 15px;
  padding: 16px 28px;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px; cursor: pointer;
  transition: all 0.25s;
  display: flex; align-items: center; gap: 8px;
}
.btn-sub:hover { border-color: var(--teal); color: var(--teal); }
.hero-trust {
  margin-top: 40px; display: flex; gap: 24px; flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.4s both;
}
.trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; color: var(--gray-600);
}
.trust-dot {
  width: 18px; height: 18px;
  background: var(--teal-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; flex-shrink: 0;
}

/* HERO CARD */
.hero-visual { animation: fadeInRight 0.7s ease 0.2s both; }
.hero-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(27,42,74,0.12), 0 4px 16px rgba(27,42,74,0.06);
  overflow: hidden;
}
.hcard-header {
  background: var(--navy);
  padding: 24px 28px;
  display: flex; align-items: center; gap: 12px;
}
.hcard-header-icon { font-size: 24px; }
.hcard-header-text h4 { font-size: 15px; font-weight: 700; color: var(--white); }
.hcard-header-text p { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 2px; }
.hcard-body { padding: 24px 28px; }
.hcard-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
}
.hcard-row:last-child { border-bottom: none; }
.hcard-label { font-size: 14px; color: var(--gray-600); display: flex; align-items: center; gap: 8px; }
.hcard-val { font-size: 15px; font-weight: 700; color: var(--navy); }
.hcard-val.teal { color: var(--teal); }
.hcard-footer {
  background: var(--teal-pale);
  padding: 14px 28px;
  display: flex; align-items: center; justify-content: space-between;
}
.hcard-footer-label { font-size: 15px; color: var(--teal); font-weight: 600; }
.hcard-footer-val {
  font-family: 'Noto Serif KR', serif;
  font-size: 17px; font-weight: 800; color: var(--teal);
}
.tag-pill {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 100px;
  background: var(--teal-pale); color: var(--teal);
}
.tag-pill.orange { background: var(--orange-light); color: var(--orange); }

/* STATS */
.stats-bar {
  background: var(--navy);
  padding: 0;
  overflow: hidden;
}
.stats-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 32px 16px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background 0.2s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,0.04); }
.stat-num {
  font-family: 'Noto Serif KR', serif;
  font-size: 34px; font-weight: 900;
  color: var(--teal-light); display: block;
}
.stat-label { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 6px; letter-spacing: 0.05em; }

/* SECTIONS */
section { position: relative; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 var(--pad-x); }
.sec-wrap { padding: 100px 0; }
.sec-tag {
  display: inline-block;
  font-size: 12px; letter-spacing: 0.13em; font-weight: 700;
  color: var(--teal); text-transform: uppercase;
  background: var(--teal-pale);
  padding: 6px 16px; border-radius: 100px;
  margin-bottom: 18px;
}
.sec-title {
  font-family: 'Noto Serif KR', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700; line-height: 1.45;
  color: var(--navy); margin-bottom: 18px;
  word-break: keep-all;
}
.sec-title .accent { color: var(--teal); }
.sec-sub { font-size: 17px; color: var(--gray-600); line-height: 1.9; max-width: 560px; word-break: keep-all; }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(28px); transition: all 0.65s cubic-bezier(0.22,1,0.36,1); }
.reveal.visible { opacity: 1; transform: none; }

/* ── EDUCATION ── */
.edu-section { background: var(--white); }
.edu-cafe-block {
  background: linear-gradient(135deg, #1B2A4A 0%, #2C4270 100%);
  border-radius: 24px; padding: 48px 52px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  margin-bottom: 48px; position: relative; overflow: hidden;
}
.edu-cafe-block::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 240px; height: 240px; border-radius: 50%;
  background: rgba(26,127,110,0.12);
}
.edu-cafe-text h3 { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 16px; line-height: 1.45; }
.edu-cafe-text h3 span { color: var(--teal-light); }
.edu-cafe-text p { font-size: 16px; color: rgba(255,255,255,0.75); line-height: 1.8; margin-bottom: 20px; }
.edu-analogy {
  background: rgba(244,123,43,0.15); border-left: 3px solid var(--orange);
  border-radius: 0 8px 8px 0; padding: 14px 18px;
  font-size: 14px; color: #FFD4AA; line-height: 1.7;
}
.edu-analogy strong { color: var(--orange); font-weight: 700; }
.edu-flow-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; position: relative; }
.edu-flow-cards::before {
  content: ''; position: absolute; top: 44px; left: 18%;
  width: 64%; height: 2px;
  background: linear-gradient(to right, var(--teal-light), var(--orange)); z-index: 0;
}
.efc {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px; padding: 28px 20px 22px; text-align: center; position: relative; z-index: 1;
}
.efc-num {
  width: 44px; height: 44px; background: var(--teal); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 800; color: #fff; margin: 0 auto 14px; position: relative; z-index: 2;
}
.efc:last-child .efc-num { background: var(--orange); }
.efc h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.efc p { font-size: 12.5px; color: rgba(255,255,255,0.6); line-height: 1.6; }

.crank-block { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 48px; }
.crank-explain { background: var(--off-white); border-radius: 20px; padding: 40px; }
.crank-explain h3 { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.crank-explain .ce-sub { font-size: 15px; color: var(--gray-600); margin-bottom: 24px; }
.crank-steps { display: flex; flex-direction: column; gap: 12px; }
.cs-item {
  display: flex; gap: 14px; align-items: flex-start;
  background: #fff; border-radius: 12px; padding: 14px 16px; border: 1px solid var(--gray-200);
}
.cs-rank {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800;
  text-align: center; line-height: 1.3;
  flex-direction: column;
}
.cs-rank.r-a { background: #FFF0E5; color: var(--orange); border: 1.5px solid rgba(244,123,43,0.3); }
.cs-rank.r-b { background: #E8F5F2; color: var(--teal); border: 1.5px solid rgba(26,127,110,0.3); }
.cs-rank.r-c { background: #EEF2FF; color: #5B6EE8; border: 1.5px solid rgba(91,110,232,0.3); }
.cs-rank.r-none { background: var(--gray-100); color: var(--gray-400); border: 1.5px solid var(--gray-200); }
.cs-item-highlight {
  background: rgba(26,127,110,0.05);
  border: 1.5px solid rgba(26,127,110,0.25);
  border-radius: 12px;
  padding: 14px 16px;
  margin: 0 -2px;
  position: relative;
}
.cs-item-highlight::before {
  content: '📍 컨설팅 시작점';
  position: absolute; top: -10px; right: 12px;
  background: var(--teal); color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 2px 10px; border-radius: 20px;
  letter-spacing: 0.03em;
}
.cs-text strong { font-size: 15px; font-weight: 700; color: var(--navy); display: block; margin-bottom: 3px; }
.cs-text span { font-size: 14px; color: var(--gray-600); line-height: 1.8; }

.crank-visual { background: var(--navy); border-radius: 20px; padding: 36px; display: flex; flex-direction: column; justify-content: center; }
.cv-title { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.4); margin-bottom: 20px; letter-spacing: 0.06em; text-transform: uppercase; }
.cv-search-bar { background: #fff; border-radius: 10px; padding: 13px 18px; display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.cv-search-bar span { font-size: 14px; color: var(--gray-600); }
.cv-search-bar strong { color: var(--navy); font-weight: 600; }
.cv-results { display: flex; flex-direction: column; gap: 8px; }
.cv-result { border-radius: 10px; padding: 12px 16px; display: flex; align-items: center; gap: 12px; }
.cv-result.top1 { background: rgba(244,123,43,0.18); border: 1.5px solid rgba(244,123,43,0.4); }
.cv-result.top2 { background: rgba(26,127,110,0.15); border: 1.5px solid rgba(26,127,110,0.3); }
.cv-result.top3 { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); }
.cv-result.lower { background: transparent; border: 1px dashed rgba(255,255,255,0.1); opacity: 0.45; }
.cvr-rank {
  font-size: 11px; font-weight: 800; width: 26px; height: 26px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.top1 .cvr-rank { background: var(--orange); color: #fff; }
.top2 .cvr-rank { background: var(--teal); color: #fff; }
.top3 .cvr-rank { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.7); }
.lower .cvr-rank { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.3); }
.cvr-text strong { font-size: 13px; font-weight: 600; color: #fff; display: block; }
.cvr-text span { font-size: 11.5px; color: rgba(255,255,255,0.45); }
.cv-arrow { text-align: center; padding: 12px 0 6px; font-size: 12px; color: var(--teal-light); font-weight: 600; }

.edu-keys { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.edu-key-card {
  background: var(--off-white); border-radius: 18px; padding: 32px 28px;
  border: 1.5px solid var(--gray-200); position: relative; overflow: hidden;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.edu-key-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(27,42,74,0.1); border-color: var(--teal); }
.edu-key-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--teal), var(--orange));
  transform: scaleX(0); transition: transform .3s; transform-origin: left;
}
.edu-key-card:hover::after { transform: scaleX(1); }
.ek-icon { font-size: 32px; margin-bottom: 16px; display: block; }
.ek-num { font-size: 11px; font-weight: 800; color: var(--teal); letter-spacing: 0.1em; margin-bottom: 8px; }
.edu-key-card h4 { font-size: 17px; font-weight: 800; color: var(--navy); margin-bottom: 10px; line-height: 1.4; }
.edu-key-card p { font-size: 13.5px; color: var(--gray-600); line-height: 1.75; }
.ek-tag {
  display: inline-block; margin-top: 14px; padding: 4px 12px;
  background: var(--teal-pale); color: var(--teal); font-size: 12px; font-weight: 600; border-radius: 20px;
}
@media(max-width:768px) {
  .edu-cafe-block { grid-template-columns: 1fr; padding: 28px 20px; gap: 24px; }
  .edu-flow-cards { grid-template-columns: 1fr; }
  .edu-flow-cards::before { display: none; }
  .crank-block { grid-template-columns: 1fr; }
  .edu-keys { grid-template-columns: 1fr; }
}

/* ── PAIN ── */
.pain-section { background: var(--off-white); }
.pain-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 56px;
}
.pain-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  border: 1.5px solid var(--gray-200);
  transition: all 0.3s;
  position: relative;
}
.pain-card::before {
  content: '';
  position: absolute; top: 0; left: 24px; right: 24px;
  height: 3px; border-radius: 0 0 3px 3px;
  background: var(--gray-200);
  transition: background 0.3s;
}
.pain-card:hover { border-color: rgba(26,127,110,0.25); box-shadow: 0 8px 32px rgba(26,127,110,0.08); transform: translateY(-3px); }
.pain-card:hover::before { background: var(--teal); }
.pain-emoji { font-size: 32px; margin-bottom: 16px; }
.pain-card h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.pain-card p { font-size: 15px; color: var(--gray-600); line-height: 1.75; }

/* ── SOLUTION ── */
.solution-section { background: var(--white); }
.solution-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: start; margin-top: 56px;
}
.sol-steps { display: flex; flex-direction: column; gap: 0; }
.sol-step {
  display: flex; gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-100);
  transition: all 0.2s;
}
.sol-step:last-child { border-bottom: none; }
.sol-step:hover .sol-num { background: var(--teal); color: var(--white); }
.sol-num {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--teal-pale);
  color: var(--teal);
  font-weight: 800; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}
.sol-text h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.sol-text p { font-size: 15px; color: var(--gray-600); line-height: 1.75; }
.sol-text strong { color: var(--teal); font-weight: 600; }

/* 수익 시뮬레이션 카드 */
.sim-card {
  background: var(--navy);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(27,42,74,0.18);
}
.sim-header {
  padding: 24px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; gap: 12px;
}
.sim-header h4 { font-size: 15px; font-weight: 700; color: var(--white); }
.sim-header p { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 2px; }
.sim-body { padding: 8px 0; }
.sim-row {
  padding: 16px 28px;
  display: flex; align-items: flex-start; gap: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.2s;
}
.sim-row:last-child { border-bottom: none; }
.sim-row:hover { background: rgba(255,255,255,0.03); }
.sim-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(26,127,110,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.sim-info h5 { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.9); }
.sim-info p { font-size: 11px; color: rgba(255,255,255,0.45); margin-top: 3px; }
.sim-range {
  margin-left: auto; text-align: right; flex-shrink: 0;
}
.sim-range .val { font-size: 14px; font-weight: 700; color: var(--teal-light); }
.sim-range .sub { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 2px; }
.sim-footer {
  background: rgba(26,127,110,0.15);
  border-top: 1px solid rgba(26,127,110,0.25);
  padding: 20px 28px;
  display: flex; align-items: center; justify-content: space-between;
}
.sim-footer-label { font-size: 12px; color: rgba(255,255,255,0.6); font-weight: 600; }
.sim-footer-val {
  font-family: 'Noto Serif KR', serif;
  font-size: 26px; font-weight: 900; color: var(--teal-light);
}
.sim-disclaimer {
  padding: 12px 28px;
  font-size: 11px; color: rgba(255,255,255,0.3);
  line-height: 1.6;
  background: rgba(0,0,0,0.15);
}

/* ── CURRICULUM ── */
.curriculum-section { background: var(--off-white); }
.curriculum-tabs-wrap {
  margin: 48px 0 32px;
}
.curriculum-tabs-hint {
  font-size: 12px; font-weight: 600; color: var(--teal);
  margin-bottom: 12px; display: flex; align-items: center; gap: 6px;
  letter-spacing: 0.03em;
}
.curriculum-tabs-hint::before {
  content: '👆';
  font-size: 14px;
  animation: bounce-hint 1.4s ease-in-out infinite;
}
@keyframes bounce-hint {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
.curriculum-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.ctab {
  padding: 12px 10px;
  font-size: 12.5px; font-weight: 600;
  border-radius: 10px;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-600);
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  line-height: 1.5;
  position: relative;
}
.ctab::after {
  content: '';
  position: absolute; bottom: -6px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid var(--teal);
  opacity: 0; transition: opacity 0.2s;
}
.ctab.active {
  background: var(--teal); color: var(--white);
  border-color: var(--teal);
  box-shadow: 0 4px 14px rgba(26,127,110,0.3);
}
.ctab.active::after { opacity: 1; }
.ctab:hover:not(.active) { border-color: var(--teal); color: var(--teal); background: var(--teal-pale); }
.curriculum-panel { display: none; }
.curriculum-panel.active { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cur-card {
  background: var(--white);
  border-radius: 14px;
  padding: 28px 24px;
  border: 1.5px solid var(--gray-200);
  transition: all 0.25s;
}
.cur-card:hover { border-color: var(--teal); box-shadow: 0 6px 24px rgba(26,127,110,0.08); }
.cur-week {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  color: var(--orange); background: var(--orange-light);
  padding: 3px 10px; border-radius: 100px;
  display: inline-block; margin-bottom: 14px;
}
.cur-card h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.cur-list { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.cur-list li {
  font-size: 14px; color: var(--gray-600);
  display: flex; align-items: flex-start; gap: 8px; line-height: 1.7;
}
.cur-list li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ── REVENUE MODEL ── */
.revenue-section { background: var(--off-white); overflow: hidden; }
.re-analogy-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 8px 48px rgba(27,42,74,0.12);
  margin-bottom: 72px;
}
.re-ana-left {
  background: linear-gradient(160deg, #1B2A4A 0%, #243660 100%);
  padding: 52px 48px; position: relative; overflow: hidden;
}
.re-ana-left::before {
  content: '🏙️'; position: absolute; right: -20px; bottom: -20px;
  font-size: 140px; opacity: 0.08; line-height: 1;
}
.re-ana-left .ral-tag {
  display: inline-block; padding: 5px 14px;
  background: rgba(26,127,110,0.25); color: var(--teal-light);
  font-size: 12px; font-weight: 700; border-radius: 20px;
  margin-bottom: 20px; letter-spacing: 0.05em;
}
.re-ana-left h3 { font-size: clamp(19px,2.3vw,25px); font-weight: 800; color: #fff; line-height: 1.5; margin-bottom: 20px; }
.re-ana-left h3 span { color: var(--teal-light); }
.re-ana-left p { font-size: 14.5px; color: rgba(255,255,255,0.7); line-height: 1.85; }
.re-ana-right { background: #fff; padding: 52px 48px; display: flex; flex-direction: column; justify-content: center; }
.re-compare-rows { display: flex; flex-direction: column; gap: 12px; }
.rc-label {
  font-size: 11px; font-weight: 800; color: var(--gray-400); letter-spacing: 0.08em;
  display: grid; grid-template-columns: 1fr 20px 1fr; gap: 12px; margin-bottom: 8px;
}
.rc-label span:first-child { color: var(--gray-600); }
.rc-label span:last-child { color: var(--teal); text-align: right; }
.rc-row { display: grid; grid-template-columns: 1fr 20px 1fr; align-items: center; gap: 12px; }
.rc-left {
  background: var(--off-white); border-radius: 10px;
  padding: 12px 16px; font-size: 13px; color: var(--navy); font-weight: 500;
}
.rc-right {
  background: var(--teal-pale); border-radius: 10px;
  padding: 12px 16px; font-size: 13px; color: var(--teal); font-weight: 700;
}
.rc-arrow { font-size: 16px; color: var(--gray-400); text-align: center; }

.rm-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 40px; }
.rm-card {
  background: #fff; border-radius: 20px; border: 1.5px solid var(--gray-200);
  overflow: hidden; transition: transform .25s, box-shadow .25s, border-color .25s; position: relative;
}
.rm-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(27,42,74,0.11); border-color: var(--teal); }
.rm-card-head { padding: 28px 28px 20px; border-bottom: 1.5px solid var(--gray-100); position: relative; }
.rm-card-head::after {
  content: ''; position: absolute; bottom: -1.5px; left: 0;
  width: 60px; height: 3px;
  background: linear-gradient(to right, var(--teal), var(--orange));
  border-radius: 0 3px 0 0; transition: width .3s;
}
.rm-card:hover .rm-card-head::after { width: 100%; }
.rm-icon { font-size: 36px; margin-bottom: 14px; display: block; }
.rm-type { font-size: 11px; font-weight: 800; letter-spacing: 0.1em; color: var(--teal); margin-bottom: 6px; }
.rm-card h4 { font-size: 17px; font-weight: 800; color: var(--navy); line-height: 1.4; }
.rm-card-body { padding: 20px 28px 26px; }
.rm-card-body p { font-size: 15px; color: var(--gray-600); line-height: 1.8; margin-bottom: 14px; }
.rm-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.rm-tag { padding: 4px 11px; border-radius: 20px; font-size: 12px; font-weight: 600; background: var(--gray-100); color: var(--gray-600); }
.rm-tag.hot { background: rgba(244,123,43,0.12); color: var(--orange); }
.rm-tag.new { background: var(--teal-pale); color: var(--teal); }
.rm-earn { margin-top: 14px; padding: 10px 14px; background: var(--off-white); border-radius: 10px; font-size: 14px; color: var(--navy); font-weight: 600; }
.rm-earn::before { content: '💰 예상 수익: '; }
.rm-card.rm-highlight { border-color: rgba(244,123,43,0.35); background: linear-gradient(160deg,#fff 55%,var(--orange-light)); }
.rm-highlight .rm-type { color: var(--orange); }
.rm-highlight .rm-card-head::after { background: var(--orange); width: 80px; }

.rm-pyramid-wrap {
  background: var(--navy); border-radius: 24px; padding: 52px 48px; margin-top: 8px;
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 48px; align-items: center;
}
.rp-title { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.4); letter-spacing: 0.08em; margin-bottom: 20px; }
.rp-levels { display: flex; flex-direction: column; gap: 10px; }
.rp-level { border-radius: 10px; padding: 14px 20px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.rp-level.lv1 { background: rgba(244,123,43,0.2); border: 1.5px solid rgba(244,123,43,0.4); }
.rp-level.lv2 { background: rgba(26,127,110,0.18); border: 1.5px solid rgba(26,127,110,0.35); }
.rp-level.lv3 { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); }
.rp-lv-label { font-size: 14px; font-weight: 700; color: #fff; }
.rp-lv-sub { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 2px; }
.rp-lv-earn { font-size: 14px; font-weight: 800; white-space: nowrap; }
.lv1 .rp-lv-earn { color: var(--orange); }
.lv2 .rp-lv-earn { color: var(--teal-light); }
.lv3 .rp-lv-earn { color: rgba(255,255,255,0.5); }
.rp-note { padding: 16px 20px; background: rgba(255,255,255,0.05); border-radius: 12px; border: 1px solid rgba(255,255,255,0.1); }
.rp-note p { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.85; }
.rp-note strong { color: #fff; }
.rp-note .rn-tag { display: inline-block; padding: 3px 10px; background: rgba(244,123,43,0.2); color: var(--orange); font-size: 11px; font-weight: 700; border-radius: 12px; margin-bottom: 12px; }

@media(max-width:768px) {
  .re-analogy-wrap { grid-template-columns: 1fr; border-radius: 20px; }
  .re-ana-left, .re-ana-right { padding: 28px 20px; }
  .rm-grid { grid-template-columns: 1fr; }
  .rm-pyramid-wrap { grid-template-columns: 1fr; padding: 28px 20px; gap: 24px; border-radius: 16px; }
  .rc-row, .rc-label { grid-template-columns: 1fr 18px 1fr; gap: 6px; }
  .rc-left, .rc-right { font-size: 12px; padding: 10px 12px; }
}

/* ── WHY ── */
.why-section { background: var(--white); }
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 56px;
}
.why-card {
  border-radius: 16px;
  padding: 36px 28px;
  border: 1.5px solid var(--gray-200);
  transition: all 0.3s;
}
.why-card:hover { border-color: var(--teal); box-shadow: 0 8px 32px rgba(26,127,110,0.08); transform: translateY(-4px); }
.why-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--teal-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 20px;
}
.why-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.why-card p { font-size: 15px; color: var(--gray-600); line-height: 1.75; }
.why-card strong { color: var(--teal); font-weight: 600; }

/* ── PROCESS ── */
.process-section { background: var(--navy); }
.process-steps {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 0; margin-top: 56px;
  position: relative;
  padding: 0 8px;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 44px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light), var(--teal));
  z-index: 0;
}
.ps {
  text-align: center; padding: 0 16px;
  position: relative; z-index: 1;
}
.ps-dot {
  width: 28px; height: 28px;
  background: var(--teal);
  border-radius: 50%;
  margin: 30px auto 28px;
  box-shadow: 0 0 0 6px rgba(26,127,110,0.2), 0 0 0 12px rgba(26,127,110,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: var(--white);
}
.ps-badge-label { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.07); padding: 2px 10px; border-radius: 100px; display: inline-block; margin-bottom: 6px; }
.ps-badge-label.income { background: rgba(244,123,43,0.2); color: #F4A86E; }
.ps-month { font-size: 11px; letter-spacing: 0.12em; color: var(--teal-light); font-weight: 700; margin-bottom: 10px; }
.ps-title { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 10px; line-height: 1.4; }
.ps-desc { font-size: 13.5px; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* ── CONTRACT PROCESS ── */
.contract-process-section { background: var(--off-white); }
.cp-steps {
  display: flex; flex-direction: column; gap: 0;
  margin-top: 48px; position: relative;
  max-width: 720px;
}
.cp-steps::before {
  content: '';
  position: absolute; left: 27px; top: 28px; bottom: 28px;
  width: 2px;
  background: linear-gradient(180deg, var(--teal) 0%, var(--teal-light) 70%, rgba(26,127,110,0.1) 100%);
  z-index: 0;
}
.cp-step {
  display: flex; align-items: flex-start; gap: 24px;
  position: relative; z-index: 1;
  padding-bottom: 28px;
}
.cp-step:last-child { padding-bottom: 0; }
.cp-num {
  flex-shrink: 0;
  width: 56px; height: 56px;
  background: var(--white);
  border: 2px solid var(--teal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800; color: var(--teal);
  box-shadow: 0 4px 16px rgba(26,127,110,0.12);
}
.cp-step.cp-final .cp-num {
  background: var(--teal); color: var(--white);
  box-shadow: 0 4px 20px rgba(26,127,110,0.3);
}
.cp-body {
  flex: 1; margin-top: 4px;
  background: var(--white);
  border-radius: 16px;
  border: 1.5px solid var(--gray-200);
  padding: 22px 28px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.cp-body:hover { border-color: var(--teal); box-shadow: 0 6px 24px rgba(26,127,110,0.08); }
.cp-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.13em;
  color: var(--teal); text-transform: uppercase; margin-bottom: 6px;
}
.cp-title { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 6px; line-height: 1.4; }
.cp-desc { font-size: 15px; color: var(--gray-600); line-height: 1.8; }
.cp-note {
  margin-top: 12px; display: flex; align-items: flex-start; gap: 8px;
  background: var(--teal-pale); border-radius: 10px;
  padding: 10px 14px; font-size: 13.5px; color: var(--teal); line-height: 1.7;
}
.cp-note::before { content: '📍'; flex-shrink: 0; }
.cp-step.cp-final .cp-body {
  background: linear-gradient(135deg, #EFF8F6 0%, #F4F9FF 100%);
  border-color: rgba(26,127,110,0.25);
}
.cp-premium-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 700;
  background: rgba(244,123,43,0.1); color: var(--orange);
  border-radius: 20px; padding: 3px 12px; margin-top: 10px;
}

/* ── CONTRACT ── */
.contract-section { background: linear-gradient(135deg, #EFF8F6 0%, #F8F9FC 100%); }
.contract-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
.contract-badge-wrap { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.contract-badge {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--white);
  border-radius: 12px;
  padding: 18px 20px;
  border: 1.5px solid var(--gray-200);
  transition: all 0.2s;
}
.contract-badge:hover { border-color: var(--teal); box-shadow: 0 4px 16px rgba(26,127,110,0.08); }
.cb-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--teal-pale);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.cb-text h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.cb-text p { font-size: 14px; color: var(--gray-600); line-height: 1.8; }
.contract-visual-wrap {
  position: relative;
}
.contract-doc {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 12px 40px rgba(27,42,74,0.1);
  border: 1.5px solid var(--gray-200);
}
.doc-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px; padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-100);
}
.doc-icon { font-size: 28px; }
.doc-title { font-size: 15px; font-weight: 700; color: var(--navy); }
.doc-sub { font-size: 12px; color: var(--gray-400); margin-top: 2px; }
.doc-row {
  display: flex; justify-content: space-between;
  align-items: center; padding: 10px 0;
  border-bottom: 1px dashed var(--gray-100);
  font-size: 13px;
}
.doc-row:last-of-type { border-bottom: none; }
.doc-key { color: var(--gray-600); }
.doc-val { font-weight: 600; color: var(--navy); }
.doc-val.teal { color: var(--teal); }
.doc-sign {
  margin-top: 20px; padding-top: 20px;
  border-top: 1px solid var(--gray-100);
  display: flex; align-items: center; justify-content: space-between;
}
.sign-block {
  display: flex; flex-direction: column; gap: 4px;
  align-items: center;
}
.sign-line {
  width: 100px; height: 1px;
  background: var(--gray-200);
}
.sign-label { font-size: 11px; color: var(--gray-400); }

/* ── PRICING ── */
.pricing-section { background: var(--off-white); }
.pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin-top: 56px;
}
.price-card {
  background: var(--white);
  border-radius: 20px;
  padding: 44px 40px;
  border: 2px solid var(--gray-200);
  transition: all 0.3s; position: relative; overflow: hidden;
}
.price-card.featured {
  border-color: var(--teal);
  box-shadow: 0 12px 48px rgba(26,127,110,0.12);
}
.price-card.featured::before {
  content: '추천';
  position: absolute; top: 20px; right: 20px;
  background: var(--teal); color: var(--white);
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  padding: 4px 12px; border-radius: 100px;
}
.price-card:not(.featured):hover {
  border-color: rgba(26,127,110,0.3);
  box-shadow: 0 8px 32px rgba(27,42,74,0.08);
}
.price-name { font-size: 12px; font-weight: 700; color: var(--gray-400); letter-spacing: 0.1em; margin-bottom: 10px; }
.price-amount {
  font-family: 'Noto Serif KR', serif;
  font-size: 48px; font-weight: 900; color: var(--navy);
  line-height: 1; margin-bottom: 6px;
}
.price-amount span { font-size: 20px; color: var(--gray-400); }
.price-desc { font-size: 14px; color: var(--gray-600); margin-bottom: 6px; }
.price-vat {
  display: flex; flex-direction: column; gap: 5px;
  margin: 14px 0 24px;
}
.vat-tag {
  display: inline-block;
  font-size: 12px; font-weight: 700;
  color: var(--orange); background: var(--orange-light);
  padding: 4px 12px; border-radius: 100px;
  width: fit-content;
}
.receipt-tag {
  display: inline-block;
  font-size: 12px; color: var(--gray-600);
  background: var(--gray-100);
  padding: 4px 12px; border-radius: 100px;
  width: fit-content;
}
.price-divider { height: 1px; background: var(--gray-100); margin: 20px 0; }
.price-feature {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--gray-800); margin-bottom: 12px;
  line-height: 1.5;
}
.pf-check {
  width: 20px; height: 20px; flex-shrink: 0;
  background: var(--teal); border-radius: 50%;
  color: var(--white); font-size: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.pf-check.secondary { background: var(--gray-200); color: var(--gray-600); }
.price-cta {
  width: 100%; padding: 16px;
  font-size: 15px; font-weight: 700;
  border-radius: 10px; border: none; cursor: pointer;
  transition: all 0.25s; margin-top: 28px; letter-spacing: 0.02em;
}
.price-cta.primary {
  background: var(--teal); color: var(--white);
  box-shadow: 0 4px 20px rgba(26,127,110,0.25);
}
.price-cta.primary:hover { background: var(--teal-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(26,127,110,0.3); }
.price-cta.secondary-btn {
  background: transparent; color: var(--navy);
  border: 2px solid var(--gray-200);
}
.price-cta.secondary-btn:hover { border-color: var(--teal); color: var(--teal); }

/* 가격 카드 추가 요소 */
.price-badge-top {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px; font-weight: 700;
  margin-bottom: 14px;
  background: var(--teal-pale); color: var(--teal);
}
.price-card.featured .price-badge-top {
  background: rgba(244,123,43,0.15); color: var(--orange);
}
.price-section-label {
  font-size: 12px; font-weight: 700;
  color: var(--gray-400); letter-spacing: 0.05em;
  margin: 16px 0 10px; text-transform: uppercase;
}
.diff-label { color: #C0392B; }
.price-feature.pf-minus { opacity: 0.65; }
.pf-x {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(192,57,43,0.12); color: #C0392B;
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-right: 10px;
}
.price-note-box {
  background: var(--orange-light); border-left: 3px solid var(--orange);
  border-radius: 0 8px 8px 0;
  padding: 12px 16px; font-size: 13px; color: #7A5C2E;
  line-height: 1.7; margin: 16px 0;
}

/* 과정 비교표 */
.price-compare {
  margin-top: 56px;
  background: var(--white);
  border-radius: 20px;
  border: 1.5px solid var(--gray-200);
  overflow: hidden;
}
.pc-title {
  background: var(--navy); color: rgba(255,255,255,0.8);
  font-size: 14px; font-weight: 700;
  padding: 16px 28px; letter-spacing: 0.04em;
}
.pc-table { padding: 0; }
.pc-head, .pc-row {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.4fr;
  border-bottom: 1px solid var(--gray-100);
}
.pc-row:last-child { border-bottom: none; }
.pc-head { background: var(--off-white); }
.pc-head .pc-col { font-weight: 700; font-size: 14px; }
.pc-col-label {
  padding: 14px 24px; font-size: 13.5px; color: var(--gray-600);
  display: flex; align-items: center;
  border-right: 1px solid var(--gray-100);
}
.pc-col {
  padding: 14px 20px; font-size: 13.5px; color: var(--gray-800);
  display: flex; align-items: center;
  border-right: 1px solid var(--gray-100);
}
.pc-col:last-child { border-right: none; }
.pc-col-starter { color: var(--navy); }
.pc-col-premium { color: var(--orange); }
.pc-hl {
  background: rgba(244,123,43,0.05);
  color: var(--navy); font-weight: 600;
}
.pc-rec { font-size: 12.5px; line-height: 1.6; color: var(--gray-600); }
.pc-hl.pc-rec { color: var(--navy); font-weight: 700; }
.pc-row-last .pc-col-label { font-weight: 600; color: var(--navy); }
@media(max-width:768px) {
  .pc-head, .pc-row { grid-template-columns: 1.5fr 1fr 1.2fr; }
  .pc-col-label { padding: 12px 14px; font-size: 12px; }
  .pc-col { padding: 12px 12px; font-size: 12px; }
}

/* ── WHY SHARE ── */
.why-share-wrap {
  background: #fff;
  border-radius: 24px;
  border: 1.5px solid var(--gray-200);
  overflow: hidden;
  margin-bottom: 72px;
  box-shadow: 0 4px 32px rgba(27,42,74,0.07);
}
.ws-header {
  background: linear-gradient(135deg, #1B2A4A 0%, #2C4270 100%);
  padding: 40px 48px;
  display: flex; align-items: flex-start; gap: 24px;
  position: relative; overflow: hidden;
}
.ws-header::after {
  content: '?';
  position: absolute; right: 40px; top: -10px;
  font-size: 180px; font-weight: 900;
  color: rgba(255,255,255,0.04); line-height: 1;
  font-family: 'Noto Serif KR', serif;
}
.ws-q-mark {
  font-size: 64px; font-weight: 900; line-height: 0.7;
  color: var(--teal-light); font-family: 'Noto Serif KR', serif;
  flex-shrink: 0; margin-top: 8px;
}
.ws-eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.45); margin-bottom: 12px;
  text-transform: uppercase;
}
.ws-question {
  font-size: clamp(20px, 2.5vw, 28px); font-weight: 800;
  color: #fff; line-height: 1.45;
}
.ws-body {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0;
}
.ws-left {
  padding: 44px 48px;
  border-right: 1.5px solid var(--gray-100);
  display: flex; flex-direction: column; gap: 28px;
}
.ws-block { display: flex; gap: 16px; align-items: flex-start; }
.ws-block-icon {
  flex-shrink: 0;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--off-white); border: 1.5px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-top: 2px;
}
.ws-block h4 {
  font-size: 16px; font-weight: 700; color: var(--navy);
  margin-bottom: 8px; line-height: 1.45;
}
.ws-block p { font-size: 13.5px; color: var(--gray-600); line-height: 1.8; }

.ws-right { padding: 44px 48px; background: var(--off-white); display: flex; flex-direction: column; gap: 20px; }
.ws-win-card {
  background: #fff; border-radius: 16px;
  border: 1.5px solid var(--gray-200);
  overflow: hidden;
}
.ws-win-title {
  background: var(--navy); color: rgba(255,255,255,0.8);
  font-size: 13px; font-weight: 700;
  padding: 13px 20px; letter-spacing: 0.03em;
}
.ws-win-rows { padding: 20px; display: flex; flex-direction: column; gap: 4px; }
.ws-win-row {
  background: var(--off-white); border-radius: 12px;
  padding: 16px 18px; display: flex; gap: 14px; align-items: flex-start;
}
.ws-who {
  flex-shrink: 0; font-size: 11px; font-weight: 800;
  padding: 4px 10px; border-radius: 20px;
  white-space: nowrap; margin-top: 2px;
}
.ws-who-us { background: rgba(26,127,110,0.12); color: var(--teal); }
.ws-who-client { background: rgba(244,123,43,0.12); color: var(--orange); }
.ws-win-content strong { font-size: 13px; font-weight: 700; color: var(--navy); display: block; margin-bottom: 8px; }
.ws-win-content ul { margin: 0; padding-left: 16px; }
.ws-win-content ul li { font-size: 13.5px; color: var(--gray-600); line-height: 1.75; }
.ws-divider-row {
  text-align: center; color: var(--gray-400);
  font-size: 18px; padding: 4px 0;
}
.ws-note {
  display: flex; gap: 12px; align-items: flex-start;
  background: rgba(26,127,110,0.06);
  border: 1.5px solid rgba(26,127,110,0.15);
  border-radius: 14px; padding: 16px 20px;
}
.ws-note span { font-size: 20px; flex-shrink: 0; }
.ws-note p {
  font-size: 14px; color: var(--gray-600); line-height: 1.8;
  font-style: italic;
}

@media(max-width:768px) {
  .ws-header { padding: 24px 20px; gap: 14px; }
  .ws-q-mark { font-size: 44px; }
  .ws-body { grid-template-columns: 1fr; }
  .ws-left { padding: 24px 20px; border-right: none; border-bottom: 1.5px solid var(--gray-100); }
  .ws-right { padding: 24px 20px; }
}

/* ── FAQ ── */
.faq-section { background: var(--white); }
.faq-list { margin-top: 48px; max-width: 740px; }
.faq-item { border-bottom: 1px solid var(--gray-100); }
.faq-q {
  padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; gap: 20px;
  font-size: 16px; font-weight: 600; color: var(--navy);
  transition: color 0.2s;
}
.faq-q:hover { color: var(--teal); }
.faq-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  border: 1.5px solid var(--gray-200); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--gray-400);
  transition: all 0.25s;
}
.faq-item.open .faq-icon { background: var(--teal); border-color: var(--teal); color: var(--white); transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  font-size: 15px; color: var(--gray-600); line-height: 1.95;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 22px; }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy-mid) 100%);
  padding: 80px var(--pad-x); text-align: center;
}
.cta-band .container { max-width: 720px; }
.cta-band h2 {
  font-family: 'Noto Serif KR', serif;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700; color: var(--white); margin-bottom: 16px;
}
.cta-band p { font-size: 16px; color: rgba(255,255,255,0.75); margin-bottom: 36px; }
.btn-cta-white {
  background: var(--white); color: var(--teal);
  font-weight: 800; font-size: 16px;
  padding: 18px 48px; border: none;
  border-radius: 10px; cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
}
.btn-cta-white:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(0,0,0,0.2); }

/* ── FORM ── */
.form-section { background: var(--off-white); }
.form-layout {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 56px; align-items: start;
}
.form-info h2 {
  font-family: 'Noto Serif KR', serif;
  font-size: 34px; font-weight: 700;
  color: var(--navy); margin-bottom: 16px; line-height: 1.35;
}
.form-info p { font-size: 16px; color: var(--gray-600); line-height: 1.8; margin-bottom: 32px; }
.urgency-box {
  background: #FFF3F0;
  border: 1.5px solid rgba(244,123,43,0.25);
  border-radius: 12px;
  padding: 20px 22px;
  margin-bottom: 28px;
}
.urgency-box h4 { font-size: 14px; font-weight: 700; color: var(--orange); margin-bottom: 6px; }
.urgency-box p { font-size: 13px; color: var(--gray-600); line-height: 1.6; }
.fc-list { display: flex; flex-direction: column; gap: 12px; }
.fc-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--gray-600); }
.fc-icon {
  width: 28px; height: 28px;
  background: var(--teal-pale); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; flex-shrink: 0;
}
.consult-form {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 40px rgba(27,42,74,0.08);
  border: 1.5px solid var(--gray-200);
}
.form-title { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.form-subtitle { font-size: 14px; color: var(--gray-400); margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-label {
  display: block; font-size: 15px; font-weight: 700;
  color: var(--navy); margin-bottom: 8px;
}
.form-label span { color: var(--teal); }
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--off-white);
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  color: var(--text);
  font-family: 'Noto Sans KR', 'Apple SD Gothic Neo', sans-serif;
  font-size: 15px; padding: 13px 16px;
  outline: none; transition: all 0.2s;
  -webkit-appearance: none; appearance: none;
}
.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231A7F6E' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 40px;
}
.form-select option { background: var(--white); color: var(--text); }
.form-textarea { resize: vertical; min-height: 110px; line-height: 1.7; }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--teal); background: var(--white);
  box-shadow: 0 0 0 3px rgba(26,127,110,0.1);
}
.form-input.error, .form-select.error, .form-textarea.error {
  border-color: #E53E3E;
  box-shadow: 0 0 0 3px rgba(229,62,62,0.08);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--gray-400); }
.error-msg { font-size: 12px; color: #E53E3E; margin-top: 5px; display: none; }
.error-msg.show { display: block; }
.privacy-check {
  display: flex; align-items: flex-start; gap: 10px;
  cursor: pointer; margin-top: 4px;
}
.privacy-check input[type="checkbox"] { display: none; }
.custom-check {
  width: 18px; height: 18px; flex-shrink: 0;
  border: 2px solid var(--gray-200);
  border-radius: 4px; margin-top: 2px;
  transition: all 0.2s;
  background: var(--white);
  position: relative;
}
.privacy-check input:checked + .custom-check {
  background: var(--teal); border-color: var(--teal);
}
.privacy-check input:checked + .custom-check::after {
  content: '✓'; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--white); font-weight: 700;
}
.privacy-label-text { font-size: 14px; color: var(--gray-600); line-height: 1.5; }
.privacy-label.error .custom-check { border-color: #E53E3E; }
.privacy-view-link {
  color: var(--teal); font-size: 12px; font-weight: 600;
  cursor: pointer; text-decoration: underline; text-underline-offset: 3px;
  margin-left: 4px; white-space: nowrap;
}
.privacy-view-link:hover { color: var(--teal-light); }
.submit-btn {
  width: 100%; padding: 16px;
  background: var(--teal); color: var(--white);
  font-weight: 800; font-size: 16px;
  border: none; border-radius: 10px; cursor: pointer;
  transition: all 0.25s; margin-top: 20px;
  box-shadow: 0 4px 20px rgba(26,127,110,0.25);
  letter-spacing: 0.02em;
}
.submit-btn:hover { background: var(--teal-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(26,127,110,0.3); }
.submit-btn:disabled { background: var(--gray-400); cursor: not-allowed; transform: none; box-shadow: none; }
.form-assurance { font-size: 12px; color: var(--gray-400); text-align: center; margin-top: 14px; }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  padding: 40px var(--pad-x);
  display: flex; align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
.footer-logo {
  font-family: 'Noto Serif KR', serif;
  font-size: 16px; font-weight: 700; color: var(--white);
}
.footer-logo span { color: var(--teal-light); }
footer p { font-size: 12px; color: rgba(255,255,255,0.35); line-height: 1.7; }
.footer-left { flex: 0 0 auto; }
.footer-biz {
  flex: 1 1 auto;
  text-align: center;
  padding: 0 32px;
}
.footer-biz p {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 1.9;
  margin: 0;
}
.footer-biz strong {
  color: rgba(255,255,255,0.6);
  font-weight: 600;
}
.footer-right { flex: 0 0 auto; text-align: right; }

/* ── FLOATING CTA ── */
.floating-cta {
  position: fixed; bottom: 32px; right: 32px; z-index: 50;
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
  width: 180px;
}
.float-btn {
  border: none; border-radius: 100px; cursor: pointer;
  font-weight: 700; font-family: inherit;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: all 0.25s;
  white-space: nowrap;
  width: 100%;
}
/* 카카오톡 버튼 (작게) */
.float-kakao {
  background: #FEE500;
  color: #3A1D1D;
  font-size: 13px;
  padding: 11px 20px;
  box-shadow: 0 6px 24px rgba(254,229,0,0.45);
  text-decoration: none;
}
.float-kakao:hover { background: #FFD700; transform: translateY(-2px); box-shadow: 0 10px 32px rgba(254,229,0,0.55); }

/* 무료 상담 신청 버튼 (크게) */
.float-consult {
  background: var(--teal);
  color: var(--white);
  font-size: 15px;
  padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(26,127,110,0.35);
}
.float-consult:hover { background: var(--teal-light); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(26,127,110,0.4); }

/* 모바일 */
@media (max-width: 900px) {
  .floating-cta { bottom: 16px; right: 16px; width: 160px; }
  .float-kakao  { font-size: 12px; padding: 10px 16px; }
  .float-consult { font-size: 14px; padding: 14px 16px; }
}

/* ── POPUPS ── */
.popup-overlay {
  position: fixed; inset: 0;
  background: rgba(27,42,74,0.7);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.popup-overlay.show { display: flex; }
.popup-box {
  background: var(--white);
  border-radius: 20px;
  padding: 52px 44px;
  max-width: 460px; width: 100%;
  text-align: center;
  box-shadow: 0 24px 80px rgba(27,42,74,0.2);
  position: relative;
}
.popup-x {
  position: absolute; top: 18px; right: 18px;
  width: 32px; height: 32px;
  background: var(--gray-100); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 14px; color: var(--gray-600);
  transition: all 0.2s;
}
.popup-x:hover { background: var(--gray-200); }
.popup-icon { font-size: 52px; margin-bottom: 16px; }
.popup-box h3 { font-size: 24px; font-weight: 800; color: var(--navy); margin-bottom: 14px; }
.popup-box p { font-size: 14px; color: var(--gray-600); line-height: 1.8; margin-bottom: 28px; }
.popup-close {
  background: var(--teal); color: var(--white);
  font-weight: 700; font-size: 15px;
  padding: 14px 40px; border: none; border-radius: 8px;
  cursor: pointer; transition: all 0.2s;
}
.popup-close:hover { background: var(--teal-light); }

/* 개인정보 팝업 */
.privacy-popup-overlay {
  position: fixed; inset: 0;
  background: rgba(27,42,74,0.75);
  backdrop-filter: blur(4px);
  z-index: 9999; display: none;
  align-items: center; justify-content: center; padding: 20px;
}
.privacy-popup-overlay.show { display: flex; }
.privacy-popup-box {
  background: var(--white); border-radius: 16px;
  max-width: 600px; width: 100%; max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(27,42,74,0.2);
}
.privacy-popup-header {
  padding: 22px 28px;
  border-bottom: 1px solid var(--gray-100);
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; background: var(--white); z-index: 1;
}
.privacy-popup-header h3 { font-size: 17px; font-weight: 700; color: var(--navy); }
.privacy-popup-close {
  width: 32px; height: 32px; background: var(--gray-100);
  border: none; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--gray-600); transition: all 0.2s;
}
.privacy-popup-close:hover { background: var(--gray-200); }
.privacy-popup-body { padding: 24px 28px; }
.pp-section-title {
  font-size: 13px; font-weight: 700; color: var(--teal);
  margin: 20px 0 10px; letter-spacing: 0.03em;
}
.pp-section-title:first-child { margin-top: 0; }
.pp-table {
  width: 100%; border-collapse: collapse; font-size: 13px; margin-bottom: 8px;
}
.pp-table th {
  background: var(--teal-pale); color: var(--teal);
  font-weight: 700; padding: 10px 14px;
  text-align: left; border: 1px solid var(--gray-200);
}
.pp-table td {
  padding: 10px 14px;
  border: 1px solid var(--gray-200);
  color: var(--gray-800); line-height: 1.6; vertical-align: top;
}
.pp-table tr:nth-child(even) td { background: var(--off-white); }
.pp-text { font-size: 13px; color: var(--gray-600); line-height: 1.8; }
.privacy-popup-footer {
  padding: 18px 28px;
  border-top: 1px solid var(--gray-100);
  display: flex; justify-content: flex-end;
}
.privacy-confirm-btn {
  background: var(--teal); color: var(--white);
  font-weight: 700; font-size: 14px;
  padding: 11px 28px; border: none;
  border-radius: 8px; cursor: pointer; transition: all 0.2s;
}
.privacy-confirm-btn:hover { background: var(--teal-light); }






/* ── BENEFIT SECTION ── */
.benefit-section { background: var(--off-white); }
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.benefit-card {
  background: var(--white);
  border-radius: 18px;
  padding: 36px 32px;
  border: 1.5px solid var(--gray-200);
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.benefit-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--teal-pale);
  transition: background 0.3s;
}
.benefit-card:hover { border-color: var(--teal); box-shadow: 0 10px 36px rgba(26,127,110,0.1); transform: translateY(-4px); }
.benefit-card:hover::after { background: var(--teal); }
.benefit-card.bc-featured {
  border-color: var(--teal);
  background: linear-gradient(135deg, var(--teal-pale) 0%, #FFFFFF 60%);
  box-shadow: 0 8px 32px rgba(26,127,110,0.1);
}
.benefit-card.bc-featured::after { background: var(--teal); }
.bc-num {
  font-family: 'Noto Serif KR', serif;
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em;
  color: var(--teal); margin-bottom: 14px;
}
.bc-icon {
  font-size: 36px; margin-bottom: 16px;
  display: block;
}
.benefit-card h3 {
  font-size: 17px; font-weight: 700;
  color: var(--navy); margin-bottom: 12px; line-height: 1.4;
}
.benefit-card p {
  font-size: 13px; color: var(--gray-600); line-height: 1.8;
  margin-bottom: 20px;
}
.benefit-card p strong { color: var(--teal); font-weight: 600; }
.bc-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  background: var(--teal); color: var(--white);
  padding: 4px 12px; border-radius: 100px;
}
.benefit-card.bc-featured .bc-tag {
  background: var(--orange); 
}
.benefit-note {
  margin-top: 24px;
  font-size: 12px; color: var(--gray-600);
  background: #FFFBF0;
  border: 1.5px solid rgba(244,123,43,0.2);
  border-left: 4px solid var(--orange);
  border-radius: 0 8px 8px 0;
  padding: 12px 16px;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .benefit-grid { grid-template-columns: 1fr; }
}


/* ── BENEFIT REFUND BOX ── */
.benefit-refund-box {
  margin-top: 32px;
}
.brb-inner {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-top: 3px solid var(--navy);
  border-radius: 12px;
  padding: 22px 28px;
}
.brb-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.brb-text strong {
  display: block; font-size: 14px; font-weight: 700;
  color: var(--navy); margin-bottom: 8px;
}
.brb-text p { font-size: 13px; color: var(--gray-600); line-height: 2; margin: 0; }
.brb-ok { display: inline-block; color: #1A7F6E; font-weight: 700; margin-right: 6px; }
.brb-no { display: inline-block; color: #C0392B; font-weight: 700; margin-right: 6px; }

/* ── COMMITMENT SECTION ── */
.commit-section {
  background: var(--navy);
  padding: 80px 0;
}
.commit-card {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  align-items: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 52px 56px;
  position: relative;
  overflow: hidden;
}
.commit-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--orange));
}
.commit-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.commit-quote {
  font-family: 'Noto Serif KR', serif;
  font-size: 80px;
  line-height: 0.7;
  color: var(--teal);
  opacity: 0.4;
  margin-bottom: 16px;
  font-weight: 900;
}
.commit-main {
  font-family: 'Noto Serif KR', serif;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 16px;
}
.commit-sub {
  font-size: clamp(15px, 1.8vw, 20px);
  font-weight: 600;
  color: var(--teal-light);
  line-height: 1.5;
}
.commit-detail {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cd-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s;
}
.cd-item:hover { background: rgba(255,255,255,0.07); }
.cd-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.cd-text strong {
  display: block;
  font-size: 14px; font-weight: 700;
  color: var(--white); margin-bottom: 4px;
}
.cd-text span {
  font-size: 13px; color: rgba(255,255,255,0.5);
  line-height: 1.7;
}
.cd-note {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  padding: 14px 18px;
  background: rgba(244,123,43,0.08);
  border-left: 3px solid var(--orange);
  border-radius: 0 8px 8px 0;
}
.cd-note strong { color: #F4A86E; font-weight: 700; }

@media (max-width: 900px) {
  .commit-card { grid-template-columns: 1fr; gap: 32px; padding: 32px 24px; }
  .commit-quote { font-size: 60px; }
}

/* ── DISCLAIMER BANNER ── */
.disclaimer-banner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #FFFBF0;
  border: 1.5px solid rgba(244,123,43,0.3);
  border-left: 4px solid var(--orange);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 32px;
}
.db-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}
.db-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #9A4F00;
  margin-bottom: 6px;
}
.db-text p {
  font-size: 15px;
  color: #7A5C2E;
  line-height: 1.75;
  margin: 0;
}

/* ── EXCLUSIVITY POLICY ── */
.excl-section {
  background: var(--white);
  padding: 64px 0;
  border-top: 1px solid var(--gray-100);
}
.excl-inner {
  display: grid; grid-template-columns: auto 1fr;
  gap: 40px; align-items: flex-start;
  background: linear-gradient(135deg, #EFF8F6 0%, #F4F9FF 100%);
  border: 1.5px solid rgba(26,127,110,0.18);
  border-radius: 20px;
  padding: 44px 48px;
}
.excl-icon-wrap { padding-top: 4px; }
.excl-icon {
  width: 56px; height: 56px;
  background: var(--teal-pale);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  border: 1.5px solid rgba(26,127,110,0.15);
}
.excl-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em;
  color: var(--teal); background: var(--teal-pale);
  padding: 4px 12px; border-radius: 100px;
  display: inline-block; margin-bottom: 12px;
}
.excl-title {
  font-family: 'Noto Serif KR', serif;
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 700; color: var(--navy);
  margin-bottom: 14px; line-height: 1.35;
}
.excl-title span { color: var(--teal); }
.excl-desc {
  font-size: 14px; color: var(--gray-600);
  line-height: 1.85; margin-bottom: 24px;
}
.excl-desc strong { color: var(--navy); font-weight: 600; }
.excl-badges { display: flex; flex-direction: column; gap: 12px; }
.excl-badge {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--white);
  border-radius: 12px; padding: 16px 20px;
  border: 1.5px solid var(--gray-200);
}
.excl-badge.allow { border-color: rgba(26,127,110,0.2); }
.excl-badge.block { border-color: rgba(229,62,62,0.15); background: #FFF8F8; }
.eb-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.eb-text strong { display: block; font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.eb-text span { font-size: 13px; color: var(--gray-600); line-height: 1.6; }

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

/* ── GROWTH TIMELINE (solution section) ── */
.growth-timeline {
  background: var(--navy);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(27,42,74,0.18);
}
.gt-header {
  display: flex; align-items: center; gap: 14px;
  padding: 22px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-wrap: wrap;
}
.gt-icon { font-size: 24px; }
.gt-header h4 { font-size: 15px; font-weight: 700; color: var(--white); }
.gt-header p { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 2px; }
.gt-steps { padding: 20px 28px; display: flex; flex-direction: column; gap: 20px; }
.gt-step { display: flex; flex-direction: column; gap: 8px; }
.gt-step-highlight .gt-desc strong { color: var(--teal-light); }
.gt-badge {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  padding: 3px 10px; border-radius: 100px; width: fit-content;
}
.gt-badge.m1 { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.55); }
.gt-badge.m2 { background: rgba(26,127,110,0.2); color: var(--teal-light); }
.gt-badge.m3 { background: rgba(244,123,43,0.2); color: #F4A86E; }
.gt-bar {
  height: 6px; background: rgba(255,255,255,0.07);
  border-radius: 3px; overflow: hidden;
}
.gt-fill {
  height: 100%; background: var(--teal);
  border-radius: 3px;
  transition: width 1s ease;
}
.gt-fill.highlight { background: linear-gradient(90deg, var(--teal), var(--orange)); }
.gt-desc strong { display: block; font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.gt-desc p { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.6; }
.gt-note {
  padding: 12px 28px;
  font-size: 15px; color: rgba(255,255,255,1);
  background: rgba(0,0,0,0.15);
  line-height: 1.6;
}

/* ANIMATIONS */
@keyframes fadeInUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:none} }
@keyframes fadeInRight { from{opacity:0;transform:translateX(30px)} to{opacity:1;transform:none} }

/* MOBILE */
@media (max-width: 900px) {
  /* ── 전역 레이아웃 ── */
  html, body { overflow-x: hidden; }
  :root { --pad-x: 20px; }
  .topbar { padding: 14px 20px; }
  .hero { padding: 100px 20px 60px; }
  .stats-inner { padding: 0 20px !important; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 0; }
  .container { padding: 0 20px !important; }
  .sec-wrap { padding: 64px 0; }
  footer { padding: 32px 20px; flex-direction: column; align-items: flex-start; }
.footer-biz { text-align: left; padding: 16px 0; border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); width: 100%; }
.footer-right { text-align: left; }

  /* ── 섹션별 직접 패딩 (container 미적용 보험) ── */
  .edu-section .container,
  .revenue-section .container,
  .pain-section .container,
  .solution-section .container,
  .curriculum-section .container,
  .why-section .container,
  .commit-section .container,
  .benefit-section .container,
  .process-section .container,
  .contract-process-section .container,
  .contract-section .container,
  .excl-section .container,
  .pricing-section .container,
  .faq-section .container,
  .form-section .container,
  .cta-band .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  /* ── 폰트 모바일 가독성 ── */
  body { font-size: 16px; }
  .sec-title { font-size: clamp(24px, 6.5vw, 32px) !important; line-height: 1.45; }
  .sec-sub { font-size: 15px; }
  p { font-size: 14.5px; line-height: 1.85; }
  h3 { font-size: 18px !important; }
  h4 { font-size: 15px !important; }

  /* ── PAIN ── */
  .pain-grid { grid-template-columns: 1fr; }
  .pain-card { padding: 24px 20px; }

  /* ── SOLUTION ── */
  .solution-grid { grid-template-columns: 1fr; gap: 40px; }
  .gt-header { padding: 20px; }
  .gt-steps { padding: 0 20px 20px; }
  .gt-step { gap: 12px; }
  .sim-wrap { padding: 24px 20px; }

  /* ── CURRICULUM 탭 ── */
  .curriculum-tabs-wrap { margin: 32px 0 24px; }
  .curriculum-tabs { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .ctab { font-size: 13px; padding: 12px 8px; }
  .ctab::after { display: none; }
  .curriculum-panel.active { grid-template-columns: 1fr; }
  .cur-card { padding: 20px; }
  .cur-card h3 { font-size: 15px !important; }

  /* ── EDUCATION ── */
  .edu-cafe-block { grid-template-columns: 1fr; padding: 28px 20px; gap: 24px; border-radius: 16px; }
  .edu-flow-cards { grid-template-columns: 1fr; }
  .edu-flow-cards::before { display: none; }
  .crank-block { grid-template-columns: 1fr; }
  .crank-explain { padding: 28px 20px; border-radius: 16px 16px 0 0; }
  .crank-visual { padding: 28px 20px; border-radius: 0 0 16px 16px; }
  .edu-keys { grid-template-columns: 1fr; }
  .edu-key-card { padding: 24px 20px; }
  .cs-item { gap: 14px; }

  /* ── REVENUE ── */
  .re-analogy-wrap { grid-template-columns: 1fr; border-radius: 16px; }
  .re-ana-left { padding: 32px 20px; }
  .re-ana-right { padding: 28px 20px; }
  .rm-grid { grid-template-columns: 1fr; }
  .rm-title-area { padding: 0 4px; }
  .rm-card-head { padding: 22px 20px 16px; }
  .rm-card-body { padding: 16px 20px 22px; }
  .rm-pyramid-wrap { grid-template-columns: 1fr; padding: 32px 20px; gap: 24px; border-radius: 16px; }
  .rc-row, .rc-label { grid-template-columns: 1fr 18px 1fr; gap: 6px; }
  .rc-left, .rc-right { font-size: 12px; padding: 10px 12px; }

  /* ── WHY SHARE ── */
  .why-share-wrap { border-radius: 16px; margin-bottom: 48px; }
  .ws-header { padding: 24px 20px; gap: 14px; }
  .ws-q-mark { font-size: 40px; }
  .ws-question { font-size: clamp(18px, 5vw, 24px); }
  .ws-body { grid-template-columns: 1fr; }
  .ws-left { padding: 24px 20px; border-right: none; border-bottom: 1.5px solid var(--gray-100); }
  .ws-right { padding: 24px 20px; }
  .ws-block { gap: 12px; }
  .ws-block h4 { font-size: 14px; }
  .ws-block p { font-size: 14.5px; }
  .ws-win-row { flex-direction: column; gap: 8px; }

  /* ── WHY ── */
  .why-grid { grid-template-columns: 1fr; }
  .why-card { padding: 28px 20px; }

  /* ── COMMITMENT ── */
  .commit-card { grid-template-columns: 1fr; gap: 28px; padding: 32px 20px; border-radius: 16px; }
  .commit-title { font-size: clamp(20px, 5.5vw, 28px); }

  /* ── BENEFITS ── */
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-card { padding: 24px 20px; }

  /* ── PROCESS ── */
  .process-steps { grid-template-columns: 1fr 1fr; row-gap: 28px; }
  .process-steps::before { display: none; }
  .proc-step { padding: 20px 16px; }
  /* cp 모바일 */
  .cp-steps::before { left: 23px; top: 24px; bottom: 24px; }
  .cp-num { width: 48px; height: 48px; font-size: 16px; }
  .cp-body { padding: 18px 20px; }
  .cp-title { font-size: 16px; }
  .cp-desc { font-size: 14px; }
  .cp-step { gap: 16px; padding-bottom: 20px; }

  /* ── CONTRACT ── */
  .contract-inner { grid-template-columns: 1fr; gap: 32px; }
  .contract-badges { gap: 12px; }
  .contract-badge { padding: 16px; }
  .doc-card { padding: 24px 20px; border-radius: 14px; }

  /* ── EXCLUSIVITY ── */
  .excl-inner { grid-template-columns: 1fr; gap: 16px; padding: 28px 20px; border-radius: 14px; }

  /* ── PRICING ── */
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card { padding: 28px 20px; border-radius: 16px; }
  .pc-head, .pc-row { grid-template-columns: 1.5fr 1fr 1.2fr; }
  .pc-col-label { padding: 12px 14px; font-size: 12px; }
  .pc-col { padding: 12px 12px; font-size: 12px; }

  /* ── FAQ ── */
  .faq-q { font-size: 15px; padding: 20px 0; }
  .faq-a { font-size: 14px; }

  /* ── FORM ── */
  .form-layout { grid-template-columns: 1fr; gap: 36px; }
  .form-info { padding: 0; }
  .form-info h2 { font-size: clamp(22px, 6vw, 30px); }

  /* ── MISC ── */
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .floating-cta { bottom: 16px; right: 16px; }
  .why-share-wrap { margin-left: 0; margin-right: 0; }
}