@charset "utf-8";
/* =========================================================
   MARKEPIN — 서브페이지 / 공통 섹션 컴포넌트
   컨셉 B 톤앤매너(밝은 에디토리얼 · 블루 액센트) 기준
   ========================================================= */

/* ---------------------------------------------------------
   서브페이지 히어로
   --------------------------------------------------------- */
.phero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(140px, 17vh, 210px) clamp(60px, 7vw, 104px);
  background: linear-gradient(180deg, #FFFFFF 0%, #F3F5F9 100%);
}
.phero .bg-glow {
  top: -46%; left: 50%; transform: translateX(-50%);
  width: 88vw; height: 88vw;
  background: radial-gradient(circle, rgba(62,112,255,.26) 0%, rgba(62,112,255,0) 62%);
  opacity: .85;
}
.phero__in { position: relative; z-index: 3; }
.phero .eyebrow { margin-bottom: 16px; }
.phero h1 {
  font-size: clamp(30px, 4.2vw, 58px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.042em;
}
.phero h1 em { font-style: normal; color: var(--blue); }
.phero__sub {
  margin-top: 26px;
  max-width: 52ch;
  font-size: clamp(15px, 1.5vw, 19px);
  line-height: 1.8;
  color: var(--mute);
}
.phero__act { margin-top: 38px; display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------------------------------------------------------
   섹션 헤드 (좌측 정렬 / 중앙 정렬)
   --------------------------------------------------------- */
.shead { margin-bottom: clamp(38px, 4.6vw, 66px); }
.shead .h-sec { margin-top: 14px; }
.shead .lead { margin-top: 20px; max-width: 56ch; }
.shead--c { text-align: center; }
.shead--c .lead { margin-inline: auto; }

/* ---------------------------------------------------------
   클라이언트 로고 그리드 / 스탯 (전 페이지 공용)
   --------------------------------------------------------- */
.blogos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.blogos span {
  display: grid; place-items: center;
  min-height: clamp(96px, 9.5vw, 134px);
  padding: 0 clamp(14px, 1.6vw, 26px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: clamp(15px, 1.45vw, 19px);
  font-weight: 700;
  color: #A3A8B2;
  transition: background-color .35s var(--ease), color .35s var(--ease);
}
.blogos img {
  max-width: 100%;
  max-height: 40px;
  width: auto; height: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .62;
  transition: filter .35s var(--ease), opacity .35s var(--ease);
}
.blogos .tall img { max-height: 62px; }
.blogos span:hover { background: var(--paper-2); color: var(--ink-2); }
.blogos span:hover img { filter: none; opacity: 1; }
@media (max-width: 900px) { .blogos { grid-template-columns: repeat(3, 1fr); } }

.bstats {
  margin-top: clamp(46px, 5vw, 72px);
  display: flex; align-items: center; justify-content: center;
  gap: clamp(28px, 5vw, 72px);
  flex-wrap: wrap;
}
.bstat { text-align: center; }
.bstat b {
  display: block;
  font-family: var(--en);
  font-size: clamp(52px, 8vw, 118px);
  font-weight: 800; line-height: .88; letter-spacing: -0.04em;
}
.bstat b i { font-style: normal; color: var(--blue); }
.bstat > span {
  display: block; margin-top: 14px;
  font-family: var(--en); font-size: 13px; font-weight: 700;
  letter-spacing: .01em; text-transform: uppercase; color: var(--mute);
}
.bstats__div { width: 1px; height: 74px; background: var(--line); }
@media (max-width: 640px) { .bstats__div { display: none; } }

/* ---------------------------------------------------------
   고민 인용 카드 (“광고비는 쓰고 있는데 매출은 그대로네…”)
   --------------------------------------------------------- */
.pains {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.4vw, 20px);
}
.pain {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 2.8vw, 38px) clamp(22px, 2.4vw, 32px) clamp(28px, 3vw, 38px);
  border-radius: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  isolation: isolate;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease),
              border-color .45s var(--ease);
}
/* 카드별 컬러 — 우상단 소프트 글로우 */
.pain::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: -46%; right: -30%;
  width: 78%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, var(--tint) 0%, transparent 68%);
  opacity: .5;
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.pain--gold  { --tint: rgba(244,169,58,.55);  --tint-ink: #9A6510; --tint-bg: rgba(255,207,110,.16); }
.pain--blue  { --tint: rgba(62,112,255,.45);  --tint-ink: #2749C4; --tint-bg: rgba(88,140,255,.14); }
.pain--coral { --tint: rgba(255,126,104,.48); --tint-ink: #C9482F; --tint-bg: rgba(255,150,130,.16); }

.pain:hover {
  transform: translateY(-5px);
  border-color: rgba(62,112,255,.3);
  box-shadow: 0 28px 58px -30px rgba(12,24,60,.42);
}
.pain:hover::before { opacity: .78; transform: scale(1.08); }
.pain:hover .pain__art img { transform: translateY(-4px) rotate(-2deg); }

.pain__art {
  width: clamp(78px, 7.4vw, 100px);
  aspect-ratio: 1;
  margin-bottom: clamp(18px, 2vw, 26px);
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: var(--tint-bg);
}
.pain__art img {
  width: 82%; height: 82%;
  display: block;
  filter: drop-shadow(0 10px 16px rgba(16,26,58,.16));
  transition: transform .5s var(--ease);
}
.pain__q {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 58px;
  font-weight: 700;
  line-height: .62;
  height: 28px;
  color: var(--blue);
  opacity: .32;
  margin-bottom: 18px;
}
.pain__tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--tint-bg);
  color: var(--tint-ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: var(--ls-kr);
}
.pain p {
  font-size: clamp(15px, 1.45vw, 18.5px);
  font-weight: 600;
  line-height: 1.65;
  letter-spacing: -0.032em;
  color: var(--ink-2);
}
/* 인용부호 워터마크 (컬러 카드 전용) */
.pain--gold p::before,
.pain--blue p::before,
.pain--coral p::before {
  content: '\201C';
  position: absolute;
  top: 14px; right: 20px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 76px;
  font-weight: 700;
  line-height: 1;
  color: var(--tint);
  opacity: .5;
  pointer-events: none;
}
@media (max-width: 860px) {
  .pains { grid-template-columns: 1fr; }
  .pain { display: grid; grid-template-columns: auto 1fr; column-gap: 18px; align-items: center; }
  .pain__art { margin-bottom: 0; grid-row: span 2; }
  .pain__q {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 58px;
  font-weight: 700;
  line-height: .62;
  height: 28px;
  color: var(--blue);
  opacity: .32;
  margin-bottom: 18px;
}
.pain__tag { margin-bottom: 8px; align-self: end; }
}

/* ---------------------------------------------------------
   강조 진술 블록 (다크)
   --------------------------------------------------------- */
.stmt {
  position: relative;
  overflow: hidden;
  background: #02040A;
  color: #fff;
  padding-block: clamp(96px, 12vw, 170px);
  text-align: center;
}
.stmt__in { position: relative; z-index: 3; }
.stmt h2 {
  margin-top: 14px;
  font-size: clamp(24px, 3.6vw, 48px);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.04em;
}
.stmt h2 em { font-style: normal; color: var(--blue-lt); }
.stmt p {
  margin: 30px auto 0;
  max-width: 46ch;
  font-size: clamp(15px, 1.55vw, 19px);
  line-height: 1.85;
  color: rgba(255,255,255,.62);
}
.stmt .btn { margin-top: 40px; }

/* ---------------------------------------------------------
   세일즈 콘텐츠 핵심 원칙 3가지 — 블루 온 블루 카드
   --------------------------------------------------------- */
.princ {
  position: relative;
  overflow: hidden;
  background: #1B4DFF;
  color: #fff;
}
.princ::after {
  content: '';
  position: absolute; inset: auto -10% -30% -10%;
  height: 60%;
  background: radial-gradient(60% 100% at 50% 100%, rgba(129,232,251,.22) 0%, rgba(129,232,251,0) 70%);
  pointer-events: none;
}
.princ .wrap { position: relative; z-index: 2; }
.princ__head { margin-bottom: clamp(40px, 5vw, 72px); }
.princ__head .eyebrow { color: #fff; opacity: .66; }
.princ__head .h-sec { margin-top: 14px; color: #fff; }
.princ__head .lead { margin-top: 20px; color: rgba(255,255,255,.72); }

.pgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.5vw, 22px);
}
.pcard2 {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: clamp(400px, 40vw, 520px);
  padding: clamp(32px, 3.2vw, 46px) clamp(28px, 2.8vw, 40px) clamp(160px, 17vw, 215px);
  border-radius: 22px;
  overflow: hidden;
  background: #0B2BC4;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.09),
              0 28px 56px -30px rgba(3,14,72,.7);
  transition: transform .5s var(--ease), background-color .5s var(--ease),
              box-shadow .5s var(--ease);
}
.pcard2:hover {
  transform: translateY(-6px);
  background: #0D31D8;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.16),
              0 36px 68px -30px rgba(3,14,72,.8);
}

.pcard2__no {
  font-size: clamp(14px, 1.35vw, 16px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: rgba(255,255,255,.62);
  margin-bottom: 12px;
}
.pcard2__no b {
  font-family: var(--en);
  font-weight: 800;
  letter-spacing: .01em;
  margin-right: 7px;
  color: var(--cyan);
}
.pcard2 h3 {
  font-size: clamp(22px, 2.35vw, 31px);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.042em;
  color: #fff;
  margin-bottom: 22px;
}
.pcard2 ul { position: relative; z-index: 2; }
.pcard2 li {
  position: relative;
  padding-left: 15px;
  font-size: clamp(14.5px, 1.32vw, 16.5px);
  line-height: 1.74;
  letter-spacing: -0.028em;
  color: rgba(255,255,255,.72);
}
.pcard2 li + li { margin-top: 9px; }
.pcard2 li::before {
  content: '';
  position: absolute; left: 0; top: .74em;
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(255,255,255,.4);
}
.pcard2 li.mk { color: #fff; font-weight: 600; }
.pcard2 li.mk::before { background: var(--cyan); }

/* 카드 우하단 3D 오브젝트 — 코너 밖으로 자연스럽게 흘러나가도록 */
.pcard2__obj {
  position: absolute;
  right: -16%;
  bottom: -14%;
  width: clamp(240px, 25vw, 330px);
  pointer-events: none;
  transition: transform .7s var(--ease-out);
}
.pcard2:hover .pcard2__obj { transform: translate(-6px, -10px) scale(1.05); }
@media (max-width: 900px) {
  .pgrid { grid-template-columns: 1fr; }
  .pcard2 { min-height: 340px; padding-bottom: 160px; }
  .pcard2__obj { width: 250px; right: -8%; bottom: -10%; }
}

/* ---------------------------------------------------------
   스플릿 밴드 (좌 카피 · 우 3D 오브젝트)
   --------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}
.split h2 {
  font-size: clamp(26px, 3.4vw, 46px);
  font-weight: 800;
  line-height: 1.26;
  letter-spacing: -0.042em;
}
.split p {
  margin-top: 22px;
  font-size: clamp(15px, 1.45vw, 18.5px);
  line-height: 1.82;
  color: var(--mute);
}
.split .btn { margin-top: 34px; }
.split__obj { justify-self: center; width: min(100%, 460px); }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split__obj { order: -1; width: min(100%, 340px); }
}

/* ---------------------------------------------------------
   비교표 (일반 대행사 vs 마케핀)
   --------------------------------------------------------- */
.cmp {
  border-top: 2px solid var(--ink);
  overflow-x: auto;
}
.cmp table { width: 100%; min-width: 620px; border-collapse: collapse; }
.cmp th, .cmp td {
  padding: clamp(18px, 2vw, 26px) clamp(14px, 1.8vw, 26px);
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: clamp(14.5px, 1.35vw, 17px);
}
.cmp thead th {
  font-size: clamp(14px, 1.3vw, 16px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--mute);
  padding-block: 18px;
}
.cmp thead th:last-child {
  color: var(--blue);
  font-family: var(--en);
  font-size: clamp(16px, 1.7vw, 21px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.cmp tbody th {
  width: 26%;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.cmp td { color: var(--mute); }
.cmp td.mk {
  width: 37%;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.03em;
  background: rgba(62,112,255,.045);
  box-shadow: inset 2px 0 0 var(--blue);
}
.cmp tbody tr:hover td.mk { background: rgba(62,112,255,.085); }

/* ---------------------------------------------------------
   프로세스 STEP
   --------------------------------------------------------- */
.steps { border-top: 1px solid var(--line); }
.step {
  display: grid;
  grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr);
  gap: clamp(20px, 4vw, 70px);
  padding-block: clamp(40px, 5vw, 76px);
  border-bottom: 1px solid var(--line);
}
.step__no {
  display: inline-flex; align-items: baseline; gap: 10px;
  font-size: clamp(15px, 1.4vw, 17px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--blue);
  margin-bottom: 16px;
}
.step__no b {
  font-family: var(--en);
  font-size: 12.5px; font-weight: 800;
  letter-spacing: .02em; text-transform: uppercase;
  color: #fff;
  background: var(--blue);
  padding: 5px 10px;
  border-radius: 6px;
}
.step h3 {
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: -0.038em;
}
.step__lead {
  margin-top: 16px;
  font-size: clamp(15px, 1.45vw, 18.5px);
  line-height: 1.8;
  color: var(--mute);
}
.step__body p {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.85;
  color: var(--mute);
}
.step__body p + p { margin-top: 18px; }
.step__body p strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.032em;
  margin-bottom: 6px;
}
.step__body .tlink { margin-top: 24px; color: var(--blue); }
@media (max-width: 860px) { .step { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------
   포트폴리오 카드 그리드
   --------------------------------------------------------- */
.filters {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: clamp(30px, 3.4vw, 46px);
}
.filters button {
  height: 42px; padding: 0 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 14.5px; font-weight: 600; letter-spacing: -0.03em;
  color: var(--mute);
  transition: all .3s var(--ease);
}
.filters button:hover { border-color: var(--ink); color: var(--ink); }
.filters button.on { background: var(--ink); border-color: var(--ink); color: #fff; }

.works {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.6vw, 24px);
}
.work { display: block; }
.work__thumb {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: 18px;
  overflow: hidden;
  background: #E4E7ED;
}
.work__thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s var(--ease-out);
}
.work:hover .work__thumb img { transform: scale(1.06); }
.work__thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(4,6,14,.3) 0%, rgba(4,6,14,0) 38%);
}
.work__badge {
  position: absolute; z-index: 2;
  top: 13px; left: 13px;
  display: inline-flex; align-items: center; gap: 6px;
  height: 26px; padding: 0 11px;
  border-radius: 999px;
  background: rgba(6,8,16,.5);
  backdrop-filter: blur(8px);
  font-family: var(--en);
  font-size: 11px; font-weight: 700; letter-spacing: .02em;
  color: #fff;
}
.work__badge::before {
  content: '';
  width: 0; height: 0;
  border-left: 7px solid #fff;
  border-top: 4.5px solid transparent;
  border-bottom: 4.5px solid transparent;
}
.work__meta { padding-top: 16px; }
.work__meta b {
  display: block;
  font-size: 17px; font-weight: 700; letter-spacing: -0.034em;
}
.work__meta span {
  display: block; margin-top: 6px;
  font-size: 14px; color: var(--mute);
}
.work__meta .go {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 12px;
  font-size: 13px; font-weight: 600; color: var(--blue);
  transition: gap .3s var(--ease);
}
.work:hover .work__meta .go { gap: 11px; }
@media (max-width: 1000px) { .works { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .works { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------
   문의 폼
   --------------------------------------------------------- */
.form {
  display: grid;
  grid-template-columns: minmax(0,.72fr) minmax(0,1.28fr);
  gap: clamp(30px, 5vw, 80px);
  align-items: start;
}
.form__aside { position: sticky; top: 110px; }
.form__aside h2 {
  font-size: clamp(24px, 2.9vw, 38px);
  font-weight: 800; line-height: 1.34; letter-spacing: -0.04em;
  margin-top: 14px;
}
.form__aside p {
  margin-top: 20px;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.85; color: var(--mute);
}
.form__info {
  margin-top: 34px; padding-top: 28px;
  border-top: 1px solid var(--line);
  display: grid; gap: 16px;
}
.form__info div { display: flex; gap: 14px; align-items: baseline; }
.form__info dt, .form__info b {
  font-family: var(--en);
  font-size: 12px; font-weight: 700; letter-spacing: .03em;
  text-transform: uppercase; color: var(--mute);
  min-width: 62px;
}
.form__info span { font-size: 15.5px; font-weight: 500; }

.fset { border: 0; }
.fset + .fset { margin-top: clamp(38px, 4vw, 58px); }
.fset legend {
  display: block; width: 100%;
  padding-bottom: 16px; margin-bottom: 26px;
  border-bottom: 2px solid var(--ink);
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 700; letter-spacing: -0.036em;
}
.frow { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.frow + .frow { margin-top: 20px; }
.frow--1 { grid-template-columns: 1fr; }
.fld label {
  display: block;
  font-size: 14px; font-weight: 600; letter-spacing: -0.03em;
  margin-bottom: 9px;
}
.fld label .req { color: var(--blue); margin-left: 3px; }
.fld input,
.fld select,
.fld textarea {
  width: 100%;
  height: 54px;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-family: var(--kr);
  font-size: 15.5px;
  letter-spacing: -0.02em;
  color: var(--ink);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.fld textarea { height: auto; min-height: 148px; padding: 15px 16px; line-height: 1.7; resize: vertical; }
.fld select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' fill='none' stroke='%237A8090' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
}
.fld input::placeholder, .fld textarea::placeholder { color: #BFC3CC; }
.fld input:focus, .fld select:focus, .fld textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(62,112,255,.14);
}
.fld .help { margin-top: 8px; font-size: 13px; color: var(--mute); }

.chips { position: relative; display: flex; flex-wrap: wrap; gap: 8px; }
.chips input {
  position: absolute; left: 0; top: 0;
  width: 1px; height: 1px;
  opacity: 0; pointer-events: none;
}
.chips label {
  display: inline-flex; align-items: center;
  height: 46px; padding: 0 18px; margin: 0;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 14.5px; font-weight: 500; color: var(--mute);
  cursor: pointer;
  transition: all .25s var(--ease);
}
.chips label:hover { border-color: var(--ink); color: var(--ink); }
.chips input:checked + label {
  background: var(--blue); border-color: var(--blue); color: #fff; font-weight: 600;
}

.agree {
  margin-top: 30px;
  display: flex; align-items: center; gap: 11px;
  font-size: 15px;
}
.agree input { width: 20px; height: 20px; accent-color: var(--blue); flex: 0 0 auto; }
.agree a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.form__submit { margin-top: 30px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.form__submit .note { font-size: 13.5px; color: var(--mute); }

@media (max-width: 900px) {
  .form { grid-template-columns: 1fr; }
  .form__aside { position: static; }
  .frow { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------
   CTA 밴드 (서브페이지 하단 공통)
   --------------------------------------------------------- */
.cta {
  position: relative; overflow: hidden;
  background: #05070E; color: #fff;
  padding-block: clamp(90px, 11vw, 150px);
  text-align: center;
}
.cta__in { position: relative; z-index: 3; }
.cta h2 {
  margin-top: 14px;
  font-size: clamp(24px, 3.4vw, 44px);
  font-weight: 800; line-height: 1.3; letter-spacing: -0.04em;
}
.cta p {
  margin: 26px auto 0; max-width: 44ch;
  font-size: clamp(15px, 1.45vw, 18.5px); line-height: 1.82;
  color: rgba(255,255,255,.64);
}
.cta__act { margin-top: 38px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------------------------------------------------------
   블로그 인용 링크 박스
   --------------------------------------------------------- */
.blink {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 16px 24px 16px 20px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: border-color .3s var(--ease), transform .3s var(--ease),
              box-shadow .3s var(--ease);
}
.blink:hover {
  border-color: rgba(62,112,255,.4);
  transform: translateY(-2px);
  box-shadow: 0 18px 38px -24px rgba(12,24,60,.5);
}
.blink em {
  font-style: normal;
  font-family: var(--en);
  font-size: 11px; font-weight: 800; letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff; background: #03C75A;
  padding: 4px 8px; border-radius: 5px;
}
.blink b { font-size: 15.5px; font-weight: 600; letter-spacing: -0.032em; }
.blink i { font-style: normal; color: var(--mute); transition: transform .3s var(--ease); }
.blink:hover i { transform: translateX(4px); }
.stmt .blink { background: rgba(255,255,255,.05); border-color: var(--line-d); }
.stmt .blink b { color: #fff; }
.stmt .blink:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.3); }

/* ---------------------------------------------------------
   100% 환불 약속 (스플릿 밴드)
   --------------------------------------------------------- */
.bpromise2 { background: var(--paper); }
.bpromise2 .split h2 { letter-spacing: -0.042em; }
.bpromise2 .split__obj { width: min(100%, 440px); }

/* ---------------------------------------------------------
   계약 전 체크 — 텍스트 + 블로그 글 캡처
   --------------------------------------------------------- */
.bsign {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
  align-items: center;
  gap: clamp(36px, 5vw, 84px);
}
.bsign__txt .h-sec { margin-top: 14px; }
.bsign__txt .lead { margin-top: 20px; max-width: 46ch; }
.bsign__links {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.bsign__shots {
  position: relative;
  padding: clamp(10px, 1.6vw, 22px) 0;
  min-height: clamp(300px, 34vw, 440px);
}
.shot {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: var(--paper);
  border: 1px solid rgba(15,24,48,.1);
  box-shadow: 0 30px 60px -32px rgba(12,24,60,.5);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.shot__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 30px;
  padding: 0 12px;
  background: var(--paper-2);
  border-bottom: 1px solid rgba(15,24,48,.08);
}
.shot__bar i {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #D9DDE5;
}
.shot__bar i:first-child { background: #FF9F8B; }
.shot__bar i:nth-child(2) { background: #FFD38B; }
.shot__bar i:nth-child(3) { background: #A8E3B6; }
.shot__bar b {
  margin-left: 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--mute);
  letter-spacing: -0.01em;
}
.shot img {
  display: block;
  width: 100%;
  height: clamp(230px, 24vw, 312px);
  object-fit: cover;
  object-position: top center;
}
.shot--front {
  position: relative;
  z-index: 2;
  width: 88%;
  margin-left: auto;
}
.shot--back {
  position: absolute;
  z-index: 1;
  left: 0;
  top: clamp(40px, 4.8vw, 62px);
  width: 64%;
  transform: rotate(-4deg);
  opacity: .96;
}
.shot--front:hover { transform: translateY(-6px); box-shadow: 0 40px 70px -34px rgba(12,24,60,.55); }
.shot--back:hover  { transform: rotate(-4deg) translateY(-6px); }

.shot__cta {
  position: absolute;
  left: 14px; bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 15px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: var(--ls-kr);
  box-shadow: 0 12px 22px -10px rgba(62,112,255,.7);
}
.shot__cta i { font-style: normal; transition: transform .35s var(--ease); }
.shot--front:hover .shot__cta i { transform: translateX(3px); }

@media (max-width: 960px) {
  .bsign { grid-template-columns: 1fr; gap: 34px; }
  .bsign__shots { min-height: 0; padding-bottom: 30px; }
  .shot--front { width: 84%; }
  .shot--back { top: 40px; width: 58%; }
  .shot img { height: clamp(210px, 46vw, 300px); }
}
