/* ============================================================
   THE PLUMBING — main.css
   원본 Next.js globals.css 토큰 1:1 + Tailwind 클래스 vanilla 이식
   메인 페이지 스타일
   ============================================================ */

/* ---------- 디자인 토큰 (원본과 동일) ---------- */
:root {
    --color-navy: #0D213E;
    --color-navy-soft: #1A3357;
    --color-navy-deep: #07172E;

    --color-blue: #0052CC;
    --color-blue-soft: #1E6FD9;
    --color-sky: #E8F1FC;
    --color-sky-soft: #F4F8FD;

    --color-gold: #B8964E;
    --color-gold-soft: #D4B574;
    --color-gold-deep: #8E7235;

    --color-base: #F9F7F4;
    --color-base-alt: #F4F1EC;
    --color-cream: #F1EDE4;
    --color-cream-deep: #E8E2D4;

    --color-ink: #0E1726;
    --color-ink-soft: #2E3A4D;
    --color-mute: #6B7887;
    --color-mute-soft: #9AA3B0;
    --color-line: #E5EAF0;
    --color-line-soft: #EEF2F6;

    --shadow-sm: 0 1px 2px rgba(13,33,62,.04), 0 1px 3px rgba(13,33,62,.04);
    --shadow-md: 0 4px 12px rgba(13,33,62,.06), 0 2px 4px rgba(13,33,62,.04);
    --shadow-lg: 0 24px 48px -12px rgba(13,33,62,.12), 0 8px 16px -4px rgba(13,33,62,.06);

    --container-max: 1240px;
    --container-padding: 20px;
    --header-height: 76px;
}

@media (min-width: 1024px) {
    :root { --container-padding: 32px; }
}

/* ---------- 리셋 ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: var(--header-height); }
body {
    margin: 0;
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Malgun Gothic", system-ui, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: -0.01em;
    color: var(--color-ink);
    background: var(--color-base);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
.tp-logo-en,
.tp-hero-headline,
.tp-brand-title-m,
.tp-brand-d-title,
.tp-safety-promise-head h2,
.tp-process-head h2,
.tp-home-service-card h2,
.tp-home-mini-card h3,
.tp-franchise-cta-text h2,
.tp-sub-hero-inner h1 {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Malgun Gothic", system-ui, sans-serif;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, a { transition: all 0.18s ease; cursor: pointer; }
button { font-family: inherit; background: transparent; border: 0; padding: 0; }
h1, h2, h3, h4, p, ul, ol, dl, dd, dt { margin: 0; padding: 0; }
ul, ol { list-style: none; }
.safe-bottom { padding-bottom: env(safe-area-inset-bottom); }

.tp-container { max-width: var(--container-max); margin: 0 auto; padding-left: var(--container-padding); padding-right: var(--container-padding); }

/* ---------- 헤더 ---------- */
.tp-header {
    position: fixed; inset: 0 0 auto 0; z-index: 40;
    background: var(--color-base);
    color: var(--color-navy);
    border-bottom: 1px solid var(--color-line);
}
.tp-header-inner {
    max-width: var(--container-max);
    height: var(--header-height);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px;
}
.tp-logo-link { display: inline-flex; align-items: center; gap: 12px; }
.tp-logo-mark { width: 44px; height: 44px; object-fit: contain; flex-shrink: 0; }
.tp-logo-divider { width: 1px; height: 32px; background: rgba(49, 85, 246,0.7); display: inline-block; }
.tp-logo-text { display: inline-flex; flex-direction: column; line-height: 1; }
.tp-logo-en { font-size: 16px; font-weight: 800; letter-spacing: 0.08em; color: var(--color-navy); }
.tp-logo-ko { margin-top: 4px; font-size: 11px; font-weight: 800; letter-spacing: 0.22em; color: var(--color-gold-deep); }

.tp-nav-desktop { display: none; align-items: center; gap: 48px; }
.tp-nav-link { font-size: 14px; font-weight: 600; letter-spacing: -0.01em; color: rgba(13,33,62,0.85); }
.tp-nav-link:hover { color: var(--color-gold-deep); }

.tp-cta-phone {
    display: none; align-items: center; gap: 8px;
    background: var(--color-gold); color: #fff;
    padding: 12px 20px; border-radius: 12px;
    font-size: 14px; font-weight: 700;
    box-shadow: 0 4px 14px rgba(49, 85, 246,0.25);
}
.tp-cta-phone:hover { background: var(--color-gold-soft); color: var(--color-navy); }

.tp-nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; color: var(--color-navy); border-radius: 12px;
}

@media (min-width: 768px) { .tp-cta-phone { display: inline-flex; } }
@media (min-width: 1024px) {
    .tp-nav-desktop { display: inline-flex; }
    .tp-nav-toggle { display: none; }
}

.tp-nav-mobile { display: none; border-top: 1px solid var(--color-line); background: var(--color-base); }
.tp-nav-mobile[data-open="true"] { display: block; }
.tp-nav-mobile-inner {
    max-width: var(--container-max); margin: 0 auto;
    padding: 16px var(--container-padding);
    display: grid; gap: 4px;
}
.tp-nav-link-mobile { padding: 10px 8px; border-radius: 12px; font-size: 14px; font-weight: 600; color: var(--color-navy); }
.tp-nav-link-mobile:hover { background: var(--color-base-alt); color: var(--color-gold-deep); }
.tp-cta-phone-mobile {
    margin-top: 12px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--color-gold); color: #fff;
    padding: 12px; border-radius: 12px;
    font-size: 14px; font-weight: 700;
}

/* ---------- 본문 영역 (헤더 fixed 보정) ---------- */
.tp-main { padding-bottom: 64px; }
@media (min-width: 1024px) { .tp-main { padding-bottom: 0; } }

/* ============================================================
   HERO
   ============================================================ */
.tp-hero {
    position: relative; isolation: isolate; overflow: hidden;
    background: #fff; color: var(--color-navy);
}
.tp-hero-bg { position: absolute; inset: 0; z-index: -1; }
.tp-hero-bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.tp-hero-bg-mobile { object-position: 68% center; display: block; }
.tp-hero-bg-desktop { object-position: 66% center; display: none; }
@media (min-width: 768px) {
    .tp-hero-bg-mobile { display: none; }
    .tp-hero-bg-desktop { display: block; }
}
.tp-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(6,20,39,0.92) 0%, rgba(9,28,52,0.83) 44%, rgba(9,28,52,0.28) 76%, rgba(9,28,52,0.08) 100%);
}
.tp-hero-overlay-bottom {
    position: absolute; inset: auto 0 0 0; height: 64px;
    background: linear-gradient(180deg, rgba(6,20,39,0) 0%, rgba(6,20,39,0.18) 100%);
}
@media (min-width: 768px) {
    .tp-hero-overlay {
        background: linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.94) 33%, rgba(255,255,255,0.62) 48%, rgba(255,255,255,0.08) 67%, rgba(255,255,255,0) 100%);
    }
    .tp-hero-overlay-bottom {
        height: 96px;
        background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.5) 100%);
    }
}
.tp-hero-inner {
    max-width: var(--container-max); margin: 0 auto;
    padding: 104px 20px 32px;
    min-height: 390px; display: flex; align-items: center;
}
@media (min-width: 768px) { .tp-hero-inner { padding: 122px 20px 48px; min-height: 560px; } }
@media (min-width: 1024px) { .tp-hero-inner { padding: 130px 32px 56px; } }
.tp-hero-body { max-width: 310px; }
@media (min-width: 768px) { .tp-hero-body { max-width: 480px; } }
.tp-hero-eyebrow {
    display: none;
    margin-bottom: 16px;
    font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.14em;
    color: var(--color-gold-deep);
}
@media (min-width: 768px) { .tp-hero-eyebrow { display: block; } }
.tp-hero-headline {
    white-space: pre-line;
    font-size: 27px; font-weight: 800; line-height: 1.28; letter-spacing: 0;
    color: #fff; text-shadow: 0 1px 4px rgba(0,0,0,0.45);
}
@media (min-width: 768px) {
    .tp-hero-headline {
        font-size: 46px; line-height: 1.2;
        color: var(--color-navy-deep);
        text-shadow: 0 1px 0 rgba(255,255,255,0.7);
    }
}
@media (min-width: 1024px) { .tp-hero-headline { font-size: 48px; line-height: 1.18; } }
.tp-hero-sub {
    margin-top: 20px; max-width: 285px;
    white-space: pre-line;
    font-size: 12.5px; font-weight: 700; line-height: 1.7;
    color: rgba(255,255,255,0.88);
}
@media (min-width: 768px) {
    .tp-hero-sub {
        max-width: 430px; font-size: 16px; font-weight: 600;
        color: var(--color-ink-soft);
    }
}
.tp-hero-actions {
    margin-top: 28px;
    display: flex; flex-direction: row; gap: 10px;
}
@media (min-width: 768px) { .tp-hero-actions { gap: 12px; } }
.tp-hero-btn {
    display: inline-flex; flex: 1; align-items: center; justify-content: center; gap: 8px;
    min-height: 48px; padding: 0 16px;
    border-radius: 12px;
    font-size: 13px; font-weight: 800;
}
@media (min-width: 768px) {
    .tp-hero-btn { flex: 0 0 auto; min-height: 56px; padding: 0 32px; font-size: 15px; }
}
.tp-hero-btn-phone {
    order: 2;
    border: 1px solid rgba(255,255,255,0.45);
    background: rgba(255,255,255,0.06);
    color: #fff;
    box-shadow: 0 10px 22px rgba(0,0,0,0.16);
    backdrop-filter: blur(4px);
}
.tp-hero-btn-phone:hover { background: rgba(255,255,255,0.12); }
@media (min-width: 768px) {
    .tp-hero-btn-phone {
        order: 1;
        border: 0;
        background: var(--color-navy); color: #fff;
        backdrop-filter: none;
    }
    .tp-hero-btn-phone:hover { background: var(--color-navy-soft); }
}
.tp-hero-btn-online {
    order: 1;
    background: var(--color-gold); color: #fff;
    box-shadow: 0 8px 18px rgba(0,0,0,0.18);
}
.tp-hero-btn-online:hover { background: var(--color-gold-soft); }

/* ============================================================
   Sendy형 리디자인 override — 2026-07-05
   기존 WP 기능은 유지하고 공개 홈의 시각 톤만 흰 배경/블루 CTA 중심으로 재정렬
   ============================================================ */
:root {
    --tp-text: #111827;
    --tp-text-soft: #374151;
    --tp-muted: #6B7280;
    --tp-bg: #FFFFFF;
    --tp-surface: #F3F4F6;
    --tp-surface-soft: #F9FAFB;
    --tp-primary: #1E3E7B;         /* 로고 네이비 계열 딥블루 — 무게감·보수적 톤 (구 밝은 #3155F6 폐기, 2026-07-08) */
    --tp-primary-deep: #14294F;    /* hover — 더 짙게 */
    --tp-primary-soft: #EAEFF7;    /* pill/soft bg — 쿨 라이트 */
    --tp-accent: #0E9B7A;          /* 딥 틸 — 캔디 민트 톤다운 */
    --tp-line: #E5E7EB;
    --tp-shadow-card: 0 18px 50px rgba(13,24,50,0.10);
    --tp-shadow-soft: 0 12px 30px rgba(30,62,123,0.18);
}

body {
    color: var(--tp-text);
    background: var(--tp-bg);
    letter-spacing: 0;
}

.tp-main { padding-bottom: 72px; background: var(--tp-bg); }
.tp-sendy-shell {
    max-width: 1180px;
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
}
@media (min-width: 768px) {
    .tp-sendy-shell { padding-left: 28px; padding-right: 28px; }
}

.tp-header {
    background: rgba(255,255,255,0.94);
    border-bottom: 1px solid rgba(229,231,235,0.9);
    backdrop-filter: blur(16px);
    color: var(--tp-text);
}
.tp-header-inner { height: 76px; }
.tp-logo-link { gap: 10px; }
.tp-logo-mark { width: 40px; height: 40px; }
.tp-logo-divider { display: none; }
.tp-logo-en {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    font-size: 10px;
    letter-spacing: 0.05em;
    color: var(--tp-muted);
    order: 2;
}
.tp-logo-ko {
    margin: 0;
    font-size: 18px;
    letter-spacing: -0.02em;
    color: var(--tp-text);
    order: 1;
}
.tp-nav-desktop { gap: 34px; }
.tp-nav-link {
    color: var(--tp-text-soft);
    font-size: 15px;
    font-weight: 700;
}
.tp-nav-link:hover { color: var(--tp-primary); }
.tp-cta-phone {
    border-radius: 999px;
    background: var(--tp-primary);
    color: #fff;
    box-shadow: 0 10px 24px rgba(30,62,123,0.22);
}
.tp-cta-phone:hover { background: var(--tp-primary-deep); color: #fff; }
.tp-nav-toggle { color: var(--tp-text); border-radius: 16px; background: var(--tp-surface); }
.tp-nav-mobile { background: #fff; border-color: var(--tp-line); }
.tp-nav-link-mobile { border-radius: 16px; color: var(--tp-text); font-weight: 800; }
.tp-nav-link-mobile:hover { background: var(--tp-primary-soft); color: var(--tp-primary); }
.tp-cta-phone-mobile {
    border-radius: 16px;
    background: var(--tp-primary);
    color: #fff;
}

.tp-sendy-hero {
    overflow: hidden;
    background: #fff;
    color: var(--tp-text);
    padding-top: 76px;
}
.tp-sendy-hero-grid {
    min-height: 650px;
    display: grid;
    align-items: center;
    gap: 40px;
    padding-top: 40px;
    padding-bottom: 56px;
}
@media (min-width: 1024px) {
    .tp-sendy-hero-grid {
        grid-template-columns: 0.85fr 1.15fr;
        padding-top: 64px;
        padding-bottom: 80px;
    }
}
.tp-sendy-hero-copy { order: 2; text-align: center; }
@media (min-width: 1024px) {
    .tp-sendy-hero-copy { order: 1; text-align: left; }
}
.tp-sendy-pill {
    display: inline-flex;
    border-radius: 999px;
    background: var(--tp-primary-soft);
    color: var(--tp-primary);
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 800;
}
.tp-sendy-hero .tp-hero-headline {
    margin-top: 30px;
    color: var(--tp-text);
    text-shadow: none;
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    font-size: 46px;
    line-height: 1.16;
    letter-spacing: -0.02em;
    font-weight: 900;
    white-space: normal;
}
@media (min-width: 768px) {
    .tp-sendy-hero .tp-hero-headline { font-size: 64px; line-height: 1.2; }
}
.tp-sendy-hero .tp-hero-sub {
    max-width: 520px;
    margin: 20px auto 0;
    color: var(--tp-muted);
    font-size: 18px;
    line-height: 1.75;
    font-weight: 700;
    white-space: normal;
}
@media (min-width: 1024px) {
    .tp-sendy-hero .tp-hero-sub { margin-left: 0; margin-right: 0; }
}
.tp-sendy-hero .tp-hero-actions {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
@media (min-width: 640px) {
    .tp-sendy-hero .tp-hero-actions { flex-direction: row; justify-content: center; }
}
@media (min-width: 1024px) {
    .tp-sendy-hero .tp-hero-actions { justify-content: flex-start; }
}
.tp-sendy-hero .tp-hero-btn {
    min-height: 56px;
    border-radius: 16px;
    padding: 0 28px;
    font-size: 16px;
    font-weight: 800;
}
.tp-sendy-hero .tp-hero-btn i { width: 20px; height: 20px; }
.tp-sendy-hero .tp-hero-btn-online {
    order: 1;
    background: var(--tp-primary);
    color: #fff;
    box-shadow: 0 16px 32px rgba(30,62,123,0.26);
}
.tp-sendy-hero .tp-hero-btn-online:hover { background: var(--tp-primary-deep); }
.tp-sendy-hero .tp-hero-btn-phone {
    order: 2;
    border: 0;
    background: var(--tp-surface);
    color: var(--tp-text);
    box-shadow: none;
    backdrop-filter: none;
}
.tp-sendy-hero .tp-hero-btn-phone:hover { background: var(--tp-primary-soft); color: var(--tp-primary); }
.tp-sendy-quick-steps {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
@media (min-width: 640px) {
    .tp-sendy-quick-steps { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .tp-sendy-quick-steps { max-width: 560px; }
}
.tp-sendy-quick-steps li {
    min-height: 88px;
    border: 1px solid var(--tp-line);
    border-radius: 24px;
    background: var(--tp-surface-soft);
    display: grid;
    place-items: center;
    gap: 8px;
    padding: 16px;
    text-align: center;
}
.tp-sendy-quick-steps i { width: 20px; height: 20px; color: var(--tp-primary); }
.tp-sendy-quick-steps span { font-size: 13px; font-weight: 800; color: var(--tp-text-soft); }
.tp-sendy-hero-visual {
    position: relative;
    order: 1;
    max-width: 700px;
    margin: 0 auto;
}
@media (min-width: 1024px) { .tp-sendy-hero-visual { order: 2; } }
.tp-sendy-hero-glow {
    position: absolute;
    inset: -24px;
    border-radius: 24px;
    background: var(--tp-primary-soft);
    filter: blur(28px);
}
.tp-sendy-hero-visual img {
    position: relative;
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 22px 60px rgba(30,62,123,0.12);
}
.tp-sendy-status-card {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    border-radius: 24px;
    background: rgba(255,255,255,0.92);
    padding: 16px;
    box-shadow: 0 16px 40px rgba(17,24,39,0.12);
    backdrop-filter: blur(14px);
}
@media (min-width: 768px) {
    .tp-sendy-status-card { left: 32px; right: auto; bottom: 32px; width: 280px; }
}
.tp-sendy-status-card p { color: var(--tp-muted); font-size: 13px; font-weight: 800; }
.tp-sendy-status-card ul { margin-top: 12px; display: grid; gap: 8px; }
.tp-sendy-status-card li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 800;
    color: var(--tp-text);
}
.tp-sendy-status-card span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--tp-primary);
}
.tp-sendy-status-card span.accent { background: var(--tp-accent); }

.tp-sendy-proof {
    background: var(--tp-surface);
    padding: 72px 0;
}
@media (min-width: 768px) { .tp-sendy-proof { padding: 96px 0; } }
.tp-sendy-section-head {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}
.tp-sendy-section-head .eyebrow,
.tp-sendy-process-copy .eyebrow {
    color: var(--tp-primary);
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: none;
}
.tp-sendy-section-head h2,
.tp-sendy-process-copy h2 {
    margin-top: 16px;
    color: var(--tp-text);
    font-size: 34px;
    line-height: 1.28;
    letter-spacing: -0.02em;
    font-weight: 900;
}
@media (min-width: 768px) {
    .tp-sendy-section-head h2 { font-size: 44px; }
    .tp-sendy-process-copy h2 { font-size: 42px; line-height: 1.25; }
}
.tp-sendy-section-head .lead,
.tp-sendy-process-copy .lead {
    margin-top: 20px;
    color: var(--tp-muted);
    font-size: 16px;
    line-height: 1.8;
    font-weight: 700;
}
@media (min-width: 768px) {
    .tp-sendy-section-head .lead { font-size: 18px; }
}
.tp-sendy-proof-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
@media (min-width: 768px) {
    .tp-sendy-proof-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .tp-sendy-proof-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.tp-sendy-card {
    border-radius: 24px;
    background: #fff;
    padding: 28px;
    box-shadow: var(--tp-shadow-card);
}
.tp-sendy-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: var(--tp-primary-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tp-primary);
}
.tp-sendy-icon i { width: 28px; height: 28px; stroke-width: 1.8; }
.tp-sendy-card h3 {
    margin-top: 24px;
    color: var(--tp-text);
    font-size: 20px;
    font-weight: 900;
}
.tp-sendy-card p {
    margin-top: 12px;
    color: var(--tp-muted);
    font-size: 14px;
    line-height: 1.75;
    font-weight: 700;
}

.tp-sendy-process {
    background: #fff;
    padding: 72px 0;
}
@media (min-width: 768px) { .tp-sendy-process { padding: 96px 0; } }
.tp-sendy-process-grid {
    display: grid;
    gap: 40px;
}
@media (min-width: 1024px) {
    .tp-sendy-process-grid { grid-template-columns: 360px 1fr; align-items: start; }
}
.tp-sendy-process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
@media (min-width: 768px) {
    .tp-sendy-process-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.tp-sendy-process-step {
    border: 1px solid var(--tp-line);
    border-radius: 24px;
    background: var(--tp-surface-soft);
    padding: 28px;
}
.tp-sendy-step-top {
    display: flex;
    align-items: center;
    gap: 16px;
}
.tp-sendy-step-top span {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--tp-text);
    color: #fff;
    font-weight: 900;
}
.tp-sendy-step-top i { width: 32px; height: 32px; color: var(--tp-primary); stroke-width: 1.8; }
.tp-sendy-process-step h3 {
    margin-top: 24px;
    color: var(--tp-text);
    font-size: 22px;
    font-weight: 900;
}
.tp-sendy-process-step p {
    margin-top: 12px;
    color: var(--tp-muted);
    font-size: 15px;
    line-height: 1.75;
    font-weight: 700;
}

.tp-brand { background: #fff; }
.tp-home-quote,
.tp-franchise-cta-band,
.tp-contact,
.tp-channels { background: var(--tp-surface-soft); }
.tp-home-service-card,
.tp-home-mini-card,
.tp-contact-wrap,
.tp-channel-card,
.tp-service-card,
.tp-feature-card {
    border-radius: 24px;
    border-color: var(--tp-line);
    box-shadow: var(--tp-shadow-card);
}
.tp-btn-primary,
.tp-form-submit,
.tp-floating-action.primary,
.tp-home-card-btn,
.tp-service-link {
    color: var(--tp-primary);
}
.tp-form-submit,
.tp-btn-primary {
    border-radius: 16px;
    background: var(--tp-primary);
    color: #fff;
    box-shadow: var(--tp-shadow-soft);
}
.tp-form-submit:hover,
.tp-btn-primary:hover {
    background: var(--tp-primary-deep);
    color: #fff;
}
.tp-sticky-mobile {
    background: rgba(255,255,255,0.96);
    border-top: 1px solid var(--tp-line);
    box-shadow: 0 -10px 30px rgba(17,24,39,0.12);
    backdrop-filter: blur(14px);
}
.tp-sticky-mobile a {
    border-radius: 16px;
    min-height: 48px;
    font-weight: 900;
}
.tp-sticky-mobile .s-online { background: var(--tp-primary); color: #fff; }
.tp-sticky-mobile .s-call { background: var(--tp-text); color: #fff; }
.tp-floating-panel {
    border-radius: 24px;
    border-color: var(--tp-line);
    box-shadow: var(--tp-shadow-card);
}
.tp-floating-toggle,
.tp-floating-top {
    border-radius: 999px;
}
@media (min-width: 768px) {
    .tp-hero-btn-online {
        order: 2;
        border: 1px solid rgba(13,33,62,0.35);
        background: rgba(255,255,255,0.72); color: var(--color-navy);
        box-shadow: 0 8px 18px rgba(13,33,62,0.08);
        backdrop-filter: blur(4px);
    }
    .tp-hero-btn-online:hover { background: #fff; }
}
.tp-hero-icon-mobile-only { display: inline-flex; }
.tp-hero-icon-desktop-only { display: none; }
@media (min-width: 768px) {
    .tp-hero-icon-mobile-only { display: none; }
    .tp-hero-icon-desktop-only { display: inline-flex; }
}

/* ============================================================
   BRAND SECTION
   ============================================================ */
.tp-brand { background: #fff; color: var(--color-navy); }
.tp-brand-mobile { padding: 64px 20px; display: block; }
.tp-brand-desktop { display: none; }
@media (min-width: 768px) {
    .tp-brand-mobile { display: none; }
    .tp-brand-desktop {
        display: grid; grid-template-columns: repeat(12, 1fr);
        max-width: var(--container-max); margin: 0 auto;
        padding: 64px 32px; align-items: stretch;
    }
}
@media (min-width: 1024px) { .tp-brand-desktop { padding: 80px 32px; } }

.tp-brand-eyebrow-m { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-navy); }
.tp-brand-row-m { margin-top: 20px; display: grid; grid-template-columns: 1fr 172px; gap: 16px; align-items: start; }
.tp-brand-title-m { font-size: 24px; font-weight: 800; line-height: 1.34; color: var(--color-navy-deep); }
.tp-brand-desc-m { margin-top: 16px; font-size: 13px; font-weight: 600; line-height: 1.75; color: var(--color-ink-soft); }
.tp-brand-thumb-m { position: relative; margin-top: 4px; height: 126px; overflow: hidden; border-radius: 12px; }
.tp-brand-thumb-m img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 62% center; }

.tp-brand-reasons-title { margin-top: 36px; font-size: 22px; font-weight: 800; color: var(--color-navy-deep); }
.tp-brand-reasons { margin-top: 16px; display: grid; gap: 12px; }
.tp-brand-reason {
    display: flex; align-items: center; gap: 16px;
    border-radius: 12px; border: 1px solid var(--color-line); background: #fff;
    padding: 16px 20px; box-shadow: 0 6px 18px rgba(13,33,62,0.07);
}
.tp-brand-reason-icon { width: 40px; height: 40px; flex-shrink: 0; color: var(--color-gold-deep); }
.tp-brand-reason h4 { font-size: 15px; font-weight: 800; color: var(--color-navy); }
.tp-brand-reason p { margin-top: 4px; font-size: 12px; font-weight: 600; line-height: 1.55; color: var(--color-mute); }

.tp-brand-link {
    margin-top: 24px;
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 800; color: var(--color-gold-deep);
}
.tp-brand-link:hover { color: var(--color-navy); }

.tp-brand-d-col-a, .tp-brand-d-col-b { grid-column: span 4; display: flex; flex-direction: column; justify-content: center; }
.tp-brand-d-col-a { padding: 0 32px 32px 0; min-height: 220px; }
@media (min-width: 1024px) { .tp-brand-d-col-a { padding: 0 32px 0 0; } }
.tp-brand-d-col-b { padding: 0 40px 36px 0; min-height: 220px; font-size: 15px; font-weight: 600; line-height: 1.85; color: var(--color-ink-soft); }
@media (min-width: 1024px) { .tp-brand-d-col-b { padding: 0 40px 0 0; } }
.tp-brand-d-col-c { grid-column: span 4; position: relative; min-height: 220px; overflow: hidden; }
@media (min-width: 1024px) { .tp-brand-d-col-c { margin-right: calc((100vw - 1240px) / -2); } }
.tp-brand-d-col-c img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 58% center; }
.tp-brand-d-eyebrow { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-gold-deep); }
.tp-brand-d-title { margin-top: 12px; font-size: 28px; font-weight: 800; line-height: 1.28; color: var(--color-navy-deep); }
@media (min-width: 768px) { .tp-brand-d-title { font-size: 30px; } }
@media (min-width: 1024px) { .tp-brand-d-title { font-size: 34px; } }
.tp-brand-d-col-b p + p { margin-top: 12px; }

/* ============================================================
   FEATURES
   ============================================================ */
.tp-features { background: #fff; }
.tp-features-inner { max-width: var(--container-max); margin: 0 auto; padding: 56px 20px 28px; }
@media (min-width: 1024px) { .tp-features-inner { padding: 64px 32px 28px; } }
.tp-features-title { text-align: center; font-size: 22px; font-weight: 800; color: var(--color-navy-deep); }
@media (min-width: 768px) { .tp-features-title { font-size: 26px; } }
.tp-features-grid { margin-top: 28px; display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 768px) { .tp-features-grid { grid-template-columns: repeat(3, 1fr); } }
.tp-feature-card {
    display: flex; align-items: center; gap: 24px;
    min-height: 118px; border-radius: 12px; border: 1px solid var(--color-line); background: #fff;
    padding: 24px 28px; box-shadow: 0 4px 18px rgba(13,33,62,0.04);
}
.tp-feature-icon-wrap { display: flex; align-items: center; justify-content: center; width: 64px; height: 64px; flex-shrink: 0; color: var(--color-gold-deep); }
.tp-feature-icon-wrap svg { width: 56px; height: 56px; }
.tp-feature-card h3 { font-size: 17px; font-weight: 800; color: var(--color-navy); }
.tp-feature-card p { margin-top: 6px; font-size: 13px; font-weight: 600; line-height: 1.65; color: var(--color-mute); }

/* ============================================================
   SERVICES
   ============================================================ */
.tp-services { background: #fff; }
.tp-services-inner { max-width: var(--container-max); margin: 0 auto; padding: 12px 20px 72px; }
@media (min-width: 1024px) { .tp-services-inner { padding: 12px 32px 88px; } }
.tp-services-title { text-align: center; font-size: 22px; font-weight: 800; color: var(--color-navy-deep); }
@media (min-width: 768px) { .tp-services-title { font-size: 26px; } }
.tp-services-grid {
    margin-top: 24px;
    display: grid; grid-template-columns: 1fr; gap: 28px;
}
@media (min-width: 640px) { .tp-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .tp-services-grid { grid-template-columns: repeat(4, 1fr); } }
.tp-service-card {
    overflow: hidden; border-radius: 12px; border: 1px solid var(--color-line); background: #fff;
    box-shadow: 0 8px 24px rgba(13,33,62,0.05);
}
.tp-service-image { position: relative; height: 122px; }
.tp-service-image img { width: 100%; height: 100%; object-fit: cover; }
.tp-service-body { position: relative; padding: 36px 24px 28px; text-align: center; }
.tp-service-icon-badge {
    position: absolute; left: 50%; top: 0; transform: translate(-50%, -50%);
    display: flex; align-items: center; justify-content: center;
    width: 58px; height: 58px; border-radius: 50%;
    border: 1px solid var(--color-line); background: #fff; color: var(--color-gold-deep);
    box-shadow: 0 6px 18px rgba(13,33,62,0.08);
}
.tp-service-icon-badge svg { width: 32px; height: 32px; }
.tp-service-card h3 { font-size: 17px; font-weight: 800; color: var(--color-navy); }
.tp-service-card .desc { margin-top: 12px; min-height: 58px; font-size: 13px; font-weight: 600; line-height: 1.65; color: var(--color-mute); }
.tp-service-link {
    margin-top: 20px;
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-size: 13px; font-weight: 800; color: var(--color-gold-deep);
}

/* ============================================================
   PERSONAS
   ============================================================ */
.tp-personas { background: #fff; }
.tp-personas-inner { max-width: var(--container-max); margin: 0 auto; padding: 48px 20px; }
@media (min-width: 1024px) { .tp-personas-inner { padding: 56px 32px; } }
.tp-personas-row { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 1024px) { .tp-personas-row { grid-template-columns: 190px 1fr; align-items: start; } }
.tp-personas-title { font-size: 25px; font-weight: 800; line-height: 1.35; color: var(--color-navy-deep); }
@media (min-width: 768px) { .tp-personas-title { font-size: 28px; } }
.tp-personas-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .tp-personas-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .tp-personas-grid { grid-template-columns: repeat(4, 1fr); gap: 28px; } }
.tp-persona {
    position: relative; display: flex; align-items: center; gap: 16px;
}
@media (min-width: 1024px) { .tp-persona { padding-right: 24px; } }
.tp-persona-icon { display: flex; align-items: center; justify-content: center; width: 56px; height: 56px; flex-shrink: 0; color: var(--color-gold-deep); }
.tp-persona-icon svg { width: 40px; height: 40px; }
.tp-persona h3 { font-size: 15px; font-weight: 800; color: var(--color-navy); }
.tp-persona p { margin-top: 6px; font-size: 12.5px; font-weight: 600; line-height: 1.65; color: var(--color-mute); }
.tp-persona-divider { position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 1px; height: 56px; background: var(--color-line); display: none; }
@media (min-width: 1024px) { .tp-persona-divider { display: block; } }

.tp-notice-box {
    margin-top: 40px;
    border-radius: 12px; border: 1px solid rgba(49, 85, 246,0.45); background: #fff;
    padding: 28px;
    box-shadow: 0 8px 24px rgba(13,33,62,0.04);
}
@media (min-width: 768px) { .tp-notice-box { display: flex; align-items: center; gap: 32px; } }
@media (min-width: 1024px) { .tp-notice-box { padding: 28px 36px; } }
.tp-notice-head { display: flex; align-items: center; gap: 20px; }
@media (min-width: 768px) { .tp-notice-head { width: 250px; flex-shrink: 0; } }
.tp-notice-icon {
    display: flex; align-items: center; justify-content: center;
    width: 56px; height: 56px; flex-shrink: 0;
    border-radius: 50%; border: 1px solid rgba(49, 85, 246,0.35); color: var(--color-gold-deep);
}
.tp-notice-icon svg { width: 32px; height: 32px; }
.tp-notice-head h3 { font-size: 22px; font-weight: 800; color: var(--color-navy-deep); }
.tp-notice-body { margin-top: 20px; border-top: 1px solid var(--color-line); padding-top: 20px; font-size: 14px; font-weight: 600; line-height: 1.85; color: var(--color-ink-soft); }
@media (min-width: 768px) { .tp-notice-body { margin-top: 0; padding: 0 0 0 32px; border-top: 0; border-left: 1px solid var(--color-line); } }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.tp-contact { background: #fff; }
.tp-contact-inner { max-width: var(--container-max); margin: 0 auto; padding: 48px 20px; }
@media (min-width: 1024px) { .tp-contact-inner { padding: 56px 32px; } }
.tp-contact-wrap {
    display: grid; grid-template-columns: 1fr; gap: 36px;
    border-radius: 12px; background: var(--color-base);
    padding: 36px 24px;
    box-shadow: 0 8px 28px rgba(13,33,62,0.04);
}
@media (min-width: 768px) { .tp-contact-wrap { grid-template-columns: 230px 1fr; } }
@media (min-width: 1024px) { .tp-contact-wrap { padding: 36px 32px; } }
.tp-contact-intro { display: flex; flex-direction: column; justify-content: center; }
.tp-contact-intro h2 { font-size: 26px; font-weight: 800; line-height: 1.2; color: var(--color-navy-deep); }
.tp-contact-intro p { margin-top: 16px; font-size: 14px; font-weight: 600; line-height: 1.75; color: var(--color-mute); }

.tp-contact-form .tp-form-grid {
    display: grid; grid-template-columns: 1fr; gap: 16px 28px;
}
@media (min-width: 1024px) { .tp-contact-form .tp-form-grid { grid-template-columns: repeat(3, 1fr); } }
.tp-field { display: block; }
.tp-field-label { display: block; margin-bottom: 6px; font-size: 12px; font-weight: 800; color: var(--color-navy); }
.tp-field-required { margin-left: 4px; color: #ef4444; }
.tp-form-input {
    width: 100%; height: 38px;
    border-radius: 12px; border: 1px solid var(--color-line); background: #fff;
    padding: 0 0.85rem;
    font-size: 13px; font-weight: 600; color: var(--color-navy);
    outline: none;
    font-family: inherit;
}
textarea.tp-form-input { height: auto; padding: 12px 0.85rem; min-height: 94px; resize: none; }
.tp-form-input::placeholder { color: rgba(46,58,77,0.42); }
.tp-form-input:focus { border-color: var(--color-gold-deep); box-shadow: 0 0 0 3px rgba(49, 85, 246,0.14); }
.tp-form-input-wrap { position: relative; }
.tp-form-input-wrap svg {
    position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
    width: 16px; height: 16px; color: var(--color-mute); pointer-events: none;
}
.tp-form-input-wrap .tp-form-input { padding-right: 36px; }
.tp-field-col-2 { grid-column: span 1; }
@media (min-width: 1024px) { .tp-field-col-2 { grid-column: span 2; } }

/* 체크박스 칩 그룹 */
.tp-field-hint { color: var(--color-mute); font-weight: 400; font-size: 11px; margin-left: 4px; }
.tp-checkbox-group { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.tp-chip {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 8px 14px; border: 1px solid var(--color-line); border-radius: 999px;
    background: #fff; cursor: pointer;
    font-size: 13px; font-weight: 500; color: var(--color-ink);
    transition: all 0.15s ease;
    user-select: none;
}
.tp-chip:hover { border-color: var(--color-gold-deep); }
.tp-chip input[type=checkbox] { position: absolute; opacity: 0; width: 0; height: 0; }
.tp-chip:has(input:checked) {
    background: var(--color-gold-deep); border-color: var(--color-gold-deep); color: #fff;
}
/* :has 미지원 폴백 */
.tp-chip input[type=checkbox]:checked + span {
    color: #fff;
}

/* 지점장 모집 페이지 */
.tp-franchise-intro { background: var(--color-paper); padding: 64px 0; }
.tp-franchise-intro-inner { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.tp-franchise-headline { text-align: center; margin-bottom: 40px; }
.tp-franchise-headline h2 { font-size: 28px; letter-spacing: -0.5px; color: var(--color-ink); margin: 0 0 12px; }
.tp-franchise-headline p { font-size: 15px; color: var(--color-mute); margin: 0; }
.tp-franchise-cards {
    display: grid; gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.tp-franchise-card {
    background: #fff; border: 1px solid var(--color-line); border-radius: 12px;
    padding: 24px 20px; text-align: center;
}
.tp-franchise-card i, .tp-franchise-card svg { color: var(--color-gold-deep); width: 32px; height: 32px; margin-bottom: 12px; }
.tp-franchise-card h3 { font-size: 16px; margin: 0 0 8px; color: var(--color-ink); }
.tp-franchise-card p { font-size: 13px; color: var(--color-mute); margin: 0; line-height: 1.55; }

.tp-franchise-apply { padding: 64px 0; background: #fff; }
.tp-franchise-apply-inner { max-width: 920px; margin: 0 auto; padding: 0 24px; }
.tp-franchise-intro2 { text-align: center; margin-bottom: 32px; }
.tp-franchise-intro2 h2 { font-size: 26px; letter-spacing: -0.5px; margin: 0 0 8px; }
.tp-franchise-intro2 p { font-size: 14px; color: var(--color-mute); margin: 0; }
.tp-franchise-form { background: var(--color-paper); border: 1px solid var(--color-line); border-radius: 12px; padding: 32px; }
.tp-franchise-form .tp-form-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .tp-franchise-form .tp-form-grid { grid-template-columns: repeat(2, 1fr); } }

.tp-form-file-label {
    display: flex; min-height: 94px; cursor: pointer; flex-direction: column;
    align-items: center; justify-content: center;
    border-radius: 12px; border: 1px dashed rgba(13,33,62,0.25); background: #fff;
    padding: 12px 16px; text-align: center;
    font-size: 12px; font-weight: 600; line-height: 1.55; color: var(--color-mute);
}
.tp-form-file-label:hover { border-color: var(--color-gold-deep); }
.tp-form-file-label svg { margin-bottom: 8px; width: 28px; height: 28px; color: var(--color-gold-deep); }
.tp-form-file-label small { font-size: 11px; font-weight: 400; }
.tp-form-file-label input[type=file] { display: none; }
.tp-form-file-label.is-dragover {
    border-color: var(--color-gold-deep); background: rgba(49, 85, 246, 0.06);
    border-style: solid;
}

.tp-file-preview {
    margin-top: 10px;
    display: grid; gap: 8px;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.tp-file-preview-item {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 10px; background: #fff;
    border: 1px solid var(--color-line); border-radius: 12px;
    position: relative;
}
.tp-file-thumb {
    width: 44px; height: 44px; flex-shrink: 0;
    background: #f3f0e9; border-radius: 12px; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}
.tp-file-thumb img { width: 100%; height: 100%; object-fit: cover; }
.tp-file-icon-pdf {
    font-size: 11px; font-weight: 700; color: var(--color-gold-deep);
    letter-spacing: 0.5px;
}
.tp-file-meta { flex: 1; min-width: 0; }
.tp-file-meta .name {
    font-size: 12px; font-weight: 600; color: var(--color-ink);
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.tp-file-meta .size { font-size: 11px; color: var(--color-mute); margin-top: 2px; }
.tp-file-remove {
    width: 22px; height: 22px; border-radius: 50%;
    background: rgba(13,33,62,0.06); border: 0; cursor: pointer;
    color: var(--color-ink); font-size: 16px; line-height: 1; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.15s ease;
}
.tp-file-remove:hover { background: rgba(224,49,49,0.15); color: #c92a2a; }
.tp-file-warn {
    margin-top: 8px; padding: 8px 12px;
    background: rgba(224,49,49,0.08); border-left: 3px solid #e03131;
    color: #c92a2a; font-size: 12px; border-radius: 0 4px 4px 0;
}

.tp-form-consent {
    margin-top: 16px;
    display: flex; flex-direction: column; gap: 16px;
    border-radius: 12px; border: 1px solid var(--color-line); background: #fff;
    padding: 12px 16px;
}
@media (min-width: 768px) { .tp-form-consent { flex-direction: row; align-items: center; justify-content: space-between; } }
.tp-form-consent label { display: flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 600; color: var(--color-ink-soft); }
.tp-form-consent input[type=checkbox] { width: 16px; height: 16px; accent-color: var(--color-gold-deep); }
.tp-form-consent button { text-align: left; font-size: 12.5px; font-weight: 600; color: var(--color-ink-soft); }
.tp-form-consent button:hover { color: var(--color-gold-deep); text-decoration: underline; text-underline-offset: 4px; }
@media (min-width: 768px) { .tp-form-consent button { text-align: right; } }

.tp-form-submit-wrap { margin-top: 12px; display: flex; justify-content: center; }
.tp-form-submit {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    min-height: 44px; min-width: 190px; padding: 0 32px;
    border-radius: 12px; background: var(--color-gold-deep); color: #fff;
    font-size: 15px; font-weight: 800;
    box-shadow: 0 8px 18px rgba(142,114,53,0.22);
}
.tp-form-submit:hover { background: var(--color-gold); }
.tp-form-submit svg { width: 16px; height: 16px; }

/* ============================================================
   CHANNELS
   ============================================================ */
.tp-channels { background: #fff; }
.tp-channels-inner {
    max-width: var(--container-max); margin: 0 auto;
    padding: 48px 20px;
    display: grid; grid-template-columns: 1fr; gap: 32px;
}
@media (min-width: 768px) { .tp-channels-inner { grid-template-columns: 190px 1fr; align-items: center; } }
@media (min-width: 1024px) { .tp-channels-inner { padding: 56px 32px; } }
.tp-channels-title { font-size: 25px; font-weight: 800; line-height: 1.35; color: var(--color-navy-deep); }
@media (min-width: 768px) { .tp-channels-title { font-size: 28px; } }
.tp-channels-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .tp-channels-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .tp-channels-grid { grid-template-columns: repeat(4, 1fr); } }
.tp-channel-card {
    min-height: 150px; border-radius: 12px; border: 1px solid var(--color-line); background: #fff;
    padding: 24px; box-shadow: 0 6px 22px rgba(13,33,62,0.05);
    transition: transform 0.18s, border-color 0.18s;
}
a.tp-channel-card:hover { transform: translateY(-2px); border-color: var(--color-gold-deep); }
.tp-channel-card .icon { width: 32px; height: 32px; color: var(--color-navy); }
.tp-channel-card h3 { margin-top: 20px; font-size: 15px; font-weight: 800; color: var(--color-navy); }
.tp-channel-card .main { margin-top: 16px; white-space: pre-line; font-size: 18px; font-weight: 800; line-height: 1.45; }
.tp-channel-card .main.gold { color: var(--color-gold-deep); }
.tp-channel-card .main.ink { color: var(--color-ink-soft); }
.tp-channel-card .desc { margin-top: 12px; font-size: 12.5px; font-weight: 600; color: var(--color-mute); }

/* ============================================================
   STICKY MOBILE + FLOATING CTA
   ============================================================ */
.tp-sticky-mobile {
    position: fixed; inset: auto 0 0 0; z-index: 50;
    display: grid; grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(0,0,0,0.1);
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
    padding-bottom: env(safe-area-inset-bottom);
}
@media (min-width: 1024px) { .tp-sticky-mobile { display: none; } }
.tp-sticky-mobile a {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
    padding: 12px 0;
    font-size: 11px; font-weight: 600;
}
.tp-sticky-mobile a svg { width: 20px; height: 20px; }
.tp-sticky-mobile .s-call { background: var(--color-navy); color: #fff; }
.tp-sticky-mobile .s-kakao { background: #FEE500; color: #3C1E1E; font-weight: 700; }
.tp-sticky-mobile .s-online { background: var(--color-gold); color: #fff; font-weight: 700; }

.tp-floating-cta {
    position: fixed; right: 20px; bottom: 24px; z-index: 50;
    display: none; flex-direction: column; align-items: center; gap: 12px;
}
@media (min-width: 768px) { .tp-floating-cta { display: flex; } }
.tp-floating-capsule {
    display: flex; width: 68px; flex-direction: column; overflow: hidden;
    border-radius: 999px;
    box-shadow: 0 14px 32px rgba(13,33,62,0.28);
    outline: 1px solid rgba(0,0,0,0.05);
}
.tp-floating-capsule a {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
    padding: 16px 0;
    color: #fff;
}
.tp-floating-capsule a span {
    font-size: 11px; font-weight: 800; line-height: 1.15; letter-spacing: -0.01em; text-align: center;
}
.tp-floating-capsule a svg { width: 18px; height: 18px; }
.tp-floating-capsule .f-call { background: var(--color-navy); }
.tp-floating-capsule .f-call:hover { background: var(--color-navy-soft); }
.tp-floating-capsule .f-kakao { background: var(--color-gold); }
.tp-floating-capsule .f-kakao:hover { background: var(--color-gold-soft); }
.tp-floating-top {
    display: none;
    width: 52px; height: 52px; border-radius: 50%;
    border: 1px solid var(--color-line); background: #fff; color: var(--color-navy);
    box-shadow: 0 8px 18px rgba(13,33,62,0.12);
    align-items: center; justify-content: center; flex-direction: column; gap: 2px;
}
.tp-floating-top svg { width: 14px; height: 14px; }
.tp-floating-top span { font-size: 9px; font-weight: 800; letter-spacing: 0.12em; }
.tp-floating-top.is-visible { display: flex; }
.tp-floating-top:hover { border-color: var(--color-gold); color: var(--color-gold-deep); }

/* ============================================================
   FOOTER
   ============================================================ */
.tp-footer { background: var(--color-navy-deep); color: #fff; }
.tp-footer-inner { max-width: var(--container-max); margin: 0 auto; padding: 40px 20px; }
@media (min-width: 1024px) { .tp-footer-inner { padding: 48px 32px; } }
.tp-footer-grid { display: grid; gap: 32px; }
@media (min-width: 1024px) { .tp-footer-grid { grid-template-columns: auto 1fr auto; align-items: start; gap: 40px; } }
.tp-footer-brand { display: flex; align-items: center; gap: 12px; }
.tp-footer-brand img { width: 44px; height: 44px; }
.tp-footer-brand-text { display: flex; flex-direction: column; line-height: 1; }
.tp-footer-brand-en { font-size: 16px; font-weight: 800; letter-spacing: 0.08em; color: #fff; }
.tp-footer-brand-ko { margin-top: 4px; font-size: 11px; font-weight: 800; letter-spacing: 0.22em; color: var(--color-gold); }

.tp-footer-info { display: grid; grid-template-columns: 1fr; row-gap: 8px; column-gap: 40px; font-size: 12px; line-height: 1.6; }
@media (min-width: 768px) { .tp-footer-info { grid-template-columns: 1fr 1fr; } }
.tp-footer-info > div { display: flex; align-items: baseline; gap: 8px; }
.tp-footer-info dt { flex-shrink: 0; color: var(--color-gold-soft); font-weight: 600; }
.tp-footer-info dd { color: rgba(255,255,255,0.8); }

.tp-footer-meta { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
@media (min-width: 1024px) { .tp-footer-meta { align-items: flex-end; } }
.tp-footer-links { display: flex; align-items: center; gap: 20px; font-size: 12px; color: rgba(255,255,255,0.65); }
.tp-footer-links a:hover { color: var(--color-gold); }
.tp-footer-sns { display: flex; gap: 10px; }
.tp-sns { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; font-size: 11px; font-weight: 700; color: #fff; }
.tp-sns-ig { background: linear-gradient(135deg, #FEDA75 0%, #FA7E1E 25%, #D62976 50%, #962FBF 75%, #4F5BD5 100%); }
.tp-sns-kk { background: #06BE34; }
.tp-sns-yt { background: #FF0000; }
.tp-footer-copy { margin-top: 40px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; text-align: center; font-size: 11.5px; color: rgba(255,255,255,0.45); }

/* 기본 fallback 페이지 */
.tp-fallback-page { min-height: calc(100vh - var(--header-height) - 200px); display: flex; align-items: center; justify-content: center; padding: 80px 20px; }
.tp-fallback-page-inner { text-align: center; max-width: 540px; }
.tp-fallback-page h1 { font-size: 42px; font-weight: 800; letter-spacing: -1px; color: var(--color-navy-deep); margin: 0 0 16px; }
.tp-fallback-page p { font-size: 15px; color: var(--color-mute); margin: 0 0 24px; }

/* ============================================================
   SUB PAGES — 공통
   ============================================================ */
.tp-page { background: #fff; }
.tp-page-bg-base { background: var(--color-base); }

/* Sub Hero (다크 네이비 + 배경 이미지) */
.tp-sub-hero {
    position: relative; isolation: isolate; overflow: hidden;
    background: var(--color-navy-deep); color: #fff;
}
.tp-sub-hero-bg { position: absolute; inset: 0; z-index: -1; }
.tp-sub-hero-bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.tp-sub-hero-bg .overlay {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(7,23,46,0.94) 0%, rgba(7,23,46,0.78) 42%, rgba(7,23,46,0.28) 78%, rgba(7,23,46,0.08) 100%);
}
.tp-sub-hero-bg .overlay-v {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(7,23,46,0.85) 0%, rgba(7,23,46,0.62) 55%, rgba(7,23,46,0.92) 100%);
}
.tp-sub-hero-inner {
    max-width: var(--container-max); margin: 0 auto;
    padding: 128px 20px 56px;
}
@media (min-width: 768px) { .tp-sub-hero-inner { padding: 142px 20px 64px; } }
@media (min-width: 1024px) { .tp-sub-hero-inner { padding: 142px 32px 64px; } }
.tp-sub-hero-eyebrow {
    font-size: 14px; font-weight: 900; text-transform: none; letter-spacing: 0;
    color: var(--tp-primary);
}
.tp-sub-hero-breadcrumb { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.75); }
.tp-sub-hero h1 {
    margin-top: 20px;
    font-size: 34px; font-weight: 800; line-height: 1.18; letter-spacing: -0.02em;
    color: #fff;
    max-width: 620px;
}
@media (min-width: 768px) { .tp-sub-hero h1 { font-size: 42px; } }
@media (min-width: 1024px) { .tp-sub-hero h1 { font-size: 46px; } }
.tp-sub-hero p {
    margin-top: 20px; max-width: 500px;
    font-size: 15px; font-weight: 600; line-height: 1.8; color: rgba(255,255,255,0.8);
}
.tp-sub-hero p.small { font-size: 13px; font-weight: 600; letter-spacing: 0.04em; color: rgba(255,255,255,0.72); }
@media (min-width: 768px) { .tp-sub-hero p.small { font-size: 14px; } }

/* Sub Hero 브랜드 박스 */
.tp-hero-brand-chip {
    margin-top: 32px;
    display: inline-flex; align-items: center; gap: 12px;
    padding: 14px 20px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    backdrop-filter: blur(4px);
}
.tp-hero-brand-chip img { width: 36px; height: 36px; object-fit: contain; }
.tp-hero-brand-chip .name-en { display: block; font-size: 13px; font-weight: 800; letter-spacing: 0.18em; color: #fff; }
.tp-hero-brand-chip .name-ko { display: block; font-size: 10px; letter-spacing: 0.18em; color: var(--color-gold-soft); }

/* 공통 섹션 헤더 (eyebrow + title + desc) */
.tp-sec-eyebrow {
    font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.24em;
    color: var(--color-gold-deep);
}
.tp-sec-eyebrow.light { color: var(--color-gold-soft); }
.tp-sec-title {
    margin-top: 16px;
    font-size: 25px; font-weight: 800; line-height: 1.32; letter-spacing: -0.02em;
    color: var(--color-navy-deep);
}
@media (min-width: 768px) { .tp-sec-title { font-size: 30px; } }
@media (min-width: 1024px) { .tp-sec-title { font-size: 32px; } }
.tp-sec-title.light { color: #fff; }
.tp-sec-desc {
    margin-top: 16px;
    font-size: 14px; line-height: 1.85; color: var(--color-ink-soft);
}
@media (min-width: 768px) { .tp-sec-desc { font-size: 15px; } }
.tp-sec-desc.light { color: rgba(255,255,255,0.72); }

/* 하단 CTA 띠 (네이비 박스) */
.tp-cta-strip {
    margin: 32px auto 56px;
    max-width: var(--container-max);
    padding: 0 20px;
}
@media (min-width: 1024px) { .tp-cta-strip { padding: 0 32px; } }
.tp-cta-strip-box {
    display: flex; flex-direction: column; gap: 20px;
    border-radius: 12px;
    background: var(--color-navy);
    color: #fff;
    padding: 28px 32px;
}
@media (min-width: 768px) {
    .tp-cta-strip-box { flex-direction: row; align-items: center; justify-content: space-between; }
}
.tp-cta-strip-head { display: flex; align-items: center; gap: 16px; }
.tp-cta-strip-icon {
    display: flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; flex-shrink: 0;
    border-radius: 50%;
    background: var(--color-gold-soft); color: var(--color-navy);   /* 네이비 밴드 위 라이트블루 원 (딥블루가 네이비에 묻히지 않게) */
}
.tp-cta-strip-icon.outline { background: transparent; border: 1px solid rgba(255,255,255,0.25); color: #fff; width: 56px; height: 56px; }
.tp-cta-strip-head h2 { font-size: 18px; font-weight: 800; color: #fff; }
.tp-cta-strip-head p { margin-top: 4px; font-size: 12.5px; color: rgba(255,255,255,0.55); }
@media (min-width: 768px) { .tp-cta-strip-head h2 { font-size: 22px; } .tp-cta-strip-head p { font-size: 13px; } }
.tp-cta-strip-actions { display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 640px) { .tp-cta-strip-actions { flex-direction: row; } }
.tp-cta-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    min-height: 48px; padding: 0 28px;
    border-radius: 12px;
    font-size: 14px; font-weight: 800;
}
.tp-cta-btn-gold { background: var(--color-gold); color: #fff; }
.tp-cta-btn-gold:hover { background: var(--color-primary-deep, var(--tp-primary-deep)); }
.tp-cta-btn-white { background: #fff; color: var(--color-navy); }
.tp-cta-btn-white:hover { background: var(--color-base-alt); }
.tp-cta-btn-outline { border: 1px solid rgba(255,255,255,0.25); background: rgba(255,255,255,0.04); color: #fff; }
.tp-cta-btn-outline:hover { border-color: rgba(255,255,255,0.6); color: #fff; }

/* ── 네이비 다크 밴드 위 CTA 위계 (무게감 톤 조정, 2026-07-08) ──
   딥블루(=구 gold)가 네이비에 묻히므로: primary는 화이트 solid, secondary는 고스트(투명+흰 보더).
   템플릿마다 primary 클래스가 달라 컨테이너별로 지정:
     brand    = gold(견적문의) primary  / outline(전화) secondary
     services = gold(온라인견적) primary / outline-dark(전화) secondary [native 고스트]
     features = white(온라인) primary    / gold(전화) secondary
   라이트 배경 위 gold(blog 빈상태 등)은 그대로 딥블루 solid 유지.
   ※ 하단 "통일" !important 레이어(.tp-cta-btn)를 이기려 !important + 특이도(0,2,0) 사용 */
.tp-svc-cta .tp-cta-btn-gold,
.tp-brand-identity .tp-cta-btn-gold {
    background: #fff !important; color: var(--color-navy) !important; border-color: #fff !important;
}
.tp-svc-cta .tp-cta-btn-gold:hover,
.tp-brand-identity .tp-cta-btn-gold:hover {
    background: var(--color-gold-soft) !important; color: var(--color-navy) !important; border-color: var(--color-gold-soft) !important;
}
/* secondary → 고스트 (brand의 outline, features(cta-strip-box)의 gold) */
.tp-brand-identity .tp-cta-btn-outline,
.tp-cta-strip-box .tp-cta-btn-gold {
    background: transparent !important; border-color: rgba(255,255,255,0.42) !important; color: #fff !important;
}
.tp-brand-identity .tp-cta-btn-outline:hover,
.tp-cta-strip-box .tp-cta-btn-gold:hover {
    background: rgba(255,255,255,0.10) !important; border-color: rgba(255,255,255,0.7) !important; color: #fff !important;
}

/* ============================================================
   BRAND PAGE
   ============================================================ */
.tp-brand-story {
    max-width: var(--container-max); margin: 0 auto;
    padding: 64px 20px;
    display: grid; grid-template-columns: 1fr; gap: 40px;
}
@media (min-width: 1024px) {
    .tp-brand-story { padding: 56px 32px; grid-template-columns: 7fr 5fr; gap: 56px; }
}
.tp-brand-story-thumb { position: relative; aspect-ratio: 16/7; overflow: hidden; border-radius: 12px; }
@media (min-width: 1024px) { .tp-brand-story-thumb { margin-top: 24px; } }
.tp-brand-story-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: 55% center; }
.tp-brand-story h2, .tp-brand-philo h2, .tp-brand-mission h2 { font-size: 25px; }
@media (min-width: 768px) { .tp-brand-story h2, .tp-brand-philo h2 { font-size: 30px; } }
@media (min-width: 1024px) { .tp-brand-story h2, .tp-brand-philo h2 { font-size: 32px; } }
.tp-brand-story p + p { margin-top: 16px; }

.tp-brand-philo {
    max-width: var(--container-max); margin: 0 auto;
    padding: 56px 20px;
}
@media (min-width: 1024px) { .tp-brand-philo { padding: 56px 32px; } }
.tp-brand-philo-head { max-width: 720px; }
.tp-brand-philo-grid {
    margin-top: 40px;
    display: grid; grid-template-columns: 1fr; gap: 20px;
}
@media (min-width: 768px) { .tp-brand-philo-grid { grid-template-columns: repeat(3, 1fr); } }
.tp-brand-philo-card {
    display: flex; align-items: center; gap: 20px;
    min-height: 118px;
    border-radius: 12px; border: 1px solid var(--color-line); background: #fff;
    padding: 24px 28px;
    transition: transform 0.18s, border-color 0.18s, box-shadow 0.18s;
}
.tp-brand-philo-card:hover {
    transform: translateY(-2px);
    border-color: rgba(49, 85, 246,0.45);
    box-shadow: 0 18px 40px rgba(13,33,62,0.08);
}
.tp-brand-philo-card .icon { display: flex; align-items: center; justify-content: center; width: 56px; height: 56px; flex-shrink: 0; color: var(--color-gold-deep); }
.tp-brand-philo-card .icon svg { width: 44px; height: 44px; }
.tp-brand-philo-card h3 { font-size: 17px; font-weight: 800; color: var(--color-navy-deep); }
.tp-brand-philo-card p { margin-top: 8px; font-size: 13px; line-height: 1.65; color: var(--color-ink-soft); }

.tp-brand-identity {
    background: var(--color-navy-deep); color: #fff;
}
.tp-brand-identity-grid {
    max-width: var(--container-max); margin: 0 auto;
    display: grid; grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .tp-brand-identity-grid { grid-template-columns: 6fr 6fr; } }
.tp-brand-identity-img { position: relative; min-height: 260px; overflow: hidden; }
.tp-brand-identity-img img { width: 100%; height: 100%; object-fit: cover; object-position: 40% center; }
.tp-brand-identity-img::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(7,23,46,0.15) 0%, rgba(7,23,46,0.45) 100%);
}
.tp-brand-identity-body { padding: 48px 20px; }
@media (min-width: 1024px) { .tp-brand-identity-body { padding: 48px 56px; } }
.tp-brand-identity-body h2 { font-size: 25px; font-weight: 800; line-height: 1.32; color: #fff; }
@media (min-width: 768px) { .tp-brand-identity-body h2 { font-size: 30px; } }
@media (min-width: 1024px) { .tp-brand-identity-body h2 { font-size: 32px; } }
.tp-brand-identity-body p.lead { margin-top: 20px; font-size: 14px; line-height: 1.85; color: rgba(255,255,255,0.72); }
@media (min-width: 768px) { .tp-brand-identity-body p.lead { font-size: 15px; } }
.tp-brand-chips { margin-top: 28px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (min-width: 768px) { .tp-brand-chips { grid-template-columns: repeat(4, 1fr); } }
.tp-brand-chip {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 700; color: var(--color-gold-soft);
}
.tp-brand-chip svg { width: 16px; height: 16px; }

.tp-brand-mission-grid {
    max-width: var(--container-max); margin: 0 auto;
    padding: 56px 20px;
    display: grid; grid-template-columns: 1fr; gap: 40px;
}
@media (min-width: 1024px) { .tp-brand-mission-grid { padding: 56px 32px; grid-template-columns: 1fr 1fr; gap: 56px; } }
.tp-brand-mission h2 { font-size: 23px; font-weight: 800; line-height: 1.32; color: var(--color-navy-deep); }
@media (min-width: 768px) { .tp-brand-mission h2 { font-size: 27px; } }
.tp-brand-mission p.lead { margin-top: 16px; font-size: 14px; line-height: 1.8; color: var(--color-ink-soft); }
.tp-brand-mission ul { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.tp-brand-mission li { display: flex; align-items: flex-start; gap: 12px; font-size: 13.5px; font-weight: 600; color: var(--color-navy-deep); }
.tp-brand-mission li svg { margin-top: 2px; width: 16px; height: 16px; flex-shrink: 0; color: var(--color-gold-deep); }
.tp-brand-quote {
    margin-top: 24px;
    display: flex; gap: 16px;
    border-radius: 12px; border: 1px solid rgba(49, 85, 246,0.35); background: #fff;
    padding: 20px;
}
.tp-brand-quote svg { width: 24px; height: 24px; flex-shrink: 0; color: var(--color-gold-deep); }
.tp-brand-quote blockquote { font-size: 14px; line-height: 1.85; color: var(--color-ink-soft); }

/* ============================================================
   FEATURES PAGE
   ============================================================ */
.tp-features-page .tp-page-intro { text-align: center; }
.tp-features-page .tp-page-intro h2 { font-size: 28px; font-weight: 800; color: var(--color-navy-deep); }
.tp-features-page .tp-page-intro p { margin: 16px auto 0; max-width: 650px; font-size: 14px; line-height: 1.8; color: var(--color-mute); font-weight: 600; }
.tp-features-page .tp-features-inner-page { max-width: var(--container-max); margin: 0 auto; padding: 56px 20px; }
@media (min-width: 1024px) { .tp-features-page .tp-features-inner-page { padding: 56px 32px; } }

.tp-diff-list { margin-top: 40px; display: flex; flex-direction: column; gap: 32px; }
.tp-diff {
    overflow: hidden;
    border-radius: 12px; border: 1px solid var(--color-line); background: #fff;
    box-shadow: 0 8px 26px rgba(13,33,62,0.05);
}
.tp-diff-grid { display: grid; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .tp-diff-grid { grid-template-columns: 1fr 380px; } }
.tp-diff-body { padding: 32px; display: grid; grid-template-columns: 74px 1fr; gap: 24px; }
@media (min-width: 1024px) { .tp-diff-body { padding: 36px; } }
.tp-diff-no { font-size: 18px; font-weight: 600; color: var(--color-gold-deep); }
.tp-diff-icon {
    margin-top: 12px;
    display: flex; align-items: center; justify-content: center;
    width: 64px; height: 64px;
    border-radius: 50%; border: 1px solid var(--color-line); color: var(--color-gold-deep);
}
.tp-diff-icon svg { width: 40px; height: 40px; }
.tp-diff h3 { font-size: 23px; font-weight: 800; color: var(--color-navy-deep); }
.tp-diff p.diff-desc { margin-top: 8px; font-size: 14px; font-weight: 600; color: var(--color-ink-soft); }
.tp-diff-bullets { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.tp-diff-bullets li { display: flex; gap: 8px; font-size: 13.5px; font-weight: 600; line-height: 1.65; color: var(--color-ink-soft); }
.tp-diff-bullets li svg { margin-top: 4px; width: 16px; height: 16px; flex-shrink: 0; color: var(--color-navy); }
.tp-diff-image { position: relative; min-height: 240px; }
@media (min-width: 1024px) { .tp-diff-image { min-height: 100%; } }
.tp-diff-image img { width: 100%; height: 100%; object-fit: cover; }

.tp-diff-process {
    border-top: 1px solid var(--color-line);
    padding: 20px 32px;
}
@media (min-width: 1024px) { .tp-diff-process { padding: 20px 36px; } }
.tp-diff-process-title { font-size: 12px; font-weight: 800; color: var(--color-gold-deep); }
.tp-diff-process-grid {
    margin-top: 16px;
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
}
@media (min-width: 768px) { .tp-diff-process-grid { grid-template-columns: repeat(5, 1fr); } }
.tp-diff-step { position: relative; display: flex; align-items: center; gap: 12px; }
.tp-diff-step-icon {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; flex-shrink: 0;
    border-radius: 50%; border: 1px solid var(--color-line); background: #fff;
    color: var(--color-navy);
}
.tp-diff-step-icon svg { width: 20px; height: 20px; }
.tp-diff-step p.label { font-size: 12.5px; font-weight: 800; color: var(--color-navy); }
.tp-diff-step p.desc { margin-top: 2px; font-size: 11px; font-weight: 600; color: var(--color-mute); }
.tp-diff-step .arrow { position: absolute; right: -4px; top: 50%; transform: translateY(-50%); display: none; color: var(--color-mute-soft); }
.tp-diff-step .arrow svg { width: 16px; height: 16px; }
@media (min-width: 768px) { .tp-diff-step .arrow { display: block; } }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.tp-services-page .tp-page-inner { max-width: var(--container-max); margin: 0 auto; padding: 56px 20px; }
@media (min-width: 1024px) { .tp-services-page .tp-page-inner { padding: 56px 32px; } }
.tp-services-page .tp-page-intro { text-align: center; }
.tp-services-page .tp-page-intro h2 { margin-top: 12px; font-size: 26px; font-weight: 800; line-height: 1.3; color: var(--color-navy-deep); max-width: 320px; margin-left: auto; margin-right: auto; }
@media (min-width: 768px) { .tp-services-page .tp-page-intro h2 { max-width: none; font-size: 30px; } }
.tp-services-page .tp-page-intro p { margin-top: 16px; font-size: 14px; font-weight: 600; color: var(--color-mute); }

.tp-services-jump {
    margin-top: 32px;
    display: grid; grid-template-columns: repeat(2, 1fr);
    overflow: hidden;
    border-radius: 12px; border: 1px solid var(--color-line); background: #fff;
}
@media (min-width: 768px) { .tp-services-jump { grid-template-columns: repeat(4, 1fr); } }
.tp-services-jump a {
    display: flex; min-height: 86px; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
    text-align: center;
    font-size: 13px; font-weight: 800; color: var(--color-navy);
}
.tp-services-jump a:hover { background: var(--color-base); }
.tp-services-jump a:nth-child(-n+2) { border-bottom: 1px solid var(--color-line); }
@media (min-width: 768px) {
    .tp-services-jump a:nth-child(-n+2) { border-bottom: 0; }
    .tp-services-jump a:not(:last-child) { border-right: 1px solid var(--color-line); }
}
.tp-services-jump a svg { width: 32px; height: 32px; color: var(--color-gold-deep); }

.tp-services-list { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.tp-services-item {
    display: grid; grid-template-columns: 1fr;
    overflow: hidden;
    border-radius: 12px; border: 1px solid var(--color-line); background: #fff;
    box-shadow: 0 7px 22px rgba(13,33,62,0.05);
}
@media (min-width: 768px) { .tp-services-item { grid-template-columns: 520px 1fr; } }
.tp-services-item-image { position: relative; min-height: 240px; }
.tp-services-item-image img { width: 100%; height: 100%; object-fit: cover; }
.tp-services-item-body { padding: 28px; }
@media (min-width: 768px) { .tp-services-item-body { padding: 32px; } }
.tp-services-item-head { display: flex; align-items: center; gap: 12px; }
.tp-services-item-head svg { width: 32px; height: 32px; color: var(--color-gold-deep); }
.tp-services-item-head h3 { font-size: 25px; font-weight: 800; color: var(--color-navy-deep); }
.tp-services-item-body p.lead { margin-top: 16px; font-size: 14px; font-weight: 600; line-height: 1.75; color: var(--color-ink-soft); }
.tp-services-item-body ul { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.tp-services-item-body li { display: flex; gap: 8px; font-size: 13.5px; font-weight: 600; line-height: 1.55; color: var(--color-ink-soft); }
.tp-services-item-body li::before { content: ""; margin-top: 8px; width: 6px; height: 6px; flex-shrink: 0; border-radius: 50%; background: var(--color-navy); }
.tp-services-item-body .cta {
    margin-top: 24px;
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    min-height: 44px; min-width: 210px; padding: 0 24px;
    border-radius: 12px;
    background: var(--color-navy); color: #fff;
    font-size: 14px; font-weight: 800;
}
.tp-services-item-body .cta:hover { background: var(--color-navy-soft); }

/* ============================================================
   TARGETS PAGE
   ============================================================ */
.tp-targets-page .tp-page-inner { max-width: var(--container-max); margin: 0 auto; padding: 56px 20px; }
@media (min-width: 1024px) { .tp-targets-page .tp-page-inner { padding: 56px 32px; } }
.tp-targets-page h2.tp-page-h2 { font-size: 30px; font-weight: 800; color: var(--color-navy-deep); text-align: center; }
.tp-targets-page p.tp-page-sub { margin-top: 16px; text-align: center; font-size: 14px; font-weight: 600; color: var(--color-mute); }
.tp-targets-grid { margin-top: 40px; display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 768px) { .tp-targets-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .tp-targets-grid { grid-template-columns: repeat(4, 1fr); } }
.tp-target-card {
    overflow: hidden; border-radius: 12px; border: 1px solid var(--color-line); background: #fff;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(13,33,62,0.05);
}
.tp-target-head { display: flex; align-items: center; gap: 12px; }
.tp-target-head svg { width: 36px; height: 36px; color: var(--color-gold-deep); }
.tp-target-head h3 { font-size: 17px; font-weight: 800; color: var(--color-navy); }
.tp-target-img { position: relative; margin-top: 20px; height: 150px; overflow: hidden; border-radius: 12px; }
.tp-target-img img { width: 100%; height: 100%; object-fit: cover; }
.tp-target-card ul { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.tp-target-card li { display: flex; gap: 8px; font-size: 13px; font-weight: 600; line-height: 1.55; color: var(--color-ink-soft); }
.tp-target-card li svg { margin-top: 2px; width: 16px; height: 16px; flex-shrink: 0; color: var(--color-gold-deep); }
.tp-target-card .more {
    margin-top: 24px;
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 800; color: var(--color-gold-deep);
}

.tp-targets-solutions {
    margin-top: 40px;
    border-radius: 12px; border: 1px solid rgba(49, 85, 246,0.35); background: #fff;
    padding: 28px;
}
@media (min-width: 768px) { .tp-targets-solutions { display: flex; align-items: center; gap: 32px; justify-content: space-between; } }
.tp-targets-solutions .head { display: flex; align-items: center; gap: 20px; }
.tp-targets-solutions .head svg { width: 48px; height: 48px; flex-shrink: 0; color: var(--color-gold-deep); }
.tp-targets-solutions .head h2 { font-size: 25px; font-weight: 800; line-height: 1.35; color: var(--color-navy-deep); }
.tp-targets-solutions .grid { margin-top: 24px; display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 768px) { .tp-targets-solutions .grid { margin-top: 0; flex: 1; grid-template-columns: repeat(4, 1fr); } }
.tp-targets-sol { display: flex; align-items: flex-start; gap: 12px; }
.tp-targets-sol svg { width: 24px; height: 24px; flex-shrink: 0; color: var(--color-gold-deep); }
.tp-targets-sol p.t { font-size: 14px; font-weight: 800; color: var(--color-navy); }
.tp-targets-sol p.d { margin-top: 4px; font-size: 12px; font-weight: 600; line-height: 1.55; color: var(--color-mute); }

.tp-targets-cta {
    margin-top: 28px;
    border-radius: 12px; border: 1px solid rgba(49, 85, 246,0.35); background: #fff;
    padding: 28px;
}
@media (min-width: 768px) { .tp-targets-cta { display: flex; align-items: center; justify-content: space-between; } }
.tp-targets-cta h2 { font-size: 24px; font-weight: 800; color: var(--color-navy-deep); }
.tp-targets-cta p { margin-top: 8px; font-size: 13px; font-weight: 600; color: var(--color-mute); }
.tp-targets-cta .actions { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 640px) { .tp-targets-cta .actions { flex-direction: row; } }
@media (min-width: 768px) { .tp-targets-cta .actions { margin-top: 0; } }

/* ============================================================
   NOTICE PAGE
   ============================================================ */
.tp-notice-page .tp-page-inner { max-width: var(--container-max); margin: 0 auto; padding: 40px 20px; }
@media (min-width: 1024px) { .tp-notice-page .tp-page-inner { padding: 40px 32px; } }
.tp-notice-page h2 { font-size: 24px; font-weight: 800; color: var(--color-navy-deep); }
.tp-notice-page h2.large { font-size: 30px; font-weight: 800; color: var(--color-navy-deep); }
.tp-promises { margin-top: 24px; display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 768px) { .tp-promises { grid-template-columns: repeat(3, 1fr); } }
.tp-promise-card {
    text-align: center;
    border-radius: 12px; border: 1px solid var(--color-line); background: #fff;
    padding: 24px;
    box-shadow: 0 8px 22px rgba(13,33,62,0.04);
}
.tp-promise-card svg { margin: 0 auto; width: 44px; height: 44px; color: var(--color-gold-deep); }
.tp-promise-card h3 { margin-top: 16px; font-size: 17px; font-weight: 800; color: var(--color-navy); }
.tp-promise-card p { margin-top: 8px; font-size: 13px; font-weight: 600; line-height: 1.6; color: var(--color-mute); }

.tp-notice-alert {
    margin-top: 28px;
    display: flex; gap: 20px;
    border-radius: 12px; border: 1px solid rgba(49, 85, 246,0.35); background: var(--color-base);
    padding: 24px;
}
.tp-notice-alert svg { width: 44px; height: 44px; flex-shrink: 0; color: var(--color-gold-deep); }
.tp-notice-alert h3 { font-size: 21px; font-weight: 800; color: var(--color-navy-deep); }
.tp-notice-alert p { margin-top: 12px; font-size: 14px; font-weight: 600; line-height: 1.8; color: var(--color-ink-soft); }

.tp-info-grid { margin-top: 20px; display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 768px) { .tp-info-grid { grid-template-columns: repeat(4, 1fr); } }
.tp-info-card {
    text-align: center;
    border-radius: 12px; border: 1px solid var(--color-line); background: #fff;
    padding: 20px;
}
.tp-info-card svg { margin: 0 auto; width: 40px; height: 40px; color: var(--color-gold-deep); }
.tp-info-card h3 { margin-top: 12px; font-size: 16px; font-weight: 800; color: var(--color-navy); }
.tp-info-card p { margin-top: 8px; font-size: 12.5px; font-weight: 600; line-height: 1.6; color: var(--color-mute); }

.tp-faqs { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.tp-faq {
    border-radius: 12px; border: 1px solid var(--color-line); background: #fff;
    padding: 10px 20px;
}
.tp-faq summary { cursor: pointer; font-size: 14px; font-weight: 800; color: var(--color-navy); }
.tp-faq p { margin-top: 12px; font-size: 13px; font-weight: 600; line-height: 1.7; color: var(--color-mute); }

.tp-notice-cta {
    position: relative;
    margin-top: 32px;
    overflow: hidden;
    border-radius: 12px;
    background: var(--color-navy);
    color: #fff;
    padding: 28px;
}
.tp-notice-cta img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.2; }
.tp-notice-cta .body { position: relative; }
.tp-notice-cta h2 { font-size: 25px; font-weight: 800; color: #fff; }
.tp-notice-cta p { margin-top: 12px; font-size: 14px; font-weight: 600; line-height: 1.7; color: rgba(255,255,255,0.75); }
.tp-notice-cta a {
    margin-top: 24px;
    display: inline-flex; align-items: center; gap: 8px;
    min-height: 48px; padding: 0 32px;
    border-radius: 12px;
    background: var(--color-gold); color: #fff;
    font-size: 14px; font-weight: 800;
}

/* ============================================================
   CHANNELS PAGE
   ============================================================ */
.tp-channels-page { background: var(--color-base); }
.tp-channels-page .tp-page-inner { max-width: var(--container-max); margin: 0 auto; padding: 48px 20px; }
@media (min-width: 1024px) { .tp-channels-page .tp-page-inner { padding: 48px 32px; } }
.tp-channels-hero {
    position: relative; overflow: hidden;
    border-radius: 12px; background: #fff;
    padding: 32px;
}
@media (min-width: 768px) { .tp-channels-hero { padding: 48px; } }
.tp-channels-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.45; object-position: 72% center; }
.tp-channels-hero .overlay {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.9) 47%, rgba(255,255,255,0.42) 100%);
}
.tp-channels-hero .body { position: relative; max-width: 620px; }
.tp-channels-hero .body p.tag { font-size: 14px; font-weight: 800; color: var(--color-navy); }
.tp-channels-hero .body h1 { margin-top: 32px; font-size: 30px; font-weight: 800; line-height: 1.25; color: var(--color-navy-deep); }
@media (min-width: 768px) { .tp-channels-hero .body h1 { font-size: 38px; } }
.tp-channels-hero .body p.sub { margin-top: 20px; font-size: 15px; font-weight: 600; color: var(--color-ink-soft); }
.tp-channels-hero .badge {
    position: absolute; right: 40px; top: 96px;
    border-radius: 12px; background: #fff;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(13,33,62,0.12);
    display: none;
}
@media (min-width: 768px) { .tp-channels-hero .badge { display: block; } }
.tp-channels-hero .badge svg { width: 32px; height: 32px; color: var(--color-gold-deep); }
.tp-channels-hero .badge p.title { margin-top: 12px; font-size: 15px; font-weight: 800; color: var(--color-navy); }
.tp-channels-hero .badge p.desc { margin-top: 8px; font-size: 12px; font-weight: 600; color: var(--color-mute); line-height: 1.5; }

.tp-channels-cards {
    margin-top: 32px;
    display: grid; grid-template-columns: 1fr; gap: 20px;
}
@media (min-width: 768px) { .tp-channels-cards { grid-template-columns: repeat(3, 1fr); } }
.tp-channel-page-card {
    border-radius: 12px; border: 1px solid var(--color-line); background: #fff;
    padding: 32px;
    box-shadow: 0 8px 24px rgba(13,33,62,0.05);
}
.tp-channel-page-card .icon-wrap svg { width: 40px; height: 40px; color: var(--color-navy); }
.tp-channel-page-card h2 { margin-top: 24px; font-size: 18px; font-weight: 800; color: var(--color-navy); }
.tp-channel-page-card p.main { margin-top: 20px; font-size: 24px; font-weight: 800; color: var(--color-gold-deep); }
.tp-channel-page-card p.desc { margin-top: 16px; font-size: 13px; font-weight: 600; line-height: 1.7; color: var(--color-mute); }
.tp-channel-page-card .cta {
    margin-top: 24px;
    display: inline-flex; align-items: center; justify-content: center;
    min-height: 40px; padding: 0 24px;
    border-radius: 12px;
    background: var(--color-navy); color: #fff;
    font-size: 13px; font-weight: 800;
}

.tp-channels-benefits {
    margin-top: 32px;
    display: grid; grid-template-columns: 1fr; gap: 20px;
    border-radius: 12px; border: 1px solid var(--color-line); background: #fff;
    padding: 24px;
}
@media (min-width: 768px) { .tp-channels-benefits { grid-template-columns: repeat(4, 1fr); } }
.tp-channels-benefit { display: flex; align-items: flex-start; gap: 12px; }
.tp-channels-benefit svg { width: 32px; height: 32px; flex-shrink: 0; color: var(--color-gold-deep); }
.tp-channels-benefit p.t { font-size: 15px; font-weight: 800; color: var(--color-navy); }
.tp-channels-benefit p.d { margin-top: 4px; font-size: 12px; font-weight: 600; color: var(--color-mute); }

.tp-channels-sns {
    margin-top: 32px;
    display: grid; grid-template-columns: 1fr; gap: 20px;
    border-radius: 12px; border: 1px solid var(--color-line); background: #fff;
    padding: 28px;
}
@media (min-width: 768px) { .tp-channels-sns { grid-template-columns: 1fr 1fr; } }
.tp-channels-sns h2 { font-size: 19px; font-weight: 800; color: var(--color-navy); }
.tp-channels-sns p { margin-top: 8px; font-size: 13px; font-weight: 600; color: var(--color-mute); }
.tp-channels-sns .sns-list { margin-top: 20px; display: flex; gap: 12px; font-size: 13px; font-weight: 800; color: var(--color-gold-deep); }
.tp-channels-sns .news-form { margin-top: 20px; display: flex; gap: 8px; }
.tp-channels-sns input { flex: 1; height: 44px; border-radius: 12px; border: 1px solid var(--color-line); padding: 0 16px; font-size: 13px; font-weight: 600; }
.tp-channels-sns button { padding: 0 24px; border-radius: 12px; background: var(--color-gold); color: #fff; font-size: 13px; font-weight: 800; }

.tp-channels-info {
    margin-top: 32px;
    border-radius: 12px; background: var(--color-navy); color: #fff;
    padding: 32px;
}
.tp-channels-info p.eyebrow { font-size: 14px; font-weight: 800; color: var(--color-gold-soft); }
.tp-channels-info-grid { margin-top: 24px; display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 768px) { .tp-channels-info-grid { grid-template-columns: 280px 1fr; } }
.tp-channels-info-left p.name-en { font-size: 24px; font-weight: 800; }
.tp-channels-info-left p.name-ko { margin-top: 8px; color: var(--color-gold-soft); }
.tp-channels-info-left p.desc { margin-top: 24px; font-size: 13px; font-weight: 600; line-height: 1.8; color: rgba(255,255,255,0.7); }
.tp-channels-info dl { display: grid; grid-template-columns: 1fr; gap: 12px; font-size: 13px; }
@media (min-width: 768px) { .tp-channels-info dl { grid-template-columns: 1fr 1fr; } }
.tp-channels-info dl > div { display: flex; gap: 12px; }
.tp-channels-info dt { width: 96px; flex-shrink: 0; font-weight: 800; color: #fff; }
.tp-channels-info dd { color: rgba(255,255,255,0.72); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.tp-contact-page { background: #fff; }
.tp-contact-page-inner {
    max-width: var(--container-max); margin: 0 auto;
    display: grid; grid-template-columns: 1fr; gap: 32px;
    padding: 56px 20px;
}
@media (min-width: 1024px) { .tp-contact-page-inner { grid-template-columns: 1fr 300px; padding: 56px 32px; } }
.tp-contact-page-form {
    border-radius: 12px; border: 1px solid var(--color-line); background: #fff;
    padding: 32px;
    box-shadow: 0 8px 26px rgba(13,33,62,0.05);
}
.tp-contact-page-form h2 { display: flex; align-items: center; gap: 12px; font-size: 22px; font-weight: 800; color: var(--color-navy-deep); }
.tp-contact-page-form h2 svg { width: 28px; height: 28px; color: var(--color-gold-deep); }
.tp-contact-page-form p.lead { margin-top: 8px; font-size: 13px; font-weight: 600; color: var(--color-mute); }
.tp-contact-page-form .grid {
    margin-top: 32px;
    display: grid; grid-template-columns: 1fr; gap: 20px;
}
@media (min-width: 768px) { .tp-contact-page-form .grid { grid-template-columns: 1fr 1fr; } }
.tp-contact-page-form .field-full { grid-column: 1 / -1; }
.tp-contact-page-form label { display: block; }
.tp-contact-page-form label span.label { display: block; margin-bottom: 8px; font-size: 13px; font-weight: 800; color: var(--color-navy); }
.tp-contact-page-form label span.req { margin-left: 4px; color: #ef4444; }
.tp-contact-page-form .form-row { display: flex; gap: 8px; }
.tp-contact-page-form .form-row input { flex: 1; }
.tp-contact-page-form button.addr-search {
    flex-shrink: 0; padding: 0 16px;
    border-radius: 12px; border: 1px solid rgba(13,33,62,0.25); background: #fff;
    font-size: 13px; font-weight: 700; color: var(--color-navy);
}
.tp-contact-page-form .file-label {
    display: flex; min-height: 112px; cursor: pointer; flex-direction: column;
    align-items: center; justify-content: center;
    border-radius: 12px; border: 1px dashed rgba(13,33,62,0.25);
    text-align: center;
    font-size: 13px; font-weight: 600; color: var(--color-mute);
}
.tp-contact-page-form .file-label svg { margin-bottom: 8px; width: 32px; height: 32px; color: var(--color-gold-deep); }
.tp-contact-page-form .consent {
    margin-top: 24px;
    border-radius: 12px; border: 1px solid var(--color-line); background: var(--color-base);
    padding: 16px;
    font-size: 12.5px; font-weight: 600; color: var(--color-ink-soft);
}
.tp-contact-page-form .consent label { display: flex; gap: 8px; align-items: center; }
.tp-contact-page-form .consent input { accent-color: var(--color-gold-deep); }
.tp-contact-page-form button.submit {
    margin-top: 24px;
    display: inline-flex; width: 100%; min-height: 48px; align-items: center; justify-content: center; gap: 8px;
    border-radius: 12px;
    background: var(--color-gold-deep); color: #fff;
    font-size: 15px; font-weight: 800;
}

.tp-contact-page-aside { display: flex; flex-direction: column; gap: 16px; }
.tp-contact-page-aside .intro {
    border-radius: 12px; border: 1px solid var(--color-line); background: #fff;
    padding: 24px;
}
.tp-contact-page-aside .intro h2 { font-size: 19px; font-weight: 800; color: var(--color-navy); }
.tp-contact-page-aside .intro p { margin-top: 8px; font-size: 13px; font-weight: 600; line-height: 1.7; color: var(--color-mute); }
.tp-contact-page-aside .benefit {
    border-radius: 12px; border: 1px solid var(--color-line); background: #fff;
    padding: 20px;
}
.tp-contact-page-aside .benefit svg { width: 36px; height: 36px; color: var(--color-gold-deep); }
.tp-contact-page-aside .benefit h3 { margin-top: 12px; font-size: 16px; font-weight: 800; color: var(--color-navy); }
.tp-contact-page-aside .benefit p { margin-top: 8px; font-size: 12.5px; font-weight: 600; line-height: 1.65; color: var(--color-mute); }
.tp-contact-page-aside .emergency {
    border-radius: 12px; background: var(--color-navy); color: #fff;
    padding: 24px;
}
.tp-contact-page-aside .emergency svg { width: 36px; height: 36px; }
.tp-contact-page-aside .emergency p.t { margin-top: 12px; font-size: 16px; font-weight: 800; }
.tp-contact-page-aside .emergency p.phone { margin-top: 12px; font-size: 24px; font-weight: 800; color: var(--color-gold-soft); }
.tp-contact-page-aside .emergency p.hours { margin-top: 4px; font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.7); }

/* ============================================================
   PORTFOLIO PAGE
   ============================================================ */
.tp-portfolio-page-inner { max-width: var(--container-max); margin: 0 auto; padding: 48px 20px; }
@media (min-width: 1024px) { .tp-portfolio-page-inner { padding: 56px 32px; } }

.tp-portfolio-filters {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-bottom: 16px;
}
.tp-portfolio-filter {
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid var(--color-line);
    background: #fff;
    font-size: 13px; font-weight: 700; color: var(--color-navy);
    cursor: pointer;
}
.tp-portfolio-filter:hover { border-color: var(--color-gold-deep); color: var(--color-gold-deep); }
.tp-portfolio-filter.is-active { background: var(--color-navy); border-color: var(--color-navy); color: #fff; }

.tp-portfolio-count { margin: 16px 0 24px; font-size: 13px; font-weight: 600; color: var(--color-mute); }
.tp-portfolio-count span { color: var(--color-gold-deep); font-weight: 800; font-size: 16px; }

.tp-portfolio-grid {
    display: grid; grid-template-columns: 1fr; gap: 24px;
    min-height: 200px;
}
@media (min-width: 640px) { .tp-portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .tp-portfolio-grid { grid-template-columns: repeat(3, 1fr); } }

.tp-portfolio-loading, .tp-portfolio-empty {
    grid-column: 1 / -1;
    text-align: center; padding: 64px 20px;
    font-size: 14px; color: var(--color-mute);
}

.tp-portfolio-card {
    background: #fff; border: 1px solid var(--color-line); border-radius: 12px; overflow: hidden;
    box-shadow: 0 8px 22px rgba(13,33,62,0.05);
    display: flex; flex-direction: column;
}

/* Before/After 슬라이더 */
.tp-portfolio-ba {
    position: relative; aspect-ratio: 4/3; overflow: hidden;
    background: var(--color-base-alt);
    user-select: none; touch-action: none;
}
.tp-portfolio-ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.tp-portfolio-ba .ba-after-wrap {
    position: absolute; inset: 0; width: var(--reveal, 50%);
    overflow: hidden;
}
.tp-portfolio-ba .ba-after-wrap img { width: calc(100% * 100 / var(--reveal-num, 50)); }
.tp-portfolio-ba[data-init="true"] .ba-after-wrap img { width: 100vw; }
.tp-portfolio-ba .ba-after-wrap { width: var(--reveal, 50%); }
.tp-portfolio-ba .ba-after-wrap img { left: 0; width: auto; }
.tp-portfolio-ba .ba-after-wrap {
    position: absolute; top: 0; left: 0; height: 100%;
    width: var(--reveal, 50%);
    overflow: hidden;
}
.tp-portfolio-ba .ba-after-wrap img {
    position: absolute; top: 0; left: 0;
    width: 100cqw;
    height: 100%; object-fit: cover;
}
@supports not (width: 100cqw) {
    .tp-portfolio-ba .ba-after-wrap img { width: auto; min-width: 100%; }
}
.tp-portfolio-ba .ba-handle {
    position: absolute; top: 0; bottom: 0; left: var(--reveal, 50%);
    width: 3px; background: #fff;
    transform: translateX(-50%);
    cursor: ew-resize;
}
.tp-portfolio-ba .ba-handle span {
    position: absolute; top: 50%; left: 50%;
    width: 36px; height: 36px;
    margin: -18px 0 0 -18px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 6px 16px rgba(0,0,0,0.35);
    display: block;
}
.tp-portfolio-ba .ba-handle span::before,
.tp-portfolio-ba .ba-handle span::after {
    content: ""; position: absolute; top: 50%; transform: translateY(-50%);
    width: 0; height: 0; border: 6px solid transparent;
}
.tp-portfolio-ba .ba-handle span::before { left: 6px; border-right-color: var(--color-navy); }
.tp-portfolio-ba .ba-handle span::after  { right: 6px; border-left-color: var(--color-navy); }

.tp-portfolio-ba .ba-label {
    position: absolute; top: 12px;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 10px; font-weight: 800; letter-spacing: 0.12em;
    color: #fff;
    background: rgba(7,23,46,0.6);
    backdrop-filter: blur(2px);
    pointer-events: none;
}
.tp-portfolio-ba .ba-label-before { left: 12px; }
.tp-portfolio-ba .ba-label-after  { right: 12px; background: rgba(49, 85, 246,0.85); }

.tp-portfolio-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 8px; }
.tp-portfolio-cat { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-gold-deep); }
.tp-portfolio-title { font-size: 17px; font-weight: 800; color: var(--color-navy-deep); line-height: 1.35; }
.tp-portfolio-summary { font-size: 13px; line-height: 1.6; color: var(--color-ink-soft); }
.tp-portfolio-meta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 4px; font-size: 12px; font-weight: 600; color: var(--color-mute); }
.tp-portfolio-meta span { display: inline-flex; align-items: center; gap: 4px; }
.tp-portfolio-meta svg { width: 14px; height: 14px; color: var(--color-gold-deep); }
.tp-portfolio-more {
    align-self: flex-start;
    margin-top: 6px;
    background: transparent; border: 0; padding: 0;
    color: var(--color-gold-deep); font-size: 13px; font-weight: 800;
    display: inline-flex; align-items: center; gap: 4px;
    cursor: pointer;
}
.tp-portfolio-more:hover { color: var(--color-navy); }

/* Modal */
.tp-portfolio-modal {
    position: fixed; inset: 0; z-index: 100;
}
.tp-portfolio-modal[hidden] { display: none; }
.tp-portfolio-modal .modal-backdrop {
    position: absolute; inset: 0; background: rgba(7,23,46,0.72);
}
.tp-portfolio-modal .modal-panel {
    position: absolute; inset: 5% 50% auto 50%;
    transform: translateX(-50%);
    width: min(720px, 92vw);
    max-height: 90vh; overflow-y: auto;
    background: #fff; border-radius: 12px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.35);
    padding: 32px;
}
.tp-portfolio-modal .modal-close {
    position: absolute; right: 16px; top: 16px;
    width: 36px; height: 36px;
    border-radius: 50%; border: 0; background: var(--color-base-alt);
    cursor: pointer; color: var(--color-navy);
    display: inline-flex; align-items: center; justify-content: center;
}
.tp-portfolio-modal .modal-close:hover { background: var(--color-line); }
.tp-portfolio-modal .modal-close svg { width: 18px; height: 18px; }

.tp-modal-portfolio header { padding-right: 40px; }
.tp-modal-portfolio header .cat { font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-gold-deep); }
.tp-modal-portfolio header h2 { margin-top: 6px; font-size: 24px; font-weight: 800; color: var(--color-navy-deep); }
.tp-modal-portfolio header .summary { margin-top: 8px; font-size: 14px; color: var(--color-ink-soft); }
.tp-modal-portfolio .modal-images {
    margin-top: 20px;
    display: grid; grid-template-columns: 1fr; gap: 12px;
}
@media (min-width: 640px) { .tp-modal-portfolio .modal-images { grid-template-columns: 1fr 1fr; } }
.tp-modal-portfolio figure { margin: 0; }
.tp-modal-portfolio figcaption { font-size: 10px; font-weight: 800; letter-spacing: 0.1em; color: var(--color-mute); margin-bottom: 6px; }
.tp-modal-portfolio figure img { width: 100%; height: 220px; object-fit: cover; border-radius: 12px; }
.tp-modal-portfolio .modal-meta { margin-top: 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; font-size: 13px; }
.tp-modal-portfolio .modal-meta div { display: flex; gap: 8px; }
.tp-modal-portfolio .modal-meta dt { font-weight: 800; color: var(--color-navy); }
.tp-modal-portfolio .modal-meta dd { color: var(--color-ink-soft); margin: 0; }
.tp-modal-portfolio .modal-content { margin-top: 20px; font-size: 14px; line-height: 1.8; color: var(--color-ink-soft); }
.tp-modal-portfolio .modal-content p + p { margin-top: 12px; }
.tp-modal-portfolio .modal-video,
.tp-modal-portfolio .modal-blog { margin-top: 20px; }
.tp-modal-portfolio .modal-video a,
.tp-modal-portfolio .modal-blog a { display: inline-flex; align-items: center; gap: 8px; color: var(--color-gold-deep); font-weight: 800; }
.tp-modal-portfolio .modal-video svg,
.tp-modal-portfolio .modal-blog svg { width: 18px; height: 18px; }
.tp-modal-portfolio .modal-drawings { margin-top: 20px; }
.tp-modal-portfolio .modal-drawings .label { font-size: 12px; font-weight: 800; color: var(--color-mute); margin-bottom: 8px; }
.tp-modal-portfolio .drawings-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.tp-modal-portfolio .drawings-grid img { width: 100%; height: 80px; object-fit: cover; border-radius: 12px; }

/* Form message (성공/실패 알림) */
.tp-form-message {
    display: none;
    margin-top: 16px;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 14px; font-weight: 700; line-height: 1.55;
    text-align: center;
}
.tp-form-message[data-state="success"] {
    background: rgba(74,124,89,0.1);
    color: #2f6b40;
    border: 1px solid rgba(74,124,89,0.3);
}
.tp-form-message[data-state="error"] {
    background: rgba(190,52,52,0.08);
    color: #be3434;
    border: 1px solid rgba(190,52,52,0.3);
}

/* ============================================================
   메인 진입 동선 보강 — 공지 띠 / 포트폴리오 미리보기 / 지점장 CTA
   ============================================================ */

/* 공통 버튼 변형 */
.tp-btn-outline {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 12px 22px; border-radius: 999px;
    border: 1.5px solid var(--color-ink);
    background: transparent; color: var(--color-ink);
    font-size: 14px; font-weight: 700; text-decoration: none;
    transition: all 0.18s ease;
}
.tp-btn-outline:hover { background: var(--color-ink); color: #fff; }

.tp-btn-primary {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 13px 24px; border-radius: 999px;
    background: var(--color-gold-deep); color: #fff;
    font-size: 14px; font-weight: 700; text-decoration: none;
    transition: all 0.18s ease;
    box-shadow: 0 4px 12px rgba(49, 85, 246,0.25);
}
.tp-btn-primary:hover { background: var(--color-gold); transform: translateY(-1px); }

.tp-btn-link {
    color: var(--color-ink); font-size: 13px; font-weight: 700;
    text-decoration: none; margin-left: 12px;
    border-bottom: 1px solid currentColor;
}

/* 공지 띠 */
.tp-notice-banner {
    background: var(--color-navy);
}
.tp-notice-banner-inner {
    max-width: 1200px; margin: 0 auto; padding: 10px 24px;
    display: flex; align-items: center; gap: 14px;
    color: rgba(255,255,255,0.92); font-size: 13px;
    text-decoration: none; line-height: 1.5;
}
.tp-notice-banner-inner:hover { color: #fff; }
.tp-notice-banner .tag {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 3px 10px; border-radius: 12px;
    background: var(--color-gold-deep); color: #fff;
    font-size: 11px; font-weight: 800; letter-spacing: 0.5px;
    flex-shrink: 0;
}
.tp-notice-banner .msg {
    flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.tp-notice-banner .more {
    color: var(--color-gold-soft); font-size: 12px; font-weight: 600;
    flex-shrink: 0;
}
@media (max-width: 640px) {
    .tp-notice-banner .more { display: none; }
}

/* 포트폴리오 미리보기 */
.tp-portfolio-preview { background: #fff; padding: 88px 0; }
.tp-portfolio-preview-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.tp-portfolio-preview-head { text-align: center; margin-bottom: 36px; }
.tp-portfolio-preview-head .eyebrow {
    font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--color-gold-deep); font-weight: 700; margin: 0 0 8px;
}
.tp-portfolio-preview-head h2 {
    font-size: 28px; letter-spacing: -0.5px; margin: 0 0 8px; color: var(--color-ink);
}
.tp-portfolio-preview-head .lead { color: var(--color-mute); font-size: 15px; margin: 0; }

.tp-portfolio-preview-grid {
    display: grid; gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    margin-bottom: 36px;
}
.tp-portfolio-preview-card {
    display: block; background: #fff;
    border: 1px solid var(--color-line); border-radius: 12px; overflow: hidden;
    text-decoration: none; color: var(--color-ink);
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.tp-portfolio-preview-card:hover {
    transform: translateY(-3px); border-color: var(--color-gold-deep);
    box-shadow: 0 12px 28px rgba(13,33,62,0.10);
}
.tp-portfolio-preview-card .thumb {
    aspect-ratio: 4 / 3; overflow: hidden; background: var(--color-paper);
}
.tp-portfolio-preview-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.tp-portfolio-preview-card .body { padding: 16px 18px 20px; }
.tp-portfolio-preview-card .cat {
    display: inline-block; padding: 2px 8px; border-radius: 12px;
    background: rgba(49, 85, 246,0.13); color: var(--color-gold-deep);
    font-size: 11px; font-weight: 700; margin-bottom: 8px;
}
.tp-portfolio-preview-card h3 {
    font-size: 16px; margin: 0 0 6px; color: var(--color-ink); line-height: 1.4;
}
.tp-portfolio-preview-card p { font-size: 13px; color: var(--color-mute); margin: 0; line-height: 1.55; }

.tp-portfolio-preview-cta { text-align: center; }

/* 지점장 모집 CTA 띠 */
.tp-franchise-cta-band {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-soft) 100%);
    padding: 48px 0;
    position: relative; overflow: hidden;
}
.tp-franchise-cta-band::before {
    content: ''; position: absolute; top: -50%; right: -10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(49, 85, 246,0.18) 0%, transparent 70%);
    pointer-events: none;
}
.tp-franchise-cta-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between; gap: 32px;
    position: relative; z-index: 1;
}
@media (max-width: 768px) {
    .tp-franchise-cta-inner { flex-direction: column; align-items: flex-start; }
}
.tp-franchise-cta-text { color: #fff; flex: 1; }
.tp-franchise-cta-text .eyebrow {
    font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--color-gold-soft); font-weight: 700; margin: 0 0 8px;
}
.tp-franchise-cta-text h2 {
    font-size: 26px; letter-spacing: -0.5px; margin: 0 0 8px; color: #fff;
}
.tp-franchise-cta-text .lead {
    color: rgba(255,255,255,0.78); font-size: 14px; margin: 0;
}
.tp-franchise-cta-actions { display: flex; align-items: center; flex-shrink: 0; }
.tp-franchise-cta-actions .tp-btn-link { color: rgba(255,255,255,0.85); border-bottom-color: rgba(255,255,255,0.4); }
.tp-franchise-cta-actions .tp-btn-link:hover { color: #fff; }

/* 채널 섹션 — 더보기 링크 */
.tp-channels-more { text-align: center; margin-top: 32px; }

/* ============================================================
   기획서 카피 강화 — 히어로 신뢰배지·헤드라인 / 3대 안심 / 6단계
   ============================================================ */

/* 히어로 신뢰 배지 */
.tp-hero-trust-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 14px; margin-bottom: 18px;
    background: rgba(49, 85, 246,0.16); border: 1px solid rgba(49, 85, 246,0.4);
    color: var(--color-gold-soft); border-radius: 999px;
    font-size: 12px; font-weight: 700; letter-spacing: 0.3px;
}
.tp-hero-trust-badge svg { color: var(--color-gold-soft); }
.tp-hero-headline-accent {
    color: var(--color-gold-soft);
    display: block; margin-top: 6px;
}
.tp-hero-sub strong { color: var(--color-gold-soft); }

/* 3대 안심 선언 */
.tp-safety-promise { background: var(--color-paper); padding: 80px 0; }
.tp-safety-promise-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.tp-safety-promise-head { text-align: center; margin-bottom: 40px; }
.tp-safety-promise-head .eyebrow {
    font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--color-gold-deep); font-weight: 800; margin: 0 0 8px;
}
.tp-safety-promise-head h2 { font-size: 28px; letter-spacing: -0.5px; margin: 0 0 8px; color: var(--color-ink); }
.tp-safety-promise-head .lead { color: var(--color-mute); font-size: 15px; margin: 0; }

.tp-safety-promise-grid {
    display: grid; gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.tp-safety-card {
    background: #fff; border-radius: 12px; overflow: hidden;
    border: 1px solid rgba(49, 85, 246,0.18);
    box-shadow: 0 10px 28px rgba(13,33,62,0.06);
}
.tp-safety-card-no {
    background: linear-gradient(135deg, rgba(49, 85, 246,0.11) 0%, rgba(13,33,62,0.035) 100%);
    padding: 22px 22px 10px; text-align: center;
}
.tp-safety-card-no .no-tag {
    display: inline-flex; align-items: center; justify-content: center;
    min-height: 38px; padding: 0 16px; border-radius: 999px;
    border: 1px solid rgba(49, 85, 246,0.42); background: #fff;
    color: var(--color-gold-deep); font-size: 17px; font-weight: 900; letter-spacing: 0;
}
.tp-safety-card-body { padding: 18px 24px 24px; }
.tp-safety-card-body .label {
    display: block; font-size: 10px; letter-spacing: 1px; text-transform: uppercase;
    color: var(--color-mute); font-weight: 700; margin-bottom: 6px;
}
.tp-safety-card-body .pain p { color: #495057; font-size: 13px; margin: 0; line-height: 1.55; }
.tp-safety-card-body .divider { height: 1px; background: var(--color-line); margin: 16px 0; }
.tp-safety-card-body .solution .label { color: var(--color-gold-deep); }
.tp-safety-card-body .solution p { color: var(--color-ink); font-size: 14px; margin: 0 0 8px; line-height: 1.55; font-weight: 500; }
.tp-safety-card-body .tagline {
    display: inline-block; padding: 3px 10px; border-radius: 12px;
    background: rgba(49, 85, 246,0.15); color: var(--color-gold-deep);
    font-size: 11px; font-weight: 700;
}

/* 6단계 안심 프로세스 */
.tp-process { background: #fff; padding: 80px 0; }
.tp-process-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.tp-process-head { text-align: center; margin-bottom: 40px; }
.tp-process-head .eyebrow {
    font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--color-gold-deep); font-weight: 700; margin: 0 0 8px;
}
.tp-process-head h2 { font-size: 28px; letter-spacing: -0.5px; margin: 0 0 8px; }
.tp-process-head .lead { color: var(--color-mute); font-size: 15px; margin: 0; max-width: 640px; margin-left: auto; margin-right: auto; }

.tp-process-steps {
    list-style: none; padding: 0; margin: 0;
    display: grid; gap: 12px;
}
@media (min-width: 768px) {
    .tp-process-steps { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (min-width: 1024px) {
    .tp-process-steps { grid-template-columns: repeat(3, 1fr); }
}
.tp-process-step {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 22px; background: var(--color-paper);
    border: 1px solid var(--color-line); border-radius: 12px;
    position: relative;
    transition: all 0.18s;
}
.tp-process-step:hover {
    border-color: var(--color-gold-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(13,33,62,0.08);
}
.tp-process-step-no {
    flex-shrink: 0;
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--color-ink); color: var(--color-gold-soft);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 900; letter-spacing: 0.5px;
}
.tp-process-step-icon { color: var(--color-gold-deep); flex-shrink: 0; }
.tp-process-step-icon svg { width: 22px; height: 22px; }
.tp-process-step-body h3 { font-size: 15px; margin: 0 0 4px; color: var(--color-ink); }
.tp-process-step-body p { font-size: 13px; color: var(--color-mute); margin: 0; line-height: 1.5; }

.tp-process-trust {
    margin-top: 32px; padding: 18px 22px; text-align: center;
    background: rgba(13,33,62,0.04); border-left: 4px solid var(--color-gold-deep);
    border-radius: 0 6px 6px 0;
}
.tp-process-trust p { margin: 0; font-size: 13px; color: var(--color-ink); }
.tp-process-trust strong { color: var(--color-gold-deep); }

.tp-process-cta { padding: 64px 0; background: var(--color-paper); text-align: center; }
.tp-process-cta-inner { max-width: 640px; margin: 0 auto; padding: 0 24px; }
.tp-process-cta h2 { font-size: 22px; margin: 0 0 8px; }
.tp-process-cta p { color: var(--color-mute); margin: 0 0 20px; }

/* 서브 hero eyebrow */
.tp-sub-eyebrow {
    display: inline-block; padding: 4px 12px; border-radius: 999px;
    background: rgba(49, 85, 246,0.18); color: var(--color-gold-soft);
    font-size: 11px; font-weight: 700; letter-spacing: 1px;
    text-transform: uppercase; margin-bottom: 14px;
}

/* 폼 자세히 보기 링크 (앵커 스타일) */
.tp-form-consent .tp-consent-detail {
    background: transparent; border: 0; padding: 4px 0;
    font-size: 12px; color: var(--color-gold-deep);
    text-decoration: underline; cursor: pointer;
}
.tp-form-consent .tp-consent-detail:hover { color: var(--color-gold); }

/* 일반 페이지 (page.php) 본문 */
.tp-doc-page { background: #fff; padding: 64px 0; }
.tp-doc-page-inner { max-width: 780px; margin: 0 auto; padding: 0 24px; }
.tp-doc-body { font-size: 15px; line-height: 1.8; color: var(--color-ink); }
.tp-doc-body h2 {
    font-size: 18px; margin: 28px 0 10px; padding-bottom: 6px;
    border-bottom: 1px solid var(--color-line); color: var(--color-ink);
}
.tp-doc-body h2:first-child { margin-top: 0; }
.tp-doc-body ul { padding-left: 22px; margin: 10px 0; }
.tp-doc-body li { margin: 4px 0; color: #495057; }
.tp-doc-body p { margin: 8px 0; color: #495057; }
.tp-doc-body strong { color: var(--color-ink); }

/* ============================================================
   메인 단순화 및 모바일 우선 CTA
   ============================================================ */
.tp-cta-phone-mobile-head {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 72px;
    height: 38px;
    margin-left: auto;
    border: 1px solid rgba(49, 85, 246,0.34);
    border-radius: 12px;
    color: var(--color-navy);
    background: #fff;
    font-size: 13px;
    font-weight: 800;
}
.tp-cta-phone-mobile-head svg { width: 15px; height: 15px; color: var(--color-gold-deep); }
@media (max-width: 1023px) {
    .tp-header-inner { gap: 8px; }
    .tp-cta-phone { display: none; }
    .tp-logo-link { gap: 8px; }
    .tp-logo-divider,
    .tp-logo-text { display: none; }
}
@media (min-width: 1024px) {
    .tp-cta-phone-mobile-head { display: none; }
    .tp-nav-desktop { gap: 32px; }
}

.tp-hero-service-list {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    max-width: 380px;
}
.tp-hero-service-list li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 38px;
    padding: 8px 10px;
    border: 1px solid rgba(255,255,255,0.24);
    border-radius: 12px;
    color: #fff;
    background: rgba(255,255,255,0.08);
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(8px);
}
.tp-hero-service-list svg { width: 15px; height: 15px; color: var(--color-gold-soft); }
.tp-hero-inline-link {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 12px;
    background: var(--color-gold);
    color: var(--color-navy-deep);
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(0,0,0,0.18);
}
.tp-hero-inline-link:hover { background: var(--color-gold-soft); }
@media (min-width: 768px) {
    .tp-hero-service-list li {
        border-color: rgba(13,33,62,0.13);
        background: rgba(255,255,255,0.72);
        color: var(--color-navy);
        box-shadow: var(--shadow-sm);
    }
    .tp-hero-inline-link { display: none; }
}

.tp-tech-pill-grid {
    margin: 18px 0 2px;
    display: grid;
    gap: 8px;
}
.tp-tech-pill-grid a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid rgba(49, 85, 246,0.25);
    border-radius: 12px;
    background: #fff;
    color: var(--color-navy);
    font-size: 13px;
    font-weight: 800;
}
@media (min-width: 1024px) {
    .tp-tech-pill-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.tp-home-quote {
    padding: 72px 0;
    background: linear-gradient(180deg, #fff 0%, var(--color-sky-soft) 100%);
}
.tp-home-quote-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    gap: 28px;
}
.tp-home-service-card,
.tp-home-mini-card {
    position: relative;
    overflow: hidden;
    display: block;
    border-radius: 16px;
    border: 1px solid rgba(13,33,62,0.09);
    box-shadow: var(--shadow-md);
}
.tp-home-service-card {
    min-height: 260px;
    padding: 34px;
    background: linear-gradient(115deg, #0f2e4f 0%, #174b62 48%, #8ad4dc 100%);
    color: #fff;
}
.tp-home-service-copy { position: relative; z-index: 1; max-width: 390px; }
.tp-home-quote .eyebrow {
    margin-bottom: 10px;
    color: var(--color-gold-soft);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.tp-home-service-card h2 {
    font-size: 30px;
    line-height: 1.24;
    letter-spacing: 0;
}
.tp-home-card-btn {
    margin-top: 22px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 12px;
    background: #fff;
    color: var(--color-navy);
    font-size: 13px;
    font-weight: 900;
}
.tp-home-card-btn svg { width: 15px; height: 15px; }
.tp-home-service-visual {
    position: absolute;
    right: 28px;
    bottom: 26px;
    display: grid;
    grid-template-columns: repeat(2, 68px);
    gap: 12px;
    opacity: 0.92;
}
.tp-home-service-visual i {
    width: 68px;
    height: 68px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 16px;
    background: rgba(255,255,255,0.18);
}
.tp-home-service-visual svg { width: 30px; height: 30px; color: #fff; }
.tp-home-quote-grid { display: grid; gap: 24px; }
.tp-home-mini-card {
    min-height: 250px;
    padding: 30px;
}
.tp-home-mini-light {
    background: radial-gradient(circle at 80% 88%, rgba(49, 85, 246,0.22), transparent 32%), #eaf4fb;
    color: var(--color-navy);
}
.tp-home-mini-dark {
    background: radial-gradient(circle at 85% 85%, rgba(212,181,116,0.2), transparent 34%), linear-gradient(135deg, var(--color-navy) 0%, #0c3a62 100%);
    color: #fff;
}
.tp-home-mini-card h3 {
    max-width: 520px;
    font-size: 24px;
    line-height: 1.35;
    letter-spacing: 0;
}
@media (min-width: 900px) {
    .tp-home-quote-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .tp-home-service-card { min-height: 310px; padding: 46px; }
    .tp-home-service-card h2 { font-size: 40px; }
}
@media (max-width: 767px) {
    .tp-home-quote { padding: 48px 0; }
    .tp-home-service-card,
    .tp-home-mini-card { border-radius: 12px; padding: 24px; min-height: 210px; }
    .tp-home-service-card h2 { font-size: 25px; }
    .tp-home-mini-card h3 { font-size: 21px; }
    .tp-home-service-visual {
        right: 18px;
        bottom: 18px;
        grid-template-columns: repeat(2, 52px);
    }
    .tp-home-service-visual i { width: 52px; height: 52px; border-radius: 16px; }
    .tp-home-service-visual svg { width: 23px; height: 23px; }
}

.tp-sticky-mobile {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    gap: 8px;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(14px);
}
.tp-sticky-mobile a {
    min-height: 48px;
    flex-direction: row;
    gap: 7px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 900;
}
.tp-sticky-mobile .s-online { background: var(--color-gold); color: #fff; }
.tp-sticky-mobile .s-call { background: var(--color-navy); color: #fff; }

.tp-floating-cta {
    right: 24px;
    bottom: 96px;
    align-items: flex-end;
    gap: 10px;
}
@media (min-width: 1024px) { .tp-floating-cta { display: flex; } }
@media (max-width: 1023px) { .tp-floating-cta { display: none; } }
.tp-floating-toggle {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    height: 34px;
    padding: 0 11px;
    border-radius: 999px;
    border: 1px solid var(--color-line);
    background: #fff;
    color: var(--color-navy);
    font-size: 11px;
    font-weight: 900;
    box-shadow: var(--shadow-md);
}
.tp-floating-toggle svg { width: 14px; height: 14px; transition: transform 0.18s ease; }
.tp-floating-panel {
    width: 250px;
    padding: 16px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(13,33,62,0.1);
    box-shadow: 0 18px 42px rgba(13,33,62,0.2);
}
.tp-floating-panel-head { margin-bottom: 12px; display: grid; gap: 2px; }
.tp-floating-panel-head strong { color: var(--color-navy); font-size: 17px; }
.tp-floating-panel-head span { color: var(--color-mute); font-size: 12px; font-weight: 700; }
.tp-floating-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    margin-top: 8px;
    border-radius: 12px;
    border: 1px solid var(--color-line);
    color: var(--color-navy);
    background: #fff;
    font-size: 13px;
    font-weight: 900;
}
.tp-floating-action.primary {
    border-color: var(--color-gold);
    background: var(--color-gold);
    color: #fff;
}
.tp-floating-action svg { width: 16px; height: 16px; }
.tp-floating-cta.is-collapsed .tp-floating-panel { display: none; }
.tp-floating-cta.is-collapsed .tp-floating-toggle {
    width: 58px;
    height: 58px;
    padding: 0;
    justify-content: center;
    flex-direction: column;
    border-radius: 50%;
    background: var(--color-navy);
    color: #fff;
}
.tp-floating-cta.is-collapsed .tp-floating-toggle span { font-size: 10px; }

/* ---------- Sendy override final priority lock ---------- */
body { background: var(--tp-bg); color: var(--tp-text); letter-spacing: 0; }
.tp-header { background: rgba(255,255,255,0.94); border-bottom-color: var(--tp-line); color: var(--tp-text); backdrop-filter: blur(16px); }
.tp-logo-divider { display: none; }
.tp-logo-en { color: var(--tp-muted); font-size: 10px; letter-spacing: .05em; order: 2; }
.tp-logo-ko { color: var(--tp-text); font-size: 18px; letter-spacing: -.02em; order: 1; margin-top: 0; }
.tp-nav-link { color: var(--tp-text-soft); font-size: 15px; font-weight: 700; }
.tp-nav-link:hover { color: var(--tp-primary); }
.tp-cta-phone, .tp-cta-phone-mobile { background: var(--tp-primary); color: #fff; border-radius: 999px; box-shadow: var(--tp-shadow-soft); }
.tp-cta-phone:hover, .tp-cta-phone-mobile:hover { background: var(--tp-primary-deep); color: #fff; }
.tp-nav-toggle { color: var(--tp-text); background: var(--tp-surface); border-radius: 16px; }
.tp-nav-mobile { background: #fff; border-color: var(--tp-line); }
.tp-nav-link-mobile { border-radius: 16px; color: var(--tp-text); font-weight: 800; }
.tp-nav-link-mobile:hover { background: var(--tp-primary-soft); color: var(--tp-primary); }
.tp-sendy-hero { background: #fff; color: var(--tp-text); padding-top: 76px; }
.tp-sendy-hero .tp-hero-headline { color: var(--tp-text); text-shadow: none; font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, system-ui, sans-serif; }
.tp-sendy-hero .tp-hero-sub { color: var(--tp-muted); text-shadow: none; }
.tp-sendy-hero .tp-hero-btn-online { background: var(--tp-primary); color: #fff; border: 0; box-shadow: 0 16px 32px rgba(30,62,123,.26); }
.tp-sendy-hero .tp-hero-btn-online:hover { background: var(--tp-primary-deep); color: #fff; }
.tp-sendy-hero .tp-hero-btn-phone { background: var(--tp-surface); color: var(--tp-text); border: 0; box-shadow: none; backdrop-filter: none; }
.tp-sendy-hero .tp-hero-btn-phone:hover { background: var(--tp-primary-soft); color: var(--tp-primary); }
.tp-sendy-proof { background: var(--tp-surface); }
.tp-sendy-process { background: #fff; }
.tp-sendy-section-head .eyebrow, .tp-sendy-process-copy .eyebrow { color: var(--tp-primary); letter-spacing: 0; text-transform: none; }
.tp-sendy-section-head h2, .tp-sendy-process-copy h2, .tp-sendy-card h3, .tp-sendy-process-step h3 { color: var(--tp-text); }
.tp-sendy-section-head .lead, .tp-sendy-process-copy .lead, .tp-sendy-card p, .tp-sendy-process-step p { color: var(--tp-muted); }
.tp-sendy-card, .tp-sendy-process-step { border-color: var(--tp-line); box-shadow: var(--tp-shadow-card); }
.tp-sendy-icon { background: var(--tp-primary-soft); color: var(--tp-primary); }
.tp-sendy-step-top span { background: var(--tp-text); color: #fff; }
.tp-sendy-step-top i { color: var(--tp-primary); }
.tp-home-quote, .tp-franchise-cta-band, .tp-contact, .tp-channels { background: var(--tp-surface-soft); }
.tp-form-submit, .tp-btn-primary { border-radius: 16px; background: var(--tp-primary); color: #fff; box-shadow: var(--tp-shadow-soft); }
.tp-form-submit:hover, .tp-btn-primary:hover { background: var(--tp-primary-deep); color: #fff; }
.tp-sticky-mobile { background: rgba(255,255,255,.96); border-top-color: var(--tp-line); box-shadow: 0 -10px 30px rgba(17,24,39,.12); backdrop-filter: blur(14px); }
.tp-sticky-mobile a { border-radius: 16px; min-height: 48px; font-weight: 900; }
.tp-sticky-mobile .s-online { background: var(--tp-primary); color: #fff; }
.tp-sticky-mobile .s-call { background: var(--tp-text); color: #fff; }
.tp-floating-panel { border-color: var(--tp-line); border-radius: 24px; box-shadow: var(--tp-shadow-card); }
.tp-floating-panel-head strong { color: var(--tp-text); }
.tp-floating-panel-head span { color: var(--tp-muted); }
.tp-floating-action { border-color: var(--tp-line); color: var(--tp-text); border-radius: 16px; }
.tp-floating-action.primary { border-color: var(--tp-primary); background: var(--tp-primary); color: #fff; }
.tp-floating-toggle, .tp-floating-top { border-radius: 999px; background: var(--tp-text); color: #fff; }
.tp-floating-cta.is-collapsed .tp-floating-toggle { background: var(--tp-text); color: #fff; }
.tp-chip { position: relative; overflow: hidden; }
.tp-chip input[type=checkbox] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}
.tp-chip span { pointer-events: none; }

@media (max-width: 767px) {
    .tp-header-inner {
        height: 72px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .tp-logo-mark {
        width: 48px;
        height: 48px;
    }
    .tp-cta-phone-mobile-head {
        min-width: 86px;
        height: 42px;
        border-color: var(--tp-line);
        border-radius: 16px;
        color: var(--tp-text);
        background: #fff;
        font-size: 15px;
        box-shadow: 0 8px 22px rgba(17,24,39,.06);
    }
    .tp-cta-phone-mobile-head svg { color: var(--tp-primary); }
    .tp-nav-toggle {
        width: 48px;
        height: 48px;
        border-radius: 16px;
    }
    .tp-sendy-hero {
        padding-top: 72px;
    }
    .tp-sendy-hero-grid {
        min-height: auto;
        gap: 28px;
        padding-top: 40px;
        padding-bottom: 96px;
    }
    .tp-sendy-hero-visual {
        width: 100%;
        max-width: 360px;
    }
    .tp-sendy-hero-glow {
        inset: -14px;
        filter: blur(22px);
    }
    .tp-sendy-hero-visual img {
        border-radius: 24px;
        max-height: 330px;
        object-fit: cover;
    }
    .tp-sendy-status-card {
        left: 14px;
        right: 14px;
        bottom: 12px;
        border-radius: 24px;
        padding: 18px;
    }
    .tp-sendy-status-card p { font-size: 14px; }
    .tp-sendy-status-card li { font-size: 14px; }
    .tp-sendy-pill {
        padding: 8px 16px;
        font-size: 14px;
    }
    .tp-sendy-hero .tp-hero-headline {
        margin-top: 24px;
        font-size: 42px;
        line-height: 1.15;
    }
    .tp-sendy-hero .tp-hero-sub {
        margin-top: 18px;
        font-size: 17px;
        line-height: 1.8;
    }
    .tp-sendy-hero .tp-hero-actions {
        margin-top: 28px;
    }
    .tp-sendy-quick-steps {
        display: none;
    }
    .tp-sendy-proof {
        padding-top: 64px;
    }
    .tp-sendy-section-head h2,
    .tp-sendy-process-copy h2 {
        font-size: 30px;
    }
}

@media (min-width: 768px) {
    .tp-sendy-proof {
        padding-top: 84px;
    }
}

/* ---------- Sendy subpage unification lock ---------- */
:root {
    /* ★ 구 color-* 체계 → 신 tp-* 쿨블루 체계 완전 이관 (DESIGN-SYSTEM.md §1, 2026-07-08)
       네이비는 accent(다크 밴드)로만 실색 유지, 골드/크림은 폐기 → 파랑/쿨회색 */
    --color-navy: #0c1b3a;           /* 다크 밴드 accent용 실네이비 (텍스트로 써도 대비 OK) */
    --color-navy-soft: #1d3a6e;
    --color-navy-deep: #071528;
    --color-blue: var(--tp-primary);
    --color-blue-soft: var(--tp-primary-deep);
    --color-sky: var(--tp-primary-soft);
    --color-sky-soft: var(--tp-surface-soft);
    --color-gold: var(--tp-primary);
    --color-gold-soft: #cdd8ff;      /* 네이비 배경 라벨용 밝은 파랑 (light bg는 loop가 잡음) */
    --color-gold-deep: var(--tp-primary);
    --color-base: var(--tp-surface-soft);
    --color-base-alt: var(--tp-surface);
    --color-cream: var(--tp-surface-soft);
    --color-cream-deep: var(--tp-surface);
    --color-ink: var(--tp-text);
    --color-ink-soft: var(--tp-text-soft);
    --color-mute: var(--tp-muted);
    --color-mute-soft: #8a93a1;
    --color-line: var(--tp-line);
    --color-line-soft: var(--tp-surface-soft);
}

.tp-sub-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #e6ecf7 0%, #ccdaef 100%);
    color: var(--tp-text);
}
.tp-sub-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}
.tp-sub-hero-bg img {
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    bottom: 0;
    width: 100%;
    height: 100%;
    transform: none;
    border-radius: 0;
    object-fit: cover;
    object-position: right center;
    opacity: 1 !important;
    filter: none;
    box-shadow: none;
}
@media (min-width: 768px) {
    .tp-sub-hero-bg img { width: 62%; }
}
.tp-sub-hero-bg .overlay,
.tp-sub-hero-bg .overlay-v {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #e6ecf7 0%, rgba(230,236,247,0.97) 38%, rgba(230,236,247,0.5) 66%, rgba(230,236,247,0) 100%);
}
.tp-sub-hero-inner {
    position: relative;
    max-width: var(--container-max);
    margin: 0 auto;
    min-height: 520px;
    padding: 116px 32px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.tp-sub-hero-breadcrumb,
.tp-sub-hero-inner .small,
.tp-sec-eyebrow:not(.light) {
    color: var(--tp-primary) !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    font-weight: 900;
}
.tp-sec-eyebrow.light {
    color: #cdd8ff !important;            /* 다크 밴드 위 라벨 — 네이비 대비 8:1↑ */
    letter-spacing: 0 !important;
    text-transform: none !important;
    font-weight: 900;
}
.tp-sub-hero-inner h1 {
    max-width: 760px;
    color: var(--tp-text);
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.14;
    letter-spacing: 0;
    text-shadow: none;
}
.tp-sub-hero-inner p {
    max-width: 640px;
    margin-top: 18px;
    color: var(--tp-muted);
    font-size: 18px;
    line-height: 1.75;
    font-weight: 700;
    text-shadow: none;
}
.tp-hero-brand-chip {
    margin-top: 26px;
    border: 1px solid var(--tp-line);
    border-radius: 24px;
    background: rgba(255,255,255,.82);
    box-shadow: var(--tp-shadow-soft);
}

.tp-page,
.tp-page-bg-base,
.tp-services-page,
.tp-features-page,
.tp-targets-page,
.tp-notice-page,
.tp-channels-page,
.tp-contact-page,
.tp-portfolio-page {
    background: var(--tp-surface-soft) !important;
}
.tp-page-inner,
.tp-brand-story,
.tp-brand-philo,
.tp-brand-mission-grid,
.tp-features-inner-page,
.tp-portfolio-page-inner,
.tp-contact-page-inner {
    padding-top: 72px;
    padding-bottom: 72px;
}
.tp-sec-title,
.tp-page-intro h2,
.tp-features-page .tp-page-intro h2,
.tp-services-page .tp-page-intro h2,
.tp-targets-page h2.tp-page-h2,
.tp-notice-page h2,
.tp-notice-page h2.large,
.tp-contact-page-form h2,
.tp-brand-story h2,
.tp-brand-philo h2,
.tp-brand-mission h2,
.tp-services-item-head h3,
.tp-diff h3,
.tp-portfolio-title,
.tp-modal-portfolio header h2 {
    color: var(--tp-text) !important;
    letter-spacing: 0;
}
.tp-sec-desc,
.tp-page-intro p,
.tp-features-page .tp-page-intro p,
.tp-services-page .tp-page-intro p,
.tp-targets-page p.tp-page-sub,
.tp-brand-mission p.lead,
.tp-services-item-body p.lead,
.tp-diff p.diff-desc,
.tp-contact-page-form p.lead,
.tp-contact-page-aside .intro p,
.tp-contact-page-aside .benefit p,
.tp-portfolio-excerpt,
.tp-modal-portfolio .modal-desc {
    color: var(--tp-muted) !important;
}

.tp-brand-story-thumb,
.tp-diff,
.tp-services-jump,
.tp-services-item,
.tp-target-card,
.tp-targets-solutions,
.tp-targets-cta,
.tp-promise-card,
.tp-notice-alert,
.tp-info-card,
.tp-faq,
.tp-channel-page-card,
.tp-channels-benefits,
.tp-channels-sns,
.tp-contact-page-form,
.tp-contact-page-aside .intro,
.tp-contact-page-aside .benefit,
.tp-portfolio-card,
.tp-modal-portfolio,
.tp-brand-philo-card,
.tp-brand-quote,
.tp-contact-wrap {
    border-color: var(--tp-line) !important;
    border-radius: 24px !important;
    background: rgba(255,255,255,.9) !important;
    box-shadow: var(--tp-shadow-card) !important;
}
.tp-brand-story-thumb,
.tp-diff-image,
.tp-services-item-image,
.tp-target-img,
.tp-portfolio-thumb {
    border-radius: 24px !important;
    background: var(--tp-primary-soft);
}
.tp-brand-story-thumb img,
.tp-diff-image img,
.tp-services-item-image img,
.tp-target-img img,
.tp-portfolio-thumb img,
.tp-brand-identity-img img {
    filter: saturate(.85) brightness(1.06);
}

.tp-brand-identity,
.tp-notice-cta,
.tp-channels-info,
.tp-contact-page-aside .emergency,
.tp-cta-strip-box {
    background:
        radial-gradient(circle at 88% 20%, rgba(30,62,123,.2), transparent 32%),
        var(--tp-text) !important;
    color: #fff !important;
    border-radius: 24px !important;
}
.tp-brand-identity-body h2,
.tp-notice-cta h2,
.tp-cta-strip-head h2,
.tp-channels-info h2,
.tp-contact-page-aside .emergency p.t {
    color: #fff !important;
}
.tp-brand-identity-body p.lead,
.tp-notice-cta p,
.tp-cta-strip-head p,
.tp-channels-info dd,
.tp-channels-info-left p.desc,
.tp-contact-page-aside .emergency p.hours {
    color: rgba(255,255,255,.7) !important;
}

.tp-brand-philo-card .icon,
.tp-diff-icon,
.tp-diff-no,
.tp-diff-process-title,
.tp-services-jump a svg,
.tp-services-item-head svg,
.tp-target-head svg,
.tp-target-card li svg,
.tp-target-card .more,
.tp-targets-solutions .head svg,
.tp-targets-sol svg,
.tp-promise-card svg,
.tp-notice-alert svg,
.tp-info-card svg,
.tp-channel-page-card .icon-wrap svg,
.tp-channels-benefit svg,
.tp-contact-page-form h2 svg,
.tp-contact-page-form .file-label svg,
.tp-form-file-label svg,
.tp-contact-page-aside .benefit svg,
.tp-portfolio-cat,
.tp-portfolio-meta svg,
.tp-modal-portfolio header .cat,
.tp-modal-portfolio .modal-video a,
.tp-modal-portfolio .modal-blog a {
    color: var(--tp-primary) !important;
}
.tp-diff-step-icon,
.tp-feature-icon-wrap,
.tp-brand-reason-icon,
.tp-persona-icon {
    background: var(--tp-primary-soft) !important;
    color: var(--tp-primary) !important;
    border-color: transparent !important;
    border-radius: 16px !important;
}
.tp-services-item-body li::before {
    background: var(--tp-primary) !important;
}

.tp-cta-btn,
.tp-services-item-body .cta,
.tp-channel-page-card .cta,
.tp-notice-cta a,
.tp-contact-page-form button.submit,
.tp-btn-primary,
.tp-portfolio-filter.is-active,
.tp-channels-sns button {
    min-height: 56px;
    border-radius: 16px !important;
    background: var(--tp-primary) !important;
    border-color: var(--tp-primary) !important;
    color: #fff !important;
    box-shadow: 0 14px 28px rgba(30,62,123,.22);
}
.tp-cta-btn:hover,
.tp-services-item-body .cta:hover,
.tp-channel-page-card .cta:hover,
.tp-notice-cta a:hover,
.tp-contact-page-form button.submit:hover,
.tp-btn-primary:hover,
.tp-channels-sns button:hover {
    background: var(--tp-primary-deep) !important;
    color: #fff !important;
}
.tp-cta-btn-white,
.tp-cta-btn-outline,
.tp-contact-page-form button.addr-search,
.tp-portfolio-filter {
    border-color: var(--tp-line) !important;
    border-radius: 16px !important;
    background: #fff !important;
    color: var(--tp-text) !important;
}
.tp-cta-strip-icon,
.tp-cta-strip-icon.outline {
    background: var(--tp-primary-soft) !important;
    color: var(--tp-primary) !important;
    border-color: transparent !important;
    border-radius: 16px !important;
}

.tp-form-input,
.tp-contact-page-form input,
.tp-contact-page-form textarea,
.tp-channels-sns input,
.tp-form-file-label,
.tp-contact-page-form .file-label,
.tp-form-consent,
.tp-contact-page-form .consent {
    border-color: var(--tp-line) !important;
    border-radius: 12px !important;
    background: #fff !important;
    color: var(--tp-text) !important;
}
.tp-form-input:focus,
.tp-contact-page-form input:focus,
.tp-contact-page-form textarea:focus,
.tp-channels-sns input:focus {
    border-color: var(--tp-primary) !important;
    box-shadow: 0 0 0 4px rgba(30,62,123,.12) !important;
}
.tp-field-label,
.tp-contact-page-form label span.label,
.tp-faq summary,
.tp-channel-page-card h2,
.tp-target-head h3,
.tp-info-card h3,
.tp-promise-card h3,
.tp-contact-page-aside .intro h2,
.tp-contact-page-aside .benefit h3 {
    color: var(--tp-text) !important;
}
.tp-chip input:checked + span,
.tp-chip.is-checked span {
    background: var(--tp-primary) !important;
    border-color: var(--tp-primary) !important;
    color: #fff !important;
}
.tp-sub-eyebrow,
.tp-portfolio-ba .ba-label-after {
    background: var(--tp-primary-soft) !important;
    color: var(--tp-primary) !important;
    border-color: transparent !important;
}
.tp-portfolio-ba .ba-label-before {
    background: rgba(15,23,42,.78) !important;
    color: #fff !important;
}

.tp-footer {
    background: #fff !important;
    color: var(--tp-text) !important;
    border-top: 1px solid var(--tp-line);
}
.tp-footer-inner {
    max-width: var(--container-max);
}
.tp-footer-brand-en,
.tp-footer-brand-ko,
.tp-footer-info dt,
.tp-footer-copy {
    color: var(--tp-text) !important;
}
.tp-footer-info dd,
.tp-footer-links a {
    color: var(--tp-muted) !important;
}
.tp-footer-links a:hover {
    color: var(--tp-primary) !important;
}
.tp-sns {
    background: var(--tp-primary-soft) !important;
    color: var(--tp-primary) !important;
}

@media (max-width: 767px) {
    .tp-sub-hero-inner {
        min-height: 360px;
        padding: 96px 20px 48px;
        text-align: left;
    }
    .tp-sub-hero-inner h1 {
        font-size: 38px;
        line-height: 1.18;
    }
    .tp-sub-hero-inner p {
        font-size: 16px;
        line-height: 1.75;
    }
    .tp-sub-hero-bg img {
        display: block;
        width: 100%;
        object-position: center 30%;
    }
    .tp-sub-hero-bg .overlay,
    .tp-sub-hero-bg .overlay-v {
        background: linear-gradient(180deg, rgba(238,244,255,0.82) 0%, rgba(221,232,255,0.9) 100%);
    }
    .tp-page-inner,
    .tp-brand-story,
    .tp-brand-philo,
    .tp-brand-mission-grid,
    .tp-features-inner-page,
    .tp-portfolio-page-inner,
    .tp-contact-page-inner {
        padding-top: 48px;
        padding-bottom: 48px;
    }
    .tp-brand-story-thumb,
    .tp-diff,
    .tp-services-item,
    .tp-target-card,
    .tp-contact-page-form,
    .tp-contact-wrap,
    .tp-portfolio-card {
        border-radius: 24px !important;
    }
}

/* ===== 클라 1차 수정요청 카피 복원 (2026-07-06) ===== */
/* 히어로 공사종류 4카드 */
.tp-hero-cats-wrap { width: 100%; }
.tp-hero-cats {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
@media (min-width: 768px) { .tp-hero-cats { gap: 18px; } }
.tp-hero-cat {
    min-height: 150px;
    border: 1px solid var(--tp-line);
    border-radius: 24px;
    background: var(--tp-surface-soft);
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 8px;
    padding: 20px 14px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(30,62,123,0.06);
    transition: transform .18s ease, box-shadow .18s ease;
}
.tp-hero-cat:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(30,62,123,0.14); }
.tp-hero-cat i { width: 30px; height: 30px; color: var(--tp-primary); stroke-width: 1.8; }
.tp-hero-cat h3 { font-size: 17px; font-weight: 900; color: var(--tp-text); }
.tp-hero-cat p { font-size: 12.5px; line-height: 1.5; color: var(--tp-muted); font-weight: 600; }
.tp-hero-cat-gold i { color: var(--tp-accent); }
@media (min-width: 768px) {
    .tp-hero-cat { min-height: 190px; padding: 26px 18px; }
    .tp-hero-cat h3 { font-size: 19px; }
    .tp-hero-cat p { font-size: 13.5px; }
}

/* 3대 안심 선언 — 3열 그리드 + 제도 태그 + 하단 공사종류 스트립 */
@media (min-width: 1024px) {
    .tp-sendy-proof-grid.tp-proof-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.tp-card-tag {
    display: inline-flex;
    margin-top: 14px;
    border-radius: 999px;
    background: var(--tp-primary-soft);
    color: var(--tp-primary);
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 800;
}
.tp-safety-cats-strip {
    margin-top: 40px;
    text-align: center;
    font-size: 16px;
    font-weight: 800;
    color: var(--tp-text-soft);
}

/* 6단계 프로세스 하단 보증 스트립 */
.tp-process-trust-strip {
    margin-top: 40px;
    border-top: 1px solid var(--tp-line);
    padding-top: 24px;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--tp-muted);
}
.tp-process-trust-strip strong { color: var(--tp-primary); font-weight: 900; }

/* 한국어 제목 단어 중간 줄바꿈 방지 (클라 타이포 가독성 요구) */
.tp-sendy-section-head h2,
.tp-sendy-process-copy h2,
.tp-hero-headline,
.tp-sendy-card h3,
.tp-sendy-process-step h3,
.tp-hero-cat h3 {
    word-break: keep-all;
}

/* ===== 클라 1차 수정요청 ver0.4 — 서브페이지 가이드 (2026-07-07) ===== */

/* 브랜드 소개 — Hero */
.tp-brand-hero-v2 .tp-sub-hero-inner h1 { word-break: keep-all; }

/* 브랜드 소개 — 신뢰 지표 4카드 (2x2) */
.tp-brand-why { max-width: var(--container-max); margin: 0 auto; padding: 64px 20px; }
@media (min-width: 768px) { .tp-brand-why { padding: 80px 32px; } }
.tp-brand-why-grid {
    margin-top: 36px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
@media (min-width: 1024px) { .tp-brand-why-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; } }
.tp-brand-why-card {
    position: relative;
    border: 1px solid var(--tp-line);
    border-radius: 24px;
    background: var(--tp-surface-soft);
    padding: 24px 18px;
    display: grid;
    gap: 10px;
    justify-items: start;
    box-shadow: var(--tp-shadow-card);
}
.tp-brand-why-card .no {
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 22px;
    font-weight: 900;
    color: var(--tp-text);
    opacity: 0.85;
}
.tp-brand-why-card i { width: 30px; height: 30px; color: var(--tp-primary); stroke-width: 1.8; }
.tp-brand-why-card h3 { font-size: 17px; font-weight: 900; color: var(--tp-text); word-break: keep-all; }
.tp-brand-why-card p { font-size: 13.5px; line-height: 1.6; color: var(--tp-muted); font-weight: 600; word-break: keep-all; }
.tp-brand-why-strip {
    margin-top: 32px;
    text-align: center;
    font-size: 16px;
    font-weight: 800;
    color: var(--tp-text-soft);
    word-break: keep-all;
}
.tp-brand-why-strip::before { content: ''; }

/* 브랜드 소개 — 타임라인 */
.tp-brand-timeline { max-width: 860px; margin: 0 auto; padding: 64px 20px; }
@media (min-width: 768px) { .tp-brand-timeline { padding: 80px 32px; } }
.tp-timeline {
    margin-top: 40px;
    position: relative;
    display: grid;
    gap: 28px;
    padding-left: 0;
}
.tp-timeline-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    grid-template-areas: 'icon label' 'icon desc';
    column-gap: 16px;
    row-gap: 6px;
    position: relative;
}
.tp-timeline-item::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 52px;
    bottom: -28px;
    width: 2px;
    background: var(--tp-line);
}
.tp-timeline-item:last-child::before { display: none; }
.tp-timeline-icon {
    grid-area: icon;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    border: 1px solid var(--tp-line);
    background: var(--tp-surface-soft);
    display: grid;
    place-items: center;
}
.tp-timeline-icon i { width: 22px; height: 22px; color: var(--tp-primary); }
.tp-timeline-label { grid-area: label; display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.tp-timeline-label .step { font-size: 13px; font-weight: 900; color: var(--tp-primary); }
.tp-timeline-label h3 { font-size: 18px; font-weight: 900; color: var(--tp-text); }
.tp-timeline-desc { grid-area: desc; font-size: 14.5px; line-height: 1.65; color: var(--tp-muted); font-weight: 600; word-break: keep-all; }
.tp-timeline-strip { margin-top: 36px; text-align: center; font-size: 15px; font-weight: 800; color: var(--tp-text-soft); }

/* 브랜드 소개 — 고객 약속 */
.tp-brand-promise {
    max-width: 760px;
    margin: 0 auto;
    padding: 64px 20px;
    text-align: center;
}
@media (min-width: 768px) { .tp-brand-promise { padding: 80px 32px; } }
.tp-brand-promise .eyebrow { font-size: 14px; font-weight: 800; color: var(--tp-primary); }
.tp-brand-promise blockquote {
    margin-top: 20px;
    font-size: 20px;
    line-height: 1.7;
    font-weight: 800;
    color: var(--tp-text);
    word-break: keep-all;
}
@media (min-width: 768px) { .tp-brand-promise blockquote { font-size: 24px; } }
.tp-brand-promise-sub { margin-top: 20px; font-size: 14.5px; font-weight: 700; color: var(--tp-muted); }

/* 서비스 소개 — Hero (추상 배관 라인 톤) */
.tp-services-hero-v2 {
    position: relative;
    overflow: hidden;
    padding: 140px 0 72px;
    background: linear-gradient(135deg, #0c1b3a 0%, #14264e 55%, #1d3a6e 100%);
    color: #fff;
    text-align: center;
}
.tp-services-hero-lines {
    position: absolute;
    inset: 0;
    opacity: 0.14;
    background-image:
        repeating-linear-gradient(0deg, transparent 0 79px, rgba(200,164,88,0.9) 79px 81px),
        repeating-linear-gradient(90deg, transparent 0 119px, rgba(255,255,255,0.55) 119px 121px);
}
.tp-services-hero-v2 .tp-sub-hero-inner { position: relative; }
.tp-services-hero-v2 h1 {
    font-size: 28px;
    line-height: 1.4;
    font-weight: 900;
    word-break: keep-all;
}
@media (min-width: 768px) { .tp-services-hero-v2 h1 { font-size: 40px; } }
.tp-services-hero-v2 p { margin-top: 14px; font-size: 15.5px; font-weight: 600; color: rgba(255,255,255,0.8); word-break: keep-all; }

/* 서비스 소개 — 카테고리 2x2 */
.tp-svc-cat-grid {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
@media (min-width: 1024px) { .tp-svc-cat-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; } }
.tp-svc-cat-card {
    position: relative;
    border: 1px solid var(--tp-line);
    border-radius: 24px;
    background: var(--tp-surface-soft);
    padding: 24px 16px;
    display: grid;
    gap: 10px;
    justify-items: center;
    text-align: center;
    box-shadow: var(--tp-shadow-card);
    transition: transform .18s ease, box-shadow .18s ease;
}
.tp-svc-cat-card:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(30,62,123,0.14); }
.tp-svc-cat-card .no { position: absolute; top: 14px; right: 16px; font-size: 18px; font-weight: 900; color: var(--tp-primary); opacity: 0.6; }
.tp-svc-cat-card i { width: 30px; height: 30px; color: var(--tp-primary); stroke-width: 1.8; }
.tp-svc-cat-card h3 { font-size: 15.5px; font-weight: 900; color: var(--tp-text); word-break: keep-all; }

/* 서비스 소개 — 아코디언 */
.tp-svc-acc-list { margin-top: 40px; display: grid; gap: 14px; }
.tp-svc-acc {
    border: 1px solid var(--tp-line);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--tp-shadow-card);
    scroll-margin-top: 96px;
    overflow: hidden;
}
.tp-svc-acc summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 20px;
}
.tp-svc-acc summary::-webkit-details-marker { display: none; }
.tp-svc-acc-no { font-size: 15px; font-weight: 900; color: var(--tp-primary); }
.tp-svc-acc-icon { width: 24px; height: 24px; color: var(--tp-primary); flex-shrink: 0; }
.tp-svc-acc-title { display: grid; gap: 2px; flex: 1; min-width: 0; }
.tp-svc-acc-title strong { font-size: 16.5px; font-weight: 900; color: var(--tp-text); word-break: keep-all; }
.tp-svc-acc-title small { font-size: 13px; font-weight: 600; color: var(--tp-muted); word-break: keep-all; }
.tp-svc-acc-chev { width: 20px; height: 20px; color: var(--tp-muted); transition: transform .2s ease; flex-shrink: 0; }
.tp-svc-acc[open] .tp-svc-acc-chev { transform: rotate(180deg); }
.tp-svc-acc-body { padding: 4px 20px 22px; border-top: 1px solid var(--tp-line); }
.tp-svc-acc-body ul { margin-top: 16px; display: grid; gap: 10px; }
@media (min-width: 768px) { .tp-svc-acc-body ul { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.tp-svc-acc-body li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--tp-text-soft);
    word-break: keep-all;
}
.tp-svc-acc-body li i { width: 16px; height: 16px; margin-top: 3px; color: var(--tp-accent); flex-shrink: 0; }
.tp-svc-acc-more {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    background: var(--tp-primary-soft);
    color: var(--tp-primary);
    padding: 10px 18px;
    font-size: 13.5px;
    font-weight: 800;
}
.tp-svc-acc-more i { width: 15px; height: 15px; }

/* 서비스 소개 — 하단 CTA */
.tp-svc-cta {
    margin-top: 48px;
    border-radius: 24px;
    background: linear-gradient(135deg, #0c1b3a, #1d3a6e);
    color: #fff;
    padding: 40px 24px;
    text-align: center;
}
.tp-svc-cta h2 { font-size: 20px; line-height: 1.5; font-weight: 900; word-break: keep-all; }
@media (min-width: 768px) { .tp-svc-cta h2 { font-size: 26px; } }
.tp-svc-cta-actions { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.tp-cta-btn-outline-dark {
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
    background: transparent;
}
.tp-cta-btn-outline-dark:hover { background: rgba(255,255,255,0.1); }

/* 견적 문의 — 상담 절차 3스텝 */
.tp-consult-steps {
    margin: 24px 0 8px;
    border: 1px solid var(--tp-line);
    border-radius: 24px;
    background: var(--tp-surface-soft);
    padding: 20px;
}
.tp-consult-steps-title { font-size: 15px; font-weight: 900; color: var(--tp-text); }
.tp-consult-steps ol { margin-top: 16px; display: grid; gap: 14px; }
@media (min-width: 768px) { .tp-consult-steps ol { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.tp-consult-steps li { display: grid; gap: 6px; justify-items: start; }
.tp-consult-steps li i { width: 24px; height: 24px; color: var(--tp-primary); }
.tp-consult-steps li strong { font-size: 14.5px; font-weight: 900; color: var(--tp-text); }
.tp-consult-steps li span { font-size: 13px; line-height: 1.6; font-weight: 600; color: var(--tp-muted); word-break: keep-all; }

/* 견적 문의 — 사진 첨부 가이드 + 하단 안심 문구 */
.tp-file-guide { display: block; margin-top: 6px; line-height: 1.6; word-break: keep-all; }
.tp-form-trust-note {
    margin-top: 18px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--tp-muted);
    word-break: keep-all;
}

/* 블로그 */
.tp-blog-list-wrap { max-width: var(--container-max); margin: 0 auto; padding: 64px 20px; }
@media (min-width: 768px) { .tp-blog-list-wrap { padding: 80px 32px; } }
.tp-blog-grid { display: grid; gap: 18px; }
@media (min-width: 768px) { .tp-blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .tp-blog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.tp-blog-card {
    border: 1px solid var(--tp-line);
    border-radius: 24px;
    background: #fff;
    overflow: hidden;
    box-shadow: var(--tp-shadow-card);
    transition: transform .18s ease, box-shadow .18s ease;
}
.tp-blog-card:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(30,62,123,0.12); }
.tp-blog-thumb { aspect-ratio: 16 / 9; overflow: hidden; background: var(--tp-surface-soft); }
.tp-blog-thumb img { width: 100%; height: 100%; object-fit: cover; }
.tp-blog-thumb-empty { display: grid; place-items: center; }
.tp-blog-thumb-empty i { width: 32px; height: 32px; color: var(--tp-primary); opacity: 0.4; }
.tp-blog-card-body { padding: 18px; display: grid; gap: 8px; }
.tp-blog-card-body time { font-size: 12.5px; font-weight: 700; color: var(--tp-muted); }
.tp-blog-card-body h3 { font-size: 16px; font-weight: 900; color: var(--tp-text); word-break: keep-all; }
.tp-blog-card-body p { font-size: 13.5px; line-height: 1.6; font-weight: 600; color: var(--tp-muted); word-break: keep-all; }
.tp-blog-pagination { margin-top: 32px; display: flex; justify-content: center; gap: 6px; }
.tp-blog-pagination .page-numbers {
    min-width: 36px;
    padding: 8px 12px;
    border-radius: 12px;
    border: 1px solid var(--tp-line);
    font-size: 13.5px;
    font-weight: 800;
    color: var(--tp-text-soft);
    text-align: center;
}
.tp-blog-pagination .page-numbers.current { background: var(--tp-primary); border-color: var(--tp-primary); color: #fff; }
.tp-blog-empty {
    text-align: center;
    padding: 48px 20px;
    display: grid;
    gap: 12px;
    justify-items: center;
}
.tp-blog-empty i { width: 40px; height: 40px; color: var(--tp-primary); opacity: 0.5; }
.tp-blog-empty h2 { font-size: 20px; font-weight: 900; color: var(--tp-text); }
.tp-blog-empty p { font-size: 14.5px; font-weight: 600; color: var(--tp-muted); }

/* 브랜드 소개 Hero — 클라 지시(현장 사진 + 어두운 그라데이션)에 맞춘 다크 변형 (Sendy 라이트 오버라이드 상쇄) */
.tp-brand-hero-v2 { background: #0c1b3a; color: #fff; }
.tp-brand-hero-v2 .tp-sub-hero-bg img {
    right: 0;
    top: 0;
    transform: none;
    width: 100%;
    height: 100%;
    border-radius: 0;
    opacity: .5 !important;
    filter: none;
}
.tp-brand-hero-v2 .tp-sub-hero-bg .overlay-v {
    background: linear-gradient(180deg, rgba(8,16,35,.5) 0%, rgba(8,16,35,.72) 60%, rgba(12,27,58,.95) 100%);
}
.tp-brand-hero-v2 .tp-sub-hero-inner h1 { color: #fff; }
.tp-brand-hero-v2 .tp-sub-hero-inner p { color: rgba(255,255,255,.82); }

/* ===== 가독성 개선 패스 (2026-07-07) — 폰트·크기·줄바꿈·대비 (클라 s2·s7 요구) ===== */

/* 1) 한국어 줄바꿈: 단어 단위 유지 전역 + 제목 균형 줄바꿈 */
body { word-break: keep-all; overflow-wrap: break-word; }
h1, h2, h3 { text-wrap: balance; }
@media (max-width: 767px) {
    /* 모바일에서 어색한 강제 줄바꿈 해제 — keep-all이 자연 줄바꿈 처리 */
    .tp-brand-promise blockquote br,
    .tp-sub-hero-inner p br { display: none; }
}

/* 2) SUIT 메인 타이틀 (클라 s7: SUIT=타이틀, Pretendard=본문) */
h1, h2,
.tp-hero-headline,
.tp-sub-hero-inner h1,
.tp-services-hero-v2 h1,
.tp-sendy-section-head h2,
.tp-sendy-process-copy h2,
.tp-svc-cta h2,
.tp-brand-promise blockquote {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

/* 3) 대비(contrast) 보정 */
:root { --tp-muted: #566070; }                                    /* 6B7280 → 흰 배경 6.0:1 */
.tp-sendy-hero .tp-hero-sub strong { color: var(--tp-primary); }  /* 연파랑 잔재 → 프라이머리 */
.tp-svc-acc-body li i { color: #0E9F7C; }                          /* 민트 아이콘 어둡게 */
.tp-sendy-quick-steps span { color: var(--tp-text-soft); }

/* 4) 본문·라벨 크기 확대 (모바일 12~13px → 13.5~14.5px) */
.tp-sendy-quick-steps span { font-size: 14.5px; }
.tp-hero-cat p { font-size: 14px; line-height: 1.55; }
@media (min-width: 768px) { .tp-hero-cat p { font-size: 15px; } }
.tp-card-tag { font-size: 14px; }
.tp-home-service-copy .eyebrow, .tp-home-mini-card .eyebrow { font-size: 13.5px; }
.tp-home-card-btn { font-size: 14.5px; }
.tp-btn-link { font-size: 14.5px; }
.tp-brand-desc-m { font-size: 14.5px; line-height: 1.65; }
.tp-brand-reason p { font-size: 14px; line-height: 1.6; }
.tp-brand-link { font-size: 14.5px; }
.tp-tech-pill-grid a { font-size: 14px; }
.tp-brand-why-card p { font-size: 14px; }
.tp-svc-cat-card h3 { font-size: 16px; }
.tp-svc-acc-title small { font-size: 13.5px; }
.tp-consult-steps li strong { font-size: 15px; }
.tp-consult-steps li span { font-size: 14px; }
.tp-sec-eyebrow { font-size: 14px !important; }
.tp-promise-card p { font-size: 14px; }
.tp-franchise-card p { font-size: 14px; }
.tp-diff-process-title { font-size: 13.5px; }

/* 폼 (견적문의·지점장) */
.tp-field-label { font-size: 14px; }
.tp-field-hint { font-size: 12.5px; }
.tp-chip span { font-size: 14.5px; }
.tp-form-file-label [data-file-label-text] { font-size: 14px; }
.tp-form-file-label small { font-size: 12.5px; }
.tp-file-guide { font-size: 13.5px !important; }
.tp-form-consent label { font-size: 14px; }
.tp-form-consent .tp-consent-detail { font-size: 13.5px; }
.tp-form-trust-note { font-size: 14px; }
.tp-form-input, .tp-form-input::placeholder, textarea.tp-form-input { font-size: 15px; }

/* 푸터 */
.tp-footer-info dt, .tp-footer-info dd { font-size: 13.5px; }
.tp-footer-links a { font-size: 13.5px; }
.tp-footer-brand-ko { font-size: 12.5px; }

/* 가독성 픽스 후속 — 홈 지점장 밴드 다크 복원 + SUIT 특이성 + features 크기 */
/* 지점장 모집 밴드: Sendy 라이트 배경이 흰 텍스트를 덮음 → 클라 목업(네이비 밴드)대로 복원 */
.tp-franchise-cta-band { background: linear-gradient(135deg, #0c1b3a 0%, #1d3a6e 100%); }
.tp-franchise-cta-text .eyebrow { font-size: 13.5px; color: rgba(255,255,255,0.75); }
.tp-franchise-cta-text .lead { font-size: 15px; color: rgba(255,255,255,0.85); }

/* SUIT 타이틀 — Sendy 오버라이드(.tp-sendy-hero .tp-hero-headline)보다 높은 특이성으로 재선언 */
.tp-sendy-hero .tp-hero-headline,
.tp-sub-hero .tp-sub-hero-inner h1 {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

/* features 진단 프로세스 크기 */
.tp-diff-step p.label { font-size: 14px; }
.tp-diff-step p.desc { font-size: 13px; }

/* (서브히어로는 통일 밝은-파랑 + 우측 배경이미지 방식으로 대체됨 — 2026-07-08) */

/* ===== 궁극기: 메인 히어로 배경 영상 (ken-burns) — 밝은 파랑 유지 + 좌측 텍스트 (2026-07-08) ===== */
.tp-hero-video {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: #0c1b3a;
    min-height: 560px;
    padding-top: 76px;
    display: flex;
    align-items: center;
}
@media (min-width: 768px) { .tp-hero-video { min-height: 640px; } }
.tp-hero-video-bg { position: absolute; inset: 0; z-index: -2; pointer-events: none; }
.tp-hero-video-el {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.66) saturate(1.06);
}
/* 좌측은 밝게(텍스트 가독) → 우측으로 영상 노출. 샌디 밝은 톤 유지 */
.tp-hero-video-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(8,16,35,0.80) 0%, rgba(8,16,35,0.60) 45%, rgba(8,16,35,0.30) 72%, rgba(8,16,35,0.12) 100%);
}
@media (max-width: 767px) {
    .tp-hero-video-overlay {
        background: linear-gradient(180deg, rgba(8,16,35,0.64) 0%, rgba(8,16,35,0.56) 50%, rgba(8,16,35,0.52) 100%);
    }
}
.tp-hero-video-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-top: 40px;
    padding-bottom: 48px;
}
.tp-hero-video-copy { max-width: 620px; text-align: left; }
.tp-hero-video .tp-sendy-pill {
    display: inline-flex;
    border-radius: 999px;
    background: rgba(255,255,255,0.16);
    border: 1px solid rgba(255,255,255,0.28);
    color: #eaf1ff;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 800;
    backdrop-filter: blur(6px);
}
.tp-hero-video .tp-hero-headline {
    margin-top: 22px;
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0,0,0,0.28);
    text-shadow: none;
    font-size: 44px;
    line-height: 1.16;
    letter-spacing: -0.02em;
    font-weight: 900;
    white-space: normal;
    word-break: keep-all;
}
@media (min-width: 768px) { .tp-hero-video .tp-hero-headline { font-size: 52px; line-height: 1.14; } }
.tp-hero-video .tp-hero-sub {
    max-width: 520px;
    margin: 18px 0 0;
    color: rgba(255,255,255,0.92);
    text-shadow: 0 1px 12px rgba(0,0,0,0.24);
    font-size: 17px;
    line-height: 1.75;
    font-weight: 700;
    word-break: keep-all;
}
@media (min-width: 768px) { .tp-hero-video .tp-hero-sub { font-size: 18px; } }
.tp-hero-video .tp-hero-sub strong { color: #a9c8ff; font-weight: 900; }
.tp-hero-video .tp-hero-actions {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
@media (min-width: 640px) { .tp-hero-video .tp-hero-actions { flex-direction: row; } }
.tp-hero-video .tp-hero-btn-online { order: 0; }
.tp-hero-video .tp-hero-btn-phone { order: 1; }
.tp-hero-video .tp-hero-btn {
    min-height: 56px;
    border-radius: 16px;
    padding: 0 28px;
    font-size: 16px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.tp-hero-video .tp-hero-btn i { width: 20px; height: 20px; }
.tp-hero-video .tp-hero-btn-online {
    background: var(--tp-primary);
    color: #fff;
    /* 다크 네이비 히어로 위 딥블루 버튼이 묻히지 않게 얇은 화이트 링 */
    border: 1px solid rgba(255,255,255,0.22);
    box-shadow: 0 16px 32px rgba(5,10,24,0.45);
}
.tp-hero-video .tp-hero-btn-online:hover { background: var(--tp-primary-deep); border-color: rgba(255,255,255,0.34); }
.tp-hero-video .tp-hero-btn-phone {
    background: rgba(255,255,255,0.14);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.32);
    backdrop-filter: blur(6px);
}
.tp-hero-video .tp-hero-btn-phone:hover { background: rgba(255,255,255,0.24); color: #fff; }
.tp-hero-video .tp-sendy-quick-steps {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    max-width: 520px;
}
@media (min-width: 640px) { .tp-hero-video .tp-sendy-quick-steps { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.tp-hero-video .tp-sendy-quick-steps li {
    min-height: 80px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 16px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    display: grid;
    place-items: center;
    gap: 6px;
    padding: 14px;
    text-align: center;
}
.tp-hero-video .tp-sendy-quick-steps i { width: 20px; height: 20px; color: #a9c8ff; }
.tp-hero-video .tp-sendy-quick-steps span { font-size: 13.5px; font-weight: 800; color: rgba(255,255,255,0.9); }

/* reduced-motion: 영상 정지(포스터만) */
@media (prefers-reduced-motion: reduce) {
    .tp-hero-video-el { display: none; }
    .tp-hero-video-bg {
        background: url('../images/hero-poster.jpg') center/cover no-repeat;
    }
}

/* 홈 카테고리 섹션 (히어로에서 이동한 4카드) */
.tp-home-cats-section { padding: 64px 0; background: #fff; }
@media (min-width: 768px) { .tp-home-cats-section { padding: 80px 0; } }
.tp-home-cats-section .tp-hero-cats { margin-top: 32px; }

/* ===== 견적문의 폼 레이아웃 전면 재설계 (2026-07-08) — 좁은 3컬럼→풀폭 정리 ===== */
.tp-contact-inner { max-width: 980px; }
.tp-contact-wrap {
    display: block !important;
    max-width: 880px;
    margin: 0 auto;
    padding: 32px 20px !important;
    grid-template-columns: none !important;
}
@media (min-width: 768px) { .tp-contact-wrap { padding: 48px 44px !important; } }
.tp-contact-intro { text-align: center; align-items: center; }
.tp-contact-intro p { max-width: 560px; margin-left: auto; margin-right: auto; }
.tp-consult-steps { margin-top: 24px; }
.tp-contact-form { margin-top: 28px; }
.tp-contact-form .tp-form-grid {
    display: grid !important;
    gap: 18px !important;
    grid-template-columns: 1fr !important;
}
@media (min-width: 640px) {
    .tp-contact-form .tp-form-grid { grid-template-columns: 1fr 1fr !important; }
    .tp-contact-form .tp-form-grid > .tp-field { grid-column: 1 / -1; }       /* 기본 풀폭 */
    .tp-contact-form .tp-form-grid > .tp-field-half { grid-column: span 1; }  /* 이름·연락처·희망일정 */
}
/* 칩: 단어 안 쪼개짐 + 넉넉한 가로 흐름 */
.tp-chip { white-space: nowrap; }
.tp-chip span { white-space: nowrap; }
.tp-checkbox-group { gap: 10px; }
/* 라벨·인풋 가독 정리 */
.tp-field-label { font-size: 14px; }
.tp-form-input { min-height: 50px; }
textarea.tp-form-input { min-height: 120px; padding-top: 12px; }

/* ============================================================
   시공 사례 상세 서브페이지 (single-tp_portfolio) — 모달 대체
   ============================================================ */
.tp-case-hero {
    background: linear-gradient(135deg, #e6ecf7 0%, #ccdaef 100%);
    padding: 64px 20px;
    padding-top: calc(var(--header-height) + 40px);
}
@media (min-width: 768px) { .tp-case-hero { padding: 80px 32px; padding-top: calc(var(--header-height) + 56px); } }
.tp-case-hero-inner { max-width: 880px; margin: 0 auto; }
.tp-case-back {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 14px; font-weight: 800; color: var(--tp-text-soft);
}
.tp-case-back:hover { color: var(--tp-primary); }
.tp-case-back svg { width: 16px; height: 16px; }
.tp-case-cat { margin-top: 20px; font-size: 14px; font-weight: 900; color: var(--tp-primary); }
.tp-case-hero h1 { margin-top: 12px; font-size: 26px; font-weight: 900; line-height: 1.3; color: var(--tp-text); word-break: keep-all; }
@media (min-width: 768px) { .tp-case-hero h1 { font-size: 34px; } }
.tp-case-summary { margin-top: 16px; font-size: 17px; font-weight: 600; line-height: 1.7; color: var(--tp-text-soft); word-break: keep-all; }
.tp-case-meta { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 16px; }
.tp-case-meta span { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 700; color: var(--tp-text-soft); }
.tp-case-meta svg { width: 15px; height: 15px; color: var(--tp-primary); }

.tp-case-body { padding: 64px 20px; background: var(--tp-bg); }
@media (min-width: 768px) { .tp-case-body { padding: 80px 32px; } }
.tp-case-body-inner { max-width: 880px; margin: 0 auto; }
.tp-case-photos { display: grid; gap: 20px; }
.tp-case-photos.has-pair { grid-template-columns: 1fr; }
@media (min-width: 768px) { .tp-case-photos.has-pair { grid-template-columns: 1fr 1fr; } }
.tp-case-photos figure { margin: 0; }
.tp-case-photos figcaption { margin-bottom: 8px; font-size: 13px; font-weight: 900; letter-spacing: 0.06em; color: var(--tp-primary); }
.tp-case-photos img {
    width: 100%; display: block;
    border-radius: 24px;
    border: 1px solid var(--tp-line);
    box-shadow: var(--tp-shadow-card);
}
.tp-case-content { margin-top: 40px; font-size: 15px; line-height: 1.85; color: var(--tp-text-soft); word-break: keep-all; }
@media (min-width: 768px) { .tp-case-content { font-size: 17px; } }
.tp-case-content p + p { margin-top: 16px; }
.tp-case-links { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.tp-case-links a { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 800; color: var(--tp-primary); }
.tp-case-links a:hover { color: var(--tp-primary-deep); text-decoration: underline; }
.tp-case-links svg { width: 18px; height: 18px; }
.tp-case-drawings { margin-top: 40px; }
.tp-case-drawings .label { font-size: 14px; font-weight: 900; color: var(--tp-text); }
.tp-case-drawings .grid { margin-top: 12px; display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 12px; }
.tp-case-drawings img { width: 100%; border-radius: 12px; border: 1px solid var(--tp-line); }
.tp-case-body .tp-svc-cta { margin-top: 64px; }
