/* ═══════════════════════════════════════════════
   링크박스 Linkbox — 디자인 시스템 v1
   밝고 설레는 소비자 브랜드 (전 세계 20~40대 여성)
   색 토큰만 바꾸면 전체 톤이 바뀝니다 (아래 :root).
   ═══════════════════════════════════════════════ */
:root {
  /* ── 라벤더 톤 (현재 적용) ──
     코랄로 되돌리려면 아래 8줄을 주석의 coral 값으로 교체:
     coral #FF6F91 / dark #ED5377 / deep #D63E63 / peach #FFAE8B / peach-deep #FF8C5A
     cream #FFFBF8 / blush #FFF0F3 / apricot #FFF4EC / ink #3A2B38
     grad-warm #FF6F91→#FF9E7D / grad-soft #FFE3EA→#FFF0E6→#FFE8F1 / shadow rgba(255,111,145) */
  --coral:       #8E7CE6;   /* primary lavender */
  --coral-dark:  #7361D4;
  --coral-deep:  #5C49BE;
  --peach:       #C79BE3;   /* secondary orchid */
  --peach-deep:  #B07AD8;
  --lav:         #9DB0F0;   /* periwinkle accent */
  --gold:        #FFC857;
  --cream:       #FBFAFF;
  --blush:       #F2EEFE;
  --apricot:     #FBEFFB;
  --ink:         #332B43;
  --ink-soft:    #66607A;
  --muted:       #9A8FB0;
  --line:        #ECE6F8;
  --white:       #FFFFFF;
  --grad-warm:   linear-gradient(135deg, #8E7CE6 0%, #C18BE0 100%);
  --grad-soft:   linear-gradient(135deg, #ECE6FF 0%, #F3ECFF 52%, #F7E9FB 100%);
  --font:    'Pretendard', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
  --display: 'Poppins', 'Pretendard', 'Apple SD Gothic Neo', sans-serif;
  --r-md: 12px; --r-lg: 20px; --r-xl: 28px; --r-pill: 999px;
  --shadow-sm:   0 2px 10px rgba(142,124,230,0.10);
  --shadow-md:   0 8px 26px rgba(142,124,230,0.14);
  --shadow-lg:   0 16px 44px rgba(142,124,230,0.18);
  --shadow-coral:0 10px 26px rgba(115,97,212,0.30);
  --maxw: 1120px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
section { padding: 92px 0; position: relative; }
.sec-blush { background: var(--blush); }
.sec-apricot { background: var(--apricot); }

/* ── 섹션 헤더 ── */
.eyebrow {
  font-family: var(--display);
  font-size: 12.5px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--coral-dark);
  margin-bottom: 12px; display: inline-flex; align-items: center; gap: 7px;
}
.sec-head {
  font-family: var(--display);
  font-size: 33px; font-weight: 700; color: var(--ink);
  line-height: 1.28; letter-spacing: -0.4px; margin-bottom: 14px;
}
.sec-desc { color: var(--ink-soft); font-size: 16.5px; max-width: 660px; }
.grad-text { background: var(--grad-warm); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ── 버튼 (pill) ── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 28px; border-radius: var(--r-pill);
  font-size: 15.5px; font-weight: 600; font-family: var(--font);
  border: none; cursor: pointer; line-height: 1;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: var(--grad-warm); color: #fff; box-shadow: var(--shadow-coral); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(237,83,119,0.38); }
.btn-outline { background: #fff; color: var(--coral-dark); border: 1.6px solid var(--coral); }
.btn-outline:hover { background: var(--blush); transform: translateY(-2px); }
.btn-ghost-light { background: rgba(255,255,255,0.18); color: #fff; border: 1.6px solid rgba(255,255,255,0.5); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.28); }

/* ── Nav ── */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,251,248,0.85); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: flex; align-items: center; gap: 9px; }
.brand .logo {
  width: 30px; height: 30px; border-radius: 9px; background: var(--grad-warm);
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm);
}
.brand .logo svg { width: 18px; height: 18px; color: #fff; }
.brand .name { font-family: var(--display); font-size: 21px; font-weight: 700; color: var(--ink); letter-spacing: -0.3px; }
.brand .name b { color: var(--coral-dark); font-weight: 700; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 15px; color: var(--ink-soft); font-weight: 500; transition: color .15s; }
.nav-links a:hover { color: var(--coral-dark); }
.nav-cta { background: var(--grad-warm); color: #fff !important; padding: 10px 20px; border-radius: var(--r-pill); font-weight: 600; box-shadow: var(--shadow-sm); }
.nav-cta:hover { transform: translateY(-1px); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 4px 0; border-radius: 2px; }
.lang-toggle { display: inline-flex; align-items: center; gap: 2px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-pill); padding: 3px; box-shadow: var(--shadow-sm); }
.lang-toggle a { font-family: var(--display); font-size: 12px; font-weight: 600; color: var(--muted); padding: 5px 11px; border-radius: var(--r-pill); line-height: 1; transition: .15s; }
.lang-toggle a.on { background: var(--grad-warm); color: #fff !important; }
.lang-toggle a:hover:not(.on) { color: var(--coral-dark); }

/* ── Hero ── */
.hero { position: relative; overflow: hidden; background: var(--grad-soft); padding: 96px 0 100px; }
.hero .blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.55; pointer-events: none; }
.hero .blob-1 { width: 420px; height: 420px; background: #C9B8F5; top: -120px; right: -80px; }
.hero .blob-2 { width: 360px; height: 360px; background: #D9CBF8; bottom: -140px; left: -90px; opacity: 0.5; }
.hero .blob-3 { width: 240px; height: 240px; background: #B6C6F5; top: 120px; right: 280px; opacity: 0.45; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--coral-dark); font-weight: 600; font-size: 13.5px;
  padding: 8px 16px; border-radius: var(--r-pill); box-shadow: var(--shadow-sm); margin-bottom: 22px;
}
.hero h1 { font-family: var(--display); font-size: 50px; font-weight: 700; line-height: 1.16; letter-spacing: -1px; color: var(--ink); margin-bottom: 20px; }
.hero .lead { font-size: 18px; color: var(--ink-soft); line-height: 1.75; margin-bottom: 32px; max-width: 520px; }
.hero-cta { display: flex; gap: 13px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-partners { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-partners .hp-label { font-family: var(--display); font-size: 11.5px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.hero-partners .hp-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.hero-partners .hp { background: #fff; border-radius: var(--r-pill); padding: 7px 16px; font-family: var(--display); font-weight: 700; font-size: 14px; color: var(--ink); box-shadow: var(--shadow-sm); }

/* 히어로 일러스트 (인라인 SVG 컨테이너) */
.hero-art { position: relative; z-index: 2; }
.hero-art svg { width: 100%; height: auto; display: block; filter: drop-shadow(0 20px 40px rgba(255,111,145,0.18)); }

/* ── 신뢰 칩 띠 ── */
.cred-strip { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 12px; }
.cred-chip { display: inline-flex; align-items: center; gap: 9px; background: #fff; border-radius: var(--r-pill); padding: 11px 20px; font-size: 14.5px; font-weight: 600; color: var(--ink); box-shadow: var(--shadow-sm); }
.cred-chip svg { width: 18px; height: 18px; color: var(--coral); }

/* ── 아이콘 칩 (공용) ── */
.chip-ico { width: 52px; height: 52px; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.chip-ico svg { width: 26px; height: 26px; }
.chip-coral { background: var(--blush); color: var(--coral-dark); }
.chip-peach { background: #F4ECFB; color: var(--peach-deep); }
.chip-lav   { background: #E9EEFD; color: #5566C8; }
.chip-gold  { background: #FFF3D6; color: #C9931F; }

/* ── 카드 그리드 (이런 분께) ── */
.feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
.feat-card { background: #fff; border-radius: var(--r-lg); padding: 30px 26px; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease; }
.feat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.feat-card h3 { font-size: 17.5px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.feat-card p { font-size: 14.5px; color: var(--ink-soft); }

/* ── 왜 링크박스 ── */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 48px; }
.why-card { background: #fff; border-radius: var(--r-lg); padding: 30px 30px; display: flex; gap: 18px; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease; }
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-card .chip-ico { flex-shrink: 0; margin-bottom: 0; }
.why-card h3 { font-size: 18.5px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.why-card p { font-size: 15px; color: var(--ink-soft); line-height: 1.7; }

/* ── 이용 방법 6단계 ── */
.code-banner { margin-top: 44px; background: #fff; border: 1.5px dashed var(--coral); border-radius: var(--r-lg); padding: 24px 28px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; box-shadow: var(--shadow-sm); }
.code-banner .cb-icon { width: 48px; height: 48px; border-radius: 14px; background: var(--grad-warm); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.code-banner .cb-icon svg { width: 24px; height: 24px; }
.code-banner .cb-text { flex: 1; min-width: 240px; }
.code-banner .cb-text b { color: var(--coral-dark); font-weight: 700; }
.code-banner .cb-text p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.65; }
.code-banner .cb-sample { font-family: var(--display); font-weight: 700; color: var(--coral-deep); background: var(--blush); padding: 3px 11px; border-radius: var(--r-pill); }

.flow-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 28px; }
.flow-card { background: #fff; border-radius: var(--r-lg); padding: 28px 26px; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease; }
.flow-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.flow-card .flow-num { font-family: var(--display); font-size: 15px; font-weight: 700; color: #fff; background: var(--grad-warm); width: 38px; height: 38px; border-radius: var(--r-pill); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; box-shadow: var(--shadow-sm); }
.flow-card h3 { font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 7px; }
.flow-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.7; }
.flow-card .flow-tag { display: inline-block; font-size: 12px; font-weight: 600; color: var(--coral-dark); background: var(--blush); padding: 4px 12px; border-radius: var(--r-pill); margin-top: 11px; }

/* ── 요금 패널 ── */
.rate-panel { margin-top: 48px; background: #fff; border-radius: var(--r-xl); padding: 42px 44px; box-shadow: var(--shadow-md); position: relative; overflow: hidden; }
.rate-panel .rp-blob { position: absolute; width: 220px; height: 220px; border-radius: 50%; background: var(--apricot); right: -70px; top: -70px; }
.rate-panel > h3 { font-size: 21px; font-weight: 700; color: var(--ink); margin-bottom: 26px; position: relative; }
.rate-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; position: relative; margin-bottom: 28px; }
.rate-step { background: var(--cream); border-radius: var(--r-lg); padding: 24px; }
.rate-step .num { font-family: var(--display); display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: var(--r-pill); background: var(--blush); color: var(--coral-dark); font-size: 15px; font-weight: 700; margin-bottom: 14px; }
.rate-step .rs-title { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.rate-step .rs-desc { font-size: 13.5px; color: var(--ink-soft); line-height: 1.6; }
.pay-chips { display: flex; gap: 11px; flex-wrap: wrap; margin-bottom: 28px; position: relative; }
.pay-chips .pay-chip { display: inline-flex; align-items: center; gap: 8px; background: var(--blush); border-radius: var(--r-pill); padding: 9px 16px; font-size: 14px; font-weight: 600; color: var(--ink); }
.pay-chips .pay-chip svg { width: 16px; height: 16px; color: var(--coral); }
.rate-cta-wrap { position: relative; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.rate-cta-wrap .rc-note { font-size: 13px; color: var(--muted); }

/* ── 배송 품목 ── */
.ship-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 48px; }
.ship-card { background: #fff; border-radius: var(--r-lg); padding: 30px 32px; box-shadow: var(--shadow-sm); }
.ship-card h3 { font-size: 18.5px; font-weight: 700; color: var(--ink); margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.ship-card h3 .tag { width: 30px; height: 30px; border-radius: var(--r-pill); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ship-card h3 .tag svg { width: 17px; height: 17px; }
.ship-ok h3 .tag { background: #E6F8EF; color: #1FAE6A; }
.ship-no h3 .tag { background: #FFF3D6; color: #D08A00; }
.ship-list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.ship-list li { font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; padding-left: 20px; position: relative; }
.ship-list li::before { content: ''; position: absolute; left: 0; top: 8px; width: 7px; height: 7px; border-radius: 50%; }
.ship-ok .ship-list li::before { background: #28C281; }
.ship-no .ship-list li::before { background: var(--gold); }
.ship-note { margin-top: 18px; font-size: 13px; color: var(--muted); line-height: 1.65; }
.ship-illu { display: none; }

/* ── FAQ ── */
.faq-list { margin-top: 44px; max-width: 840px; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-sm); overflow: hidden; transition: box-shadow .18s; }
.faq-item.open { box-shadow: var(--shadow-md); }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; text-align: left; font-family: var(--font); font-size: 16.5px; font-weight: 600; color: var(--ink); padding: 22px 56px 22px 26px; position: relative; line-height: 1.5; }
.faq-q::after { content: ''; position: absolute; right: 24px; top: 50%; transform: translateY(-50%); width: 26px; height: 26px; border-radius: 50%; background: var(--blush) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%237361D4' d='M12 16 6 10l1.4-1.4 4.6 4.6 4.6-4.6L18 10z'/%3E%3C/svg%3E") center/16px no-repeat; transition: transform .25s ease; }
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-a-inner { padding: 0 26px 24px; font-size: 15px; color: var(--ink-soft); line-height: 1.75; }

/* ── 신청 폼 ── */
.apply-wrap { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 40px; margin-top: 48px; align-items: start; }
.apply-intro h3 { font-size: 22px; font-weight: 700; color: var(--ink); margin-bottom: 12px; }
.apply-intro p { font-size: 15px; color: var(--ink-soft); line-height: 1.75; margin-bottom: 24px; }
.apply-intro p b { color: var(--coral-dark); }
.apply-contact { display: flex; flex-direction: column; gap: 13px; }
.apply-contact .ac-item { display: flex; align-items: flex-start; gap: 11px; font-size: 14.5px; color: var(--ink-soft); }
.apply-contact .ac-item svg { width: 19px; height: 19px; color: var(--coral); flex-shrink: 0; margin-top: 2px; }
.apply-contact .ac-item b { color: var(--ink); font-weight: 600; }
.apply-form { background: #fff; border-radius: var(--r-xl); padding: 32px 32px 34px; box-shadow: var(--shadow-md); }
.qf-group-label { font-family: var(--display); font-size: 12.5px; font-weight: 600; letter-spacing: 0.6px; color: var(--coral-dark); text-transform: uppercase; margin: 24px 0 14px; padding-bottom: 9px; border-bottom: 1px solid var(--line); }
.qf-group-label:first-child { margin-top: 0; }
.qf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.qf-field { margin-bottom: 15px; }
.qf-field label { display: block; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.qf-field label .req { color: var(--coral-dark); }
.qf-field input, .qf-field textarea {
  width: 100%; font-family: var(--font); font-size: 14.5px; color: var(--ink);
  border: 1.4px solid var(--line); border-radius: var(--r-md); padding: 12px 14px;
  background: var(--cream); transition: border-color .15s, box-shadow .15s, background .15s;
}
.qf-field input::placeholder, .qf-field textarea::placeholder { color: var(--muted); }
.qf-field input:focus, .qf-field textarea:focus {
  outline: none; border-color: var(--coral); box-shadow: 0 0 0 3px rgba(255,111,145,0.15); background: #fff;
}
.qf-field textarea { resize: vertical; min-height: 84px; }
.qf-hidden { position: absolute; left: -9999px; }
.qf-consent { display: flex; align-items: flex-start; gap: 10px; margin-top: 18px; font-size: 13px; color: var(--ink-soft); line-height: 1.6; }
.qf-consent input { width: 18px; height: 18px; margin-top: 1px; flex-shrink: 0; accent-color: var(--coral); }
.qf-consent a { color: var(--coral-dark); text-decoration: underline; }
.qf-submit { width: 100%; justify-content: center; margin-top: 20px; }
.qf-note { font-size: 12px; color: var(--muted); margin-top: 13px; text-align: center; }
.qf-success { display: none; text-align: center; padding: 40px 16px; background: #fff; border-radius: var(--r-xl); box-shadow: var(--shadow-md); }
.qf-success.show { display: block; }
.qf-success .qs-icon { width: 60px; height: 60px; border-radius: 50%; background: var(--grad-warm); color: #fff; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; box-shadow: var(--shadow-coral); }
.qf-success .qs-icon svg { width: 30px; height: 30px; }
.qf-success h4 { font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: 9px; }
.qf-success p { font-size: 14.5px; color: var(--ink-soft); }

/* ── CTA 밴드 ── */
.cta { background: var(--grad-warm); color: #fff; position: relative; overflow: hidden; }
.cta .blob { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.14); filter: blur(10px); pointer-events: none; }
.cta .blob-1 { width: 280px; height: 280px; left: -80px; top: -100px; }
.cta .blob-2 { width: 200px; height: 200px; right: -40px; bottom: -90px; }
.cta-inner { position: relative; text-align: center; max-width: 660px; margin: 0 auto; }
.cta h2 { font-family: var(--display); font-size: 38px; font-weight: 700; letter-spacing: -0.5px; margin-bottom: 14px; }
.cta p { font-size: 17.5px; color: rgba(255,255,255,0.92); margin-bottom: 32px; }
.cta-btns { display: flex; gap: 13px; justify-content: center; flex-wrap: wrap; margin-bottom: 34px; }
.cta .btn-primary { background: #fff; color: var(--coral-dark); box-shadow: 0 10px 26px rgba(0,0,0,0.12); }
.cta .btn-primary:hover { box-shadow: 0 14px 32px rgba(0,0,0,0.18); }
.cta-contact { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; font-size: 14.5px; color: rgba(255,255,255,0.92); }
.cta-contact .cc-item { display: flex; align-items: center; gap: 8px; }
.cta-contact .cc-item svg { width: 17px; height: 17px; }
.cta-contact .cc-item b { font-weight: 600; }

/* ── Footer ── */
footer { background: #33232F; color: rgba(255,255,255,0.62); padding: 52px 0 36px; }
.foot-top { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.foot-brand .name { font-family: var(--display); font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.foot-brand .name b { color: var(--coral); }
.foot-brand p { font-size: 13.5px; color: rgba(255,255,255,0.55); line-height: 1.8; max-width: 380px; }
.foot-cols { display: flex; gap: 52px; flex-wrap: wrap; }
.foot-col h4 { font-family: var(--display); font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.42); margin-bottom: 14px; }
.foot-col a, .foot-col p { font-size: 14px; color: rgba(255,255,255,0.68); display: block; margin-bottom: 9px; }
.foot-col a:hover { color: var(--coral); }
.foot-bottom { padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12px; color: rgba(255,255,255,0.4); }

/* ── 반응형 ── */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-art { max-width: 440px; margin: 0 auto; order: 2; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .ship-cols, .rate-steps { grid-template-columns: 1fr; }
  .flow-grid { grid-template-columns: repeat(2, 1fr); }
  .apply-wrap { grid-template-columns: 1fr; }
  .hero h1 { font-size: 42px; }
  .nav-links { position: fixed; top: 70px; left: 0; right: 0; background: var(--cream); flex-direction: column; align-items: stretch; gap: 0; padding: 8px 0; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md); display: none; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 28px; }
  .nav-cta { margin: 8px 28px; text-align: center; }
  .nav-toggle { display: block; }
}
@media (max-width: 620px) {
  section { padding: 66px 0; }
  .feat-grid, .flow-grid { grid-template-columns: 1fr; }
  .hero { padding: 70px 0 76px; }
  .hero h1 { font-size: 35px; }
  .sec-head { font-size: 27px; }
  .cta h2 { font-size: 30px; }
  .rate-panel, .apply-form { padding: 28px 22px; }
}

/* ── 법적/안내 페이지 (개인정보처리방침 등) ── */
.legal-head { background: var(--grad-soft); padding: 66px 0 50px; position: relative; overflow: hidden; }
.legal-head .blob { position: absolute; width: 320px; height: 320px; border-radius: 50%; background: #C9B8F5; filter: blur(60px); opacity: 0.5; top: -130px; right: -80px; pointer-events: none; }
.legal-head .lh-inner { position: relative; z-index: 2; }
.legal-head .eyebrow { margin-bottom: 10px; }
.legal-head h1 { font-family: var(--display); font-size: 34px; font-weight: 700; color: var(--ink); letter-spacing: -0.5px; margin-bottom: 8px; }
.legal-head p { font-size: 15px; color: var(--ink-soft); }
.legal-body { padding: 52px 0 84px; }
.legal-card { background: #fff; border-radius: var(--r-xl); box-shadow: var(--shadow-sm); padding: 44px 46px; max-width: 880px; margin: 0 auto; }
.legal-card h2 { font-size: 18.5px; font-weight: 700; color: var(--ink); margin: 30px 0 12px; padding-left: 13px; border-left: 3px solid var(--coral); }
.legal-card h2:first-child { margin-top: 0; }
.legal-card p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.85; margin-bottom: 10px; }
.legal-card ul { padding-left: 20px; margin: 8px 0 14px; }
.legal-card li { font-size: 14.5px; color: var(--ink-soft); line-height: 1.8; margin-bottom: 5px; }
.legal-card b { color: var(--ink); font-weight: 600; }
.legal-card table { width: 100%; border-collapse: collapse; margin: 12px 0 16px; font-size: 13.5px; }
.legal-card th, .legal-card td { border: 1px solid var(--line); padding: 10px 13px; text-align: left; color: var(--ink-soft); line-height: 1.6; vertical-align: top; }
.legal-card th { background: var(--blush); color: var(--ink); font-weight: 600; white-space: nowrap; }
.legal-card .legal-meta { margin-top: 8px; font-size: 13px; color: var(--muted); }
.legal-back { display: inline-flex; align-items: center; gap: 7px; margin-top: 28px; font-size: 14px; font-weight: 600; color: var(--coral-dark); }
.legal-back:hover { gap: 10px; }
@media (max-width: 620px) { .legal-card { padding: 30px 22px; } .legal-head h1 { font-size: 27px; } }
