/* ============ Base ============ */
:root{
  --ink:#0d0d12;
  --ink-2:#1c1c26;
  --text:#2b2b36;
  --muted:#6b6b7b;
  --line:#e6e6ec;
  --bg:#ffffff;
  --bg-alt:#f7f7fa;
  --brand:#5b4bff;
  --brand-ink:#4436e0;
  --brand-soft:#eeecff;
  --accent:#00d0a3;
  --danger:#d92d20;
  --radius:14px;
  --radius-sm:10px;
  --shadow:0 1px 2px rgba(16,16,32,.04), 0 8px 24px rgba(16,16,32,.06);
  --maxw:1120px;
  --nav-h:68px;
}

*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth}
/* 앵커 이동 시 스티키 헤더에 가리지 않도록 */
[id]{scroll-margin-top:calc(var(--nav-h) + 8px)}
body{
  margin:0;
  font-family:"Pretendard","Apple SD Gothic Neo","Malgun Gothic",system-ui,-apple-system,"Segoe UI",sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
h1,h2,h3{color:var(--ink);line-height:1.28;letter-spacing:-.02em;margin:0}
p{margin:0}
em{font-style:normal;color:var(--brand)}

.container{width:100%;max-width:var(--maxw);margin:0 auto;padding:0 24px}
.container--narrow{max-width:760px}
.br-pc{display:none}
@media(min-width:820px){.br-pc{display:inline}}

/* ============ Buttons ============ */
/* a·button 어느 태그로 쓰든 같은 크기가 되도록 높이와 line-height를 고정한다.
   (기본값이 a는 상속 line-height, button은 normal이라 높이가 어긋난다) */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  gap:8px;
  box-sizing:border-box;
  height:44px;
  padding:0 20px;
  line-height:1;
  border:1px solid transparent;
  border-radius:999px;
  background:var(--brand);
  color:#fff;
  font-weight:600;
  font-size:15px;
  white-space:nowrap;
  cursor:pointer;
  transition:background .15s ease, transform .08s ease, box-shadow .15s ease;
  font-family:inherit;
}
.btn:hover{background:var(--brand-ink)}
.btn:active{transform:translateY(1px)}
.btn--lg{height:52px;padding:0 28px;font-size:16px}
.btn--sm{height:40px;padding:0 18px;font-size:14px}
.btn--full{width:100%}
.btn--ghost{background:transparent;color:var(--ink);border-color:var(--line)}
.btn--ghost:hover{background:var(--bg-alt);border-color:#d5d5de}
.btn:disabled{opacity:.55;cursor:not-allowed}
.btn[hidden]{display:none}

/* 헤더 임시저장 버튼: 저장된 상태에서는 '새로 작성'(보조 스타일)로 전환 */
#navDraftBtn[data-mode="discard"]{
  background:transparent;color:var(--brand-ink);border-color:var(--brand);
}
#navDraftBtn[data-mode="discard"]:hover{background:var(--brand-soft)}

/* ============ Nav ============ */
.nav{
  position:sticky;top:0;z-index:50;
  background:rgba(255,255,255,.85);
  backdrop-filter:saturate(180%) blur(12px);
  border-bottom:1px solid transparent;
  transition:border-color .2s ease;
}
.nav.is-stuck{border-bottom-color:var(--line)}
/* 페이지마다 버튼이 달라도 헤더 높이는 항상 --nav-h로 고정 */
.nav__inner{display:flex;align-items:center;gap:24px;height:var(--nav-h)}
.logo{
  font-weight:800;font-size:21px;letter-spacing:-.04em;color:var(--ink);
  flex-shrink:0;
}
.logo span{color:var(--brand)}
.logo__by{
  margin-left:7px;
  color:#0d0d12;
  font-size:12px;font-weight:600;letter-spacing:0;
  vertical-align:baseline;
}
.logo--sm{font-size:18px}
.nav__links{display:none;gap:26px;margin-left:auto;font-size:15px;color:var(--muted);font-weight:500}
.nav__links a:hover{color:var(--ink)}
.nav .btn{margin-left:auto}

/* 햄버거 토글: 모바일에서만 노출 */
.nav__toggle{
  display:inline-flex;flex-direction:column;justify-content:center;gap:5px;
  width:42px;height:42px;flex-shrink:0;
  padding:0 9px;margin-left:8px;
  border:1px solid var(--line);border-radius:12px;
  background:var(--bg);cursor:pointer;
}
.nav__toggle span{display:block;height:2px;border-radius:2px;background:var(--ink);transition:transform .25s ease, opacity .2s ease}

@media(min-width:880px){
  .nav__links{display:flex}
  .nav .btn{margin-left:0}
  .nav__toggle{display:none}
}
@media(max-width:879px){
  .nav__inner{gap:10px}
  .nav__auth{display:none}   /* 모바일에선 드로어 메뉴로 대체 */
}

/* 오른쪽 슬라이드 드로어 */
.drawer{position:fixed;inset:0;z-index:100;visibility:hidden;pointer-events:none}
.drawer__overlay{
  position:absolute;inset:0;background:rgba(13,13,18,.5);
  opacity:0;transition:opacity .28s ease;
}
.drawer__panel{
  position:absolute;top:0;right:0;height:100%;
  width:min(80vw,320px);
  background:var(--bg);
  box-shadow:-12px 0 32px rgba(16,16,32,.18);
  padding:20px 8px;
  transform:translateX(100%);
  transition:transform .28s cubic-bezier(.4,0,.2,1);
  display:flex;flex-direction:column;
}
.drawer.is-open{visibility:visible;pointer-events:auto}
.drawer.is-open .drawer__overlay{opacity:1}
.drawer.is-open .drawer__panel{transform:translateX(0)}

.drawer__close{
  align-self:flex-start;
  width:40px;height:40px;margin:0 8px 8px;
  border:none;background:transparent;
  font-size:28px;line-height:1;color:var(--muted);cursor:pointer;
}
.drawer__close:hover{color:var(--ink)}

.drawer__links{display:flex;flex-direction:column}
.drawer__links a{
  padding:16px 16px;font-size:16px;font-weight:500;color:var(--ink);
  border-bottom:1px solid var(--line);
}
.drawer__links a:hover{background:var(--bg-alt)}
.drawer__cta{
  margin:18px 16px 0;padding:14px 16px !important;
  text-align:center;border:none !important;border-radius:999px;
  background:var(--brand);color:#fff !important;font-weight:600;
}
.drawer__cta:hover{background:var(--brand-ink) !important}

@media(min-width:880px){ .drawer{display:none} }

body.no-scroll{overflow:hidden}

/* ============ Hero ============ */
.hero{
  background:
    radial-gradient(900px 420px at 50% -8%, rgba(91,75,255,.16), transparent 62%),
    var(--bg);
  padding:88px 0 80px;
  text-align:center;
  border-bottom:1px solid var(--line);
}
.hero__eyebrow{
  display:inline-block;
  padding:6px 14px;border-radius:999px;
  background:var(--brand-soft);color:var(--brand-ink);
  font-size:13px;font-weight:700;letter-spacing:.01em;
  margin-bottom:22px;
}
.hero__title{font-size:clamp(30px,5.2vw,54px);font-weight:800;margin-bottom:20px}
.hero__desc{color:var(--muted);font-size:clamp(15px,1.7vw,18px);margin-bottom:32px}
.hero__cta{display:flex;gap:10px;justify-content:center;flex-wrap:wrap}
.hero__note{margin-top:20px;font-size:13.5px;color:#8b8b9b}

/* ============ Sections ============ */
.section{padding:88px 0}
.section--alt{background:var(--bg-alt);border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.section__title{font-size:clamp(24px,3.4vw,36px);font-weight:800;text-align:center;margin-bottom:14px}
.section__lead{text-align:center;color:var(--muted);max-width:620px;margin:0 auto 52px;font-size:16px}

.grid{display:grid;gap:20px}
.grid--3{grid-template-columns:1fr}
@media(min-width:780px){.grid--3{grid-template-columns:repeat(3,1fr)}}

.card{
  background:var(--bg);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:28px 24px;
  box-shadow:var(--shadow);
}
.card__icon{font-size:26px;margin-bottom:14px}
.card h3{font-size:18px;margin-bottom:10px}
.card p{color:var(--muted);font-size:15px}

/* Steps */
.steps{list-style:none;margin:0;padding:0;display:grid;gap:16px}
@media(min-width:900px){.steps{grid-template-columns:repeat(4,1fr);gap:20px}}
.step{
  background:var(--bg);border:1px solid var(--line);border-radius:var(--radius);
  padding:26px 22px;position:relative;
}
.step__num{
  display:inline-block;font-size:13px;font-weight:800;letter-spacing:.06em;
  color:var(--brand);margin-bottom:12px;
}
.step h3{font-size:17px;margin-bottom:8px}
.step p{color:var(--muted);font-size:14.5px}

/* Categories */
.cats{display:grid;grid-template-columns:repeat(2,1fr);gap:12px}
@media(min-width:700px){.cats{grid-template-columns:repeat(4,1fr)}}
.cat{
  display:flex;align-items:center;gap:10px;
  padding:18px 18px;border:1px solid var(--line);border-radius:var(--radius-sm);
  background:var(--bg);font-weight:600;font-size:15px;color:var(--ink);
  transition:border-color .15s ease, transform .15s ease;
}
.cat:hover{border-color:var(--brand);transform:translateY(-2px)}
.cat__emoji{font-size:20px}

/* FAQ */
.faq{display:grid;gap:10px}
.faq__item{
  background:var(--bg);border:1px solid var(--line);border-radius:var(--radius-sm);
  padding:18px 20px;
}
.faq__item summary{
  cursor:pointer;font-weight:600;color:var(--ink);font-size:16px;
  list-style:none;display:flex;justify-content:space-between;align-items:center;gap:16px;
}
.faq__item summary::-webkit-details-marker{display:none}
.faq__item summary::after{content:"+";color:var(--brand);font-weight:700;font-size:20px;flex-shrink:0}
.faq__item[open] summary::after{content:"−"}
.faq__item p{margin-top:12px;color:var(--muted);font-size:15px}

/* CTA */
.cta{background:var(--ink);color:#fff;padding:80px 0;text-align:center}
.cta h2{color:#fff;font-size:clamp(23px,3.2vw,34px);font-weight:800;margin-bottom:12px}
.cta p{color:#a5a5b8;margin-bottom:28px}

/* Footer */
.footer{background:var(--ink-2);color:#a5a5b8;padding:44px 0}
.footer .logo{color:#fff}
.footer__inner{margin-bottom:24px}
.footer__tag{margin-top:8px;font-size:14px}

.footer__biz{border-top:1px solid rgba(255,255,255,.09);padding-top:22px}
.biz{display:flex;flex-wrap:wrap;gap:8px 20px;margin:0 0 16px;padding:0}
.biz > div{display:flex;gap:7px;font-size:13px;line-height:1.5}
.biz dt{color:#75758a;font-weight:500;white-space:nowrap}
.biz dd{margin:0;color:#b9b9c8}
.footer__copy{font-size:13px;color:#75758a}

/* ============ Form page ============ */
.form-page{padding:56px 0 88px;background:var(--bg-alt);min-height:70vh}
.form-head{text-align:center;margin-bottom:40px}
.form-head h1{font-size:clamp(26px,3.6vw,36px);font-weight:800;margin-bottom:12px}
.form-head p{color:var(--muted)}

.fs{
  border:1px solid var(--line);border-radius:var(--radius);
  background:var(--bg);padding:28px 24px;margin:0 0 18px;
  box-shadow:var(--shadow);
}
.fs__legend{
  display:flex;align-items:center;gap:10px;
  font-weight:700;font-size:17px;color:var(--ink);
  padding:0;margin-bottom:20px;
}
.fs__step{
  display:grid;place-items:center;
  width:26px;height:26px;border-radius:999px;
  background:var(--brand);color:#fff;font-size:13px;font-weight:700;
}

.field{margin-bottom:20px}
.field:last-child{margin-bottom:0}
.row{display:grid;gap:20px}
@media(min-width:640px){.row{grid-template-columns:1fr 1fr}}

label{display:block;font-weight:600;font-size:14.5px;color:var(--ink);margin-bottom:8px}
.req{color:var(--brand)}

input[type="text"],input[type="email"],input[type="tel"],textarea,select{
  width:100%;
  padding:12px 14px;
  border:1px solid var(--line);
  border-radius:var(--radius-sm);
  font-size:15px;font-family:inherit;color:var(--text);
  background:var(--bg);
  transition:border-color .15s ease, box-shadow .15s ease;
}
textarea{resize:vertical;line-height:1.6}
input:focus,textarea:focus,select:focus{
  outline:none;border-color:var(--brand);
  box-shadow:0 0 0 3px rgba(91,75,255,.12);
}
input::placeholder,textarea::placeholder{color:#a9a9b8}
select{appearance:none;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6b7b' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 14px center;padding-right:38px}

.hint{font-size:13px;color:var(--muted);margin-top:6px}
.hint--inline{display:inline;font-weight:400;margin:0}
.meta-row{display:flex;justify-content:space-between;align-items:center;gap:12px}
.counter{font-size:12.5px;color:#9a9aa8;flex-shrink:0}

.err{font-size:13px;color:var(--danger);margin-top:6px;display:none}
.err.is-on{display:block}
.err--submit{text-align:center;margin-top:12px;font-size:14px}
/* Turnstile 스팸 방지 위젯: 제출 버튼 위 가운데 */
.ts-wrap{display:flex;justify-content:center;margin:4px 0 14px;min-height:65px}
.field.is-error input,.field.is-error textarea,.field.is-error select{border-color:var(--danger)}
.field.is-error input:focus,.field.is-error textarea:focus,.field.is-error select:focus{box-shadow:0 0 0 3px rgba(217,45,32,.12)}

/* chips */
.chips{display:flex;flex-wrap:wrap;gap:8px}
.chip{margin:0}
.chip input{position:absolute;opacity:0;width:0;height:0}
.chip span{
  display:inline-block;
  padding:9px 16px;border:1px solid var(--line);border-radius:999px;
  font-size:14px;font-weight:500;color:var(--text);cursor:pointer;
  background:var(--bg);
  transition:all .12s ease;
}
.chip span:hover{border-color:#c9c9d4}
.chip input:checked + span{
  background:var(--brand-soft);border-color:var(--brand);color:var(--brand-ink);font-weight:600;
}
.chip input:focus-visible + span{box-shadow:0 0 0 3px rgba(91,75,255,.18)}

/* 임시저장: 복원 배너 */
.draft-banner{
  display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap;
  padding:14px 18px;margin-bottom:18px;
  border:1px solid var(--brand);border-radius:var(--radius-sm);
  background:var(--brand-soft);
}
.draft-banner[hidden]{display:none}
.draft-banner__text{font-size:14.5px;color:var(--ink)}
.draft-banner__text strong{font-weight:600;margin-right:8px}
.draft-banner__text span{color:var(--brand-ink);font-size:13.5px}
.draft-banner__btn{
  border:1px solid var(--brand);background:transparent;color:var(--brand-ink);
  border-radius:999px;padding:7px 14px;font-size:13.5px;font-weight:600;
  cursor:pointer;font-family:inherit;flex-shrink:0;
}
.draft-banner__btn:hover{background:#fff}

/* 임시저장: 상태 표시 (저장 버튼은 헤더에 있다) */
.draft-bar{display:flex;justify-content:flex-end;align-items:center;min-height:18px;margin:20px 0 12px}
.draft-status{font-size:13px;color:var(--muted)}
.draft-status.is-saved{color:var(--accent);font-weight:600}

/* '그 외' 선택 시 노출되는 직접 입력란 */
.other{margin-top:10px}
.other[hidden]{display:none}

/* file */
.file{
  display:flex;align-items:center;gap:10px;
  padding:14px 16px;border:1px dashed var(--line);border-radius:var(--radius-sm);
  cursor:pointer;background:var(--bg-alt);font-weight:500;color:var(--muted);
  margin-bottom:0;transition:border-color .15s ease;
}
.file:hover{border-color:var(--brand)}
.file__icon{font-size:17px}
.file__text{font-size:14px}
.file.has-file{border-style:solid;border-color:var(--brand);color:var(--ink);background:var(--brand-soft)}
.file__input{position:absolute;width:1px;height:1px;opacity:0;overflow:hidden}

/* agree */
.field--agree{margin:22px 0}
.check{display:flex;align-items:flex-start;gap:10px;font-weight:500;font-size:14.5px;color:var(--text);cursor:pointer;margin:0}
.check input{width:18px;height:18px;margin-top:2px;accent-color:var(--brand);flex-shrink:0}

.form-foot{text-align:center;font-size:13px;color:var(--muted);margin-top:14px}

/* ============ Done ============ */
.done{
  background:var(--bg);border:1px solid var(--line);border-radius:var(--radius);
  padding:56px 32px;text-align:center;box-shadow:var(--shadow);
}
.done__mark{
  width:60px;height:60px;border-radius:999px;margin:0 auto 22px;
  display:grid;place-items:center;
  background:var(--accent);color:#fff;font-size:30px;font-weight:700;
}
.done h1{font-size:clamp(23px,3vw,30px);font-weight:800;margin-bottom:14px}
.done__desc{color:var(--muted);margin-bottom:36px}
.done__desc strong{color:var(--ink)}

.done__summary{text-align:left;border-top:1px solid var(--line);padding-top:28px;margin-bottom:32px}
.done__summary h2{font-size:16px;margin-bottom:16px}
.done__summary dl{display:grid;gap:12px;margin:0}
.done__summary div{display:grid;grid-template-columns:120px 1fr;gap:12px;align-items:start}
.done__summary dt{font-size:14px;color:var(--muted);font-weight:500}
.done__summary dd{margin:0;font-size:14.5px;color:var(--ink);font-weight:500;word-break:break-word}

.done__actions{display:flex;gap:10px;justify-content:center;flex-wrap:wrap}

/* ============ 마이페이지 ============ */
.my{padding:48px 0 88px;background:var(--bg-alt);min-height:70vh}

.my__head{
  display:flex;align-items:flex-end;justify-content:space-between;gap:16px;flex-wrap:wrap;
  margin-bottom:24px;
}
.my__hello{font-size:clamp(20px,3vw,26px);font-weight:800;color:var(--ink)}
.my__hello strong{color:var(--brand)}
.my__email{font-size:14px;color:var(--muted);margin-top:4px}

.my__stats{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-bottom:36px}
.stat{
  background:var(--bg);border:1px solid var(--line);border-radius:var(--radius-sm);
  padding:18px 16px;text-align:center;box-shadow:var(--shadow);
}
.stat__num{display:block;font-size:26px;font-weight:800;color:var(--ink);line-height:1.1}
.stat__label{display:block;font-size:13px;color:var(--muted);margin-top:6px}

.my__title{font-size:19px;font-weight:800;color:var(--ink);margin:0 0 16px}

/* 요청 카드 */
.rcard-list{display:flex;flex-direction:column;gap:16px}
.rcard{
  background:var(--bg);border:1px solid var(--line);border-radius:var(--radius);
  padding:24px;box-shadow:var(--shadow);
}
.rcard__top{display:flex;align-items:flex-start;justify-content:space-between;gap:12px;margin-bottom:14px}
.rcard__meta{display:flex;flex-wrap:wrap;align-items:center;gap:8px 12px}
.rcard__company{font-size:17px;font-weight:700;color:var(--ink)}
.rcard__cat{font-size:13px;font-weight:600;color:var(--brand-ink);background:var(--brand-soft);padding:3px 10px;border-radius:999px}
.rcard__date{font-size:13px;color:var(--muted)}

.badge{font-size:12.5px;font-weight:700;padding:5px 11px;border-radius:999px;white-space:nowrap;flex-shrink:0}
.badge--new{background:#eef0f4;color:#5b5b6b}
.badge--review{background:#fff2e0;color:#b26a00}
.badge--done{background:#e2f8f1;color:#0a8a68}

.rcard__intro{font-size:14.5px;color:var(--text);line-height:1.6;margin-bottom:14px}
.rcard__tags{display:flex;flex-wrap:wrap;gap:6px;margin-bottom:18px}
.tag{font-size:12.5px;font-weight:500;color:var(--ink);background:var(--bg-alt);border:1px solid var(--line);padding:5px 11px;border-radius:999px}
.tag--muted{color:var(--muted)}

/* 회신 영역 */
.rcard__reply{border-top:1px solid var(--line);padding-top:18px}
.rcard__reply-title{font-size:14px;font-weight:700;color:var(--ink);margin:0 0 12px}

.scen{background:var(--bg-alt);border:1px solid var(--line);border-radius:var(--radius-sm);padding:16px 16px;margin-bottom:10px}
.scen:last-child{margin-bottom:0}
.scen__head{display:flex;align-items:center;gap:10px;margin-bottom:8px}
.scen__ver{font-size:12px;font-weight:700;color:#fff;background:var(--brand);padding:3px 9px;border-radius:6px;flex-shrink:0}
.scen__title{font-size:14.5px;font-weight:700;color:var(--ink)}
.scen__body{font-size:14px;color:var(--text);line-height:1.65;margin:0}

.rcard__pending{display:flex;align-items:flex-start;gap:9px;font-size:14px;color:var(--muted);line-height:1.6}
.rcard__pending-dot{width:8px;height:8px;border-radius:999px;background:#f5a623;margin-top:6px;flex-shrink:0}

/* 빈 상태 */
.empty{
  background:var(--bg);border:1px solid var(--line);border-radius:var(--radius);
  padding:56px 24px;text-align:center;box-shadow:var(--shadow);
}
.empty__mark{font-size:36px;margin-bottom:14px}
.empty h3{font-size:19px;font-weight:800;margin-bottom:10px}
.empty p{color:var(--muted);margin-bottom:24px}

@media(max-width:560px){
  .rcard__top{flex-direction:column}
}

/* ============ Index v2: Statement / Insight / Proof ============ */
/* 모바일에서만 줄바꿈 (br-pc의 반대) */
.br-m{display:inline}
@media(min-width:820px){.br-m{display:none}}

/* --- Statement: "Short is the new long." --- */
.stmt{padding:96px 0 92px;text-align:center;background:var(--bg)}
.stmt__quote{
  font-size:clamp(34px,6vw,64px);font-weight:800;letter-spacing:-.03em;line-height:1.15;
  background:linear-gradient(92deg,var(--brand) 15%,#ff3d7f 85%);
  -webkit-background-clip:text;background-clip:text;color:transparent;
  margin-bottom:16px;
}
.stmt__sub{color:var(--muted);font-size:clamp(15px,1.8vw,19px);margin-bottom:48px}
.stmt__badge{
  display:inline-block;padding:8px 18px;border-radius:999px;
  background:var(--ink);color:#fff;font-size:13.5px;font-weight:700;letter-spacing:.03em;
  margin-bottom:16px;
}
.stmt__desc{font-size:clamp(17px,2.2vw,22px);font-weight:700;color:var(--ink);margin-bottom:22px}
.plats{display:flex;gap:8px;justify-content:center;flex-wrap:wrap}
.plat{
  padding:9px 18px;border:1px solid var(--line);border-radius:999px;
  font-size:14px;font-weight:600;color:var(--ink);background:var(--bg-alt);
}
.stmt__budget{
  margin-top:28px;
  font-size:clamp(15px,2vw,19px);font-weight:600;color:var(--ink);
}
.stmt__budget strong{
  font-weight:800;color:var(--brand-ink);
  /* 형광펜 밑줄 효과 */
  background:linear-gradient(transparent 62%, #fff3a6 62%);
  padding:0 3px;
}

/* --- Insight: 다크 섹션 (메가 vs 마이크로) --- */
.insight{background:#0a0a0f;color:#e8e8f0;padding:96px 0}
.insight__eyebrow{
  text-align:center;color:#ff3d7f;font-weight:800;font-size:13px;
  letter-spacing:.16em;margin-bottom:14px;
}
.insight__title{
  color:#fff;font-size:clamp(23px,3.6vw,40px);font-weight:800;
  text-align:center;line-height:1.3;margin-bottom:52px;
}
.insight__block + .insight__block{margin-top:96px}
.insight__closing{
  text-align:center;margin-top:56px;
  color:#c9c9d8;font-size:clamp(15px,1.9vw,18px);line-height:1.7;
}
.insight__closing strong{color:#ff3d7f;font-weight:800}

/* 비교 표 */
.cmp{max-width:860px;margin:0 auto;border-top:1px solid rgba(255,255,255,.3)}
.cmp__row{
  display:grid;grid-template-columns:clamp(72px,16vw,190px) 1fr clamp(20px,4vw,44px) 1fr;
  align-items:center;gap:4px;
  padding:20px 6px;border-bottom:1px solid rgba(255,255,255,.16);
}
.cmp__row--head{padding:14px 6px;border-bottom:1px solid rgba(255,255,255,.3)}
.cmp__label{font-weight:700;color:#fff;font-size:clamp(13px,1.6vw,16px);line-height:1.4}
.cmp__col{text-align:center;font-size:clamp(19px,2.8vw,27px);font-weight:800;color:#fff;letter-spacing:-.02em}
.cmp__vs{text-align:center;color:#8a8a9e;font-size:13px;font-weight:600}
.cmp__val{text-align:center;font-size:clamp(13.5px,1.9vw,17px);color:#e8e8f0}
.cmp__span{grid-column:2 / -1;text-align:center;color:#c9c9d8;font-size:clamp(13.5px,1.8vw,16px)}
.cmp__row--roas .cmp__val{font-size:clamp(15px,2.2vw,20px);font-weight:800}
.cmp__val--hot{color:#ff3d7f}

/* ROAS 막대 차트 — 슬라이드 스타일: 패널 박스 없이 검정 배경 위에
   막대 + 꼭대기 도트 마커 + 점선 연결 + 핑크 주석 */
.roas{display:grid;gap:56px;max-width:960px;margin:0 auto}
@media(min-width:860px){.roas{grid-template-columns:1fr 1fr;gap:48px}}
.roas__head{display:flex;align-items:center;justify-content:center;gap:14px;flex-wrap:wrap;margin-bottom:36px}
.roas__when{font-size:15px;color:#9a9aac;font-weight:600}
.roas__pct{font-size:clamp(26px,3.2vw,34px);font-weight:800;color:#fff;letter-spacing:-.02em}
.roas__flag{font-size:14px;font-weight:800;color:#ff3d7f;line-height:1.35}
.roas__flag b{color:#ff7a3d;font-weight:800}
.roas__chart{position:relative}
.roas__plot{position:relative;display:flex;align-items:flex-end;justify-content:center;gap:48px;height:190px}
.roas__bar{position:relative;width:72px;background:#fff;border-radius:12px}
/* 막대 꼭대기의 도트 마커 (흰 점 + 검정 테두리) */
.roas__bar::after{
  content:"";position:absolute;top:0;left:50%;transform:translate(-50%,-50%);
  width:8px;height:8px;border-radius:50%;background:#fff;border:3px solid #0a0a0f;z-index:2;
}
/* 막대 꼭대기끼리 잇는 점선 (좌표는 막대 72px + 간격 48px 기준으로 계산됨) */
.roas__line{position:absolute;border-top:2px dotted rgba(255,255,255,.55)}
.roas__line--rise{left:calc(50% - 60px);top:127px;width:175px;transform:rotate(-46.6deg);transform-origin:0 0}
.roas__line--flat{left:calc(50% - 60px);top:0;width:120px}
/* 지금: 비딩으로 부풀려진 원고료 (흐린 블록 + 흰 상단선 + 위로 향하는 화살표) */
.roas__bar--inflated{
  background:rgba(255,255,255,.10);border-radius:0;border-top:3px solid #fff;
  display:flex;flex-direction:column;justify-content:flex-end;
}
.roas__infl{flex:1;display:grid;place-items:center;color:#fff;font-size:22px;font-weight:400;transform:scaleY(2.6);opacity:.9}
.roas__base{display:block;background:#fff;border-radius:0 0 12px 12px}
.roas__caps{display:flex;justify-content:center;gap:48px;margin-top:14px}
.roas__cap{width:72px;text-align:center;font-size:13px;color:#a9a9bc;line-height:1.5}
.roas__cap strong{color:#fff;font-size:14.5px}
/* 핑크 주석: 부풀려진 막대 왼쪽에 오른쪽 정렬로 배치 */
.roas__note{
  position:absolute;right:calc(50% + 108px);top:34px;margin:0;
  text-align:right;color:#ff3d7f;font-size:13.5px;font-weight:700;line-height:1.6;
}
@media(max-width:600px){
  .roas__plot,.roas__caps{gap:32px}
  .roas__bar,.roas__cap{width:56px}
  .roas__line--rise{left:calc(50% - 44px);top:127px;width:155px;transform:rotate(-55.3deg)}
  .roas__line--flat{left:calc(50% - 44px);width:88px}
  /* 좁은 화면에선 주석을 차트 위 가운데로 */
  .roas__note{position:static;text-align:center;margin:0 0 16px}
}

/* --- Proof: 실전 경험으로 허수없이 --- */
.proof{display:grid;gap:20px}
@media(min-width:820px){.proof{grid-template-columns:repeat(2,minmax(0,1fr));gap:24px}}
.proof__item{min-width:0}
.proof__item{
  background:var(--bg);border:1px solid var(--line);border-radius:var(--radius);
  padding:26px 24px 30px;box-shadow:var(--shadow);
}
/* 이미지 자리: <img>로 교체하면 꽉 차게 들어간다 */
.proof__media{
  aspect-ratio:16/9;border:1.5px dashed #c9c9d6;border-radius:var(--radius-sm);
  background:var(--bg-alt);display:grid;place-items:center;
  margin-bottom:22px;overflow:hidden;
}
.proof__media img{width:100%;height:100%;object-fit:cover}
.proof__ph{color:#9a9aa8;font-size:14px;font-weight:500;text-align:center;padding:0 16px}
/* 클라이언트 로고: 왼쪽에서 등장 → 오른쪽으로 사라지는 무한 루프 */
.proof__media--marquee{
  display:flex;flex-direction:column;justify-content:center;gap:12px;padding:0;
}
/* min-width/width 제한이 없으면 넓은 트랙이 카드/그리드 전체를 밀어내며 레이아웃이 깨진다 */
.marquee{width:100%;min-width:0;overflow:hidden}
.marquee__track{
  display:flex;width:max-content;
  animation:marquee-ltr 22s linear infinite;
}
/* 동일한 로고 세트 2벌을 -50%→0으로 밀면 끊김 없이 왼→오른쪽으로 흐른다 */
@keyframes marquee-ltr{
  from{transform:translateX(-50%)}
  to{transform:translateX(0)}
}
/* 줄마다 위상을 다르게 줘 벽돌처럼 어긋난 배치를 만든다 (위로 갈수록 앞섬) */
/* 첫 줄은 로고 5개(다른 줄은 6개)라 트랙이 짧다 → 지속시간을 5/6로 줄여 이동 속도를 맞춘다 */
.marquee--lead .marquee__track{animation-delay:-1.4s;animation-duration:18.3s}
.marquee--mid .marquee__track{animation-delay:-.7s}
.proof__logo{
  display:grid;place-items:center;flex-shrink:0;
  width:120px;height:56px;margin-right:12px;
  border:1px solid var(--line);border-radius:10px;background:#fff;
}
/* 이미지 최대높이는 px로 고정 (grid 안에서 % 높이는 무시될 수 있음) */
.proof__logo img{max-width:82%;max-height:40px;object-fit:contain}
/* 여백 없이 꽉 찬 로고 파일(KT&G, 영등포구)은 작게 */
.proof__logo--tight img{max-width:58%;max-height:25px}
/* 세로형 로고(한국여성발명협회)는 타일에 꽉 차게 */
.proof__logo--tall img{max-width:88%;max-height:50px}
@media(prefers-reduced-motion:reduce){
  .marquee__track{animation:none}
}
.proof__item h3{font-size:clamp(18px,2vw,21px);margin-bottom:10px;line-height:1.35}
.proof__item p{color:var(--muted);font-size:15px}
.proof__num{color:var(--brand)}

/* 뉴스 클리핑 카드 (클릭 → 기사 원문) */
.proof__media--news{
  display:block;padding:0;
  border-style:solid;border-color:var(--line);
  transition:border-color .15s ease, box-shadow .15s ease;
}
.proof__media--news:hover{border-color:var(--brand);box-shadow:0 4px 16px rgba(91,75,255,.10)}
.newsclip{display:flex;flex-direction:column;gap:14px;height:100%;padding:20px 22px 22px}
.newsclip__body{min-width:0}
.newsclip__headline{
  font-size:clamp(16px,1.9vw,19px);font-weight:800;color:var(--ink);
  line-height:1.4;margin-bottom:10px;letter-spacing:-.01em;
}
.newsclip__snippet{
  font-size:13.5px;color:var(--muted);line-height:1.65;margin-bottom:12px;
  display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;
}
.newsclip__more{font-size:13px;font-weight:700;color:var(--brand-ink)}
.proof__media--news:hover .newsclip__more{text-decoration:underline}
/* 배너 이미지: 코너스 로고 + 주멍이 캐릭터가 함께 담긴 와이드 컷.
   남는 세로 공간을 꽉 채우고(flex:1) 넘치는 부분은 잘라낸다(cover) */
/* .proof__media img{height:100%} 규칙보다 우선하도록 선택자를 구체적으로 쓴다 */
.proof__media--news .newsclip__banner{
  flex:1;min-height:88px;width:100%;height:auto;
  object-fit:cover;object-position:center 42%;
  border-radius:12px;display:block;
}
@media(max-width:560px){
  /* 좁은 화면에선 16:9 고정비를 풀어 내용 높이만큼 늘어나게 한다 (넘침 방지) */
  .proof__media--news{aspect-ratio:auto}
  .proof__media--marquee{aspect-ratio:auto;padding:14px 0}
  .newsclip{gap:12px;padding:18px}
  .proof__media--news .newsclip__banner{flex:none;height:96px}
  .newsclip__snippet{-webkit-line-clamp:2}
}
