/* ============================================================
   sinsa2-01 — 신사정형외과 템플릿 CSS
   원칙: 정보밀도 우위 · 사진 우위 · 9:1 색면적(primary 90%)
   컬러: hex/rgba only (oklch·hsl·lch 절대 금지)
   네이밍: --tp-primary / --tp-secondary (accent 금지)
   ============================================================ */

@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css");

/* ── 토큰 ──────────────────────────────────────────────────── */
.tp-sinsa2-01 {
  --tp-primary: #0b4a9e;
  --tp-primary-dark: #083a7d;
  --tp-primary-light: #1a5dbf;
  --tp-secondary: #d6e8ff;
  --tp-secondary-mid: #a8ccf0;

  --tp-text: #111111;
  --tp-text-sub: #555555;
  --tp-text-muted: #888888;
  --tp-bg: #ffffff;
  --tp-bg-gray: #f7f8fa;
  --tp-bg-dark: #0d1f3c;
  --tp-border: #e0e4ec;
  --tp-shadow: 0 2px 16px rgba(11, 74, 158, 0.10);
  --tp-shadow-lg: 0 8px 40px rgba(11, 74, 158, 0.16);

  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  color: var(--tp-text);
  word-break: keep-all;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}

/* ── 리셋 & 기본 ─────────────────────────────────────────── */
.tp-sinsa2-01 *,
.tp-sinsa2-01 *::before,
.tp-sinsa2-01 *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.tp-sinsa2-01 a {
  color: inherit;
  text-decoration: none;
}

.tp-sinsa2-01 img {
  display: block;
  max-width: 100%;
}

.tp-sinsa2-01 ul,
.tp-sinsa2-01 ol {
  list-style: none;
}

.tp-sinsa2-01 button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ── 유틸리티 ────────────────────────────────────────────── */
.tp-sinsa2-01 .s2-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.tp-sinsa2-01 .s2-badge {
  display: inline-block;
  padding: 4px 14px;
  background: var(--tp-secondary);
  color: var(--tp-primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 20px;
  margin-bottom: 12px;
}

.tp-sinsa2-01 .s2-section-title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: var(--tp-text);
}

.tp-sinsa2-01 .s2-section-title em {
  font-style: normal;
  color: var(--tp-primary);
}

.tp-sinsa2-01 .s2-section-desc {
  font-size: 16px;
  color: var(--tp-text-sub);
  line-height: 1.7;
  letter-spacing: -0.02em;
  margin-top: 12px;
}

/* ── 01. Sticky Navbar ──────────────────────────────────── */
.tp-sinsa2-01 .s2-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid var(--tp-border);
  box-shadow: 0 2px 12px rgba(11, 74, 158, 0.08);
}

.tp-sinsa2-01 .s2-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}

.tp-sinsa2-01 .s2-nav-logo {
  font-size: 18px;
  font-weight: 800;
  color: var(--tp-primary);
  letter-spacing: -0.03em;
  white-space: nowrap;
  flex-shrink: 0;
}

.tp-sinsa2-01 .s2-nav-logo span {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--tp-text-sub);
  letter-spacing: 0;
  margin-top: -2px;
}

.tp-sinsa2-01 .s2-nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.tp-sinsa2-01 .s2-nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--tp-text);
  letter-spacing: -0.01em;
  transition: color 0.2s;
}

.tp-sinsa2-01 .s2-nav-links a:hover {
  color: var(--tp-primary);
}

.tp-sinsa2-01 .s2-nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.tp-sinsa2-01 .s2-nav-phone {
  font-size: 16px;
  font-weight: 800;
  color: var(--tp-primary);
  letter-spacing: -0.02em;
}

.tp-sinsa2-01 .s2-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  background: var(--tp-primary);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 6px;
  transition: background 0.2s;
  white-space: nowrap;
}

.tp-sinsa2-01 .s2-nav-cta:hover {
  background: var(--tp-primary-dark);
}

/* 햄버거 */
.tp-sinsa2-01 .s2-nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 4px;
}

.tp-sinsa2-01 .s2-nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--tp-text);
  border-radius: 2px;
  transition: 0.3s;
}

.tp-sinsa2-01 .s2-nav-mobile {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  z-index: 99;
  padding: 24px;
  flex-direction: column;
  gap: 8px;
}

.tp-sinsa2-01 .s2-nav-mobile.is-open {
  display: flex;
}

.tp-sinsa2-01 .s2-nav-mobile a {
  display: block;
  padding: 14px 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--tp-text);
  border-bottom: 1px solid var(--tp-border);
  letter-spacing: -0.02em;
}

.tp-sinsa2-01 .s2-nav-mobile .s2-nav-phone-mobile {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  margin-top: 16px;
  background: var(--tp-primary);
  color: #ffffff;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 800;
}

/* ── 02. Hero ───────────────────────────────────────────── */
.tp-sinsa2-01 .s2-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.tp-sinsa2-01 .s2-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.tp-sinsa2-01 .s2-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.62) 50%,
    rgba(0, 0, 0, 0.28) 100%
  );
}

.tp-sinsa2-01 .s2-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 80px 0 60px;
}

.tp-sinsa2-01 .s2-hero-inner {
  max-width: 640px;
}

.tp-sinsa2-01 .s2-hero-badge {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(214, 232, 255, 0.18);
  border: 1px solid rgba(214, 232, 255, 0.4);
  color: #d6e8ff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}

.tp-sinsa2-01 .s2-hero-headline {
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.tp-sinsa2-01 .s2-hero-headline em {
  font-style: normal;
  color: #d6e8ff;
}

.tp-sinsa2-01 .s2-hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-top: 16px;
  letter-spacing: -0.02em;
  white-space: pre-line;
}

.tp-sinsa2-01 .s2-hero-cta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.tp-sinsa2-01 .s2-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: #ffffff;
  color: var(--tp-primary);
  font-size: 16px;
  font-weight: 800;
  border-radius: 8px;
  transition: transform 0.15s, box-shadow 0.15s;
  letter-spacing: -0.02em;
}

.tp-sinsa2-01 .s2-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.tp-sinsa2-01 .s2-btn-kakao {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: #fee500;
  color: #1a1a1a;
  font-size: 15px;
  font-weight: 700;
  border-radius: 8px;
  transition: transform 0.15s;
  letter-spacing: -0.02em;
}

.tp-sinsa2-01 .s2-btn-kakao:hover {
  transform: translateY(-1px);
}

/* ── 03. StatStrip ──────────────────────────────────────── */
.tp-sinsa2-01 .s2-statstrip {
  background: var(--tp-primary);
  padding: 0;
}

.tp-sinsa2-01 .s2-statstrip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.tp-sinsa2-01 .s2-statstrip-item {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
}

.tp-sinsa2-01 .s2-statstrip-item:last-child {
  border-right: none;
}

.tp-sinsa2-01 .s2-statstrip-value {
  display: block;
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1;
}

.tp-sinsa2-01 .s2-statstrip-label {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 6px;
  letter-spacing: -0.01em;
}

/* ── 04. Problem ────────────────────────────────────────── */
.tp-sinsa2-01 .s2-problem {
  padding: 80px 0;
  background: var(--tp-bg-gray);
}

.tp-sinsa2-01 .s2-problem-header {
  text-align: center;
  margin-bottom: 48px;
}

.tp-sinsa2-01 .s2-problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.tp-sinsa2-01 .s2-problem-card {
  background: #ffffff;
  border: 1.5px solid var(--tp-border);
  border-radius: 10px;
  padding: 24px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.tp-sinsa2-01 .s2-problem-card:hover {
  border-color: var(--tp-primary);
  box-shadow: var(--tp-shadow);
}

.tp-sinsa2-01 .s2-problem-icon {
  font-size: 28px;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tp-secondary);
  border-radius: 10px;
}

.tp-sinsa2-01 .s2-problem-text {
  flex: 1;
}

.tp-sinsa2-01 .s2-problem-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--tp-text);
  letter-spacing: -0.02em;
  line-height: 1.4;
}

.tp-sinsa2-01 .s2-problem-tag {
  display: inline-block;
  margin-top: 6px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 4px;
}

.tp-sinsa2-01 .s2-problem-tag.warn {
  background: #fff3cd;
  color: #856404;
}

.tp-sinsa2-01 .s2-problem-tag.alert {
  background: #fde8e8;
  color: #c0392b;
}

/* ── 05. Services ───────────────────────────────────────── */
.tp-sinsa2-01 .s2-services {
  padding: 80px 0;
  background: #ffffff;
}

.tp-sinsa2-01 .s2-services-header {
  margin-bottom: 48px;
}

.tp-sinsa2-01 .s2-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.tp-sinsa2-01 .s2-service-card {
  border: 1.5px solid var(--tp-border);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}

.tp-sinsa2-01 .s2-service-card:hover {
  box-shadow: var(--tp-shadow-lg);
  transform: translateY(-3px);
}

.tp-sinsa2-01 .s2-service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.tp-sinsa2-01 .s2-service-body {
  padding: 24px;
}

.tp-sinsa2-01 .s2-service-header-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.tp-sinsa2-01 .s2-service-icon {
  font-size: 22px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tp-secondary);
  border-radius: 10px;
  flex-shrink: 0;
}

.tp-sinsa2-01 .s2-service-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--tp-text);
  letter-spacing: -0.03em;
}

.tp-sinsa2-01 .s2-service-subtitle {
  font-size: 13px;
  color: var(--tp-primary);
  font-weight: 600;
  margin-bottom: 10px;
}

.tp-sinsa2-01 .s2-service-desc {
  font-size: 14px;
  color: var(--tp-text-sub);
  line-height: 1.7;
  letter-spacing: -0.02em;
}

.tp-sinsa2-01 .s2-service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.tp-sinsa2-01 .s2-service-tag {
  padding: 4px 10px;
  background: var(--tp-secondary);
  color: var(--tp-primary);
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
}

/* ── 06. Process ────────────────────────────────────────── */
.tp-sinsa2-01 .s2-process {
  padding: 80px 0;
  background: var(--tp-bg-dark);
}

.tp-sinsa2-01 .s2-process .s2-badge {
  background: rgba(214, 232, 255, 0.15);
  color: #d6e8ff;
}

.tp-sinsa2-01 .s2-process .s2-section-title {
  color: #ffffff;
}

.tp-sinsa2-01 .s2-process .s2-section-title em {
  color: #d6e8ff;
}

.tp-sinsa2-01 .s2-process .s2-section-desc {
  color: rgba(255, 255, 255, 0.65);
}

.tp-sinsa2-01 .s2-process-header {
  margin-bottom: 56px;
}

.tp-sinsa2-01 .s2-process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.tp-sinsa2-01 .s2-process-steps::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: rgba(214, 232, 255, 0.2);
  z-index: 0;
}

.tp-sinsa2-01 .s2-process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 16px;
}

.tp-sinsa2-01 .s2-process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: var(--tp-primary);
  border: 3px solid rgba(214, 232, 255, 0.3);
  border-radius: 50%;
  margin: 0 auto 20px;
}

.tp-sinsa2-01 .s2-process-icon {
  font-size: 30px;
}

.tp-sinsa2-01 .s2-process-step-num {
  position: absolute;
  top: -8px;
  right: -8px;
  display: none;
}

.tp-sinsa2-01 .s2-process-title {
  font-size: 17px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.tp-sinsa2-01 .s2-process-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  letter-spacing: -0.01em;
}

.tp-sinsa2-01 .s2-process-duration {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 10px;
  background: rgba(214, 232, 255, 0.12);
  color: #d6e8ff;
  font-size: 11px;
  font-weight: 600;
  border-radius: 20px;
}

/* ── 07. Profile ────────────────────────────────────────── */
.tp-sinsa2-01 .s2-profile {
  padding: 80px 0;
  background: #ffffff;
}

.tp-sinsa2-01 .s2-profile-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 64px;
  align-items: center;
}

.tp-sinsa2-01 .s2-profile-photo-wrap {
  position: relative;
}

.tp-sinsa2-01 .s2-profile-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
  box-shadow: var(--tp-shadow-lg);
}

.tp-sinsa2-01 .s2-profile-photo-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(11, 74, 158, 0.95);
  color: #ffffff;
  padding: 14px 16px;
  border-radius: 8px;
  backdrop-filter: blur(4px);
}

.tp-sinsa2-01 .s2-profile-photo-badge-name {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.tp-sinsa2-01 .s2-profile-photo-badge-title {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 2px;
}

.tp-sinsa2-01 .s2-profile-info {
  padding: 8px 0;
}

.tp-sinsa2-01 .s2-profile-quote {
  font-size: 17px;
  font-style: italic;
  color: var(--tp-primary);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: -0.02em;
  margin: 20px 0 28px;
  padding: 20px 24px;
  background: var(--tp-secondary);
  border-left: 4px solid var(--tp-primary);
  border-radius: 0 8px 8px 0;
}

.tp-sinsa2-01 .s2-profile-creds {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.tp-sinsa2-01 .s2-profile-cred {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--tp-text);
  letter-spacing: -0.02em;
}

.tp-sinsa2-01 .s2-profile-cred::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--tp-primary);
  border-radius: 50%;
  flex-shrink: 0;
}

.tp-sinsa2-01 .s2-profile-stats {
  display: flex;
  gap: 0;
  border: 1.5px solid var(--tp-border);
  border-radius: 10px;
  overflow: hidden;
}

.tp-sinsa2-01 .s2-profile-stat {
  flex: 1;
  padding: 18px 16px;
  text-align: center;
  border-right: 1.5px solid var(--tp-border);
}

.tp-sinsa2-01 .s2-profile-stat:last-child {
  border-right: none;
}

.tp-sinsa2-01 .s2-profile-stat-value {
  display: block;
  font-size: 26px;
  font-weight: 900;
  color: var(--tp-primary);
  letter-spacing: -0.03em;
}

.tp-sinsa2-01 .s2-profile-stat-label {
  display: block;
  font-size: 12px;
  color: var(--tp-text-muted);
  margin-top: 4px;
}

/* ── 08. Benefits ───────────────────────────────────────── */
.tp-sinsa2-01 .s2-benefits {
  padding: 80px 0;
  background: var(--tp-primary);
}

.tp-sinsa2-01 .s2-benefits .s2-badge {
  background: rgba(214, 232, 255, 0.2);
  color: #d6e8ff;
}

.tp-sinsa2-01 .s2-benefits .s2-section-title {
  color: #ffffff;
}

.tp-sinsa2-01 .s2-benefits .s2-section-title em {
  color: #d6e8ff;
}

.tp-sinsa2-01 .s2-benefits-header {
  margin-bottom: 48px;
}

.tp-sinsa2-01 .s2-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tp-sinsa2-01 .s2-benefit-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 32px 28px;
  transition: background 0.2s, transform 0.2s;
}

.tp-sinsa2-01 .s2-benefit-card:hover {
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-2px);
}

.tp-sinsa2-01 .s2-benefit-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.tp-sinsa2-01 .s2-benefit-title {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.tp-sinsa2-01 .s2-benefit-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  letter-spacing: -0.02em;
}

.tp-sinsa2-01 .s2-benefit-stat {
  display: inline-block;
  margin-top: 16px;
  padding: 5px 12px;
  background: rgba(214, 232, 255, 0.2);
  color: #d6e8ff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 20px;
}

/* ── 09. Gallery (원내 사진) ────────────────────────────── */
.tp-sinsa2-01 .s2-gallery {
  padding: 80px 0;
  background: var(--tp-bg-gray);
}

.tp-sinsa2-01 .s2-gallery-header {
  margin-bottom: 40px;
}

.tp-sinsa2-01 .s2-gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 12px;
}

.tp-sinsa2-01 .s2-gallery-item {
  overflow: hidden;
  border-radius: 8px;
  position: relative;
}

.tp-sinsa2-01 .s2-gallery-item:first-child {
  grid-row: 1 / 3;
}

.tp-sinsa2-01 .s2-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.tp-sinsa2-01 .s2-gallery-item:hover .s2-gallery-img {
  transform: scale(1.04);
}

.tp-sinsa2-01 .s2-gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 14px;
  background: linear-gradient(transparent, rgba(11, 74, 158, 0.8));
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* ── 10. Testimonials ───────────────────────────────────── */
.tp-sinsa2-01 .s2-testimonials {
  padding: 80px 0;
  background: #ffffff;
}

.tp-sinsa2-01 .s2-testimonials-header {
  margin-bottom: 16px;
}

.tp-sinsa2-01 .s2-rating-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  padding: 16px 20px;
  background: var(--tp-secondary);
  border-radius: 10px;
  border-left: 4px solid var(--tp-primary);
  max-width: 400px;
}

.tp-sinsa2-01 .s2-rating-score {
  font-size: 40px;
  font-weight: 900;
  color: var(--tp-primary);
  letter-spacing: -0.04em;
  line-height: 1;
}

.tp-sinsa2-01 .s2-rating-stars {
  font-size: 20px;
  letter-spacing: 2px;
}

.tp-sinsa2-01 .s2-rating-count {
  font-size: 13px;
  color: var(--tp-text-sub);
  margin-top: 2px;
}

/* 슬라이더 */
.tp-sinsa2-01 .s2-slider-wrap {
  position: relative;
  overflow: hidden;
}

.tp-sinsa2-01 .s2-slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tp-sinsa2-01 .s2-testimonial-card {
  flex: 0 0 calc(33.333% - 14px);
  background: var(--tp-bg-gray);
  border: 1.5px solid var(--tp-border);
  border-radius: 12px;
  padding: 24px;
}

.tp-sinsa2-01 .s2-testimonial-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 14px;
}

.tp-sinsa2-01 .s2-testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tp-sinsa2-01 .s2-testimonial-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--tp-text);
  letter-spacing: -0.02em;
}

.tp-sinsa2-01 .s2-testimonial-cat {
  font-size: 12px;
  color: var(--tp-primary);
  font-weight: 600;
}

.tp-sinsa2-01 .s2-testimonial-stars {
  font-size: 14px;
  color: #f4b400;
  letter-spacing: 1px;
}

.tp-sinsa2-01 .s2-testimonial-content {
  font-size: 14px;
  color: var(--tp-text-sub);
  line-height: 1.75;
  letter-spacing: -0.02em;
}

.tp-sinsa2-01 .s2-testimonial-period {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  color: var(--tp-text-muted);
  font-weight: 600;
}

.tp-sinsa2-01 .s2-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.tp-sinsa2-01 .s2-slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--tp-border);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--tp-text-sub);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.tp-sinsa2-01 .s2-slider-btn:hover {
  border-color: var(--tp-primary);
  color: var(--tp-primary);
}

.tp-sinsa2-01 .s2-slider-dots {
  display: flex;
  gap: 8px;
}

.tp-sinsa2-01 .s2-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--tp-border);
  cursor: pointer;
  transition: background 0.2s;
}

.tp-sinsa2-01 .s2-slider-dot.active {
  background: var(--tp-primary);
}

/* ── 11. Contact ────────────────────────────────────────── */
.tp-sinsa2-01 .s2-contact {
  padding: 80px 0;
  background: var(--tp-bg-gray);
}

.tp-sinsa2-01 .s2-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
}

.tp-sinsa2-01 .s2-contact-info-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--tp-shadow);
}

.tp-sinsa2-01 .s2-contact-info-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--tp-text);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1.5px solid var(--tp-border);
}

.tp-sinsa2-01 .s2-contact-row {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.tp-sinsa2-01 .s2-contact-row-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.tp-sinsa2-01 .s2-contact-row-label {
  font-size: 12px;
  color: var(--tp-text-muted);
  font-weight: 600;
  margin-bottom: 2px;
  letter-spacing: -0.01em;
}

.tp-sinsa2-01 .s2-contact-row-value {
  font-size: 15px;
  color: var(--tp-text);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.5;
}

.tp-sinsa2-01 .s2-contact-phone-link {
  font-size: 20px;
  font-weight: 900;
  color: var(--tp-primary);
  display: block;
  letter-spacing: -0.03em;
}

.tp-sinsa2-01 .s2-contact-cta-row {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.tp-sinsa2-01 .s2-btn-full-primary {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  background: var(--tp-primary);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 8px;
  transition: background 0.2s;
  letter-spacing: -0.02em;
}

.tp-sinsa2-01 .s2-btn-full-primary:hover {
  background: var(--tp-primary-dark);
}

.tp-sinsa2-01 .s2-btn-full-kakao {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  background: #fee500;
  color: #1a1a1a;
  font-size: 15px;
  font-weight: 700;
  border-radius: 8px;
  transition: opacity 0.2s;
  letter-spacing: -0.02em;
}

.tp-sinsa2-01 .s2-btn-full-kakao:hover {
  opacity: 0.9;
}

.tp-sinsa2-01 .s2-hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}

.tp-sinsa2-01 .s2-hours-table tr {
  border-bottom: 1px solid var(--tp-border);
}

.tp-sinsa2-01 .s2-hours-table tr:last-child {
  border-bottom: none;
}

.tp-sinsa2-01 .s2-hours-table td {
  padding: 9px 4px;
  font-size: 13px;
  letter-spacing: -0.01em;
}

.tp-sinsa2-01 .s2-hours-table td:first-child {
  font-weight: 700;
  color: var(--tp-text);
  width: 120px;
}

.tp-sinsa2-01 .s2-hours-table td:last-child {
  color: var(--tp-text-sub);
}

.tp-sinsa2-01 .s2-hours-table tr.holiday td {
  color: var(--tp-text-muted);
}

.tp-sinsa2-01 .s2-hours-notice {
  margin-top: 10px;
  font-size: 12px;
  color: var(--tp-text-muted);
  padding: 8px 12px;
  background: var(--tp-bg-gray);
  border-radius: 6px;
}

.tp-sinsa2-01 .s2-map-wrap {
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  min-height: 400px;
  background: #e8edf5;
  display: flex;
  flex-direction: column;
}

.tp-sinsa2-01 .s2-map-placeholder {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #e8f0fe, #d6e8ff);
  padding: 40px;
  text-align: center;
}

.tp-sinsa2-01 .s2-map-pin {
  font-size: 48px;
}

.tp-sinsa2-01 .s2-map-addr {
  font-size: 16px;
  font-weight: 700;
  color: var(--tp-primary);
  letter-spacing: -0.02em;
}

.tp-sinsa2-01 .s2-map-sub {
  font-size: 14px;
  color: var(--tp-text-sub);
}

.tp-sinsa2-01 .s2-map-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 20px;
  background: var(--tp-primary);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
}

/* ── 12. Footer ─────────────────────────────────────────── */
.tp-sinsa2-01 .s2-footer {
  background: var(--tp-bg-dark);
  padding: 48px 0 32px;
  color: rgba(255, 255, 255, 0.6);
}

.tp-sinsa2-01 .s2-footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
}

.tp-sinsa2-01 .s2-footer-brand {
  font-size: 20px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.tp-sinsa2-01 .s2-footer-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.tp-sinsa2-01 .s2-footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tp-sinsa2-01 .s2-footer-contact-item {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  gap: 8px;
  align-items: center;
}

.tp-sinsa2-01 .s2-footer-contact-item strong {
  color: #ffffff;
  font-weight: 800;
  font-size: 16px;
}

.tp-sinsa2-01 .s2-footer-biz-title {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.tp-sinsa2-01 .s2-footer-biz-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tp-sinsa2-01 .s2-footer-biz-row {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  gap: 4px;
  align-items: baseline;
  flex-wrap: wrap;
}

.tp-sinsa2-01 .s2-footer-biz-row span {
  color: rgba(255, 255, 255, 0.35);
  font-size: 12px;
  margin-right: 2px;
}

.tp-sinsa2-01 .s2-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.tp-sinsa2-01 .s2-footer-copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

.tp-sinsa2-01 .s2-footer-links {
  display: flex;
  gap: 20px;
}

.tp-sinsa2-01 .s2-footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
}

.tp-sinsa2-01 .s2-footer-links a:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* ── Floating CTA ───────────────────────────────────────── */
.tp-sinsa2-01 .s2-floating {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tp-sinsa2-01 .s2-floating-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.tp-sinsa2-01 .s2-floating-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.tp-sinsa2-01 .s2-floating-phone {
  background: var(--tp-primary);
  color: #ffffff;
}

.tp-sinsa2-01 .s2-floating-kakao {
  background: #fee500;
  color: #1a1a1a;
}

/* ── 반응형 (960px 이하) ─────────────────────────────────── */
@media (max-width: 960px) {
  .tp-sinsa2-01 .s2-nav-links,
  .tp-sinsa2-01 .s2-nav-phone,
  .tp-sinsa2-01 .s2-nav-cta {
    display: none;
  }

  .tp-sinsa2-01 .s2-nav-hamburger {
    display: flex;
  }

  .tp-sinsa2-01 .s2-hero {
    min-height: 480px;
  }

  .tp-sinsa2-01 .s2-statstrip-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .tp-sinsa2-01 .s2-statstrip-item:nth-child(2) {
    border-right: none;
  }

  .tp-sinsa2-01 .s2-statstrip-item:nth-child(1),
  .tp-sinsa2-01 .s2-statstrip-item:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .tp-sinsa2-01 .s2-problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tp-sinsa2-01 .s2-services-grid {
    grid-template-columns: 1fr;
  }

  .tp-sinsa2-01 .s2-process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .tp-sinsa2-01 .s2-process-steps::before {
    display: none;
  }

  .tp-sinsa2-01 .s2-profile-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .tp-sinsa2-01 .s2-profile-photo-wrap {
    max-width: 360px;
    margin: 0 auto;
  }

  .tp-sinsa2-01 .s2-benefits-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .tp-sinsa2-01 .s2-gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .tp-sinsa2-01 .s2-gallery-item:first-child {
    grid-column: 1 / 3;
    grid-row: auto;
    height: 240px;
  }

  .tp-sinsa2-01 .s2-gallery-item {
    height: 180px;
  }

  .tp-sinsa2-01 .s2-testimonial-card {
    flex: 0 0 calc(50% - 10px);
  }

  .tp-sinsa2-01 .s2-contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .tp-sinsa2-01 .s2-footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .tp-sinsa2-01 .s2-problem-grid {
    grid-template-columns: 1fr;
  }

  .tp-sinsa2-01 .s2-testimonial-card {
    flex: 0 0 calc(100% - 0px);
  }

  .tp-sinsa2-01 .s2-hero-cta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .tp-sinsa2-01 .s2-process-steps {
    grid-template-columns: 1fr;
  }

  .tp-sinsa2-01 .s2-contact-cta-row {
    flex-direction: column;
  }

  .tp-sinsa2-01 .s2-floating {
    bottom: 16px;
    right: 12px;
  }

  .tp-sinsa2-01 .s2-floating-btn {
    padding: 10px 16px;
    font-size: 13px;
  }
}

/* ── 접근성 — 모션 줄이기 ────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .tp-sinsa2-01 .s2-slider-track {
    transition: none;
  }

  .tp-sinsa2-01 .s2-service-card,
  .tp-sinsa2-01 .s2-benefit-card,
  .tp-sinsa2-01 .s2-gallery-img,
  .tp-sinsa2-01 .s2-floating-btn,
  .tp-sinsa2-01 .s2-btn-primary {
    transition: none;
  }
}
