/**
 * 내보험찾기 랜딩 전용 스타일 — 색감 분리(틸·딥슬레이·앰버 포인트), 8px 그리드·정수 px 위주
 */
:root {
  /* 시그널플래너류 앱 랜딩: 밝은 캔버스 + 선명한 그린 포인트 */
  --tbsh-brand: #0d9488;
  --tbsh-brand-dark: #0f766e;
  --tbsh-accent: #16a34a;
  --tbsh-accent-soft: #dcfce7;
  --tbsh-surface: #f0fdf4;
  --tbsh-ink: #14532d;
  --tbsh-muted: #64748b;
  --tbsh-page-bg: #f4f7f5;
  --tbsh-card: #ffffff;
  --tbsh-hero-text: #0f172a;
}

body.tbsh-page {
  --brandColor: #16a34a;
  background: var(--tbsh-page-bg);
  color: #1e293b;
}

/* ----- 헤더 (내보험찾기 전용, 기존 header-from-common과 분리) ----- */
.tbsh-page .tbsh-header {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 !important;
  margin: 0;
  font-size: inherit !important;
  font-weight: inherit !important;
  letter-spacing: normal !important;
  box-shadow: none;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.tbsh-page .tbsh-header.tbsh-header--scrolled {
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
  border-bottom-color: #cbd5e1;
}

.tbsh-page .tbsh-header__bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  min-height: 56px;
  padding: 10px 0;
  box-sizing: border-box;
}

.tbsh-page .tbsh-header__brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex-shrink: 0;
}

.tbsh-page .tbsh-header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 10px;
  background: #f1f5f9;
  text-decoration: none;
}

.tbsh-page .tbsh-header__logo img {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.tbsh-page .tbsh-header__title {
  font-size: clamp(14px, 1.45vw, 17px);
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: min(420px, 34vw);
}

.tbsh-page .tbsh-header__title:hover {
  color: var(--tbsh-brand);
}

.tbsh-page .tbsh-header__desk {
  margin-left: auto;
  flex-shrink: 0;
}

.tbsh-page .tbsh-header__list {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.tbsh-page .tbsh-header__list a {
  display: block;
  padding: 10px 14px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  color: #475569;
  text-decoration: none;
  border-radius: 8px;
  white-space: nowrap;
}

.tbsh-page .tbsh-header__list a:hover,
.tbsh-page .tbsh-header__list a:focus {
  color: var(--tbsh-accent);
  background: #f0fdf4;
}

.tbsh-page .tbsh-header__list a.is-active {
  color: var(--tbsh-brand-dark);
  background: #d1fae5;
}

.tbsh-page .tbsh-header__cta {
  display: none;
  margin-left: 12px;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  background: linear-gradient(135deg, #15803d 0%, var(--tbsh-accent) 100%);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.35);
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.15s ease;
}

.tbsh-page .tbsh-header__cta:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(22, 163, 74, 0.42);
}

.tbsh-page .tbsh-header__cta--block {
  display: block;
  width: 100%;
  margin: 8px 0 0;
  text-align: center;
  box-sizing: border-box;
}

.tbsh-page .tbsh-header__drawer-list li.tbsh-header__drawer-cta {
  border-bottom: none;
  padding: 12px 16px 20px;
}

@media (min-width: 960px) {
  .tbsh-page .tbsh-header__cta:not(.tbsh-header__cta--block) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

.tbsh-page .tbsh-header__hamburger {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: #f1f5f9;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tbsh-page .tbsh-header__hamburger-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tbsh-page .tbsh-header__hamburger-icon--close {
  display: none;
}

.tbsh-page .tbsh-header.tbsh-header--open .tbsh-header__hamburger-icon--open {
  display: none;
}

.tbsh-page .tbsh-header.tbsh-header--open .tbsh-header__hamburger-icon--close {
  display: flex;
}

.tbsh-page .tbsh-header__drawer {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  transition: max-height 0.3s ease, opacity 0.2s ease, visibility 0.2s;
}

.tbsh-page .tbsh-header.tbsh-header--open .tbsh-header__drawer {
  max-height: 320px;
  opacity: 1;
  visibility: visible;
}

.tbsh-page .tbsh-header__drawer-list {
  list-style: none;
  margin: 0;
  padding: 8px 0 16px;
}

.tbsh-page .tbsh-header__drawer-list li {
  border-bottom: 1px solid #f1f5f9;
}

.tbsh-page .tbsh-header__drawer-list a {
  display: block;
  padding: 16px 24px;
  font-size: 17px;
  line-height: 24px;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
}

.tbsh-page .tbsh-header__drawer-list a:active {
  background: #f0fdf4;
}

@media (max-width: 959px) {
  .tbsh-page .tbsh-header__desk {
    display: none;
  }

  .tbsh-page .tbsh-header__hamburger {
    display: flex;
  }

  .tbsh-page .tbsh-header__brand {
    flex: 1;
    min-width: 0;
  }

  .tbsh-page .tbsh-header__title {
    max-width: none;
    flex: 1;
    min-width: 0;
  }
}

@media (min-width: 960px) {
  .tbsh-page .tbsh-header__drawer {
    display: none !important;
  }
}

/* 고정 헤더 높이만큼 로고 띠가 시작되도록 (띠는 헤더 바로 아래) */
.tbsh-page .tbsh-logo-belt {
  position: relative;
  z-index: 12;
  margin-top: 77px;
  padding: 14px 0 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 55%, #ecfdf5 100%);
  border-bottom: 1px solid rgba(22, 163, 74, 0.18);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.tbsh-page .tbsh-logo-belt__inner {
  width: calc(100% - 48px);
  max-width: 1144px;
  margin: 0 auto;
}

.tbsh-page .tbsh-logo-belt__label {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #166534;
  text-align: center;
}

@media (min-width: 768px) {
  .tbsh-page .tbsh-logo-belt {
    padding: 18px 0 22px;
  }

  .tbsh-page .tbsh-logo-belt__label {
    font-size: 14px;
    margin-bottom: 12px;
  }
}

.tbsh-page .tbsh-main {
  padding-top: 0;
  /* 로고 띠(z-index:12)·푸터 등과 겹칠 때 본문이 아래에 깔리지 않도록 */
  position: relative;
  z-index: 15;
}

.tbsh-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ----- 히어로: 밝은 앱 랜딩 (시그널플래너 계열) ----- */
.tbsh-hero--app {
  position: relative;
  padding: 40px 0 56px;
  color: var(--tbsh-hero-text);
  overflow: hidden;
}

.tbsh-hero__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 480px at 80% -10%, rgba(22, 163, 74, 0.12), transparent 55%),
    radial-gradient(900px 400px at 10% 20%, rgba(13, 148, 136, 0.1), transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #f1f5f4 100%);
  pointer-events: none;
}

.tbsh-hero--app .tbsh-inner {
  position: relative;
  z-index: 1;
}

.tbsh-inner {
  width: calc(100% - 48px);
  max-width: 1144px;
  margin: 0 auto;
}

.tbsh-hero-kicker {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 700;
  color: var(--tbsh-accent);
  letter-spacing: -0.01em;
}

.tbsh-hero__h1 {
  margin: 0 0 16px;
  font-size: clamp(28px, 4.2vw, 44px);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: #0f172a;
}

.tbsh-hero__h1-line {
  display: block;
}

.tbsh-hero-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

@media (min-width: 960px) {
  .tbsh-hero-grid {
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
  }
  .tbsh-hero-copy {
    flex: 1;
    min-width: 0;
  }
  .tbsh-hero-aside {
    width: min(460px, 42vw);
    flex-shrink: 0;
    padding: 40px 32px 32px;
    border-radius: 32px;
  }
}

.tbsh-hero .tbsh-lead {
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
  color: #475569;
  max-width: 38em;
}

@media (max-width: 586px) {
  .tbsh-hero .tbsh-lead {
    font-size: 16px;
  }
}

.tbsh-benefit-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 8px;
  padding: 0;
  list-style: none;
}

.tbsh-benefit-chips li {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: #166534;
  background: var(--tbsh-accent-soft);
  border-radius: 999px;
  border: 1px solid rgba(22, 163, 74, 0.2);
}

.tbsh-hero-swim {
  margin-top: 8px;
}

.tbsh-hero-aside {
  background: var(--tbsh-card);
  border: 2px solid rgba(22, 163, 74, 0.22);
  border-radius: 28px;
  padding: 32px 28px 28px;
  box-shadow:
    0 28px 56px rgba(15, 23, 42, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.85) inset,
    0 0 0 4px rgba(22, 163, 74, 0.06);
}

.tbsh-form-area__kicker {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--tbsh-accent);
}

@media (min-width: 960px) {
  .tbsh-form-area__kicker {
    font-size: 15px;
  }
}

.tbsh-form-area__title {
  margin: 0 0 8px;
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
  line-height: 1.35;
}

@media (min-width: 960px) {
  .tbsh-form-area__title {
    margin-bottom: 10px;
    line-height: 1.3;
  }
}

/* 배너형 폼: 입력 블록 숨김, CTA만 노출 */
.tbsh-page .tbsh-form-fields--hidden {
  display: none !important;
}

.tbsh-page .tbsh-form-area__hint {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.55;
  color: #64748b;
}

@media (min-width: 960px) {
  .tbsh-page .tbsh-form-area__hint {
    font-size: 15px;
    margin-bottom: 22px;
  }
}

.tbsh-kw-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.tbsh-kw-row a {
  display: inline-block;
  padding: 8px 14px;
  font-size: 13px;
  line-height: 20px;
  font-weight: 600;
  color: #334155;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.tbsh-kw-row a:hover {
  border-color: var(--tbsh-accent);
  color: var(--tbsh-brand-dark);
}

/* ----- 키워드 안내 본문 블록 ----- */
.tbsh-kw-article {
  padding: 48px 0 52px;
  background: #fff;
  border-top: 1px solid #e2e8f0;
}

.tbsh-kw-article__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 32px;
}

.tbsh-kw-article__eyebrow {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--tbsh-accent);
  letter-spacing: 0.02em;
}

.tbsh-kw-article__title {
  margin: 0 0 12px;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
}

.tbsh-kw-article__lead {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: #64748b;
}

.tbsh-kw-article__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 900px) {
  .tbsh-kw-article__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
  }
}

.tbsh-kw-article__card {
  padding: 24px 22px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}

.tbsh-kw-article__card h3 {
  margin: 0 0 12px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
  line-height: 1.35;
}

.tbsh-kw-article__card p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
}

.tbsh-kw-article__card p:last-of-type {
  margin-bottom: 0;
}

.tbsh-kw-article__list {
  margin: 14px 0 0;
  padding: 14px 16px 14px 26px;
  font-size: 14px;
  line-height: 1.65;
  color: #334155;
  background: #fff;
  border-radius: 12px;
  border: 1px dashed rgba(22, 163, 74, 0.35);
  list-style: disc;
}

.tbsh-kw-article__list li {
  margin-bottom: 6px;
}

.tbsh-kw-article__list li:last-child {
  margin-bottom: 0;
}

/* ----- 3열 가치 제안 (슈퍼앱형 카피 블록) ----- */
.tbsh-sp-pillars {
  padding: 0 0 48px;
  margin-top: -8px;
}

.tbsh-sp-pillars__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 768px) {
  .tbsh-sp-pillars__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

.tbsh-sp-pillars__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 20px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.tbsh-sp-pillars__icon {
  font-size: 13px;
  font-weight: 800;
  color: var(--tbsh-accent);
  margin-bottom: 4px;
}

.tbsh-sp-pillars__item strong {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.tbsh-sp-pillars__item span:last-child {
  font-size: 14px;
  line-height: 1.5;
  color: #64748b;
}

/* ----- 후기형 카드 ----- */
.tbsh-quotes {
  padding: 48px 0 56px;
  background: linear-gradient(180deg, #ecfdf5 0%, var(--tbsh-page-bg) 100%);
  border-top: 1px solid #d1fae5;
}

.tbsh-quotes__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 32px;
}

.tbsh-quotes__eyebrow {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--tbsh-accent);
  letter-spacing: 0.02em;
}

.tbsh-quotes__title {
  margin: 0;
  font-size: clamp(22px, 3.2vw, 30px);
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
}

.tbsh-quotes__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

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

.tbsh-quote-card {
  margin: 0;
  padding: 24px 22px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.tbsh-quote-card blockquote {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.65;
  color: #334155;
  font-style: normal;
}

.tbsh-quote-card figcaption {
  font-size: 13px;
  font-weight: 600;
  color: #94a3b8;
}

.tbsh-section {
  padding: 56px 0;
}

.tbsh-section--alt {
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.tbsh-section-head {
  text-align: center;
  margin-bottom: 40px;
}

.tbsh-section-head .tbsh-eyebrow {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
  color: #15803d;
}

.tbsh-section-head h2 {
  margin: 0;
  font-size: 28px;
  line-height: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.tbsh-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

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

.tbsh-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  min-height: 160px;
}

.tbsh-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 800;
  color: #0f172a;
}

.tbsh-card p {
  margin: 0;
  font-size: 15px;
  line-height: 24px;
  color: #475569;
}

.tbsh-card a {
  display: inline-block;
  margin-top: 16px;
  font-size: 15px;
  font-weight: 700;
  color: var(--tbsh-accent);
  text-decoration: none;
}

.tbsh-card a:hover {
  text-decoration: underline;
}

/* ----- 히어로 폼: 내보험 분석하기 CTA ----- */
.tbsh-page .tbsh-form-area .btn_submit.tbsh-cta-btn {
  width: 100%;
  margin-top: 6px;
  padding: 20px 22px;
  font-size: clamp(18px, 2.1vw, 22px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  border: none;
  border-radius: 999px;
  min-height: 56px;
  background: linear-gradient(135deg, #15803d 0%, var(--tbsh-accent) 45%, #16a34a 100%);
  box-shadow:
    0 12px 32px rgba(22, 163, 74, 0.45),
    0 2px 0 rgba(255, 255, 255, 0.15) inset;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.15s ease;
}

@media (min-width: 960px) {
  .tbsh-page .tbsh-form-area .btn_submit.tbsh-cta-btn {
    padding: 22px 28px;
    min-height: 62px;
    gap: 14px;
  }
}

.tbsh-page .tbsh-form-area .btn_submit.tbsh-cta-btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.06);
  box-shadow:
    0 18px 44px rgba(22, 163, 74, 0.52),
    0 2px 0 rgba(255, 255, 255, 0.2) inset;
}

.tbsh-page .tbsh-form-area .btn_submit.tbsh-cta-btn:active {
  transform: translateY(0);
}

.tbsh-page .tbsh-form-area .btn_submit.tbsh-cta-btn:focus-visible {
  outline: 3px solid var(--tbsh-accent);
  outline-offset: 3px;
}

.tbsh-cta-btn__label {
  flex: 0 1 auto;
}

.tbsh-page .tbsh-form-area .tbsh-cta-btn__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

@media (min-width: 960px) {
  .tbsh-page .tbsh-form-area .tbsh-cta-btn__icon {
    width: 26px;
    height: 26px;
  }
}

/* ----- 하단 배너 CTA ----- */
.tbsh-page .tbsh-cta-banner {
  position: relative;
  padding: 48px 0 56px;
  background: linear-gradient(155deg, #14532d 0%, #15803d 38%, #166534 100%);
  overflow: hidden;
}

.tbsh-page .tbsh-cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 70% at 50% -20%, rgba(255, 255, 255, 0.18), transparent 55%);
  pointer-events: none;
}

.tbsh-page .tbsh-cta-banner__inner {
  position: relative;
  z-index: 1;
}

.tbsh-page .tbsh-cta-banner__panel {
  max-width: 640px;
  margin: 0 auto;
  padding: 28px 28px 32px;
  text-align: center;
  background: #fff;
  border-radius: 20px;
  box-shadow:
    0 24px 48px rgba(15, 23, 42, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}

.tbsh-page .tbsh-cta-banner__badge {
  display: inline-block;
  margin: 0 0 12px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #166534;
  background: #dcfce7;
  border-radius: 999px;
}

.tbsh-page .tbsh-cta-banner__title {
  margin: 0 0 12px;
  font-size: clamp(22px, 4vw, 28px);
  line-height: 1.35;
  font-weight: 800;
  color: #0f172a;
}

.tbsh-page .tbsh-cta-banner__hint {
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.5;
  color: #64748b;
}

.tbsh-page .tbsh-cta-banner__btn,
.tbsh-page .tbsh-cta-banner .btn_form.tbsh-cta-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 320px);
  padding: 18px 32px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff !important;
  border: none !important;
  border-radius: 14px !important;
  background: linear-gradient(135deg, var(--tbsh-accent) 0%, #ea580c 40%, #c2410c 100%) !important;
  box-shadow:
    0 10px 28px rgba(234, 88, 12, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.15s ease;
}

.tbsh-page .tbsh-cta-banner__btn:hover,
.tbsh-page .tbsh-cta-banner .btn_form.tbsh-cta-banner__btn:hover {
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.06);
  box-shadow:
    0 14px 36px rgba(234, 88, 12, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.tbsh-page .tbsh-cta-banner__btn:active {
  transform: translateY(0) scale(1);
}

@media (max-width: 480px) {
  .tbsh-page .tbsh-cta-banner {
    padding: 36px 0 44px;
  }

  .tbsh-page .tbsh-cta-banner__panel {
    padding: 22px 18px 26px;
    border-radius: 16px;
  }
}

/* ----- 메인 그리드(sc_con1): 앱형 카드 톤 ----- */
.tbsh-page .sc_con1 {
  background: #fff;
}

.tbsh-page .sc_con1 .con_area .top_list .top_item a {
  border-radius: 20px;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.07) !important;
  padding: 40px 22px !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.tbsh-page .sc_con1 .con_area .top_list .top_item a:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1) !important;
}

.tbsh-page .sc_con1 .con_area .top_list .top_item .title {
  color: #15803d !important;
}

.tbsh-page .sc_con1 .con_area .top_list .top_item .plus {
  color: #16a34a !important;
}

/* ----- 서브페이지 (sub.php / sub_qna.php): 메인과 동일 톤 ----- */
.tbsh-page .tbsh-sub .tbsh-sub-hero {
  position: relative;
  padding: 32px 0 40px;
  overflow: hidden;
}

/* 메인 히어로와 동일: 그라데이션 메시가 복사·타이틀 위로 덮이지 않도록 */
.tbsh-page .tbsh-sub .tbsh-sub-hero > .tbsh-inner {
  position: relative;
  z-index: 1;
}

.tbsh-page .tbsh-sub-bc {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 20px;
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
}

.tbsh-page .tbsh-sub-bc a {
  color: var(--tbsh-accent);
  text-decoration: none;
}

.tbsh-page .tbsh-sub-bc a:hover {
  text-decoration: underline;
}

.tbsh-page .tbsh-sub-bc__sep {
  color: #cbd5e1;
  user-select: none;
}

.tbsh-page .tbsh-sub-bc__current {
  color: #334155;
  max-width: 100%;
}

.tbsh-page .tbsh-sub-hero-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

@media (min-width: 960px) {
  .tbsh-page .tbsh-sub-hero-grid {
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
  }

  .tbsh-page .tbsh-sub-hero-copy {
    flex: 1;
    min-width: 0;
  }

  .tbsh-page .tbsh-sub-hero .tbsh-hero-aside {
    width: min(460px, 42vw);
    flex-shrink: 0;
    padding: 40px 32px 32px;
    border-radius: 32px;
  }
}

.tbsh-page .tbsh-sub-body.sub_cont {
  /* 글로벌 .sub_cont{display:flex} 한 줄 레이아웃 이슈 제거 */
  display: block;
  padding: 48px 0 64px;
  margin: 0;
  background: var(--tbsh-page-bg);
}

.tbsh-page .tbsh-sub-body.sub_cont .tbsh-sub-columns.inner.tbsh-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
  width: calc(100% - 48px);
  max-width: 1144px;
  margin: 0 auto;
  min-width: 0;
}

@media (min-width: 960px) {
  .tbsh-page .tbsh-sub-body.sub_cont .tbsh-sub-columns.inner.tbsh-inner {
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 28px;
  }
}

.tbsh-page .tbsh-sub-sidebar.slide_menu {
  position: relative;
  flex: 0 0 auto;
  width: 100%;
  max-width: none;
  height: auto;
  padding: 0;
  background: transparent;
  z-index: 1;
}

.tbsh-page .tbsh-sub-sidebar.slide_menu::before {
  display: none;
}

@media (min-width: 960px) {
  .tbsh-page .tbsh-sub-sidebar.slide_menu {
    width: 300px;
    flex-shrink: 0;
  }
}

.tbsh-page .tbsh-sub-sidebar .menu_sticky {
  position: sticky;
  top: 96px;
  padding: 24px 22px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.tbsh-page .tbsh-sub-sidebar .menu_headline {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
  white-space: normal;
  line-height: 1.35;
}

.tbsh-page .tbsh-sub-sidebar .menu_list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tbsh-page .tbsh-sub-sidebar .menu_list .menu_item a {
  display: block;
  padding: 14px 16px;
  margin-bottom: 6px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
  color: #334155;
  text-decoration: none;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.tbsh-page .tbsh-sub-sidebar .menu_list .menu_item a:hover {
  border-color: rgba(22, 163, 74, 0.35);
  color: #166534;
  background: #f0fdf4;
}

.tbsh-page .tbsh-sub-sidebar .menu_list .menu_item a.highlight {
  border-color: var(--tbsh-accent);
  background: linear-gradient(135deg, #ecfdf5, #f0fdf4);
  color: #14532d;
  font-weight: 800;
}

.tbsh-page .tbsh-sub-sidebar .menu_list .menu_item:last-child a {
  margin-bottom: 0;
}

.tbsh-page .tbsh-sub-sidebar .menu_list .menu_item--cta a {
  border-color: rgba(22, 163, 74, 0.55);
  color: #166534;
  background: linear-gradient(135deg, #f0fdf4, #fff);
}

.tbsh-page .tbsh-sub-sidebar .menu_list .menu_item--cta a:hover {
  border-color: var(--tbsh-accent);
  background: #ecfdf5;
}

.tbsh-page .tbsh-sub-sidebar .menu_list .menu_item--kw-find a {
  border-color: rgba(14, 165, 233, 0.45);
  color: #0369a1;
  background: linear-gradient(135deg, #f0f9ff, #f8fafc);
}

.tbsh-page .tbsh-sub-sidebar .menu_list .menu_item--kw-find a:hover {
  border-color: #0ea5e9;
  background: #e0f2fe;
}

.tbsh-page .tbsh-sub-sidebar .menu_list .menu_item--kw-show a {
  border-color: rgba(124, 58, 237, 0.4);
  color: #5b21b6;
  background: linear-gradient(135deg, #faf5ff, #f8fafc);
}

.tbsh-page .tbsh-sub-sidebar .menu_list .menu_item--kw-show a:hover {
  border-color: #7c3aed;
  background: #ede9fe;
}

.tbsh-page .tbsh-sub-sidebar .menu_list .menu_item--cta a.highlight,
.tbsh-page .tbsh-sub-sidebar .menu_list .menu_item--kw-find a.highlight,
.tbsh-page .tbsh-sub-sidebar .menu_list .menu_item--kw-show a.highlight {
  box-shadow: 0 0 0 2px rgba(22, 163, 74, 0.2);
}

.tbsh-page .tbsh-sub-article.text_page {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 28px 24px 32px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
  min-width: 0;
}

@media (min-width: 960px) {
  .tbsh-page .tbsh-sub-article.text_page {
    padding: 36px 36px 40px;
  }
}

.tbsh-page .tbsh-sub-article .content_headline {
  margin: 0 0 20px;
  padding: 16px 20px;
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.03em;
  color: #fff;
  background: linear-gradient(135deg, #15803d 0%, var(--tbsh-accent) 100%);
  border-radius: 14px;
}

.tbsh-page .tbsh-sub-article .content_box {
  padding: 16px 0 0;
  font-size: clamp(16px, 0.4vw + 15px, 18px);
  line-height: 1.75;
  color: #334155;
}

.tbsh-page .tbsh-sub-article .content_box p {
  margin: 0 0 1.15em;
  font-size: inherit;
  line-height: 1.8;
  color: #334155;
}

.tbsh-page .tbsh-sub-article .content_box p:last-child {
  margin-bottom: 0;
}

.tbsh-page .tbsh-sub-article .content_box strong {
  display: block;
  margin: 1.35em 0 0.65em;
  font-size: clamp(17px, 0.55vw + 15px, 20px);
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.tbsh-page .tbsh-sub-article .content_box > strong:first-of-type {
  margin-top: 0;
  padding-bottom: 0.65em;
  margin-bottom: 0.35em;
  border-bottom: 1px solid #e2e8f0;
}

.tbsh-page .tbsh-sub-article .content_box ul,
.tbsh-page .tbsh-sub-article .content_box ol {
  margin: 0.85em 0 1.2em;
  padding-left: 1.4em;
}

.tbsh-page .tbsh-sub-article .content_box li {
  margin-bottom: 0.55em;
  font-size: inherit;
  line-height: 1.75;
  color: #334155;
}

.tbsh-page .tbsh-sub-article .content_box li:last-child {
  margin-bottom: 0;
}

.tbsh-page .tbsh-sub-article .content_box b {
  font-size: 1.05em;
  font-weight: 700;
  color: #0f172a;
}

.tbsh-page .tbsh-sub-article .content_box a {
  color: #15803d;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.tbsh-page .tbsh-sub-article .content_box table {
  width: 100%;
  margin: 1em 0;
  font-size: 0.95em;
  border-collapse: collapse;
}

.tbsh-page .tbsh-sub-article .content_box th,
.tbsh-page .tbsh-sub-article .content_box td {
  padding: 10px 14px;
  border: 1px solid #e2e8f0;
  line-height: 1.5;
}

.tbsh-page .tbsh-sub-article .content_box th {
  background: #f1f5f9;
  font-weight: 700;
  color: #0f172a;
}

/* 서브 본문 — 내보험찾아줌·내보험다보여 비주얼 블록 */
.tbsh-page .tbsh-sub-article .content_box .tbsh-svc-visual strong {
  display: inline;
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-weight: 700;
  line-height: inherit;
  letter-spacing: normal;
  color: #0f172a;
  border: none;
}

.tbsh-page .tbsh-sub-article .content_box .tbsh-svc-visual {
  margin-top: 0.5rem;
}

.tbsh-page .tbsh-sub-article .content_box .tbsh-svc-visual__hero {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  margin-bottom: 1.25rem;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  background: linear-gradient(135deg, #f8fafc 0%, #fff 100%);
}

.tbsh-page .tbsh-sub-article .content_box .tbsh-svc-visual--find .tbsh-svc-visual__hero {
  border-color: rgba(14, 165, 233, 0.35);
  background: linear-gradient(135deg, #f0f9ff 0%, #fff 55%);
}

.tbsh-page .tbsh-sub-article .content_box .tbsh-svc-visual--show .tbsh-svc-visual__hero {
  border-color: rgba(124, 58, 237, 0.3);
  background: linear-gradient(135deg, #faf5ff 0%, #fff 55%);
}

.tbsh-page .tbsh-sub-article .content_box .tbsh-svc-visual__glyph {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  color: #0369a1;
  background: #e0f2fe;
}

.tbsh-page .tbsh-sub-article .content_box .tbsh-svc-visual--show .tbsh-svc-visual__glyph {
  color: #6d28d9;
  background: #ede9fe;
}

.tbsh-page .tbsh-sub-article .content_box .tbsh-svc-visual__eyebrow {
  margin: 0 0 4px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
}

.tbsh-page .tbsh-sub-article .content_box .tbsh-svc-visual__title {
  margin: 0;
  font-size: clamp(1.05rem, 0.5vw + 1rem, 1.25rem);
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.tbsh-page .tbsh-sub-article .content_box .tbsh-svc-visual__lead {
  margin: 0 0 1.35em;
}

.tbsh-page .tbsh-sub-article .content_box .tbsh-svc-steps {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tbsh-page .tbsh-sub-article .content_box .tbsh-svc-steps > li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 0;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.tbsh-page .tbsh-sub-article .content_box .tbsh-svc-steps__n {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #15803d, var(--tbsh-accent, #16a34a));
}

.tbsh-page .tbsh-sub-article .content_box .tbsh-svc-steps__txt {
  flex: 1;
  min-width: 0;
  line-height: 1.65;
}

.tbsh-page .tbsh-sub-article .content_box .tbsh-svc-panels {
  display: grid;
  gap: 14px;
  margin-bottom: 1.25rem;
}

@media (min-width: 720px) {
  .tbsh-page .tbsh-sub-article .content_box .tbsh-svc-panels {
    grid-template-columns: 1fr 1fr;
  }
}

.tbsh-page .tbsh-sub-article .content_box .tbsh-svc-mini {
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
}

.tbsh-page .tbsh-sub-article .content_box .tbsh-svc-mini--accent {
  border-color: rgba(22, 163, 74, 0.35);
  background: linear-gradient(180deg, #ecfdf5, #f8fafc);
}

.tbsh-page .tbsh-sub-article .content_box .tbsh-svc-mini__h {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
}

.tbsh-page .tbsh-sub-article .content_box .tbsh-svc-mini ul {
  margin: 0;
  padding-left: 1.15em;
}

.tbsh-page .tbsh-sub-article .content_box .tbsh-svc-mini li {
  margin-bottom: 0.4em;
}

.tbsh-page .tbsh-sub-article .content_box .tbsh-svc-grid2 {
  display: grid;
  gap: 14px;
  margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
  .tbsh-page .tbsh-sub-article .content_box .tbsh-svc-grid2 {
    grid-template-columns: 1fr 1fr;
  }
}

.tbsh-page .tbsh-sub-article .content_box .tbsh-svc-card {
  margin: 0;
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
}

.tbsh-page .tbsh-sub-article .content_box .tbsh-svc-card--soft {
  background: linear-gradient(160deg, #f1f5f9, #fff);
}

.tbsh-page .tbsh-sub-article .content_box .tbsh-svc-card h4 {
  margin: 0 0 12px;
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
}

.tbsh-page .tbsh-sub-article .content_box .tbsh-svc-card ul {
  margin: 0;
  padding-left: 1.15em;
}

.tbsh-page .tbsh-sub-article .content_box .tbsh-svc-note {
  padding: 14px 18px;
  margin-bottom: 1.1rem;
  border-radius: 12px;
  border-left: 4px solid #94a3b8;
  background: #f1f5f9;
  font-size: 0.95em;
  line-height: 1.65;
}

.tbsh-page .tbsh-sub-article .content_box .tbsh-svc-visual__cta {
  margin: 0;
  font-weight: 600;
}

/* Q&A 서브 */
.tbsh-page .tbsh-sub-qna.sc_qna__sub {
  padding: 40px 0 64px;
  margin: 0;
  background: linear-gradient(180deg, #ecfdf5 0%, var(--tbsh-page-bg) 55%);
  border-top: 1px solid #d1fae5;
}

.tbsh-page .tbsh-sub-qna .inner.tbsh-inner {
  width: calc(100% - 48px);
  max-width: 900px;
  margin: 0 auto;
}

.tbsh-page .tbsh-sub-qna__headline.headline {
  margin: 0 0 28px;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-align: center;
  color: #0f172a;
  padding: 0;
}

.tbsh-page .tbsh-sub-qna__headline.headline::before {
  display: none;
}

.tbsh-page .tbsh-sub-qna .qna_list .qna_item:first-child {
  border-top: none;
}

/* 글로벌 link.css 의 header 규칙이 섞여 보이지 않도록 전용 헤더만 정리 */
.tbsh-page > .notscroll_bg {
  z-index: 998;
}
