@charset "utf-8";

/* ============================================
   텔레그램 안 읽은 채널 점프(Channel Jump) 가이드
   접두사: tg-jmp- (기존 사이트 오염 방지)
   컬러 톤: 틸(Teal) + 로즈(Rose)

   [중요] 그누보드5 기존 CSS 충돌 방지를 위해
   모든 셀렉터를 #tg-jmp-wrapper 로 감싸 특이성 강화
============================================ */

:root {
    --jmp-teal: #0d9488;
    --jmp-teal-dark: #0f766e;
    --jmp-teal-deep: #134e4a;
    --jmp-teal-light: #f0fdfa;
    --jmp-teal-border: #5eead4;
    --jmp-rose: #e11d48;
    --jmp-rose-dark: #be123c;
    --jmp-rose-light: #fff1f2;
    --jmp-rose-border: #fda4af;
    --jmp-green: #059669;
    --jmp-green-light: #d1fae5;
    --jmp-slate-900: #0f172a;
    --jmp-slate-700: #334155;
    --jmp-slate-500: #64748b;
    --jmp-slate-300: #cbd5e1;
    --jmp-slate-200: #e2e8f0;
    --jmp-slate-100: #f1f5f9;
    --jmp-bg: #f7fffe;
    --jmp-white: #ffffff;
    --jmp-radius: 14px;
}

/* ============================================
   그누보드5 기존 CSS 충돌 방지용 완전 리셋
============================================ */
#tg-jmp-wrapper,
#tg-jmp-wrapper *,
#tg-jmp-wrapper *::before,
#tg-jmp-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-jmp-wrapper h1,
#tg-jmp-wrapper h2,
#tg-jmp-wrapper h3,
#tg-jmp-wrapper h4,
#tg-jmp-wrapper h5,
#tg-jmp-wrapper h6 {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    line-height: inherit;
    margin: 0;
    padding: 0;
    border: none;
    background: none;
}

#tg-jmp-wrapper p,
#tg-jmp-wrapper span,
#tg-jmp-wrapper div,
#tg-jmp-wrapper section,
#tg-jmp-wrapper article,
#tg-jmp-wrapper header,
#tg-jmp-wrapper main,
#tg-jmp-wrapper footer {
    margin: 0;
    padding: 0;
    border: none;
    background: none;
    font-size: inherit;
    color: inherit;
    line-height: inherit;
}

#tg-jmp-wrapper ul,
#tg-jmp-wrapper ol,
#tg-jmp-wrapper li {
    list-style: none;
    margin: 0;
    padding: 0;
    border: none;
    background: none;
}

#tg-jmp-wrapper a {
    color: inherit;
    text-decoration: none;
}

#tg-jmp-wrapper img {
    max-width: 100%;
    height: auto;
    border: none;
}

#tg-jmp-wrapper i {
    font-style: normal;
}

#tg-jmp-wrapper strong,
#tg-jmp-wrapper b {
    font-weight: 700;
}

#tg-jmp-wrapper mark {
    background: none;
    color: inherit;
    padding: 0;
}

/* ─── 래퍼 ─── */
#tg-jmp-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    font-size: 16px;
    color: var(--jmp-slate-500);
    background-color: var(--jmp-bg);
    box-sizing: border-box;
    line-height: 1.7;
    overflow: hidden;
    padding-bottom: 60px;
    word-break: keep-all;
    overflow-wrap: break-word;
}

#tg-jmp-wrapper strong {
    font-weight: 700;
    color: var(--jmp-slate-900);
}

#tg-jmp-wrapper mark {
    background: linear-gradient(120deg, var(--jmp-teal-light) 0%, #ccfbf1 100%);
    color: var(--jmp-teal-deep);
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
}

/* ============================================
   [핵심] 그누보드5 p { margin:0 } 강제 리셋 차단
   래퍼 내부 모든 p 태그에 기본 여백을 보장합니다.
============================================ */
#tg-jmp-wrapper p {
    margin-bottom: 14px !important;
    line-height: 1.7 !important;
}

#tg-jmp-wrapper p:last-child {
    margin-bottom: 0 !important;
}

/* ============================================
   히어로 헤더
============================================ */
#tg-jmp-wrapper .tg-jmp-hero {
    background: linear-gradient(145deg, #0f172a 0%, #134e4a 30%, #0d9488 65%, #e11d48 100%) !important;
    color: var(--jmp-white) !important;
    padding: 60px 24px !important;
    text-align: center !important;
    position: relative !important;
    overflow: hidden !important;
}

#tg-jmp-wrapper .tg-jmp-hero::before {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    border: 65px solid rgba(13, 148, 136, 0.05);
    border-radius: 50%;
    top: -110px;
    right: -110px;
    background: none;
}

#tg-jmp-wrapper .tg-jmp-hero::after {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    border: 45px solid rgba(225, 29, 72, 0.04);
    border-radius: 50%;
    bottom: -70px;
    left: -55px;
    background: none;
}

#tg-jmp-wrapper .tg-jmp-hero__inner {
    position: relative;
    z-index: 1;
}

#tg-jmp-wrapper .tg-jmp-hero__icon-group {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

#tg-jmp-wrapper .tg-jmp-hero__icon-emoji,
#tg-jmp-wrapper .tg-jmp-hero__icon-sticker {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

#tg-jmp-wrapper .tg-jmp-hero__icon-emoji {
    background: rgba(255, 255, 255, 0.1);
    color: var(--jmp-teal-border);
    border: 1px solid rgba(94, 234, 212, 0.2);
}

#tg-jmp-wrapper .tg-jmp-hero__icon-sticker {
    background: rgba(255, 255, 255, 0.1);
    color: var(--jmp-rose-border);
    border: 1px solid rgba(253, 164, 175, 0.2);
}

#tg-jmp-wrapper .tg-jmp-hero__icon-arrow {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.3);
    animation: tg-jmp-arrow-pulse 1.5s ease-in-out infinite;
}

#tg-jmp-wrapper .tg-jmp-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.2) 0%, rgba(94, 234, 212, 0.1) 100%);
    color: var(--jmp-teal-border);
    font-size: 14px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 22px;
    border: 1px solid rgba(94, 234, 212, 0.2);
    backdrop-filter: blur(4px);
}

#tg-jmp-wrapper .tg-jmp-hero__badge i {
    font-size: 14px;
    color: var(--jmp-teal-border);
}

#tg-jmp-wrapper .tg-jmp-hero__title {
    font-size: 28px;
    font-weight: 900;
    line-height: 1.35;
    margin-bottom: 18px;
    color: var(--jmp-white);
}

#tg-jmp-wrapper .tg-jmp-hero__desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   메인 / 도입부
============================================ */
#tg-jmp-wrapper .tg-jmp-main {
    padding: 30px 20px 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 32px !important;
}

/* gap 미지원/무시 시 폴백: 자식 요소에 직접 margin-bottom */
#tg-jmp-wrapper .tg-jmp-main>.tg-jmp-intro,
#tg-jmp-wrapper .tg-jmp-main>.tg-jmp-section {
    margin-bottom: 32px !important;
}

#tg-jmp-wrapper .tg-jmp-main>.tg-jmp-section:last-of-type {
    margin-bottom: 32px !important;
}

#tg-jmp-wrapper .tg-jmp-main>.tg-jmp-summary {
    margin-bottom: 0 !important;
}

#tg-jmp-wrapper .tg-jmp-intro {
    background-color: var(--jmp-white) !important;
    padding: 28px 24px !important;
    border-radius: var(--jmp-radius) !important;
    border-left: 4px solid var(--jmp-teal) !important;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04) !important;
}

#tg-jmp-wrapper .tg-jmp-intro p {
    font-size: 16px !important;
    margin-bottom: 14px !important;
    color: var(--jmp-slate-500) !important;
    line-height: 1.7 !important;
}

#tg-jmp-wrapper .tg-jmp-intro p:last-child {
    margin-bottom: 0 !important;
}

/* ============================================
   섹션 공통
============================================ */
#tg-jmp-wrapper .tg-jmp-section {
    background-color: var(--jmp-white) !important;
    padding: 34px 24px !important;
    border-radius: var(--jmp-radius) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03) !important;
    border: 1px solid var(--jmp-slate-200) !important;
}

#tg-jmp-wrapper .tg-jmp-section--dark {
    background: linear-gradient(135deg, #0f172a 0%, var(--jmp-teal-deep) 50%, #0f766e 100%);
    border-color: var(--jmp-teal);
    color: var(--jmp-slate-300);
}

#tg-jmp-wrapper .tg-jmp-section__head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
}

#tg-jmp-wrapper .tg-jmp-section__num {
    font-size: 38px;
    font-weight: 900;
    color: var(--jmp-teal);
    opacity: 0.2;
    line-height: 1;
    flex-shrink: 0;
}

#tg-jmp-wrapper .tg-jmp-section__tip-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--jmp-rose) 0%, #f43f5e 100%);
    color: var(--jmp-white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

#tg-jmp-wrapper .tg-jmp-section__title {
    font-size: 20px;
    font-weight: 800;
    color: var(--jmp-slate-900);
    line-height: 1.35;
    padding-top: 6px;
}

#tg-jmp-wrapper .tg-jmp-section__title--light {
    color: var(--jmp-white);
}

#tg-jmp-wrapper .tg-jmp-section__desc {
    font-size: 16px !important;
    margin-bottom: 24px !important;
    color: var(--jmp-slate-500) !important;
    line-height: 1.7 !important;
}

#tg-jmp-wrapper .tg-jmp-section__desc--light {
    color: var(--jmp-teal-border);
}

#tg-jmp-wrapper .tg-jmp-section__desc--light strong {
    color: var(--jmp-white);
}

/* ============================================
   프로세스 비주얼
============================================ */
#tg-jmp-wrapper .tg-jmp-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(--jmp-teal-light) 0%, #ccfbf1 100%);
    border: 1px solid var(--jmp-teal-border);
    border-radius: 12px;
}

#tg-jmp-wrapper .tg-jmp-process-visual__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--jmp-slate-500);
}

#tg-jmp-wrapper .tg-jmp-process-visual__icon {
    width: 48px;
    height: 48px;
    background-color: var(--jmp-white);
    border: 1px solid var(--jmp-slate-200);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--jmp-slate-500);
}

#tg-jmp-wrapper .tg-jmp-process-visual__step--active .tg-jmp-process-visual__icon {
    background: linear-gradient(135deg, var(--jmp-teal) 0%, var(--jmp-teal-dark) 100%);
    color: var(--jmp-white);
    border-color: var(--jmp-teal);
}

#tg-jmp-wrapper .tg-jmp-process-visual__step--active {
    color: var(--jmp-teal-dark);
}

#tg-jmp-wrapper .tg-jmp-process-visual__step--result .tg-jmp-process-visual__icon {
    background: linear-gradient(135deg, var(--jmp-green) 0%, #10b981 100%);
    color: var(--jmp-white);
    border-color: var(--jmp-green);
}

#tg-jmp-wrapper .tg-jmp-process-visual__step--result {
    color: var(--jmp-green);
}

#tg-jmp-wrapper .tg-jmp-process-visual__arrow {
    color: var(--jmp-teal-border);
    font-size: 14px;
}

/* ============================================
   스텝 리스트
============================================ */
#tg-jmp-wrapper .tg-jmp-steps {
    list-style: none !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* 스텝 간 여백 폴백 */
#tg-jmp-wrapper .tg-jmp-step+.tg-jmp-step {
    margin-top: 12px !important;
}

#tg-jmp-wrapper .tg-jmp-step {
    display: flex !important;
    align-items: flex-start !important;
    gap: 14px !important;
    background-color: var(--jmp-slate-100) !important;
    padding: 16px 18px !important;
    border-radius: 10px !important;
    border-left: 3px solid var(--jmp-teal-border) !important;
    transition: border-left-color 0.2s ease;
    list-style: none !important;
}

#tg-jmp-wrapper .tg-jmp-step:hover {
    border-left-color: var(--jmp-teal);
}

#tg-jmp-wrapper .tg-jmp-step--highlight {
    background: linear-gradient(135deg, var(--jmp-green-light) 0%, #a7f3d0 100%);
    border-left-color: var(--jmp-green);
}

#tg-jmp-wrapper .tg-jmp-step__marker {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--jmp-teal) 0%, var(--jmp-teal-dark) 100%);
    color: var(--jmp-white);
    font-weight: 800;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-top: 1px;
}

#tg-jmp-wrapper .tg-jmp-step__marker--highlight {
    background: linear-gradient(135deg, var(--jmp-green) 0%, #10b981 100%);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
}

#tg-jmp-wrapper .tg-jmp-step__content {
    flex: 1;
}

#tg-jmp-wrapper .tg-jmp-step__text {
    font-size: 15px !important;
    padding-top: 3px !important;
    color: var(--jmp-slate-500) !important;
    line-height: 1.6 !important;
}

/* ============================================
   전문가 팁 / 직장인 팁 박스
============================================ */
#tg-jmp-wrapper .tg-jmp-expert-tip {
    display: flex !important;
    align-items: flex-start !important;
    gap: 14px !important;
    margin-top: 24px !important;
    padding: 20px 22px !important;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.08) 0%, rgba(94, 234, 212, 0.04) 100%) !important;
    border: 1px solid rgba(94, 234, 212, 0.2) !important;
    border-radius: 12px !important;
}

#tg-jmp-wrapper .tg-jmp-expert-tip__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--jmp-teal) 0%, #14b8a6 100%);
    color: var(--jmp-white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

#tg-jmp-wrapper .tg-jmp-expert-tip__body {
    flex: 1;
}

#tg-jmp-wrapper .tg-jmp-expert-tip__body strong {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
}

#tg-jmp-wrapper .tg-jmp-expert-tip__body p {
    font-size: 14px;
    color: var(--jmp-slate-700);
    line-height: 1.7;
}

#tg-jmp-wrapper .tg-jmp-work-tip {
    display: flex !important;
    align-items: flex-start !important;
    gap: 14px !important;
    margin-top: 24px !important;
    padding: 20px 22px !important;
    background: linear-gradient(135deg, rgba(225, 29, 72, 0.08) 0%, rgba(253, 164, 175, 0.04) 100%) !important;
    border: 1px solid rgba(253, 164, 175, 0.2) !important;
    border-radius: 12px !important;
}

#tg-jmp-wrapper .tg-jmp-work-tip__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--jmp-rose) 0%, #f43f5e 100%);
    color: var(--jmp-white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

#tg-jmp-wrapper .tg-jmp-work-tip__body {
    flex: 1;
}

#tg-jmp-wrapper .tg-jmp-work-tip__badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    color: var(--jmp-white);
    background: var(--jmp-rose);
    padding: 2px 12px;
    border-radius: 100px;
    margin-bottom: 8px;
}

#tg-jmp-wrapper .tg-jmp-work-tip__body p {
    font-size: 14px;
    color: var(--jmp-teal-border);
    line-height: 1.7;
}

#tg-jmp-wrapper .tg-jmp-work-tip__body strong {
    color: var(--jmp-white);
}

/* ============================================
   타임라인 (다크 섹션 내)
============================================ */
#tg-jmp-wrapper .tg-jmp-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}

#tg-jmp-wrapper .tg-jmp-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(94, 234, 212, 0.1);
    border-radius: 12px;
    position: relative;
}

#tg-jmp-wrapper .tg-jmp-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-jmp-wrapper .tg-jmp-timeline__number {
    position: absolute;
    top: -10px;
    left: 16px;
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, var(--jmp-teal) 0%, #14b8a6 100%);
    color: var(--jmp-white);
    font-weight: 900;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

#tg-jmp-wrapper .tg-jmp-timeline__item--final .tg-jmp-timeline__number {
    background: linear-gradient(135deg, var(--jmp-green) 0%, #10b981 100%);
}

#tg-jmp-wrapper .tg-jmp-timeline__icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(94, 234, 212, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--jmp-teal-border);
}

#tg-jmp-wrapper .tg-jmp-timeline__icon--rose {
    color: var(--jmp-rose-border);
}

#tg-jmp-wrapper .tg-jmp-timeline__icon--done {
    background: linear-gradient(135deg, var(--jmp-green) 0%, #10b981 100%);
    color: var(--jmp-white);
    border-color: var(--jmp-green);
}

#tg-jmp-wrapper .tg-jmp-timeline__body {
    flex: 1;
    padding-top: 4px;
}

#tg-jmp-wrapper .tg-jmp-timeline__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--jmp-white);
    margin-bottom: 4px;
}

#tg-jmp-wrapper .tg-jmp-timeline__text {
    font-size: 14px;
    color: var(--jmp-teal-border);
    line-height: 1.6;
}

#tg-jmp-wrapper .tg-jmp-timeline__text strong {
    color: var(--jmp-white);
}

#tg-jmp-wrapper .tg-jmp-timeline__connector {
    width: 2px !important;
    height: 20px !important;
    background: linear-gradient(180deg, rgba(94, 234, 212, 0.2) 0%, rgba(94, 234, 212, 0.05) 100%) !important;
    margin-left: 36px !important;
}

/* ============================================
   단축키 비주얼
============================================ */
#tg-jmp-wrapper .tg-jmp-shortcut-visual {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 14px;
}

#tg-jmp-wrapper .tg-jmp-shortcut-visual__key {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 14px;
    background: linear-gradient(180deg, var(--jmp-white) 0%, var(--jmp-slate-100) 100%);
    border: 1px solid var(--jmp-slate-200);
    border-bottom: 3px solid var(--jmp-slate-300);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
    color: var(--jmp-slate-900);
    font-family: 'Pretendard', monospace;
}

#tg-jmp-wrapper .tg-jmp-shortcut-visual__plus {
    font-size: 16px;
    font-weight: 800;
    color: var(--jmp-slate-300);
}

#tg-jmp-wrapper .tg-jmp-shortcut-badge {
    margin-top: 10px;
    padding: 8px 14px;
    background: linear-gradient(135deg, var(--jmp-green-light) 0%, #a7f3d0 100%);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #047857;
    max-width: 400px;
}

#tg-jmp-wrapper .tg-jmp-shortcut-badge i {
    margin-right: 4px;
}

/* ============================================
   결론 및 요약
============================================ */
#tg-jmp-wrapper .tg-jmp-summary {
    background: linear-gradient(135deg, #0f172a 0%, var(--jmp-teal-deep) 50%, #0f766e 100%) !important;
    color: var(--jmp-white) !important;
    padding: 44px 28px !important;
    border-radius: var(--jmp-radius) !important;
    text-align: center !important;
    box-shadow: 0 10px 30px rgba(19, 78, 74, 0.4) !important;
}

#tg-jmp-wrapper .tg-jmp-summary__title {
    font-size: 24px !important;
    font-weight: 800 !important;
    color: var(--jmp-white) !important;
    margin-bottom: 20px !important;
}

#tg-jmp-wrapper .tg-jmp-summary__body p {
    font-size: 16px !important;
    margin-bottom: 14px !important;
    color: var(--jmp-teal-border) !important;
    line-height: 1.7 !important;
}

#tg-jmp-wrapper .tg-jmp-summary strong {
    color: var(--jmp-white);
}

#tg-jmp-wrapper .tg-jmp-summary__icons {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    flex-wrap: wrap !important;
    margin: 28px 0 !important;
}

#tg-jmp-wrapper .tg-jmp-summary__icon-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--jmp-teal-border);
}

#tg-jmp-wrapper .tg-jmp-summary__icon-circle {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(94, 234, 212, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--jmp-teal-border);
    transition: transform 0.2s ease;
}

#tg-jmp-wrapper .tg-jmp-summary__icon-circle:hover {
    transform: scale(1.08);
}

#tg-jmp-wrapper .tg-jmp-summary__icon-circle--sync {
    background: linear-gradient(135deg, var(--jmp-rose) 0%, #f43f5e 100%);
    color: var(--jmp-white);
    border-color: var(--jmp-rose);
}

#tg-jmp-wrapper .tg-jmp-summary__icon-circle--done {
    background: linear-gradient(135deg, var(--jmp-green) 0%, #10b981 100%);
    color: var(--jmp-white);
    border-color: var(--jmp-green);
}

#tg-jmp-wrapper .tg-jmp-summary__icon-arrow {
    color: rgba(94, 234, 212, 0.3);
    font-size: 14px;
}

#tg-jmp-wrapper .tg-jmp-summary__checklist {
    list-style: none !important;
    display: inline-block !important;
    text-align: left !important;
    background-color: rgba(255, 255, 255, 0.05) !important;
    padding: 24px 32px !important;
    border-radius: 12px !important;
    margin: 0 0 24px !important;
}

#tg-jmp-wrapper .tg-jmp-summary__checklist li {
    position: relative !important;
    padding-left: 28px !important;
    margin-bottom: 10px !important;
    font-size: 15px !important;
    color: #ccfbf1 !important;
    line-height: 1.6 !important;
    list-style: none !important;
}

#tg-jmp-wrapper .tg-jmp-summary__checklist li:last-child {
    margin-bottom: 0 !important;
}

#tg-jmp-wrapper .tg-jmp-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(--jmp-teal-border);
}

#tg-jmp-wrapper .tg-jmp-summary__checklist strong {
    color: var(--jmp-white);
}

#tg-jmp-wrapper .tg-jmp-summary__footer {
    margin-top: 28px !important;
    padding-top: 20px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    font-size: 14px !important;
    color: var(--jmp-teal-border) !important;
    line-height: 1.8 !important;
}

#tg-jmp-wrapper .tg-jmp-summary__footer strong {
    color: var(--jmp-white) !important;
}

/* ============================================
   애니메이션 키프레임
============================================ */
@keyframes tg-jmp-arrow-pulse {

    0%,
    100% {
        opacity: 0.3;
        transform: translateX(0);
    }

    50% {
        opacity: 0.8;
        transform: translateX(4px);
    }
}

/* ============================================
   반응형 미디어 쿼리 (모바일 퍼스트)
============================================ */
@media (min-width: 768px) {
    #tg-jmp-wrapper .tg-jmp-hero {
        padding: 80px 40px !important;
    }

    #tg-jmp-wrapper .tg-jmp-hero__title {
        font-size: 38px !important;
    }

    #tg-jmp-wrapper .tg-jmp-main {
        padding: 40px 36px 0 !important;
        gap: 40px !important;
    }

    /* 미디어쿼리 내 섹션 여백 폴백도 동시 갱신 */
    #tg-jmp-wrapper .tg-jmp-main>.tg-jmp-intro,
    #tg-jmp-wrapper .tg-jmp-main>.tg-jmp-section {
        margin-bottom: 40px !important;
    }

    #tg-jmp-wrapper .tg-jmp-intro {
        padding: 36px 32px !important;
    }

    #tg-jmp-wrapper .tg-jmp-section {
        padding: 40px 36px !important;
    }

    #tg-jmp-wrapper .tg-jmp-section__title {
        font-size: 24px !important;
    }

    #tg-jmp-wrapper .tg-jmp-section__num {
        font-size: 44px !important;
    }

    #tg-jmp-wrapper .tg-jmp-summary {
        padding: 56px 44px !important;
    }
}

@media (min-width: 1024px) {
    #tg-jmp-wrapper .tg-jmp-hero__title {
        font-size: 44px !important;
    }

    #tg-jmp-wrapper .tg-jmp-main {
        gap: 46px !important;
    }

    #tg-jmp-wrapper .tg-jmp-main>.tg-jmp-intro,
    #tg-jmp-wrapper .tg-jmp-main>.tg-jmp-section {
        margin-bottom: 46px !important;
    }
}

/* ============================================
   스크롤 등장 애니메이션 (JS 연동)
============================================ */
#tg-jmp-wrapper .tg-jmp-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-jmp-wrapper .tg-jmp-motion.is-visible {
    opacity: 1;
    transform: translateY(0);
}