:root {
  /* === 메인 = 틸(브랜드) === */
  --green: #43ABA2;
  /* 브랜드 민트 */
  --deepgreen: #005F73;
  /* 브랜드 딥그린 (제목·강조·어두운 패널·CTA) */
  --mint: #79d3b8;
  /* 밝은 민트 */
  --blue: #005F73;
  /* 키커·강조 텍스트 = 딥그린 (대비 4.5:1) */
  --sky: #E6F4F1;
  /* 배지 배경 = 옅은 민트 파스텔 */

  /* === 랜딩 포인트(액센트) — 소량만, 메인은 틸 유지 === */
  --navy: #12223a;
  /* 네이비 — 푸터·중간 포인트 강조용 */
  --blob-blue: rgba(37, 92, 255, 0.17);
  /* 히어로 장식 blob (블루 글로우) */
  --blob-violet: rgb(247 236 255 / 94%);
  /* 히어로 장식 blob (퍼플 글로우) */
  --red: #e11d48;
  /* 빨강 — 아주 작은 주의/강조 포인트 */
  --dark: #111827;
  --gray: #667085;
  --light: #f9f9f9;
  --line: #e5eaf1;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(18, 34, 58, 0.12);
  --radius: 24px;



}

/* ===== 기본 리셋 (최소 · 추후 공용 common으로 이동 예정) ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--dark);
  background: var(--white);
  word-break: keep-all;
  line-height: 1.55;
}

ul,
ol {
  list-style: none;
  /* 푸터 등 목록의 기본 점(•) 제거 */
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

button {
  font: inherit;
  cursor: pointer;
}

/* ===== /기본 리셋 ===== */

.container {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

section {
  padding: clamp(64px, 9vw, 140px) 0;
}

section[id] {
  scroll-margin-top: 100px;
}

.topbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  width: min(1240px, calc(100% - 32px));
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(18, 34, 58, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.nav {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px 0 32px;
}

.topbar .container {
  width: 100%;
}

.topbar .btn {
  height: 40px;
  font-size: 14px;
  font-weight: 800;
  padding: 0 18px;
  gap: 6px;
  background: transparent;
  color: var(--deepgreen);
  border: 1.5px solid var(--deepgreen);
  box-shadow: none;
  transition: background 0.2s, color 0.2s;
}

.topbar .btn:hover {
  background: var(--deepgreen);
  color: var(--white);
}

/* Hero primary CTA — 가장 강하게 */
.lp-hero .btn-yellow {
  height: 60px;
  font-size: 17px;
  letter-spacing: -0.01em;
  box-shadow: 0 14px 32px rgba(59, 186, 108, 0.42);
}

.topbar .btn::after {
  content: "→";
  font-weight: 800;
  font-size: 16px;
  transition: transform 0.2s;
}

.topbar .btn:hover::after {
  transform: translateX(3px);
}

.topbar .logo {
  display: inline-block;
  width: 125px;
  height: 23px;
  background: url("../assets/logo-black.svg") no-repeat 0 0;
  background-size: 100% 100%;
}

.blind {
  overflow: hidden;
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;


  clip: rect(0, 0, 0, 0);
}

/* SECTION 01: HERO */
.lp-hero {
  background: linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%);
  padding: 100px 0 40px;
  position: relative;
  overflow: hidden;
  height: 900px;
  /* 고정 높이 (모바일은 아래 media에서 auto) */
  display: flex;
  align-items: center;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-decoration: none;
  animation: scroll-bounce 1.8s ease-in-out infinite;
}

.scroll-indicator svg {
  width: 24px;
  height: 24px;
  stroke: var(--green);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes scroll-bounce {

  0%,
  100% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, 10px);
  }
}

.hero-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
}

.blob {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: rgba(116, 240, 203, 0.15);
  top: -80px;
  left: -2%;
  animation: blob-float-1 8s ease-in-out infinite;
}

.blob-2 {
  width: 420px;
  height: 420px;
  background: rgba(228, 245, 255, 0.75);
  top: 30%;
  right: 0%;
  animation: blob-float-2 10s ease-in-out infinite;
}


@keyframes blob-float-1 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(60px, 40px) scale(1.1);
  }

  66% {
    transform: translate(-40px, 70px) scale(0.95);
  }
}

@keyframes blob-float-2 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(-50px, 50px) scale(1.05);
  }

  66% {
    transform: translate(40px, -40px) scale(0.92);
  }
}

@keyframes blob-float-3 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(70px, -50px) scale(1.08);
  }

  66% {
    transform: translate(-60px, -30px) scale(0.95);
  }
}

.lp-hero>.container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.lp-hero h1 {
  font-size: clamp(3vw, 7vw, 56px);
  color: var(--dark);
  line-height: 1.2;
  margin-top: 0;
  letter-spacing: -0.04em;
}

.lp-hero h1 .hl {
  position: relative;
  display: inline-block;
  color: var(--deepgreen);
  z-index: 1;
}

/* 형광펜 효과 (왼→오른쪽 그어지는 애니메이션) */
.lp-hero h1 .hl::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 0;
  height: 16px;
  background: rgba(121, 211, 184, 0.55);
  border-radius: 2px;
  z-index: -1;
  animation: hl-draw 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.7s;
}

@keyframes hl-draw {
  to {
    width: 100%;
  }
}

/* === 히어로 등장 애니메이션 === */
.lp-hero .hero-line,
.lp-hero .hero-anim {
  opacity: 0;
  transform: translateY(20px);
  animation: hero-rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.lp-hero h1 .hero-line {
  display: block;
}

/* 시퀀스 딜레이 */
.lp-hero .hero-line:nth-of-type(1) {
  animation-delay: 0.1s;
}

.lp-hero .hero-line:nth-of-type(2) {
  animation-delay: 0.4s;
}

.lp-hero .hero-anim-p {
  animation-delay: 0.95s;
}

.lp-hero .hero-anim-badges {
  animation-delay: 1.15s;
}

.lp-hero .hero-anim-btn {
  animation-delay: 1.35s;
}

@keyframes hero-rise {
  to {
    opacity: 1;
    transform: none;
  }
}

/* 모션 감소 환경 */
@media (prefers-reduced-motion: reduce) {

  .lp-hero .hero-line,
  .lp-hero .hero-anim {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .lp-hero h1 .hl::before {
    width: 100%;
    animation: none;
  }
}

.lp-hero p {
  font-size: clamp(16px, 1.6vw, 20px);
  color: var(--gray);
  font-weight: 600;
  margin: 24px 0 32px;
  line-height: 1.6;
}

.badges {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(18, 34, 58, 0.06);
  color: var(--deepgreen);
  padding: 8px 16px;
  border: 1px solid rgba(18, 34, 58, 0.18);
  border-radius: 99px;
  font-weight: 700;
  font-size: 15px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 2px 8px rgba(18, 34, 58, 0.04);
}

.badge::before {
  content: "⏰";
  font-size: 14px;
}

.badge-yellow {
  background: rgba(59, 186, 108, 0.12);
  color: var(--deepgreen);
  border-color: rgba(59, 186, 108, 0.4);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 2px 8px rgba(59, 186, 108, 0.1);
}

.badge-yellow::before {
  content: "✓";
  font-size: 13px;
  font-weight: 800;
  color: var(--green);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  height: 56px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 18px;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.btn-yellow {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(59, 186, 108, 0.3);
}

.btn-yellow:hover {
  background: var(--deepgreen);
  transform: translateY(-2px);
}

.hero-card {
  position: relative;
  background: transparent;
  padding: 0 0 56px;
}

.hero-photo {
  width: 100%;
  height: clamp(360px, 40vw, 540px);
  background:
    linear-gradient(165deg, rgba(0, 95, 115, 0) 52%, rgba(0, 95, 115, 0.28) 100%),
    url('./img/hero_woman.png') center 25%/cover no-repeat;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(18, 34, 58, 0.18);
}

/* 떠있는 필요서류 칩 (상단 좌측) */
.hero-doc-chip {
  position: absolute;
  z-index: 3;
  top: 28px;
  left: -20px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 16px;
  padding: 12px 14px;
  box-shadow: 0 16px 36px rgba(18, 34, 58, 0.16);
  max-width: 290px;
  animation: chip-float 4s ease-in-out infinite;
}

.hero-doc-chip .doc-ico {
  font-size: 22px;
  flex-shrink: 0;
}

.hero-doc-chip .doc-text {
  flex: 1;
  min-width: 0;
}

.hero-doc-chip .doc-text strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}

.hero-doc-chip .doc-text p {
  margin: 0;
  font-size: 11px;
  color: var(--gray);
  font-weight: 500;
  line-height: 1.4;
}

.hero-doc-chip .doc-badge {
  flex-shrink: 0;
  background: var(--sky);
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  padding: 5px 10px;
  border-radius: 999px;
}

/* 메인 정보 카드 - 진단 안내 (하단 우측) */
.hero-info {
  position: absolute;
  right: -16px;
  bottom: -20px;
  width: min(380px, 90%);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 20px;
  padding: 22px 24px 20px;
  box-shadow: 0 24px 50px rgba(18, 34, 58, 0.18);
  z-index: 2;
}

.hero-info__kicker {
  font-size: 12px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.hero-info__title {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.25;
  margin-bottom: 16px;
}

/* 3개의 체크 칩 */
.hero-info__chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.chip-pill {
  font-size: 11.5px;
  font-weight: 800;
  padding: 6px 11px;
  border-radius: 999px;
  letter-spacing: -0.01em;
}

.chip-pill.chip-mint {
  background: rgba(121, 211, 184, 0.20);
  color: var(--deepgreen);
}

.chip-pill.chip-blue {
  background: var(--sky);
  color: var(--blue);
}

.chip-pill.chip-peach {
  background: #fff1de;
  color: #c2660b;
}

/* 떠있는 칩 (서류 1장) */
@keyframes chip-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* SECTION 02: CHECK GUIDE */
.lp-check {
  position: relative;
  overflow: hidden;
  background: var(--white);
  text-align: center;
  padding-top: 160px;
}

/* 반원 도형: 풀폭, 상단은 평평하고 하단만 라운드 */
.check-dome {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 1350px;
  border-radius: 0 0 50% 50% / 0 0 22% 22%;
  background:
    linear-gradient(180deg,
      #f5f8ff 0%,
      rgba(216, 255, 255, 0.258) 75%,
      rgba(216, 255, 243, 0.18) 100%);
  z-index: 0;
  pointer-events: none;
}

/* 본문은 도형 위로 */
.lp-check>.container {
  position: relative;
  z-index: 2;
}

.section-head {
  margin-bottom: 56px;
}

.kicker {
  color: var(--blue);
  font-weight: 800;
  margin-bottom: 12px;
  font-size: 30px;
}

.section-head h2 {
  font-size: clamp(36px, 4.5vw, 48px);
  color: var(--navy);
  margin: 0 0 16px;
  letter-spacing: -0.04em;
  line-height: 1.25;
}

.section-head h2 em {
  font-style: normal;
  color: var(--deepgreen);
}

/* 브랜드 그라데이션 텍스트 (모두비 등 브랜드명) */
.brand-grad {
  background: linear-gradient(95deg,
      var(--mint) 0%,
      var(--green) 45%,
      var(--deepgreen) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.section-head p {
  font-size: 18px;
  color: var(--gray);
  margin: 0;
  line-height: 1.6;
}

/* === 가이드 흐름 영역 === */
.guide-flow {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding: 24px 0;
}

.guide-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 56px 0;
  text-align: left;
}

/* STEP 2: 이미지 좌 / 텍스트 우 (지그재그) */
.guide-row-visualfirst .guide-visual {
  order: 1;
}

.guide-row-visualfirst .guide-text {
  order: 2;
}

/* STEP 2 하단 여백 - 스크롤 호흡 + 배경 도형 길게 보이도록 */
.guide-row-visualfirst {
  padding-bottom: 140px;
}

.step-kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--blue);
  margin-bottom: 14px;
}

.step-kicker-mint {
  color: var(--green);
}

.guide-text{
  padding: 0 20px;
}

.guide-text h3 {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.04em;
  line-height: 1.3;
  margin: 0 0 8px;
}


.guide-desc {
  font-size: 17px;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 22px;
  font-weight: 600;
}

.guide-desc strong {
  color: var(--blue);
  font-weight: 800;
}

.guide-tip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: var(--sky);
  color: var(--blue);
  border-radius: 99px;
  font-weight: 800;
  font-size: 14px;
}

.guide-tip.tip-mint {
  background: rgba(66, 171, 162, 0.12);
  color: var(--deepgreen);
}

/* 시각 자료 영역 (이미지를 감싸는 흰 카드) */
.guide-visual {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 14px;
  box-shadow: 0 20px 40px rgba(18, 34, 58, 0.06);
}

/* 이미지: 위아래 살짝 잘리도록 aspect-ratio + object-fit cover */
.guide-visual-img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 20px;
}

/* 점선 + 끝점 (시선 흐름 안내) */
.guide-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 0 0;
}

.connector-line {
  width: 2px;
  height: 90px;
  background-image: linear-gradient(to bottom, var(--green) 50%, transparent 50%);
  background-size: 2px 10px;
  background-repeat: repeat-y;
}

.connector-dot {
  width: 14px;
  height: 14px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(66, 171, 162, 0.2);
}

/* HOW MIGHT WE 마무리 - 흰 배경, 텍스트가 포인트 */
.guide-conclusion {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 1080px;
  margin: 24px auto 0;
  padding: 48px 32px 16px;
  background: transparent;
}


.guide-conclusion h3 {
  font-size: clamp(24px, 2.8vw, 34px);
  color: var(--navy);
  letter-spacing: -0.035em;
  line-height: 1.5;
  margin: 0;
  font-weight: 800;
}

/* 강조 텍스트: 포인트 컬러만 (밑줄 없음) */
.guide-conclusion h3 em {
  font-style: normal;
  color: var(--mint);
}

/* SECTION 03: 상담 전환 */
/* ============================================== */
/* SECTION: lp-conversion — 새 배치 (브랜드 톤)   */
/* ============================================== */
.lp-conversion {
  background: var(--light);
  padding: 120px 0;
}

.conv-stack {
  display: flex;
  flex-direction: column;
  gap: 54px;
}

/* ── 1) 상단: 타이틀(좌) + features(우) ── */
/* ── 1) 상단 히어로: 박스 컨테이너 + 2-column ── */
.conv-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: stretch;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 56px;
  box-shadow:
    0 1px 2px rgba(18, 34, 58, 0.05),
    0 8px 24px rgba(18, 34, 58, 0.04);
}

.conv-head-wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: space-between;
}

.conv-head {
  text-align: left;
}

.conv-head h2 {
  font-size: clamp(36px, 4.5vw, 50px);
  color: var(--navy);
  margin: 0 0 16px;
  letter-spacing: -0.04em;
  line-height: 1.2;
  font-weight: 800;
}

.conv-head h2 em {
  font-style: normal;
  color: var(--navy);
}

.conv-head p {
  font-size: 16px;
  color: var(--gray);
  margin: 0;
  line-height: 1.65;
  font-weight: 500;
}

.conv-head .conv-cta {
  margin-top: 24px;
  width: 60%;
}

/* features 세로 스택, 각각 가로 pill */
.conv-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.conv-feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 4px 16px;
  display: flex;
  align-items: center;
  gap: 18px;
  text-align: left;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.conv-feature:hover {
  border-color: var(--mint);
  transform: translateY(-2px);
}

.conv-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  font-size: 22px;
  margin-bottom: 4px;
  flex-shrink: 0;
}

.conv-feature strong {
  display: block;
  font-size: 15px;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
  flex-shrink: 0;
}

.conv-feature strong em {
  font-style: normal;
  color: var(--deepgreen);
  font-weight: 800;
  font-size: 1.05em;
  margin-left: 2px;
}

.conv-feature p {
  font-size: 14px;
  color: var(--gray);
  margin: 0;
  font-weight: 500;
  line-height: 1.4;
  padding-left: 16px;
  border-left: 1px solid var(--line);
}

/* ── 2) 마지막 기회 배너 (우측 컬럼) ── */
.conv-banner {
  display: flex;
  flex-direction: column;
  padding: 36px 40px;
  background: linear-gradient(160deg, #f3faf7 0%, #ebf6f0 100%);

  border-radius: 24px;
  position: relative;
  gap: 14px;
}

/* 키커: 빨강 배지 (깜빡이는 도트 + 빨강 톤 강화) */
.conv-banner-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px 7px 12px;
  background: rgba(225, 29, 72, 0.12);
  color: var(--red);
  border: 1.5px solid rgba(225, 29, 72, 0.35);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  width: fit-content;
  letter-spacing: -0.01em;
  box-shadow: 0 4px 12px rgba(225, 29, 72, 0.10);
}

.conv-banner-kicker::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse-red 1.6s ease-in-out infinite;
}

@keyframes pulse-red {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.5);
  }

  50% {
    opacity: 0.45;
    box-shadow: 0 0 0 5px rgba(225, 29, 72, 0);
  }
}

/* 타이틀 + 5년 inline row */
.conv-banner-title-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}

.conv-banner-title {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.3;
  margin: 0;
}

.conv-banner-title em {
  font-style: normal;
  color: var(--navy);
}

/* 큰 5년 */
.conv-banner-num {
  display: flex;
  align-items: baseline;
  gap: 2px;
  color: var(--deepgreen);
  line-height: 1;
  padding: 0 20px;
}

.num-big {
  font-size: clamp(60px, 7vw, 92px);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.05em;
}

.num-unit {
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.conv-banner-desc {
  font-size: 14px;
  color: var(--gray);
  font-weight: 500;
  margin: 0;
  line-height: 1.5;
}

/* CTA: 풀폭 딥그린 pill */
.conv-cta {
  display: flex;
  width: 100%;
  margin-top: 0;
}

.conv-cta .btn {
  width: 100%;
  min-width: 0;
  padding: 16px 24px;
  background: var(--deepgreen);
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 95, 115, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.conv-cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 95, 115, 0.25);
}

/* ── 3) 우측 컬럼: 배너 + 전문가 미니 ── */
.conv-right-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.conv-right-col > .conv-banner {
  flex: 1 1 auto;
}

/* 전문가 미니 카드 (보조 trust 신호) */
.conv-experts-mini {
  background: #fff;
  border: 1.5px solid rgba(121, 211, 184, 0.55);
  border-radius: 20px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 6px 18px rgba(121, 211, 184, 0.14);
}

/* 박스 타이틀: 양옆 라인으로 박스 헤더처럼 강조 */
.conv-experts-mini .kicker {
  font-size: 16px;
  color: var(--deepgreen);
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: none;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}

.conv-experts-mini .kicker::before,
.conv-experts-mini .kicker::after {
  content: '';
  flex: 0 0 28px;
  height: 1px;
  background: var(--mint);
}

/* 인물 가로 정렬 (2열) */
.expert-mini-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.expert-mini-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px 12px;
  background: #f7faf9;
  border-radius: 14px;
  text-align: center;
}

.expert-mini-avatar {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 35%,
      #2c4366 0%,
      #1a2c4a 45%,
      #0f1e36 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.expert-mini-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.expert-mini-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.expert-mini-info strong {
  font-size: 15px;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.expert-mini-info strong em {
  font-style: normal;
  color: var(--deepgreen);
  font-weight: 700;
  font-size: 13px;
  margin-left: 4px;
}

.expert-mini-info p {
  font-size: 12.5px;
  color: var(--gray);
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
}

/* ── 트러스트 스트립 (미니 박스 하단) ── */
.conv-experts-mini .conv-trust-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: var(--gray);
  font-weight: 600;
  letter-spacing: -0.01em;
  border-top: 1px dashed var(--line);
  padding-top: 14px;
  margin-top: 2px;
}

.conv-trust-divider {
  color: var(--line);
  font-weight: 400;
}

/* SECTION 04: 모두비 소개 */
.lp-intro {
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 35%, #f3faf7 100%);
}

.flow-bridge {
  background: var(--navy);
  color: white;
  padding: 24px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.flow-step {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-width: 200px;
  padding: 20px;
  border-radius: 16px;
  /* 초기: 박스 없음 (투명) */
  background: transparent;
  transition: background 0.7s ease;
}

.flow-step.green {
  /* 다른 스텝과 동일한 크기로 정렬 */
  background: transparent;
  padding: 20px;
  border-radius: 16px;
}

.flow-step b {
  font-size: 18px;
  font-weight: 700;
}

/* 강조 텍스트 - 얇은 흰 밑줄 */
.flow-step strong {
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.85);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

/* 숫자 배지 */
.flow-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-family: 'Inter', sans-serif;
}

.flow-step.green .flow-num {
  background: #fff;
  color: var(--deepgreen);
  width: 44px;
  height: 44px;
  font-size: 22px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.flow-arrow {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.15);
  font-weight: 300;
  transition: color 0.7s ease;
}

/* === 박스 색 순차 진입 — 민트 명도(밝기)로 1→2→3 점점 밝아짐 === */
.flow-bridge.is-visible .flow-step:nth-child(1) {
  background: #2c8c7e;
  transition-delay: 0.3s;
}

.flow-bridge.is-visible .flow-arrow:nth-child(2) {
  color: rgba(255, 255, 255, 0.7);
  transition-delay: 0.6s;
}

.flow-bridge.is-visible .flow-step:nth-child(3) {
  background: #4ebaac;
  transition-delay: 0.8s;
}

.flow-bridge.is-visible .flow-arrow:nth-child(4) {
  color: rgba(255, 255, 255, 0.7);
  transition-delay: 1.1s;
}

.flow-bridge.is-visible .flow-step.green {
  background: var(--mint);
  transition-delay: 1.3s;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.s-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px;
  box-shadow:
    0 1px 2px rgba(18, 34, 58, 0.06),
    0 6px 12px rgba(18, 34, 58, 0.05);
}

.s-card i {
  font-size: 32px;
  margin-bottom: 20px;
  display: block;
}

.s-card h3 {
  font-size: 22px;
  color: var(--deepgreen);
  margin: 0 0 16px;
}

.s-card p {
  font-size: 16px;
  color: var(--gray);
  font-weight: 600;
  margin: 0;
}

/* SECTION 05: CTA 폼 */
/* 히어로 톤(블루+민트+바이올렛) 부드러운 그라데이션 - 쨍하지 않게 */
.lp-form {
  position: relative;
  background:
    radial-gradient(circle at 18% 20%, rgba(32, 201, 151, 0.20), transparent 55%),
    radial-gradient(circle at 82% 25%, rgba(37, 92, 255, 0.18), transparent 60%),
    radial-gradient(circle at 50% 95%, rgba(168, 85, 247, 0.14), transparent 60%),
    linear-gradient(180deg, #f5f8ff 0%, #eef4ff 100%);
}

/* 글래스모피즘 폼 컨테이너 */
.form-container {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 32px;
  padding: 48px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 25px 60px rgba(37, 92, 255, 0.12),
    0 8px 24px rgba(18, 34, 58, 0.06);
  max-width: 800px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 15px;
  font-weight: 800;
  color: var(--deepgreen);
}

.field label span {
  color: var(--red);
  margin-left: 4px;
}

.field input,
.field select {
  padding: 16px;
  border: 1px solid #d0d5dd;
  border-radius: 12px;
  font-size: 16px;
  font-family: inherit;
  color: var(--dark);
  background: #fff;
  outline: none;
}

.field input:focus,
.field select:focus {
  border-color: var(--blue);
}

.form-btn {
  width: 100%;
  margin-top: 24px;
  font-size: 20px;
}

/* Floating CTA — 보조 (다른 색 + 아이콘 + 펄스) */
.lp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  background: var(--deepgreen);
  color: var(--white);
  padding: 16px 28px;
  border-radius: 99px;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 16px 40px rgba(0, 95, 115, 0.4);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s, background 0.2s;
  animation: pulse-cta 2.4s ease-in-out infinite;
}

.lp-float svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.lp-float:hover {
  transform: translateY(-4px);
  background: var(--green);
  animation: none;
}

@keyframes pulse-cta {

  0%,
  100% {
    box-shadow: 0 16px 40px rgba(0, 95, 115, 0.35),
      0 0 0 0 rgba(0, 95, 115, 0.0);
  }

  50% {
    box-shadow: 0 16px 48px rgba(0, 95, 115, 0.55),
      0 0 0 10px rgba(0, 95, 115, 0.08);
  }
}

/* 푸터 스타일은 공용 common_header_footer.css(#footer) 사용 */

@media (max-width: 1024px) {

  .lp-hero {
    height: auto;
    padding: 120px 0 64px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  /* lp-conversion 모바일 */
  .conv-stack {
    gap: 48px;
  }

  .conv-features {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .conv-cta .btn {
    min-width: 0;
    width: 100%;
  }

  /* lp-conversion 모바일 */
  .lp-conversion {
    padding: 72px 0;
  }

  .conv-stack {
    gap: 56px;
  }

  .conv-hero {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 24px;
    border-radius: 24px;
  }

  .conv-feature p {
    font-size: 14px;
    padding-left: 14px;
  }

  .conv-banner {
    padding: 28px 24px;
    gap: 12px;
  }



  .conv-banner-num {
    justify-content: flex-start;
  }

  .num-big {
    font-size: 70px;
  }

  /* 우측 컬럼 모바일 - 간격 축소 */
  .conv-right-col {
    gap: 14px;
  }

  .conv-experts-mini {
    padding: 16px 18px;
  }

  /* CTA 풀폭 (모바일) */
  .conv-head .conv-cta {
    width: 100%;
  }

  /* 하단 트러스트 스트립 - 구분자 숨기고 줄바꿈 */
  .conv-trust-strip {
    gap: 6px 14px;
    font-size: 12.5px;
  }

  .conv-trust-divider {
    display: none;
  }

  .conv-cta .btn {
    width: 100%;
  }

  /* service-grid 모바일 - 1열 세로, 카드 안은 가로 [아이콘 | 제목+설명] */
  .service-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .s-card {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 18px;
    row-gap: 4px;
    align-items: center;
    padding: 20px 22px;
    border-radius: 16px;
  }

  .s-card i {
    grid-column: 1;
    grid-row: 1 / span 2;
    font-size: 28px;
    margin: 0;
    align-self: center;
  }

  .s-card h3 {
    grid-column: 2;
    grid-row: 1;
    font-size: 16px;
    margin: 0;
    letter-spacing: -0.02em;
  }

  .s-card p {
    grid-column: 2;
    grid-row: 2;
    font-size: 13px;
    line-height: 1.45;
    margin: 0;
  }

  .guide-row {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 0;
    text-align: center;
  }

  /* 모바일에서는 두 스텝 모두 텍스트 → 이미지 순서로 통일 */
  .guide-row .guide-text {
    order: 1;
  }

  .guide-row .guide-visual {
    order: 2;
  }

  .guide-visual {
    padding: 12px;
    max-width: 420px;
    margin: 0 auto;
  }

  .guide-visual-img {
    aspect-ratio: 16 / 11;
  }

  .connector-line {
    height: 60px;
  }

  .guide-conclusion {
    padding: 40px 24px;
  }

  /* flow-bridge 모바일 - 스텝은 세로 흐름, 각 스텝은 가로(row) */
  .flow-bridge {
    flex-direction: column;
    gap: 8px;
    padding: 24px 18px;
    text-align: left;
  }

  .flow-step {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 14px 18px;
  }

  .flow-step .flow-num {
    width: 36px;
    height: 36px;
    font-size: 16px;
    flex-shrink: 0;
  }

  .flow-step.green .flow-num {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .flow-step b {
    font-size: 14px;
    letter-spacing: -0.02em;
  }

  .flow-step strong {
    font-size: 15px !important;
    letter-spacing: -0.03em;
  }

  /* 화살표는 아래로 (세로 흐름) */
  .flow-arrow {
    transform: rotate(90deg);
    font-size: 18px;
    margin: 2px 0;
    align-self: center;
  }

}

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

  .field.full {
    grid-column: auto;
  }



  .form-container {
    padding: 24px;
  }

  body {
    padding-bottom: 70px;
  }

  .lp-float {
    bottom: 0;
    right: 0;
    left: 0;
    border-radius: 0;
    padding: 20px;
    justify-content: center;
  }
}

/* 섹션 내부 연결 점 (lp-intro 안 service-grid → trust-grid 사이) */
.section-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 56px 0 56px;
  position: relative;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 13px;
}

.trust-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: white;
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
}

.trust-card:hover {
  box-shadow: 0 12px 32px rgba(18, 34, 58, 0.10);
  transform: translateY(-3px);
}

.trust-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}

.trust-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}




.trust-card-body {
  padding: 20px;
}

.trust-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 99px;
  margin-bottom: 10px;
}

.tag-cert {
  background: #eef2ff;
  color: #4338ca;
}

.tag-story {
  background: #ecfdf5;
  color: #059669;
}

.tag-people {
  background: #fff7ed;
  color: #c2410c;
}

.tag-news {
  background: #fef3c7;
  color: #d97706;
}

.tag-case {
  background: #f0f9ff;
  color: #0369a1;
}

.tag-media {
  background: #fdf2f8;
  color: #9d174d;
}

.trust-card-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.4;
  margin: 0 0 8px;
}

.trust-card-desc {
  font-size: 13px;
  color: var(--gray);
  font-weight: 600;
  line-height: 1.55;
  margin: 0 0 14px;
}

.trust-card-link {
  font-size: 13px;
  font-weight: 800;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ── PARTNERS SECTION + LOGO MARQUEE ── */
.lp-partners {
  overflow: hidden;
  background: var(--navy);
  padding: clamp(56px, 7vw, 90px) 0;
}

.logo-marquee-header {
  padding: 0 0 40px;
  text-align: center;
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #fff;
}

.logo-marquee-header .kicker {
  color: var(--mint);
}

.logo-marquee-scroll {
  padding: 8px 0 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.logo-marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee-scroll 60s linear infinite;
}

.logo-marquee-track--reverse {
  animation: marquee-scroll 70s linear infinite reverse;
}

.logo-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.logo-item {
  flex-shrink: 0;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 32px;
  padding: 0 24px;
  min-width: 150px;
  box-shadow: 0 4px 20px rgba(18, 34, 58, 0.04);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.logo-item:hover {
  transform: scale(1.04);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 8px 24px rgba(18, 34, 58, 0.1);
}

/* 기본 이미지 - object-fit으로 비율 유지 */
.logo-item img {
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* 가로형 로고 - width 기준 70px */
.logo-item img.logo-row {
  width: 70px;
  height: auto;
}

/* 세로형/정사각 로고 - height 기준 20px */
.logo-item img.logo-col {
  width: auto;
  height: 35px;
}


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

/* ── CERT MODAL ── */
.cert-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10, 20, 40, 0.72);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
}

.cert-modal-overlay.open {
  display: flex;
}

.cert-modal {
  background: white;
  border-radius: 24px;
  padding: 32px;
  width: min(860px, calc(100vw - 40px));
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.3);
}

.cert-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.cert-modal-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--deepgreen);
}

.cert-modal-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--light);
  border: none;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  transition: background 0.2s;
  flex-shrink: 0;
}

.cert-modal-close:hover {
  background: var(--line);
}

.cert-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.cert-doc-wrap {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--light);
}

.cert-doc-label {
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 800;
  color: var(--deepgreen);
  border-bottom: 1px solid var(--line);
  background: white;
}

.cert-doc-img-wrap {
  padding: 16px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.cert-doc-img-wrap img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}





/* 카드 썸네일 — 좌우 미리보기 */
.cert-thumb-grid {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 10px;
  box-sizing: border-box;
}

.cert-thumb-item {
  background: white;
  border-radius: 8px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 100%;
}

.cert-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}




@media (max-width: 640px) {
  .cert-modal-grid {
    grid-template-columns: 1fr;
  }

  .cert-modal {
    padding: 20px;
  }

  .check-dome {
border-radius: 0 0 50% 50% / 0 0 8% 8%;
  height: 1600px;}
}



/* === 스크롤 리빌 애니메이션 === */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* 좌/우/스케일 방향 변형 */
.reveal.reveal-left {
  transform: translateX(-28px);
}

.reveal.reveal-right {
  transform: translateX(28px);
}

.reveal.reveal-scale {
  transform: scale(0.94);
}

.reveal.reveal-left.is-visible,
.reveal.reveal-right.is-visible,
.reveal.reveal-scale.is-visible {
  transform: none;
}

/* 접근성: 모션 감소 환경 */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
/* ===== 인라인 스타일 → 클래스 정리 (2026-06-16) ===== */
.trust-card[onclick], .trust-thumb[onclick], .trust-card-link[onclick] { cursor: pointer; }

/* 섹션·유틸 */
.section-head--center { text-align: center; }
.flow-step strong { font-size: 1.25em; color: #ffffff; letter-spacing: -0.03em; }
.kicker--block { display: block; margin-bottom: 8px; }
.mb-32 { margin-bottom: 32px; }
.btn--hero-wide { width: 100%; max-width: 400px; padding: 0 16px; }
.checkbox_label { display: flex; align-items: center; gap: 8px; font-size: 14px; }

/* trust */
.trust-thumb--split { display: flex; flex-direction: column; padding: 8px; gap: 6px; }
.thumb-split { flex: 1; overflow: hidden; border-radius: 8px; border: 1px solid var(--line); }
.thumb-img-cover { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }

/* modal 공통 */
.cert-modal--wide { max-width: 860px; }
.modal-stack { display: flex; flex-direction: column; gap: 20px; }
.modal-row { display: grid; grid-template-columns: 1fr 1.2fr; gap: 20px; align-items: center; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.modal-row__media { overflow: hidden; }
.modal-row__img { width: 100%; display: block; object-fit: cover; }
.modal-row__body { padding: 24px 24px 24px 0; }
.modal-badge { display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 0.05em; background: #fef3c7; color: #d97706; padding: 4px 10px; border-radius: 99px; margin-bottom: 14px; }
.modal-article-title { font-size: 16px; font-weight: 800; color: var(--deepgreen); line-height: 1.55; margin-bottom: 20px; }
.modal-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 800; color: var(--blue); background: var(--sky); padding: 10px 16px; border-radius: 8px; text-decoration: none; }
.cert-doc-img-wrap--pad { padding: 16px; }
.cert-doc-info { padding: 16px 20px 20px; border-top: 1px solid var(--line); }
.cert-doc-title { font-size: 15px; font-weight: 800; color: var(--deepgreen); line-height: 1.45; margin-bottom: 14px; }