/* ============================================
   에덴지점 채용 랜딩 v2
   - 모바일 우선
   - 다크 + 시안 액센트 (자비스 디자인 시스템 톤)
   ============================================ */

:root {
  --bg: #0b0f17;
  --bg-elev: #121826;
  --bg-elev-2: #1a2235;
  --border: #232c42;
  --border-soft: #1c2335;

  --text: #e6ecf5;
  --text-dim: #a4adc2;
  --text-mute: #6f7891;

  --accent: #22d3ee;      /* cyan */
  --accent-2: #06b6d4;
  --accent-soft: rgba(34, 211, 238, 0.12);

  --kakao: #ffe812;
  --kakao-dark: #181818;

  --success: #34d399;
  --danger: #f87171;

  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 20px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.25);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.35);
  --shadow-glow: 0 0 0 4px rgba(34,211,238,0.18);

  --container: 760px;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-bottom: 80px; /* bottom sticky CTA 여백 */
}

a { color: inherit; text-decoration: none; }
strong { color: #fff; font-weight: 700; }
em { font-style: normal; color: var(--accent); }
small { font-size: 0.85em; }

.muted { color: var(--text-dim); }
.small { font-size: 0.875rem; }
.mt-24 { margin-top: 24px; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.container--narrow { max-width: 560px; }

/* ============== TOP BAR ============== */
.top-bar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(11, 15, 23, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--border-soft);
}
.top-bar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
}
.top-bar__badge {
  background: var(--accent-soft);
  color: var(--accent);
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}
.top-bar__msg {
  flex: 1;
  color: var(--text-dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.top-bar__btn {
  background: var(--kakao);
  color: var(--kakao-dark);
  padding: 7px 13px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.8125rem;
  white-space: nowrap;
}

/* ============== HERO ============== */
.hero {
  padding: 56px 0 64px;
  background:
    radial-gradient(circle at 20% 0%, rgba(34,211,238,0.10), transparent 50%),
    radial-gradient(circle at 90% 30%, rgba(34,211,238,0.06), transparent 55%),
    var(--bg);
  border-bottom: 1px solid var(--border-soft);
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--text-dim);
  background: var(--bg-elev);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.hero__eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}
.hero__h1 {
  font-size: 2rem;
  line-height: 1.25;
  font-weight: 800;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
  word-break: keep-all;
  text-wrap: balance;
}
.hero__h1-sub {
  color: var(--text-dim);
  font-weight: 600;
  font-size: 0.85em;
}
.hero__h1-main {
  background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lead {
  font-size: 1.0625rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin: 0 0 28px;
}
.hero__cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 20px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 16px;
}
.meta-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.meta-item__num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.meta-item__unit {
  font-size: 0.7em;
  color: var(--text-dim);
  font-weight: 600;
  margin-left: 2px;
}
.meta-item__label {
  font-size: 0.75rem;
  color: var(--text-dim);
  line-height: 1.4;
}
.hero__disclaimer {
  font-size: 0.75rem;
  color: var(--text-mute);
  line-height: 1.55;
  margin: 12px 0 0;
}

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.12s ease, background 0.15s ease, border 0.15s ease;
  text-align: center;
  user-select: none;
}
.btn:active { transform: scale(0.98); }
.btn--primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #002028;
  box-shadow: 0 8px 24px rgba(34,211,238,0.25);
}
.btn--primary:hover { filter: brightness(1.05); }
.btn--ghost {
  background: var(--bg-elev);
  color: var(--text);
  border-color: var(--border);
}
.btn--ghost:hover { background: var(--bg-elev-2); }
.btn--full { width: 100%; }
.btn--sm { padding: 10px 16px; font-size: 0.875rem; }

/* ============== SECTIONS ============== */
.section { padding: 56px 0; }
.section--story { background: var(--bg-elev); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
.section--proof { background: var(--bg-elev); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
.section--roadmap { background: var(--bg-elev); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
.section--apply {
  background:
    radial-gradient(circle at 50% 0%, rgba(34,211,238,0.08), transparent 60%),
    var(--bg);
  border-top: 1px solid var(--border-soft);
}

.section__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 5px 11px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.section__h2 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin: 0 0 16px;
}
.section__lead {
  color: var(--text-dim);
  font-size: 1rem;
  margin: 0 0 32px;
  line-height: 1.65;
}

/* ============== STORY ============== */
.story {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.story__quote p {
  margin: 0 0 14px;
  line-height: 1.75;
  color: var(--text);
}
.story__quote p:last-child { margin-bottom: 0; }
.story__signature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border-soft);
}
.sig__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #002028;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.125rem;
  flex-shrink: 0;
}
.sig__name { font-weight: 700; }
.sig__role { font-size: 0.8125rem; color: var(--text-dim); }

/* ============== CARDS (testimonials) ============== */
.cards { display: grid; gap: 14px; }
.cards--3 { grid-template-columns: 1fr; }
.card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.card--testimonial {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.card__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--bg-elev-2);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.card__avatar img {
  width: 100%; height: 100%; object-fit: cover;
}
.card__avatar-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--accent);
  font-size: 1.125rem;
  background: var(--bg-elev-2);
  z-index: -1;
}
.card__name { font-weight: 700; font-size: 1.0625rem; }
.card__bg { font-size: 0.8125rem; color: var(--text-dim); }
.card__quote {
  margin: 8px 0 4px;
  color: var(--text);
  font-size: 0.9375rem;
  line-height: 1.6;
}
.card__income {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px dashed var(--border);
  font-size: 0.875rem;
  color: var(--text-dim);
}
.card__income strong {
  color: var(--accent);
  font-size: 1.0625rem;
}

/* ============== INCOME CHART (와이프 소득증명서) ============== */
.section--income-chart {
  background:
    radial-gradient(circle at 80% 10%, rgba(34,211,238,0.08), transparent 50%),
    var(--bg);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.income-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow-md);
  margin-bottom: 18px;
}
.income-card:last-child { margin-bottom: 0; }
.income-card__head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-soft);
  margin-bottom: 20px;
}
.income-card__meta { display: flex; flex-direction: column; gap: 2px; }
.income-card__person {
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--text);
}
.income-card__period {
  font-size: 0.8125rem;
  color: var(--text-dim);
}
.income-card__big {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.income-card__big-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.income-card__big-num {
  font-size: 1.625rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.15;
}
.income-card__big-sub {
  font-size: 0.875rem;
  color: var(--text-dim);
}
.income-card__big-sub strong { color: var(--text); }

.bar-chart {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bar-chart__row {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
}
.bar-chart__label {
  color: var(--text-dim);
  font-weight: 600;
  text-align: right;
}
.bar-chart__track {
  height: 14px;
  background: var(--bg);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.bar-chart__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-2) 0%, var(--accent) 100%);
  border-radius: 999px;
  transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  min-width: 2px;
}
.bar-chart__fill--peak {
  background: linear-gradient(90deg, var(--accent) 0%, #fff 130%);
  box-shadow: 0 0 12px rgba(34,211,238,0.45);
}
.bar-chart__fill--empty {
  background: var(--bg-elev-2);
  min-width: 0;
}
.bar-chart__value {
  color: var(--text);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.bar-chart__value--empty {
  color: var(--text-mute);
  font-weight: 500;
}
.bar-chart__row--peak .bar-chart__value { color: var(--accent); }

.income-card__note {
  margin-top: 20px;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px dashed var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  color: var(--text-dim);
  line-height: 1.6;
}
.income-card__note strong { color: var(--text); }

/* ── payslip proof image ── */
.payslip-proof {
  margin-top: 28px;
}
.payslip-proof__title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.payslip-proof__figure {
  margin: 0;
}
.payslip-proof__img {
  width: 100%;
  max-width: 700px;
  display: block;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0,0,0,0.14);
  border: 1px solid var(--border);
  cursor: zoom-in;
  transition: box-shadow 0.2s ease;
}
.payslip-proof__img:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.22);
}
.payslip-proof__cap {
  margin-top: 10px;
  font-size: 0.75rem;
  color: var(--text-dim);
  line-height: 1.55;
}

/* lightbox overlay */
.payslip-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.88);
  justify-content: center;
  align-items: center;
  cursor: zoom-out;
}
.payslip-lightbox.is-open { display: flex; }
.payslip-lightbox__img {
  max-width: 92vw;
  max-height: 92vh;
  border-radius: 6px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}

.income-card--placeholder {
  border-style: dashed;
  background: var(--bg);
}
.income-card--placeholder .income-card__big-num {
  background: linear-gradient(135deg, var(--text-dim) 0%, var(--text) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.income-card__placeholder-body {
  font-size: 0.9375rem;
  color: var(--text-dim);
  line-height: 1.65;
}

/* ============== PROOF ============== */
.proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.proof-item { text-align: center; }
.proof-item__img {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--border);
}
.proof-item__img img {
  width: 100%; height: 100%; object-fit: contain;
}
.proof-item__placeholder {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.5;
  background:
    linear-gradient(135deg, var(--bg-elev) 0%, var(--bg-elev-2) 100%);
}
.proof-item__placeholder span {
  font-size: 0.8125rem;
  color: var(--text-mute);
  font-weight: 500;
}
.proof-item__img.is-placeholder .proof-item__placeholder { display: flex; }
.proof-item__img.is-placeholder img { display: none; }
.proof-item__label {
  margin-top: 10px;
  font-size: 0.8125rem;
  color: var(--text-dim);
}

/* ============== FEATURES ============== */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.feature {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}
.feature--accent {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent-soft) inset;
}
.feature__icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.feature__icon svg { width: 22px; height: 22px; }
.feature__title {
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 8px;
}
.feature__desc {
  font-size: 0.9375rem;
  color: var(--text-dim);
  margin: 0;
  line-height: 1.6;
}

/* ============== ROADMAP ============== */
.roadmap {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.roadmap::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: var(--border);
}
.roadmap__item {
  position: relative;
  padding: 0 0 24px 44px;
}
.roadmap__item::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--bg-elev), 0 0 12px var(--accent);
}
.roadmap__item--after::before {
  background: var(--bg-elev-2);
  border: 2px solid var(--accent);
  box-shadow: 0 0 0 3px var(--bg-elev);
}
.roadmap__day {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.roadmap__title {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.roadmap__desc {
  font-size: 0.9375rem;
  color: var(--text-dim);
  line-height: 1.55;
}

/* ============== FAQ ============== */
.faq { display: flex; flex-direction: column; gap: 10px; }
.faq__item {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.15s ease;
}
.faq__item[open] { border-color: var(--accent); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 50px 18px 20px;
  font-weight: 600;
  position: relative;
  line-height: 1.5;
  font-size: 1rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 400;
  transition: transform 0.2s ease;
  line-height: 1;
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__a {
  padding: 0 20px 20px;
  color: var(--text-dim);
  line-height: 1.7;
  font-size: 0.9375rem;
}
.faq__a strong { color: var(--text); }

/* ============== APPLY FORM ============== */
.apply {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  box-shadow: var(--shadow-md);
}
.apply__head { margin-bottom: 24px; }
.apply__head .section__h2 { margin-bottom: 10px; }
.apply__head .section__lead { margin-bottom: 0; }

.form { display: flex; flex-direction: column; gap: 18px; }
.form__row { display: flex; flex-direction: column; gap: 8px; }
.form__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}
.req { color: var(--accent); }

.form__input {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  width: 100%;
}
.form__input::placeholder { color: var(--text-mute); }
.form__input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
}
.form__input--ta { resize: vertical; min-height: 84px; }
.form__input[aria-invalid="true"] { border-color: var(--danger); }

.form__err {
  font-size: 0.8125rem;
  color: var(--danger);
  min-height: 0;
}
.form__err:empty { display: none; }

.radio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.radio {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 13px;
  cursor: pointer;
  font-size: 0.9375rem;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.radio input { accent-color: var(--accent); margin: 0; flex-shrink: 0; }
.radio:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.form__row--consent { flex-direction: column; }
.check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  padding: 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.check input { display: none; }
.check__box {
  width: 20px; height: 20px;
  border: 2px solid var(--border);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.15s ease;
}
.check input:checked + .check__box {
  background: var(--accent);
  border-color: var(--accent);
}
.check input:checked + .check__box::after {
  content: '';
  width: 5px; height: 9px;
  border: solid #002028;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-top: -2px;
}
.check__text {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.55;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.check__text small {
  font-size: 0.75rem;
  line-height: 1.5;
}

.btn--primary[disabled],
.btn--primary.is-loading {
  opacity: 0.85;
  cursor: progress;
}
.btn__spinner {
  display: none;
  width: 16px; height: 16px;
  border: 2px solid rgba(0,32,40,0.35);
  border-top-color: #002028;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.btn--primary.is-loading .btn__label { opacity: 0.7; }
.btn--primary.is-loading .btn__spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

.form__status {
  text-align: center;
  font-size: 0.9375rem;
  min-height: 1.5em;
  padding: 0 4px;
  line-height: 1.5;
}
.form__status.is-success { color: var(--success); font-weight: 600; }
.form__status.is-error { color: var(--danger); }

.apply__alt {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.apply__alt .muted { display: block; margin-bottom: 10px; }
.alt-cta {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============== FOOTER ============== */
.footer {
  background: #06090f;
  border-top: 1px solid var(--border-soft);
  padding: 40px 0 32px;
  margin-top: 0;
  font-size: 0.875rem;
}
.footer__brand { margin-bottom: 28px; }
.footer__brand-name { font-weight: 700; font-size: 1rem; }
.footer__brand-sub { color: var(--text-dim); font-size: 0.875rem; }

.footer__h3 {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin: 0 0 12px;
}
.footer__legal { margin-bottom: 28px; }
.legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--text-dim);
  display: flex;
  flex-direction: column;
  gap: 6px;
  line-height: 1.6;
  font-size: 0.8125rem;
}
.legal-list strong { color: var(--text); font-weight: 600; }

.footer__contact { margin-bottom: 28px; }
.footer__contact p { margin: 0; color: var(--text-dim); line-height: 1.8; }
.footer__contact a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

.footer__copyright {
  padding-top: 20px;
  border-top: 1px solid var(--border-soft);
  color: var(--text-mute);
  font-size: 0.75rem;
  line-height: 1.6;
}

/* ============== Bottom sticky CTA ============== */
.bottom-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 20;
  display: flex;
  gap: 6px;
  padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
  background: rgba(11, 15, 23, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid var(--border);
}
.bottom-cta__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 12px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 700;
  white-space: nowrap;
}
.bottom-cta__btn svg { width: 16px; height: 16px; }
.bottom-cta__btn--tel { background: var(--bg-elev-2); color: var(--text); }
.bottom-cta__btn--kakao { background: var(--kakao); color: var(--kakao-dark); }
.bottom-cta__btn--apply {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #002028;
  flex: 1.5;
}

/* ============== RESPONSIVE ============== */
@media (min-width: 640px) {
  .hero { padding: 80px 0 88px; }
  .hero__h1 { font-size: 2.625rem; }
  .hero__lead { font-size: 1.125rem; }
  .hero__cta { flex-direction: row; }
  .hero__cta .btn { flex: 1; }

  .section { padding: 80px 0; }
  .section__h2 { font-size: 1.875rem; }

  .cards--3 { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }

  .apply { padding: 36px 32px; }

  .income-card { padding: 32px 28px; }
  .income-card__head {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
  .income-card__big { min-width: 260px; }
  .income-card__big-num { font-size: 1.875rem; }
  .bar-chart__row { grid-template-columns: 48px 1fr 140px; font-size: 0.875rem; }

  /* hide bottom CTA on desktop-ish */
  .bottom-cta { display: none; }
  body { padding-bottom: 0; }
}

@media (min-width: 900px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
