/*
 * tips342/style.css  v1.0.0
 * 텔레그램 인스턴트 뷰(Instant View) 가이드
 * 테마: 스카이 블루 + 다크 슬레이트 (브라우저·리딩·클린 감성)
 * 그누보드5 완전 격리 | BEM | 모바일 퍼스트
 */

/* ─── 전체 리셋 ─── */
#tg-342-wrapper,
#tg-342-wrapper * {
    box-sizing: border-box; margin: 0; padding: 0; border: none;
    outline: none; text-decoration: none; list-style: none; background: none; font-style: normal;
}
#tg-342-wrapper h1, #tg-342-wrapper h2 { font-size: inherit; font-weight: inherit; color: inherit; line-height: 1.35; }
#tg-342-wrapper strong { font-weight: 700; color: inherit; }
#tg-342-wrapper p { margin-bottom: 14px !important; line-height: 1.85 !important; }
#tg-342-wrapper p:last-child { margin-bottom: 0 !important; }
#tg-342-wrapper button { cursor: pointer; }
#tg-342-wrapper a { color: inherit; }
#tg-342-wrapper ol, #tg-342-wrapper ul { list-style: none; }
#tg-342-wrapper em { font-style: italic; color: inherit; }

/* ─── 디자인 토큰 ─── */
#tg-342-wrapper {
    --sky-200:  #bae6fd;
    --sky-300:  #7dd3fc;
    --sky-400:  #38bdf8;
    --sky-500:  #0ea5e9;
    --sky-600:  #0284c7;
    --sky-700:  #0369a1;
    --sky-900:  #0c4a6e;
    --cyn-300:  #67e8f9;
    --cyn-400:  #22d3ee;
    --grn-400:  #4ade80;
    --grn-500:  #22c55e;
    --red-400:  #f87171;
    --red-500:  #ef4444;
    --amb-400:  #fbbf24;
    --dk-base:  #050e1a;
    --dk-card:  #0c1a2e;
    --dk-menu:  #0a1628;
    --sl-50:    #f8fafc;
    --sl-100:   #f1f5f9;
    --sl-200:   #e2e8f0;
    --sl-300:   #cbd5e1;
    --sl-400:   #94a3b8;
    --sl-500:   #64748b;
    --sl-700:   #334155;
    --sl-800:   #1e293b;
    --sl-900:   #0f172a;
    --text-main: #1e293b;
    --text-sub:  #475569;
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 24px;
    --shadow-sm:  0 4px 14px rgba(0,0,0,.06);
    --shadow-sky: 0 4px 20px rgba(14,165,233,.28);
    --fs-sm:  .9rem;
    --fs-base: 1rem;
    --fs-lg:  1.2rem;

    font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
    font-size: var(--fs-base); color: var(--text-main); line-height: 1.7;
    max-width: 1100px; margin: 0 auto; width: 100%;
}

/* Material Symbols */
#tg-342-wrapper .material-symbols-outlined {
    font-family: 'Material Symbols Outlined', sans-serif;
    font-weight: normal; font-style: normal; font-size: inherit;
    line-height: 1; display: inline-block; white-space: nowrap;
    direction: ltr; -webkit-font-smoothing: antialiased; vertical-align: middle;
}

/* 스크롤 등장 */
#tg-342-wrapper .tg-342-motion { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
#tg-342-wrapper .tg-342-motion.is-visible { opacity: 1; transform: translateY(0); }

/* ═════════════════════════════════════════
   히어로
═════════════════════════════════════════ */
#tg-342-wrapper .tg-342-hero {
    position: relative; background: var(--dk-base);
    border-radius: var(--radius-lg); padding: 64px 28px 72px;
    text-align: center; overflow: hidden;
}
#tg-342-wrapper .tg-342-hero__bg {
    position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(ellipse 68% 52% at 22% 35%, rgba(14,165,233,.2) 0%, transparent 55%),
        radial-gradient(ellipse 55% 45% at 80% 68%, rgba(34,211,238,.14) 0%, transparent 50%);
}

/* 흐르는 라인 */
#tg-342-wrapper .tg-342-hero__lines { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
#tg-342-wrapper .tg-342-hero__line {
    position: absolute; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(14,165,233,.3) 40%, rgba(34,211,238,.2) 60%, transparent);
    animation: tg342LineFlow 4s linear infinite;
}
#tg-342-wrapper .tg-342-hero__line--1 { top: 25%; animation-delay: 0s; }
#tg-342-wrapper .tg-342-hero__line--2 { top: 55%; animation-delay: -1.5s; opacity: .6; }
#tg-342-wrapper .tg-342-hero__line--3 { top: 80%; animation-delay: -2.8s; opacity: .35; }
@keyframes tg342LineFlow {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

#tg-342-wrapper .tg-342-hero__inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
#tg-342-wrapper .tg-342-hero__badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(14,165,233,.15); border: 1px solid rgba(14,165,233,.35);
    color: var(--sky-300); font-size: .85rem; font-weight: 700;
    padding: 6px 18px; border-radius: 999px; margin-bottom: 22px !important;
}
#tg-342-wrapper .tg-342-hero__badge .material-symbols-outlined { font-size: 1.1rem; }
#tg-342-wrapper .tg-342-hero__title {
    font-size: clamp(1.65rem, 4.5vw, 2.4rem); font-weight: 900;
    color: #fff; line-height: 1.35; letter-spacing: -.02em; margin-bottom: 16px;
}
#tg-342-wrapper .tg-342-hero__title em {
    font-style: normal; color: var(--sky-300);
    text-shadow: 0 0 28px rgba(56,189,248,.5);
}
#tg-342-wrapper .tg-342-hero__subtitle {
    color: rgba(255,255,255,.68); line-height: 1.8;
    max-width: 560px; margin: 0 auto 32px !important;
}

/* 히어로 스탯 */
#tg-342-wrapper .tg-342-hero__stats {
    display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap;
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
    padding: 18px 28px; border-radius: 999px; display: inline-flex;
}
#tg-342-wrapper .tg-342-hero__stat { display: flex; flex-direction: column; align-items: center; gap: 3px; }
#tg-342-wrapper .tg-342-hero__stat-val {
    font-size: 1.3rem; font-weight: 900; color: var(--sky-300); line-height: 1;
}
#tg-342-wrapper .tg-342-hero__stat-label { font-size: .72rem; color: rgba(255,255,255,.4); }
#tg-342-wrapper .tg-342-hero__stat-divider { color: rgba(255,255,255,.15); font-size: 1.2rem; }

/* ═════════════════════════════════════════
   레이아웃
═════════════════════════════════════════ */
#tg-342-wrapper .tg-342-main { display: flex; flex-direction: column; gap: 28px; }

/* 도입부 */
#tg-342-wrapper .tg-342-intro {
    background: #fff; border: 1px solid var(--sl-200); border-top: 4px solid var(--sky-500);
    border-radius: var(--radius-md); padding: 36px 28px; text-align: center; box-shadow: var(--shadow-sm);
}
#tg-342-wrapper .tg-342-intro__icon { font-size: 2.4rem; color: var(--sky-500); margin-bottom: 14px; }
#tg-342-wrapper .tg-342-intro__icon .material-symbols-outlined { font-size: 2.4rem; }
#tg-342-wrapper .tg-342-intro__title { font-size: clamp(1.1rem, 2.8vw, 1.35rem); font-weight: 800; color: var(--sl-900); margin-bottom: 14px; letter-spacing: -.01em; }
#tg-342-wrapper .tg-342-intro p { color: var(--text-sub); max-width: 700px; margin-left: auto; margin-right: auto; }

/* 공통 섹션 */
#tg-342-wrapper .tg-342-section {
    background: #fff; border: 1px solid var(--sl-200); border-radius: var(--radius-md);
    padding: 44px 32px; box-shadow: var(--shadow-sm); text-align: center;
}
#tg-342-wrapper .tg-342-section--dark { background: var(--dk-base); border-color: rgba(14,165,233,.15); }
#tg-342-wrapper .tg-342-section__label {
    display: inline-flex; align-items: center; gap: 7px;
    background: var(--sl-100); color: var(--sl-700);
    font-size: .88rem; font-weight: 700; letter-spacing: .03em;
    padding: 7px 20px; border-radius: 999px; margin-bottom: 22px;
}
#tg-342-wrapper .tg-342-section__label--dark { background: rgba(255,255,255,.16); color: #fff; border: 1px solid rgba(255,255,255,.32); }
#tg-342-wrapper .tg-342-section__label--sky  { background: rgba(14,165,233,.08); color: var(--sky-700); }
#tg-342-wrapper .tg-342-section__label .material-symbols-outlined { font-size: 1.1rem; }
#tg-342-wrapper .tg-342-section__title {
    font-size: clamp(1.2rem, 3vw, 1.5rem); font-weight: 900; color: var(--sl-900);
    letter-spacing: -.02em; margin-bottom: 16px;
    display: flex; align-items: center; justify-content: center; gap: 10px;
}
#tg-342-wrapper .tg-342-section__title--light { color: #fff !important; text-shadow: 0 2px 12px rgba(0,0,0,.5); }
#tg-342-wrapper .tg-342-section__title .material-symbols-outlined { font-size: 1.5rem; color: var(--sky-500); }
#tg-342-wrapper .tg-342-section > p, #tg-342-wrapper .tg-342-section__desc--light { max-width: 680px; margin-left: auto; margin-right: auto; }
#tg-342-wrapper .tg-342-section > p { color: var(--text-sub); }
#tg-342-wrapper .tg-342-section__desc--light { color: rgba(255,255,255,.88) !important; margin-bottom: 32px !important; }

/* ═════════════════════════════════════════
   비교 카드
═════════════════════════════════════════ */
#tg-342-wrapper .tg-342-compare {
    display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 10px; text-align: left;
}
#tg-342-wrapper .tg-342-compare__col {
    border-radius: var(--radius-md); padding: 24px;
}
#tg-342-wrapper .tg-342-compare__col--bad {
    background: #fff5f5; border: 2px solid rgba(239,68,68,.2);
}
#tg-342-wrapper .tg-342-compare__col--good {
    background: #f0fdf4; border: 2px solid rgba(34,197,94,.25);
}
#tg-342-wrapper .tg-342-compare__head {
    display: flex; align-items: center; gap: 8px;
    font-size: var(--fs-base); font-weight: 900; color: var(--red-500);
    margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid rgba(239,68,68,.15);
}
#tg-342-wrapper .tg-342-compare__head .material-symbols-outlined { font-size: 1.2rem; }
#tg-342-wrapper .tg-342-compare__head--good { color: var(--grn-500); border-color: rgba(34,197,94,.15); }
#tg-342-wrapper .tg-342-compare__list { display: flex; flex-direction: column; gap: 10px; }
#tg-342-wrapper .tg-342-compare__list li {
    display: flex; align-items: center; gap: 10px;
    font-size: var(--fs-sm); color: var(--text-sub); line-height: 1.5;
}
#tg-342-wrapper .tg-342-compare__x     { color: var(--red-400); font-size: 1rem; font-weight: 900; flex-shrink: 0; }
#tg-342-wrapper .tg-342-compare__check { color: var(--grn-500); font-size: 1rem; font-weight: 900; flex-shrink: 0; }

/* ═════════════════════════════════════════
   인스턴트 뷰 데모
═════════════════════════════════════════ */
#tg-342-wrapper .tg-342-demo {
    display: flex; flex-direction: column; align-items: center; gap: 24px;
}

/* 폰 모형 */
#tg-342-wrapper .tg-342-phone {
    width: 280px; flex-shrink: 0;
    border: 2px solid rgba(255,255,255,.1); border-radius: 32px;
    background: #111; padding: 12px 8px;
    box-shadow: 0 24px 64px rgba(0,0,0,.55);
    position: relative;
}

/* 브라우저 주소창 */
#tg-342-wrapper .tg-342-browser-bar {
    background: #1a2a3a; padding: 8px 10px;
    display: flex; align-items: center; gap: 8px;
    border-radius: 10px 10px 0 0;
}
#tg-342-wrapper .tg-342-browser-bar__url {
    flex: 1; display: flex; align-items: center; gap: 5px;
    background: rgba(255,255,255,.07); border-radius: 6px; padding: 5px 8px;
    font-size: .65rem; color: rgba(255,255,255,.55);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
#tg-342-wrapper .tg-342-browser-bar__url .material-symbols-outlined { font-size: .8rem; color: var(--grn-400); flex-shrink: 0; }
#tg-342-wrapper .tg-342-browser-bar__more {
    flex-shrink: 0; width: 28px; height: 28px; border-radius: 6px;
    background: rgba(14,165,233,.15); border: 1px solid rgba(14,165,233,.3);
    color: var(--sky-300); font-size: 1rem;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s;
}
#tg-342-wrapper .tg-342-browser-bar__more:hover { background: rgba(14,165,233,.28); }
#tg-342-wrapper .tg-342-browser-bar__more .material-symbols-outlined { font-size: 1rem; }

/* 페이지 영역 */
#tg-342-wrapper .tg-342-page {
    background: #f8fafc; min-height: 300px; overflow: hidden; position: relative;
}

/* 광고 */
#tg-342-wrapper .tg-342-ad {
    display: flex; align-items: center; justify-content: center;
    font-size: .7rem; font-weight: 700; color: rgba(185,28,28,.7);
    background: rgba(254,202,202,.5); border: 1px dashed rgba(239,68,68,.35);
}
#tg-342-wrapper .tg-342-ad--banner { height: 36px; }
#tg-342-wrapper .tg-342-ad--rect   { height: 56px; margin: 8px; border-radius: 4px; }
#tg-342-wrapper .tg-342-ad--bottom { height: 44px; }

/* 기사 헤더 */
#tg-342-wrapper .tg-342-article-header { padding: 10px 10px 6px; }
#tg-342-wrapper .tg-342-article-header__cat {
    font-size: .6rem; font-weight: 800; color: var(--sky-600);
    text-transform: uppercase; letter-spacing: .05em; margin-bottom: 4px;
}
#tg-342-wrapper .tg-342-article-header__title {
    font-size: .78rem; font-weight: 800; color: var(--sl-900); line-height: 1.45; margin-bottom: 5px;
}
#tg-342-wrapper .tg-342-article-header__meta {
    font-size: .62rem; color: var(--sl-400);
}

/* 스켈레톤 */
#tg-342-wrapper .tg-342-skeleton {
    background: linear-gradient(90deg, #e2e8f0 25%, #f1f5f9 50%, #e2e8f0 75%);
    background-size: 200% 100%; border-radius: 4px; margin: 6px 10px;
    animation: tg342Shimmer 1.5s infinite;
}
@keyframes tg342Shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
#tg-342-wrapper .tg-342-skeleton--line { height: 8px; }
#tg-342-wrapper .tg-342-skeleton--sm   { width: 70%; height: 8px; }
#tg-342-wrapper .tg-342-skeleton--xs   { width: 50%; height: 8px; }
#tg-342-wrapper .tg-342-skeleton--img  { height: 64px; margin: 8px 10px; border-radius: 6px; }

/* ─── 인스턴트 뷰 페이지 ─── */
#tg-342-wrapper .tg-342-page__iv {
    background: #fff; min-height: 300px;
    animation: tg342IVIn .35s ease;
}
@keyframes tg342IVIn { from { opacity: 0; } to { opacity: 1; } }

#tg-342-wrapper .tg-342-iv-header { padding: 12px 12px 8px; }
#tg-342-wrapper .tg-342-iv-badge {
    display: inline-block; font-size: .6rem; font-weight: 900;
    background: rgba(14,165,233,.1); color: var(--sky-600); border-radius: 4px;
    padding: 2px 8px; margin-bottom: 7px;
}
#tg-342-wrapper .tg-342-iv-title {
    font-size: .82rem; font-weight: 800; color: var(--sl-900); line-height: 1.45; margin-bottom: 5px;
}
#tg-342-wrapper .tg-342-iv-meta { font-size: .62rem; color: var(--sl-400); margin-bottom: 0; }
#tg-342-wrapper .tg-342-iv-img {
    height: 72px; background: linear-gradient(135deg, #e0f2fe, #bae6fd);
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
}
#tg-342-wrapper .tg-342-iv-body { padding: 12px; font-size: .75rem; color: var(--text-sub); line-height: 1.75; }
#tg-342-wrapper .tg-342-iv-body p { margin-bottom: 8px !important; }

/* 팝업 메뉴 */
#tg-342-wrapper .tg-342-menu-popup {
    position: absolute; top: 42px; right: 8px; z-index: 10;
    background: #1e2d42; border: 1px solid rgba(14,165,233,.2);
    border-radius: var(--radius-sm); overflow: hidden;
    box-shadow: 0 12px 36px rgba(0,0,0,.5);
    animation: tg342FadeIn .22s ease;
    width: 200px;
}
#tg-342-wrapper .tg-342-menu-popup__item {
    display: flex; align-items: center; gap: 10px;
    padding: 11px 14px; font-size: .78rem; color: rgba(255,255,255,.75); font-weight: 600;
    transition: background .18s; width: 100%; text-align: left;
}
#tg-342-wrapper .tg-342-menu-popup__item:hover { background: rgba(255,255,255,.08); }
#tg-342-wrapper .tg-342-menu-popup__item--iv { color: var(--sky-300); }
#tg-342-wrapper .tg-342-menu-popup__item--iv:hover { background: rgba(14,165,233,.12); }
#tg-342-wrapper .tg-342-menu-popup__icon { font-size: 1rem; flex-shrink: 0; }
#tg-342-wrapper .tg-342-menu-popup__item .material-symbols-outlined { font-size: .85rem; margin-left: auto; opacity: .35; flex-shrink: 0; }

/* 브라우저 하단 바 */
#tg-342-wrapper .tg-342-browser-bottom {
    background: #1a2a3a; padding: 8px; border-radius: 0 0 10px 10px;
    min-height: 40px; display: flex; align-items: center; justify-content: center;
}
#tg-342-wrapper .tg-342-browser-bottom__toggle {
    display: flex; align-items: center; gap: 6px;
    font-size: .72rem; font-weight: 700; color: rgba(255,255,255,.55);
    padding: 6px 12px; border-radius: 6px;
    background: rgba(255,255,255,.06); transition: background .18s;
}
#tg-342-wrapper .tg-342-browser-bottom__toggle:hover { background: rgba(255,255,255,.12); }
#tg-342-wrapper .tg-342-browser-bottom__toggle .material-symbols-outlined { font-size: .9rem; }

/* 데모 상태 */
#tg-342-wrapper .tg-342-demo-status {
    display: flex; align-items: center; gap: 7px;
    background: rgba(14,165,233,.1); border: 1px solid rgba(14,165,233,.2);
    border-radius: var(--radius-sm); padding: 12px 14px;
    font-size: .85rem; font-weight: 700; color: rgba(255,255,255,.7);
}
#tg-342-wrapper .tg-342-demo-status .material-symbols-outlined { font-size: 1rem; color: var(--sky-400); }
#tg-342-wrapper .tg-342-demo-status--iv {
    background: rgba(34,197,94,.1); border-color: rgba(34,197,94,.25);
    color: var(--grn-400);
}
#tg-342-wrapper .tg-342-demo-status--iv .material-symbols-outlined { color: var(--grn-400); }

/* 데모 안내 */
#tg-342-wrapper .tg-342-demo-info {
    background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-md); padding: 20px 18px;
    width: 100%; max-width: 280px; display: flex; flex-direction: column; gap: 14px;
}
#tg-342-wrapper .tg-342-demo-info__title {
    display: flex; align-items: center; gap: 7px;
    font-size: var(--fs-sm); font-weight: 800; color: var(--sky-300);
    margin-bottom: 0 !important;
}
#tg-342-wrapper .tg-342-demo-info__title .material-symbols-outlined { font-size: 1rem; }
#tg-342-wrapper .tg-342-demo-info__list { display: flex; flex-direction: column; gap: 10px; }
#tg-342-wrapper .tg-342-demo-info__list li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: .84rem; color: rgba(255,255,255,.75); line-height: 1.6;
}
#tg-342-wrapper .tg-342-demo-info__step {
    width: 22px; height: 22px; border-radius: 50%;
    background: rgba(14,165,233,.2); border: 1px solid rgba(14,165,233,.35);
    color: var(--sky-300); font-size: .72rem; font-weight: 900;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* ═════════════════════════════════════════
   탭 가이드
═════════════════════════════════════════ */
#tg-342-wrapper .tg-342-tabs {
    display: flex; gap: 6px; background: var(--sl-100); border-radius: var(--radius-sm);
    padding: 5px; margin-bottom: 26px; flex-wrap: wrap; text-align: left;
}
#tg-342-wrapper .tg-342-tab-btn {
    flex: 1; min-width: 80px;
    display: flex; align-items: center; justify-content: center; gap: 6px;
    padding: 11px 12px; border-radius: 7px;
    font-size: var(--fs-sm); font-weight: 600; color: var(--sl-500);
    transition: background .2s, color .2s, box-shadow .2s;
}
#tg-342-wrapper .tg-342-tab-btn .material-symbols-outlined { font-size: 1.15rem; }
#tg-342-wrapper .tg-342-tab-btn--active { background: #fff; color: var(--sky-700); box-shadow: 0 2px 10px rgba(0,0,0,.09); font-weight: 800; }
#tg-342-wrapper .tg-342-tab-panel { display: none; text-align: left; animation: tg342FadeIn .3s ease; }
#tg-342-wrapper .tg-342-tab-panel--active { display: block; }
#tg-342-wrapper .tg-342-tab-panel__head {
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 22px; padding-bottom: 16px; border-bottom: 1px solid var(--sl-100);
}
#tg-342-wrapper .tg-342-tab-panel__icon {
    width: 54px; height: 54px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.7rem; color: #fff; flex-shrink: 0;
}
#tg-342-wrapper .tg-342-tab-panel__icon--ios     { background: linear-gradient(135deg, #555, #111); }
#tg-342-wrapper .tg-342-tab-panel__icon--android { background: linear-gradient(135deg, #3ddc84, #00ac47); }
#tg-342-wrapper .tg-342-tab-panel__icon--pc      { background: linear-gradient(135deg, var(--sky-500), var(--sky-700)); }
#tg-342-wrapper .tg-342-tab-panel__name { font-size: var(--fs-lg); font-weight: 800; color: var(--sl-900); margin-bottom: 4px; }
#tg-342-wrapper .tg-342-tab-panel__sub { font-size: var(--fs-sm); color: var(--sl-500); margin-bottom: 0 !important; }

/* 단계 목록 */
#tg-342-wrapper .tg-342-steps { display: flex; flex-direction: column; gap: 14px; counter-reset: tg342step; }
#tg-342-wrapper .tg-342-steps li {
    counter-increment: tg342step;
    display: flex; align-items: flex-start; gap: 14px;
    font-size: var(--fs-base); color: var(--text-sub); line-height: 1.75;
}
#tg-342-wrapper .tg-342-steps li::before {
    content: counter(tg342step);
    display: flex; align-items: center; justify-content: center;
    min-width: 30px; height: 30px;
    background: linear-gradient(135deg, var(--sky-500), var(--sky-700));
    color: #fff; font-size: .82rem; font-weight: 900; border-radius: 50%;
    flex-shrink: 0; margin-top: 2px;
}
#tg-342-wrapper .tg-342-steps li strong { color: var(--sl-800); }
#tg-342-wrapper .tg-342-steps li em { font-style: italic; color: var(--sl-400); }

/* 팁 박스 */
#tg-342-wrapper .tg-342-tip-box {
    display: flex; align-items: flex-start; gap: 12px;
    background: rgba(14,165,233,.07); border: 1px solid rgba(14,165,233,.18);
    border-radius: var(--radius-sm); padding: 18px 20px;
    margin-top: 22px; font-size: var(--fs-base); color: var(--text-sub); line-height: 1.75;
}
#tg-342-wrapper .tg-342-tip-box .material-symbols-outlined { font-size: 1.4rem; color: var(--sky-500); flex-shrink: 0; margin-top: 2px; }
#tg-342-wrapper .tg-342-tip-box--highlight {
    background: rgba(234,179,8,.05); border-color: rgba(234,179,8,.18);
}
#tg-342-wrapper .tg-342-tip-box--highlight .material-symbols-outlined { color: #a16207; }

/* ═════════════════════════════════════════
   결론 요약
═════════════════════════════════════════ */
#tg-342-wrapper .tg-342-summary {
    background: linear-gradient(145deg, var(--dk-base), var(--sky-900) 60%, var(--dk-base));
    border: 1px solid rgba(14,165,233,.12);
    border-radius: var(--radius-md); padding: 52px 32px; color: #fff; text-align: center;
}
#tg-342-wrapper .tg-342-summary__title {
    font-size: clamp(1.2rem, 3vw, 1.5rem); font-weight: 900;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    letter-spacing: -.02em; margin-bottom: 16px; color: #fff;
}
#tg-342-wrapper .tg-342-summary__title .material-symbols-outlined { font-size: 1.6rem; color: var(--sky-300); }
#tg-342-wrapper .tg-342-summary__desc {
    color: rgba(255,255,255,.65); margin-bottom: 36px !important;
    max-width: 520px; margin-left: auto; margin-right: auto;
}
#tg-342-wrapper .tg-342-summary__cards {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 40px;
    max-width: 600px; margin-left: auto; margin-right: auto;
}
#tg-342-wrapper .tg-342-summary__card {
    background: rgba(14,165,233,.1); border: 1px solid rgba(14,165,233,.22);
    border-radius: var(--radius-sm); padding: 18px;
    font-size: var(--fs-sm); color: rgba(255,255,255,.85); font-weight: 700;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
}
#tg-342-wrapper .tg-342-summary__card .material-symbols-outlined { font-size: 1.8rem; color: var(--sky-300); }
#tg-342-wrapper .tg-342-footer { border-top: 1px solid rgba(255,255,255,.08); padding-top: 28px; }
#tg-342-wrapper .tg-342-footer__desc { color: rgba(255,255,255,.5); margin-bottom: 20px !important; }
#tg-342-wrapper .tg-342-footer__btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, var(--sky-500), var(--sky-700));
    color: #fff; font-size: var(--fs-base); font-weight: 800;
    padding: 15px 32px; border-radius: 999px; box-shadow: var(--shadow-sky);
    transition: box-shadow .28s, transform .22s;
}
#tg-342-wrapper .tg-342-footer__btn:hover { box-shadow: 0 8px 28px rgba(14,165,233,.5); transform: translateY(-3px); }
#tg-342-wrapper .tg-342-footer__btn .material-symbols-outlined { font-size: 1.1rem; }

@keyframes tg342FadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ═════════════════════════════════════════
   반응형
═════════════════════════════════════════ */
@media (min-width: 580px) { #tg-342-wrapper .tg-342-compare { grid-template-columns: 1fr 1fr; } }
@media (min-width: 768px) { #tg-342-wrapper .tg-342-demo { flex-direction: row; align-items: flex-start; justify-content: center; gap: 32px; } }
@media (min-width: 900px) {
    #tg-342-wrapper .tg-342-hero { padding: 80px 56px 90px; }
    #tg-342-wrapper .tg-342-section, #tg-342-wrapper .tg-342-intro { padding: 52px 48px; }
    #tg-342-wrapper .tg-342-summary { padding: 60px 56px; }
    #tg-342-wrapper .tg-342-summary__cards { grid-template-columns: repeat(4, 1fr); }
}
