﻿@charset "utf-8";

/* ============================================
   텔레그램 스티커 자동 제안(Sticker Suggestion) 가이드
   접두사: tg-stk- (기존 사이트 오염 방지)
   컬러 톤: 비비드 바이올렛(Violet) + 에메랄드(Emerald)

   [중요] 그누보드5 기존 CSS 충돌 방지를 위해
   모든 셀렉터를 #tg-stk-wrapper 로 감싸 특이성 강화
============================================ */

:root {
    --stk-violet: #8b5cf6;
    --stk-violet-dark: #7c3aed;
    --stk-violet-deep: #4c1d95;
    --stk-violet-light: #f5f3ff;
    --stk-violet-border: #c4b5fd;
    --stk-emerald: #059669;
    --stk-emerald-dark: #047857;
    --stk-emerald-light: #d1fae5;
    --stk-emerald-border: #6ee7b7;
    --stk-amber: #d97706;
    --stk-amber-border: #fcd34d;
    --stk-slate-900: #0f172a;
    --stk-slate-700: #334155;
    --stk-slate-500: #64748b;
    --stk-slate-300: #cbd5e1;
    --stk-slate-200: #e2e8f0;
    --stk-slate-100: #f1f5f9;
    --stk-bg: #faf8ff;
    --stk-white: #ffffff;
    --stk-radius: 14px;
}

/* ============================================
   그누보드5 기존 CSS 충돌 방지용 완전 리셋
============================================ */
#tg-stk-wrapper,
#tg-stk-wrapper *,
#tg-stk-wrapper *::before,
#tg-stk-wrapper *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    text-decoration: none;
    list-style: none;
    background: none;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#tg-stk-wrapper h1,
#tg-stk-wrapper h2,
#tg-stk-wrapper h3,
#tg-stk-wrapper h4,
#tg-stk-wrapper h5,
#tg-stk-wrapper h6 {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    line-height: inherit;
    margin: 0;
    padding: 0;
    border: none;
    background: none;
}

#tg-stk-wrapper p,
#tg-stk-wrapper span,
#tg-stk-wrapper div,
#tg-stk-wrapper section,
#tg-stk-wrapper article,
#tg-stk-wrapper header,
#tg-stk-wrapper main,
#tg-stk-wrapper footer {
    margin: 0;
    padding: 0;
    border: none;
    background: none;
    font-size: inherit;
    color: inherit;
    line-height: inherit;
}

#tg-stk-wrapper ul,
#tg-stk-wrapper ol,
#tg-stk-wrapper li {
    list-style: none;
    margin: 0;
    padding: 0;
    border: none;
    background: none;
}

#tg-stk-wrapper a {
    color: inherit;
    text-decoration: none;
}

#tg-stk-wrapper img {
    max-width: 100%;
    height: auto;
    border: none;
}

#tg-stk-wrapper i {
    font-style: normal;
}

#tg-stk-wrapper strong,
#tg-stk-wrapper b {
    font-weight: 700;
}

#tg-stk-wrapper mark {
    background: none;
    color: inherit;
    padding: 0;
}

/* ─── 래퍼 ─── */
#tg-stk-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    font-family: 'Noto Sans KR', 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    font-size: 16px;
    color: var(--stk-slate-500);
    background-color: var(--stk-bg);
    box-sizing: border-box;
    line-height: 1.7;
    overflow: hidden;
    padding-bottom: 60px;
    word-break: keep-all;
    overflow-wrap: break-word;
}

#tg-stk-wrapper strong {
    font-weight: 700;
    color: var(--stk-slate-900);
}

#tg-stk-wrapper mark {
    background: linear-gradient(120deg, var(--stk-violet-light) 0%, #ede9fe 100%);
    color: var(--stk-violet-deep);
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
}

/* ============================================
   히어로 헤더
============================================ */
#tg-stk-wrapper .tg-stk-hero {
    background: linear-gradient(145deg, #1e1b4b 0%, #4c1d95 30%, #8b5cf6 65%, #059669 100%);
    color: var(--stk-white);
    padding: 60px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#tg-stk-wrapper .tg-stk-hero::before {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    border: 65px solid rgba(139, 92, 246, 0.05);
    border-radius: 50%;
    top: -110px;
    right: -110px;
    background: none;
}

#tg-stk-wrapper .tg-stk-hero::after {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    border: 45px solid rgba(5, 150, 105, 0.04);
    border-radius: 50%;
    bottom: -70px;
    left: -55px;
    background: none;
}

#tg-stk-wrapper .tg-stk-hero__inner {
    position: relative;
    z-index: 1;
}

#tg-stk-wrapper .tg-stk-hero__icon-group {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

#tg-stk-wrapper .tg-stk-hero__icon-emoji,
#tg-stk-wrapper .tg-stk-hero__icon-sticker {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

#tg-stk-wrapper .tg-stk-hero__icon-emoji {
    background: rgba(255, 255, 255, 0.1);
    color: var(--stk-violet-border);
    border: 1px solid rgba(196, 181, 253, 0.2);
}

#tg-stk-wrapper .tg-stk-hero__icon-sticker {
    background: rgba(255, 255, 255, 0.1);
    color: var(--stk-emerald-border);
    border: 1px solid rgba(110, 231, 183, 0.2);
}

#tg-stk-wrapper .tg-stk-hero__icon-arrow {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.3);
    animation: tg-stk-arrow-pulse 1.5s ease-in-out infinite;
}

#tg-stk-wrapper .tg-stk-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(196, 181, 253, 0.1) 100%);
    color: var(--stk-violet-border);
    font-size: 14px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 22px;
    border: 1px solid rgba(196, 181, 253, 0.2);
    backdrop-filter: blur(4px);
}

#tg-stk-wrapper .tg-stk-hero__badge i {
    font-size: 14px;
    color: var(--stk-violet-border);
}

#tg-stk-wrapper .tg-stk-hero__title {
    font-size: 28px;
    font-weight: 900;
    line-height: 1.35;
    margin-bottom: 18px;
    color: var(--stk-white);
}

#tg-stk-wrapper .tg-stk-hero__desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   메인
============================================ */
#tg-stk-wrapper .tg-stk-main {
    padding: 30px 20px 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* ============================================
   도입부
============================================ */
#tg-stk-wrapper .tg-stk-intro {
    background-color: var(--stk-white);
    padding: 28px 24px;
    border-radius: var(--stk-radius);
    border-left: 4px solid var(--stk-violet);
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
}

#tg-stk-wrapper .tg-stk-intro p {
    font-size: 16px;
    margin-bottom: 14px;
    color: var(--stk-slate-500);
    line-height: 1.7;
}

#tg-stk-wrapper .tg-stk-intro p:last-child {
    margin-bottom: 0;
}

/* ============================================
   섹션 공통
============================================ */
#tg-stk-wrapper .tg-stk-section {
    background-color: var(--stk-white);
    padding: 34px 24px;
    border-radius: var(--stk-radius);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--stk-slate-200);
}

#tg-stk-wrapper .tg-stk-section--dark {
    background: linear-gradient(135deg, #1e1b4b 0%, var(--stk-violet-deep) 50%, #6d28d9 100%);
    border-color: var(--stk-violet);
    color: var(--stk-slate-300);
}

#tg-stk-wrapper .tg-stk-section__head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
}

#tg-stk-wrapper .tg-stk-section__num {
    font-size: 38px;
    font-weight: 900;
    color: var(--stk-violet);
    opacity: 0.2;
    line-height: 1;
    flex-shrink: 0;
}

#tg-stk-wrapper .tg-stk-section__tip-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--stk-violet) 0%, #a78bfa 100%);
    color: var(--stk-white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

#tg-stk-wrapper .tg-stk-section__title {
    font-size: 20px;
    font-weight: 800;
    color: var(--stk-slate-900);
    line-height: 1.35;
    padding-top: 6px;
}

#tg-stk-wrapper .tg-stk-section__title--light {
    color: var(--stk-white);
}

#tg-stk-wrapper .tg-stk-section__desc {
    font-size: 16px;
    margin-bottom: 24px;
    color: var(--stk-slate-500);
    line-height: 1.7;
}

#tg-stk-wrapper .tg-stk-section__desc--light {
    color: var(--stk-violet-border);
}

#tg-stk-wrapper .tg-stk-section__desc--light strong {
    color: var(--stk-white);
}

/* ============================================
   프로세스 비주얼
============================================ */
#tg-stk-wrapper .tg-stk-process-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    padding: 24px 16px;
    background: linear-gradient(135deg, var(--stk-violet-light) 0%, #ede9fe 100%);
    border: 1px solid var(--stk-violet-border);
    border-radius: 12px;
}

#tg-stk-wrapper .tg-stk-process-visual__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--stk-slate-500);
}

#tg-stk-wrapper .tg-stk-process-visual__icon {
    width: 48px;
    height: 48px;
    background-color: var(--stk-white);
    border: 1px solid var(--stk-slate-200);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--stk-slate-500);
}

#tg-stk-wrapper .tg-stk-process-visual__step--active .tg-stk-process-visual__icon {
    background: linear-gradient(135deg, var(--stk-violet) 0%, var(--stk-violet-dark) 100%);
    color: var(--stk-white);
    border-color: var(--stk-violet);
}

#tg-stk-wrapper .tg-stk-process-visual__step--active {
    color: var(--stk-violet-dark);
}

#tg-stk-wrapper .tg-stk-process-visual__step--result .tg-stk-process-visual__icon {
    background: linear-gradient(135deg, var(--stk-emerald) 0%, #10b981 100%);
    color: var(--stk-white);
    border-color: var(--stk-emerald);
}

#tg-stk-wrapper .tg-stk-process-visual__step--result {
    color: var(--stk-emerald);
}

#tg-stk-wrapper .tg-stk-process-visual__arrow {
    color: var(--stk-violet-border);
    font-size: 14px;
}

/* ============================================
   스텝 리스트
============================================ */
#tg-stk-wrapper .tg-stk-steps {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    margin: 0;
}

#tg-stk-wrapper .tg-stk-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background-color: var(--stk-slate-100);
    padding: 16px 18px;
    border-radius: 10px;
    border-left: 3px solid var(--stk-violet-border);
    transition: border-left-color 0.2s ease;
    list-style: none;
}

#tg-stk-wrapper .tg-stk-step:hover {
    border-left-color: var(--stk-violet);
}

#tg-stk-wrapper .tg-stk-step--highlight {
    background: linear-gradient(135deg, var(--stk-emerald-light) 0%, #a7f3d0 100%);
    border-left-color: var(--stk-emerald);
}

#tg-stk-wrapper .tg-stk-step__marker {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--stk-violet) 0%, var(--stk-violet-dark) 100%);
    color: var(--stk-white);
    font-weight: 800;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-top: 1px;
}

#tg-stk-wrapper .tg-stk-step__marker--highlight {
    background: linear-gradient(135deg, var(--stk-emerald) 0%, #10b981 100%);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
}

#tg-stk-wrapper .tg-stk-step__content {
    flex: 1;
}

#tg-stk-wrapper .tg-stk-step__text {
    font-size: 15px;
    padding-top: 3px;
    color: var(--stk-slate-500);
    line-height: 1.6;
}

#tg-stk-wrapper .tg-stk-step__text p {
    margin-bottom: 10px;
}

/* ============================================
   직장인 활용 팁 박스
============================================ */
#tg-stk-wrapper .tg-stk-work-tip {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: 24px;
    padding: 20px 22px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(196, 181, 253, 0.05) 100%);
    border: 1px solid rgba(196, 181, 253, 0.2);
    border-radius: 12px;
}

#tg-stk-wrapper .tg-stk-work-tip__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--stk-violet) 0%, #a78bfa 100%);
    color: var(--stk-white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

#tg-stk-wrapper .tg-stk-work-tip__body {
    flex: 1;
}

#tg-stk-wrapper .tg-stk-work-tip__badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    color: var(--stk-violet-deep);
    background-color: var(--stk-violet-border);
    padding: 2px 12px;
    border-radius: 100px;
    margin-bottom: 8px;
}

#tg-stk-wrapper .tg-stk-work-tip__body p {
    font-size: 14px;
    color: var(--stk-slate-700);
    line-height: 1.7;
}

/* ============================================
   타임라인 (다크 섹션 내)
============================================ */
#tg-stk-wrapper .tg-stk-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}

#tg-stk-wrapper .tg-stk-timeline__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 18px;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(196, 181, 253, 0.1);
    border-radius: 12px;
    position: relative;
}

#tg-stk-wrapper .tg-stk-timeline__item--final {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border-color: rgba(110, 231, 183, 0.15);
}

#tg-stk-wrapper .tg-stk-timeline__number {
    position: absolute;
    top: -10px;
    left: 16px;
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, var(--stk-violet) 0%, #a78bfa 100%);
    color: var(--stk-white);
    font-weight: 900;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

#tg-stk-wrapper .tg-stk-timeline__item--final .tg-stk-timeline__number {
    background: linear-gradient(135deg, var(--stk-emerald) 0%, #10b981 100%);
}

#tg-stk-wrapper .tg-stk-timeline__icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(196, 181, 253, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--stk-violet-border);
}

#tg-stk-wrapper .tg-stk-timeline__icon--emerald {
    color: var(--stk-emerald-border);
}

#tg-stk-wrapper .tg-stk-timeline__icon--done {
    background: linear-gradient(135deg, var(--stk-emerald) 0%, #10b981 100%);
    color: var(--stk-white);
    border-color: var(--stk-emerald);
}

#tg-stk-wrapper .tg-stk-timeline__body {
    flex: 1;
    padding-top: 4px;
}

#tg-stk-wrapper .tg-stk-timeline__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--stk-white);
    margin-bottom: 4px;
}

#tg-stk-wrapper .tg-stk-timeline__text {
    font-size: 14px;
    color: var(--stk-violet-border);
    line-height: 1.6;
}

#tg-stk-wrapper .tg-stk-timeline__text strong {
    color: var(--stk-white);
}

#tg-stk-wrapper .tg-stk-timeline__connector {
    width: 2px;
    height: 20px;
    background: linear-gradient(180deg, rgba(196, 181, 253, 0.2) 0%, rgba(196, 181, 253, 0.05) 100%);
    margin-left: 36px;
}

/* ============================================
   설정 경로 비주얼
============================================ */
#tg-stk-wrapper .tg-stk-setting-visual {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 12px;
    padding: 12px 16px;
    background-color: var(--stk-white);
    border: 1px solid var(--stk-slate-200);
    border-radius: 10px;
}

#tg-stk-wrapper .tg-stk-setting-visual__item {
    font-size: 13px;
    font-weight: 600;
    color: var(--stk-slate-700);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background-color: var(--stk-slate-100);
    border-radius: 6px;
}

#tg-stk-wrapper .tg-stk-setting-visual__item i {
    color: var(--stk-slate-500);
    font-size: 12px;
}

#tg-stk-wrapper .tg-stk-setting-visual__item--active {
    background: linear-gradient(135deg, var(--stk-emerald-light) 0%, #a7f3d0 100%);
    color: var(--stk-emerald-dark);
}

#tg-stk-wrapper .tg-stk-setting-visual__item--active i {
    color: var(--stk-emerald);
}

#tg-stk-wrapper .tg-stk-setting-visual__arrow {
    font-size: 10px;
    color: var(--stk-slate-300);
}

/* ============================================
   추천 옵션 라디오 비주얼
============================================ */
#tg-stk-wrapper .tg-stk-option-visual {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 14px;
    max-width: 320px;
}

#tg-stk-wrapper .tg-stk-option-visual__card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background-color: var(--stk-white);
    border: 1px solid var(--stk-slate-200);
    border-radius: 10px;
    font-size: 14px;
    color: var(--stk-slate-500);
}

#tg-stk-wrapper .tg-stk-option-visual__card--active {
    border-color: var(--stk-emerald);
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.04) 0%, rgba(16, 185, 129, 0.02) 100%);
    color: var(--stk-slate-900);
    font-weight: 700;
}

#tg-stk-wrapper .tg-stk-option-visual__radio {
    width: 20px;
    height: 20px;
    border: 2px solid var(--stk-slate-300);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

#tg-stk-wrapper .tg-stk-option-visual__radio--checked {
    border-color: var(--stk-emerald);
    background-color: var(--stk-emerald);
    color: var(--stk-white);
    font-size: 10px;
}

#tg-stk-wrapper .tg-stk-option-badge {
    margin-top: 10px;
    padding: 8px 14px;
    background: linear-gradient(135deg, var(--stk-emerald-light) 0%, #a7f3d0 100%);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--stk-emerald-dark);
    max-width: 320px;
}

#tg-stk-wrapper .tg-stk-option-badge i {
    margin-right: 4px;
}

/* ============================================
   결론 및 요약
============================================ */
#tg-stk-wrapper .tg-stk-summary {
    background: linear-gradient(135deg, #1e1b4b 0%, var(--stk-violet-deep) 50%, #6d28d9 100%);
    color: var(--stk-white);
    padding: 44px 28px;
    border-radius: var(--stk-radius);
    text-align: center;
    box-shadow: 0 10px 30px rgba(76, 29, 149, 0.4);
}

#tg-stk-wrapper .tg-stk-summary__title {
    font-size: 24px;
    font-weight: 800;
    color: var(--stk-white);
    margin-bottom: 20px;
}

#tg-stk-wrapper .tg-stk-summary__body p {
    font-size: 16px;
    margin-bottom: 14px;
    color: var(--stk-violet-border);
    line-height: 1.7;
}

#tg-stk-wrapper .tg-stk-summary strong {
    color: var(--stk-white);
}

/* 요약 프로세스 아이콘 */
#tg-stk-wrapper .tg-stk-summary__icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 28px 0;
}

#tg-stk-wrapper .tg-stk-summary__icon-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--stk-violet-border);
}

#tg-stk-wrapper .tg-stk-summary__icon-circle {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(196, 181, 253, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--stk-violet-border);
    transition: transform 0.2s ease;
}

#tg-stk-wrapper .tg-stk-summary__icon-circle:hover {
    transform: scale(1.08);
}

#tg-stk-wrapper .tg-stk-summary__icon-circle--sync {
    background: linear-gradient(135deg, var(--stk-violet) 0%, #a78bfa 100%);
    color: var(--stk-white);
    border-color: var(--stk-violet);
}

#tg-stk-wrapper .tg-stk-summary__icon-circle--done {
    background: linear-gradient(135deg, var(--stk-emerald) 0%, #10b981 100%);
    color: var(--stk-white);
    border-color: var(--stk-emerald);
}

#tg-stk-wrapper .tg-stk-summary__icon-arrow {
    color: rgba(196, 181, 253, 0.3);
    font-size: 14px;
}

/* 체크리스트 */
#tg-stk-wrapper .tg-stk-summary__checklist {
    list-style: none;
    display: inline-block;
    text-align: left;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 24px 32px;
    border-radius: 12px;
    margin: 0 0 24px;
}

#tg-stk-wrapper .tg-stk-summary__checklist li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-size: 15px;
    color: #ede9fe;
    line-height: 1.6;
    list-style: none;
}

#tg-stk-wrapper .tg-stk-summary__checklist li:last-child {
    margin-bottom: 0;
}

#tg-stk-wrapper .tg-stk-summary__checklist li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 13px;
    color: var(--stk-emerald-border);
}

#tg-stk-wrapper .tg-stk-summary__checklist strong {
    color: var(--stk-white);
}

#tg-stk-wrapper .tg-stk-summary__footer {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 14px;
    color: var(--stk-violet-border);
    line-height: 1.8;
}

#tg-stk-wrapper .tg-stk-summary__footer strong {
    color: var(--stk-white);
}

/* ============================================
   애니메이션 키프레임
============================================ */
@keyframes tg-stk-arrow-pulse {

    0%,
    100% {
        opacity: 0.3;
        transform: translateX(0);
    }

    50% {
        opacity: 0.8;
        transform: translateX(4px);
    }
}

@keyframes tg-stk-sparkle {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }

    50% {
        transform: scale(1.2) rotate(15deg);
        opacity: 0.7;
    }
}

/* ============================================
   반응형 미디어 쿼리 (모바일 퍼스트)
============================================ */
@media (min-width: 768px) {
    #tg-stk-wrapper .tg-stk-hero {
        padding: 80px 40px;
    }

    #tg-stk-wrapper .tg-stk-hero__title {
        font-size: 38px;
    }

    #tg-stk-wrapper .tg-stk-main {
        padding: 40px 36px 0;
        gap: 40px;
    }

    #tg-stk-wrapper .tg-stk-intro {
        padding: 36px 32px;
    }

    #tg-stk-wrapper .tg-stk-section {
        padding: 40px 36px;
    }

    #tg-stk-wrapper .tg-stk-section__title {
        font-size: 24px;
    }

    #tg-stk-wrapper .tg-stk-section__num {
        font-size: 44px;
    }

    #tg-stk-wrapper .tg-stk-summary {
        padding: 56px 44px;
    }
}

@media (min-width: 1024px) {
    #tg-stk-wrapper .tg-stk-hero__title {
        font-size: 44px;
    }

    #tg-stk-wrapper .tg-stk-main {
        gap: 46px;
    }
}

/* ============================================
   스크롤 등장 애니메이션 (JS 연동)
============================================ */
#tg-stk-wrapper .tg-stk-motion {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

#tg-stk-wrapper .tg-stk-motion.is-visible {
    opacity: 1;
    transform: translateY(0);
}
