/* ==========================================================================
   TripAgit 랜딩(index.html 로그아웃 화면) 전용 스타일 — 이 파일 하나가 랜딩의
   유일한 CSS 소스다. 여기 있는 클래스(.tp-landing / .tp-hero-* / .tp-search-* /
   .tp-course-* / .tp-device-* / .tp-shot-* / .tp-diff-* / .tp-faq-* /
   .tp-footer*)는 랜딩 밖에서 쓰지 않으며, css/style.css(앱 공통)는 랜딩을
   몰라도 되게 둔다. index.html에서만 style.css 다음에 로드한다.

   2026-09-19 구성 기록: 디자인 업그레이드 작업물(랜딩 시안, git 6c19c35~c0048f5)
   중 사용자가 고른 것만 이 파일로 옮겨 왔다.
   - 시안 그대로: 히어로 레이아웃(배지/헤드라인 강조/지도 카드/일차 칩/구간
     정보/동행자 배지), 통합 검색바, 코스 매거진 그리드, PC·폰 스크린샷
     갤러리, 차별점 카드, FAQ 2단, 푸터 밴드.
   - 예전(디자인 이전 라이브) 버전 그대로: 히어로 배경(옅은 타원 그라디언트),
     Google 계속하기/체험 버튼(.tp-cta-primary/.tp-cta-ghost), 지도 위
     자동차·경로 애니메이션, 아이콘(라인 아이콘, 이모지 없음).
   - 좌우 여백·정렬은 라이브 기준: 히어로 아래 섹션은 전부 max-width 1120px 좌측
     정렬 컨테이너(.tp-landing-inner) + 좌우 패딩 clamp(16px, 4vw, 60px).
   색은 앱 공통 토큰(--brand/--card/--border …)만 쓰고, 랜딩 면(면/글자)만 아래
   --lp-* 로 라이트/다크를 따로 둔다(새 토큰 체계를 들여오지 않음).
   ========================================================================== */

.tp-landing {
  --lp-bg: oklch(0.978 0.006 90);
  --lp-alt: #ffffff;
  --lp-ink: oklch(0.24 0.02 250);
  --lp-sub: oklch(0.46 0.02 250);
  --lp-line: var(--border-subtle);
  --lp-band: oklch(0.21 0.015 250);
  --lp-band-fg: oklch(0.86 0.01 250);
  --lp-band-dim: oklch(0.7 0.012 250);
  font-family: "Noto Sans KR", -apple-system, "Malgun Gothic", sans-serif;
  background: var(--lp-bg);
  color: var(--lp-ink);
  /* 한국어는 어절 단위로만 줄바꿈 — 글자 중간에서 끊기면 어색하다. */
  word-break: keep-all;
  overflow-wrap: break-word;
}
/* 다크: 반드시 두 벌(OS 다크 + 수동 토글). 이 블록들은 삭제 금지 — 토글을 안 누른
   OS 다크 사용자는 미디어쿼리 블록이, 토글을 누른 사용자는 data-theme 블록이 담당. */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .tp-landing {
    --lp-bg: #0d1117;
    --lp-alt: #11151d;
    --lp-ink: #e8eaf0;
    --lp-sub: #b8c0cf;
    --lp-line: #232b3a;
    --lp-band: #0a0d13;
    --lp-band-fg: #c7cbd6;
    --lp-band-dim: #8f98aa;
  }
}
:root[data-theme="dark"] .tp-landing {
  --lp-bg: #0d1117;
  --lp-alt: #11151d;
  --lp-ink: #e8eaf0;
  --lp-sub: #b8c0cf;
  --lp-line: #232b3a;
  --lp-band: #0a0d13;
  --lp-band-fg: #c7cbd6;
  --lp-band-dim: #8f98aa;
}

/* 줄바꿈: 짧은 문단·질문 제목의 마지막 줄에 한 단어만 덜렁 남는 것을 막는다(고아 방지).
   지원하지 않는 브라우저는 기본 줄바꿈으로 안전하게 폴백. */
.tp-landing p,
.tp-landing summary,
.tp-landing li { text-wrap: pretty; }

/* 섹션 공통 컨테이너 — 히어로 아래 모든 섹션이 같은 좌·우 모서리를 공유한다. */
.tp-landing-section {
  padding: clamp(32px, 5vw, 72px) clamp(16px, 4vw, 60px);
}
.tp-landing-inner {
  max-width: 1120px;
  margin: 0 auto;
}
.tp-landing-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: clamp(20px, 3vw, 28px);
}
.tp-landing-head p { margin: 0; font-size: 15px; line-height: 1.7; color: var(--lp-sub); }

/* ---------- 타이포 ---------- */
.tp-h1 {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(38px, 6.2vw, 66px);
  line-height: 1.06;
  letter-spacing: -0.05em;
  text-wrap: balance;
}
.tp-h2 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.24;
  letter-spacing: -0.03em;
  font-weight: 700;
  text-wrap: balance;
}
@media (max-width: 700px) {
  .tp-h1 { line-height: 1.1; }
}
/* 헤드라인 마지막 줄 형광펜 밑줄. 글자보다 뒤에 깔리도록 z-index:-1 이므로
   부모(.tp-h1)가 새 쌓임 맥락을 만들어야 배경 밑으로 안 숨는다(isolation). */
.tp-h1 { isolation: isolate; }
.tp-hero-highlight { position: relative; white-space: nowrap; }
.tp-hero-highlight::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.09em;
  height: 0.2em;
  background: color-mix(in oklch, var(--brand) 40%, transparent);
  z-index: -1;
}
.tp-hero-sub { margin: 0; font-size: clamp(15px, 1.5vw, 18px); line-height: 1.7; color: var(--lp-sub); text-wrap: pretty; }

/* ---------- 히어로: 배지 ---------- */
.tp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid var(--border);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-secondary);
}
.tp-hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 6px;
  background: var(--positive);
  animation: tpBlink 2.4s ease-in-out infinite;
  flex: none;
}
@keyframes tpBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }

/* ---------- 히어로: 지도 카드(3겹 래퍼 → 8:5 프레임) ---------- */
.tp-hero-art {
  flex: 1 1 480px;
  min-width: 320px;
  display: flex;
  padding: 1px;
  border-radius: clamp(24px, 3vw, 36px);
  background: linear-gradient(160deg, oklch(0.93 0.02 225), oklch(0.97 0.01 90) 45%, oklch(0.93 0.02 155));
  box-shadow: 0 50px 90px -46px oklch(0.35 0.05 250 / 0.45), 0 2px 6px oklch(0.35 0.05 250 / 0.05);
  /* 지도 일러스트는 다크모드에서도 항상 밝은 "엽서" — 안의 글자도 항상 어둡게. */
  color: #0e1116;
}
.tp-hero-art-inner {
  flex: 1;
  display: flex;
  padding: clamp(10px, 1.5vw, 18px);
  border-radius: clamp(23px, 2.9vw, 35px);
  background: oklch(1 0 0 / 0.92);
  backdrop-filter: blur(6px);
}
.tp-hero-art-frame {
  flex: 1;
  position: relative;
  aspect-ratio: 8 / 5;
  border-radius: clamp(16px, 2.2vw, 24px);
  overflow: hidden;
  background: linear-gradient(168deg, oklch(0.975 0.014 225), oklch(0.97 0.012 200) 55%, oklch(0.972 0.014 160));
  box-shadow: inset 0 1px 0 oklch(1 0 0), inset 0 0 60px -20px oklch(0.6 0.05 240 / 0.25);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .tp-hero-art {
    background: var(--border-strong);
    box-shadow: 0 50px 90px -46px rgba(0, 0, 0, 0.6), 0 2px 6px rgba(0, 0, 0, 0.3);
  }
  :root:not([data-theme="light"]) .tp-hero-art-inner { background: color-mix(in oklch, var(--card) 92%, transparent); }
  :root:not([data-theme="light"]) .tp-hero-art-frame {
    background: linear-gradient(168deg, var(--bg-sunken), var(--card) 55%, var(--bg-sunken));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), inset 0 0 60px -20px rgba(0, 0, 0, 0.5);
  }
}
:root[data-theme="dark"] .tp-hero-art {
  background: var(--border-strong);
  box-shadow: 0 50px 90px -46px rgba(0, 0, 0, 0.6), 0 2px 6px rgba(0, 0, 0, 0.3);
}
:root[data-theme="dark"] .tp-hero-art-inner { background: color-mix(in oklch, var(--card) 92%, transparent); }
:root[data-theme="dark"] .tp-hero-art-frame {
  background: linear-gradient(168deg, var(--bg-sunken), var(--card) 55%, var(--bg-sunken));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), inset 0 0 60px -20px rgba(0, 0, 0, 0.5);
}

/* 지도 SVG 안 요소 — 자동차 경로 애니메이션은 js/pages/landingHero.js 가 구동한다. */
@keyframes tp-halo {
  0% { r: 10; opacity: 0.45; }
  75% { r: 26; opacity: 0; }
  100% { r: 26; opacity: 0; }
}
.tp-halo { animation: tp-halo 3s ease-out infinite; }
@media (max-width: 640px) {
  /* 도시 이름표는 숨기지 않고 살짝만 줄인다(번호만 남으면 어디가 어딘지 모름). */
  .tp-city { transform: scale(0.82); transform-origin: center; transform-box: fill-box; }
  .tp-pin { transform: scale(0.8); transform-origin: center; transform-box: fill-box; }
}
@media (prefers-reduced-motion: reduce) {
  .tp-halo,
  .tp-hero-badge-dot,
  .tp-hero-companions { animation: none !important; }
}

/* 지도 위에 떠 있는 배지 3종: ① 일차·도시(좌상단) ② 구간 정보(우하단) ③ 동행자(좌하단).
   전부 로그인 전 화면의 "예시 여행" 문구이며 실시간 데이터가 아니다. */
.tp-hero-daychips {
  position: absolute;
  left: clamp(10px, 1.6vw, 18px);
  top: clamp(10px, 1.6vw, 18px);
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  max-width: calc(100% - 32px);
}
.tp-hero-daychip {
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
}
.tp-hero-daychip.is-current { background: var(--text); border-color: var(--text); color: var(--bg); }
.tp-hero-segment {
  position: absolute;
  right: clamp(10px, 1.6vw, 18px);
  bottom: clamp(10px, 1.6vw, 18px);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  border-radius: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  max-width: calc(100% - 32px);
}
.tp-hero-segment-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: none;
  border-radius: 11px;
  background: var(--brand-soft);
  color: var(--brand-soft-text);
}
.tp-hero-segment-icon .icon-inline { margin: 0; }
/* 자손 선택자가 아이콘 span까지 잡지 않게 안쪽 div 로만 한정(과거 재발 버그). */
.tp-hero-segment > div span { display: block; font-size: 11px; color: var(--text-faint); }
.tp-hero-segment b { display: block; font-size: 14.5px; letter-spacing: -0.01em; color: var(--text); white-space: nowrap; }
.tp-hero-companions {
  position: absolute;
  left: clamp(10px, 1.6vw, 18px);
  bottom: clamp(10px, 1.6vw, 18px);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--accent-teal-soft);
  border: 1px solid color-mix(in srgb, var(--accent-teal) 35%, var(--accent-teal-soft));
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-teal-soft-text);
  white-space: nowrap;
  animation: tpFloat 6s ease-in-out infinite;
}
@keyframes tpFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.tp-hero-companions-dot { width: 6px; height: 6px; border-radius: 6px; background: var(--accent-teal); flex: none; }
@media (max-width: 640px) {
  /* 좁은 화면에서는 구간 정보 카드를 숨겨 지도가 가려지지 않게 한다. */
  .tp-hero-segment { display: none; }
}

/* ---------- CTA 버튼 (예전 라이브 디자인 그대로) ---------- */
.tp-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 15px 26px;
  border-radius: 999px;
  background: white;
  border: 1px solid oklch(0.65 0.03 240);
  font-size: 16px;
  font-weight: 500;
  color: oklch(0.24 0.02 250);
  box-shadow: 0 14px 30px -18px oklch(0.3 0.04 250 / 0.55);
  cursor: pointer;
}
.tp-cta-primary:hover { border-color: oklch(0.7 0.06 220); }
.tp-cta-ghost {
  display: inline-flex;
  align-items: center;
  height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid var(--border-strong);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text);
}
.tp-cta-ghost:hover { border-color: var(--brand); color: var(--brand); }
.tp-cta-dark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 13px 22px;
  border-radius: 999px;
  border: none;
  background: var(--text);
  color: var(--bg);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}
.tp-cta-dark:hover { background: var(--text-secondary); }
/* 다크: 흰 배경 CTA는 그대로 두면 눈부시고, 보조 CTA는 대비가 모자랐다(실측 2.45:1). */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .tp-cta-ghost { color: #b6bbc7; }
  :root:not([data-theme="light"]) .tp-cta-ghost:hover { color: #e8eaf0; }
}
:root[data-theme="dark"] .tp-cta-ghost { color: #b6bbc7; }
:root[data-theme="dark"] .tp-cta-ghost:hover { color: #e8eaf0; }

/* ---------- 통합 검색바 ---------- */
.tp-search-section { padding: clamp(28px, 4vw, 44px) 0 0; }
.tp-search-bar {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 10px 10px 22px;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-panel);
}
.tp-search-bar > .icon-inline { margin-right: 0; color: var(--brand); flex: none; }
/* 앱 공통 input 스타일(테두리/배경)보다 명시도를 높여서 "바 안에 녹아든" 입력칸으로 만든다. */
.tp-search-bar .tp-search-input {
  flex: 1;
  min-width: 0;
  width: auto;
  height: 46px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
  font-size: 16px;
  color: var(--text);
  outline: none;
}
.tp-search-bar .tp-search-input:focus { border: none; box-shadow: none; outline: none; }
.tp-search-bar:focus-within { border-color: var(--brand); }
.tp-search-meta-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 46px;
  padding: 0 16px;
  border: none;
  border-radius: 999px;
  background: var(--bg-sunken);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
  flex: none;
  cursor: pointer;
}
.tp-search-meta-btn:hover { background: var(--border-subtle); }
.tp-search-submit {
  height: 46px;
  padding: 0 24px;
  border: 1px solid var(--brand);
  border-radius: 999px;
  background: var(--brand);
  color: var(--brand-contrast);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  flex: none;
  cursor: pointer;
}
.tp-search-submit:hover { background: var(--brand-dark); border-color: var(--brand-dark); }
.tp-search-chips {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.tp-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  color: var(--text-secondary);
  white-space: nowrap;
  cursor: pointer;
}
.tp-chip:hover { border-color: var(--border-strong); color: var(--text); }
.tp-chip--add { background: none; border-style: dashed; border-color: var(--border-dashed); color: var(--text-muted); }
/* 날짜 팝오버 안 폼 요소 */
.tp-landing .popover .tp-input {
  width: 100%;
  height: 42px;
  padding: 0 12px;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  background: var(--card);
  color: var(--text);
  font-size: 14px;
}
.tp-landing .popover .tp-input:focus { outline: 2px solid var(--brand); outline-offset: 1px; }
.tp-btn-apply {
  width: 100%;
  height: 40px;
  border: none;
  border-radius: 10px;
  background: var(--brand);
  color: var(--brand-contrast);
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
}
.tp-btn-apply:hover { background: var(--brand-dark); }
@media (max-width: 700px) {
  /* 좁은 화면: 날짜 버튼은 숨기고(날짜는 여행 화면에서도 정할 수 있음) 입력+버튼만. */
  .tp-search-bar { flex-wrap: wrap; border-radius: 22px; padding: 14px; }
  .tp-search-bar .popover-wrap { display: none; }
  .tp-search-input { flex: 1 1 100%; order: 1; }
  .tp-search-bar > .icon-inline { display: none; }
  .tp-search-submit { order: 2; flex: 1 1 100%; }
}

/* ---------- 완성된 코스: 매거진 그리드 ----------
   리드 1장 + 2열(카드 2장씩) + "더보기". 카드 수가 5장보다 적어도 flex 라
   자연스럽게 채워지고, 1120px 컨테이너 안에서 가로 스크롤 없이 들어간다. */
.tp-course-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: clamp(20px, 3vw, 28px);
}
.tp-course-head p { margin: 8px 0 0; font-size: 14px; color: var(--lp-sub); text-wrap: pretty; }
.tp-course-head-link {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 18px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: var(--card);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
}
.tp-course-head-link:hover { color: var(--brand); border-color: var(--brand); }
.tp-course-grid { display: flex; gap: 20px; }
.tp-course-lead {
  flex: 1.32 1 0;
  min-width: 0;
  position: relative;
  height: 452px;
  border-radius: 22px;
  overflow: hidden;
  background: var(--bg-sunken);
}
.tp-course-col { flex: 1 1 0; min-width: 0; height: 452px; display: flex; flex-direction: column; gap: 20px; }
.tp-course-card {
  flex: 1 1 0;
  min-height: 0;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: var(--bg-sunken);
}
.tp-course-lead > .trip-cover-wrap,
.tp-course-card > .trip-cover-wrap { height: 100% !important; }
.tp-course-card-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 16px 18px;
  background: linear-gradient(to top, rgba(15, 12, 8, 0.85), transparent);
}
.tp-course-lead .tp-course-card-overlay { padding: 24px 22px; background: linear-gradient(to top, rgba(15, 12, 8, 0.86), rgba(15, 12, 8, 0.1)); }
.tp-course-card-overlay b {
  display: block;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: #fff;
  text-wrap: balance;
}
.tp-course-lead .tp-course-card-overlay b { margin: 0 0 6px; font-size: 24px; }
.tp-course-card-overlay span { font-size: 12.5px; color: rgba(255, 255, 255, 0.82); }
.tp-course-more {
  flex: 0 0 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  border: 1px dashed var(--border-dashed);
  color: var(--text-muted);
  font-size: 13.5px;
  font-weight: 600;
  text-align: center;
  line-height: 1.6;
}
.tp-course-more:hover { color: var(--brand); border-color: var(--brand); }
@media (max-width: 980px) {
  .tp-course-grid { flex-wrap: wrap; }
  .tp-course-lead { flex: 1 1 100%; height: 340px; }
  .tp-course-col { flex: 1 1 calc(50% - 10px); height: auto; }
  .tp-course-card { flex: none; height: 190px; }
  .tp-course-more { flex: 1 1 100%; height: 56px; }
}
@media (max-width: 560px) {
  .tp-course-lead { height: 280px; }
  .tp-course-col { flex-basis: 100%; }
}

/* ---------- 화면 갤러리(PC/폰 스크린샷 + 3장 카드) ---------- */
.tp-gallery-section { background: var(--lp-alt); border-top: 1px solid var(--lp-line); border-bottom: 1px solid var(--lp-line); }
.tp-device-row { display: flex; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
.tp-device-pc {
  flex: 1 1 520px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  background: var(--card);
}
.tp-device-pc-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 12px;
  background: var(--bg-sunken);
  border-bottom: 1px solid var(--border-subtle);
}
.tp-device-dot { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.tp-device-pc-url {
  margin-left: 8px;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--card);
  font-size: 11px;
  color: var(--text-faint);
}
.tp-device-pc-body { line-height: 0; }
.tp-device-mobile {
  flex: 0 0 230px;
  width: 230px;
  padding: 10px;
  border-radius: 32px;
  background: var(--bg-sunken);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.tp-device-mobile .tp-device-screen { border-radius: 24px; }
.tp-device-screen { display: block; width: 100%; height: auto; }
@media (max-width: 640px) {
  .tp-device-row { align-items: center; }
  .tp-device-pc { flex-basis: 100%; }
}
.tp-shot-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: clamp(22px, 3vw, 28px); }
.tp-shot-item { margin: 0; border: 1px solid var(--border); border-radius: var(--radius-card, 20px); overflow: hidden; background: var(--card); }
.tp-shot-item img { display: block; width: 100%; height: auto; }
.tp-shot-caption { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 5px; }
.tp-shot-caption b { font-size: 15px; font-weight: 700; color: var(--text); }
.tp-shot-caption span { font-size: 13px; line-height: 1.65; color: var(--text-secondary); text-wrap: pretty; }

/* ---------- 차별점 카드(라인 아이콘, 이모지 없음) ---------- */
.tp-diff-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.tp-diff-card {
  padding: 26px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-card, 20px);
  background: var(--card);
  text-align: left;
}
.tp-diff-icon.icon-inline { margin: 0 0 10px; color: var(--brand); }
.tp-diff-icon .icon { width: 26px; height: 26px; }
.tp-diff-card b { display: block; font-size: 15px; margin-bottom: 6px; text-wrap: balance; }
.tp-diff-card p { margin: 0; font-size: 13px; line-height: 1.65; color: var(--text-muted); text-wrap: pretty; }

/* ---------- FAQ: 왼쪽 제목 / 오른쪽 카드 스택 ---------- */
.tp-faq-grid { display: grid; grid-template-columns: 300px 1fr; gap: 48px; align-items: start; }
.tp-faq-grid > div:first-child p { margin: 12px 0 0; font-size: 14px; line-height: 1.7; color: var(--lp-sub); text-wrap: pretty; }
.tp-faq-list { display: flex; flex-direction: column; gap: 12px; }
.tp-faq-section details {
  padding: 20px 22px;
  border-radius: var(--radius-lg, 16px);
  background: var(--card);
  border: 1px solid var(--border);
}
.tp-faq-section summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15.5px;
  list-style: none;
  color: var(--text);
}
.tp-faq-section summary::-webkit-details-marker { display: none; }
.tp-faq-section summary::after { content: "+"; flex: none; color: var(--text-faint); font-weight: 400; font-size: 20px; line-height: 1; }
.tp-faq-section details[open] summary::after { content: "−"; }
.tp-faq-section details p { margin: 9px 0 0; max-width: 640px; font-size: 13.5px; line-height: 1.75; color: var(--text-secondary); text-wrap: pretty; }
.tp-faq-section details p a { color: var(--brand); text-decoration: underline; text-underline-offset: 2px; }
@media (max-width: 860px) {
  .tp-faq-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ---------- 푸터 밴드 ---------- */
.tp-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 24px clamp(16px, 4vw, 60px);
  background: var(--lp-band);
  font-size: 13px;
  color: var(--lp-band-dim);
}
.tp-footer-brand { font-family: var(--font-sans); font-weight: 800; letter-spacing: -0.03em; font-size: 16px; color: #fff; }
.tp-footer-brand span { color: oklch(0.72 0.12 250); }
.tp-footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.tp-footer-links a { color: var(--lp-band-fg); }
.tp-footer-links a:hover { color: #fff; }
.tp-footer-biz {
  flex: 1 0 100%;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.tp-footer-biz ul { display: flex; flex-wrap: wrap; row-gap: 4px; margin: 0; padding: 0; list-style: none; font-size: 11px; line-height: 1.6; }
.tp-footer-biz li + li::before { content: "·"; margin: 0 10px; color: rgba(255, 255, 255, 0.4); }
.tp-footer-biz .k { margin-right: 3px; color: var(--lp-band-fg); }
