@charset "utf-8";

/* ============================================================
   텔레그램 웹(Web) 버전 콘텐츠 스킨 스타일
   Prefix: tg-web-  (기존 사이트 스타일 격리)
   ============================================================ */

/* ── 상단 탭 네비게이션 ── */
.tg-web-tabs {
    padding: 0 20px;
    max-width: 960px;
    margin: 0 auto 40px;
}

.tg-web-tabs .row {
    gap: 0;
}

/* ── 히어로 헤더 ── */
.tg-web-hero {
    text-align: center;
    padding: 56px 24px 40px;
    max-width: 800px;
    margin: 0 auto;
}

.tg-web-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 40px;
    background: #f0f9ff;
    color: #0088cc;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 136, 204, 0.10);
}

.tg-web-hero__badge .material-symbols-outlined {
    font-size: 18px;
}

.tg-web-hero__title {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a2e;
    letter-spacing: -1px;
    margin: 0 0 16px;
    line-height: 1.35;
}

.tg-web-hero__desc {
    font-size: 16px;
    line-height: 1.75;
    color: #555;
    margin: 0 0 8px;
}

.tg-web-hero__sub {
    font-size: 14px;
    color: #888;
    margin: 0;
}

/* ── 알림 배너 ── */
.tg-web-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 640px;
    margin: 28px auto 0;
    padding: 14px 20px;
    border-radius: 12px;
    background: linear-gradient(135deg, #fff3e6 0%, #ffe8cc 100%);
    border: 1px solid #ffd6a5;
    font-size: 14px;
    color: #8a5a00;
    line-height: 1.6;
}

.tg-web-notice .material-symbols-outlined {
    font-size: 22px;
    color: #e67e22;
    flex-shrink: 0;
}

/* ── 버전 카드 그리드 ── */
.tg-web-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.tg-web-card {
    background: #ffffff;
    border: 1px solid #e8edf2;
    border-radius: 16px;
    padding: 40px 32px 36px;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}

.tg-web-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 16px 16px 0 0;
}

.tg-web-card--k::before {
    background: linear-gradient(90deg, #0088cc, #33a0d8);
}

.tg-web-card--z::before {
    background: linear-gradient(90deg, #e67e22, #f39c12);
}

.tg-web-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.tg-web-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
}

.tg-web-card--k .tg-web-card__icon {
    background: #e8f4fd;
    color: #0088cc;
}

.tg-web-card--z .tg-web-card__icon {
    background: #fef3e6;
    color: #e67e22;
}

.tg-web-card__label {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.tg-web-card--k .tg-web-card__label {
    background: #e8f4fd;
    color: #0077b3;
}

.tg-web-card--z .tg-web-card__label {
    background: #fef3e6;
    color: #c56d00;
}

.tg-web-card__name {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 8px;
    letter-spacing: -0.5px;
}

.tg-web-card__desc {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin: 0 0 24px;
    min-height: 48px;
}

.tg-web-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    text-align: left;
}

.tg-web-card__features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 13px;
    color: #4a4a6a;
    border-bottom: 1px solid #f5f5f5;
}

.tg-web-card__features li:last-child {
    border-bottom: none;
}

.tg-web-card__features .material-symbols-outlined {
    font-size: 18px;
    color: #1abc9c;
    flex-shrink: 0;
}

.tg-web-card__btn {
    display: block;
    width: 100%;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none !important;
    text-align: center;
    transition: background-color 0.2s ease, transform 0.15s ease;
    cursor: pointer;
    border: none;
}

.tg-web-card__btn:active {
    transform: scale(0.97);
}

.tg-web-card--k .tg-web-card__btn {
    background: #0088cc;
    color: #ffffff;
}

.tg-web-card--k .tg-web-card__btn:hover {
    background: #006ea6;
    color: #ffffff;
}

.tg-web-card--z .tg-web-card__btn {
    background: #e67e22;
    color: #ffffff;
}

.tg-web-card--z .tg-web-card__btn:hover {
    background: #cf6d12;
    color: #ffffff;
}

/* ── 하단 안내 ── */
.tg-web-info {
    max-width: 760px;
    margin: 48px auto 0;
    padding: 0 20px;
}

.tg-web-info__section {
    margin-bottom: 36px;
}

.tg-web-info__title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 16px;
    letter-spacing: -0.3px;
}

.tg-web-info__title .material-symbols-outlined {
    font-size: 22px;
    color: #0088cc;
}

.tg-web-info__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tg-web-info__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
    line-height: 1.7;
    color: #4a4a6a;
    border-bottom: 1px solid #f1f3f5;
}

.tg-web-info__list li:last-child {
    border-bottom: none;
}

.tg-web-info__list .material-symbols-outlined {
    font-size: 18px;
    color: #1abc9c;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── 비교 테이블 ── */
.tg-web-compare {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 20px;
}

.tg-web-compare__table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #e8edf2;
    border-radius: 12px;
    overflow: hidden;
    font-size: 14px;
}

.tg-web-compare__table thead th {
    background: #f8fafc;
    padding: 14px 16px;
    font-weight: 700;
    color: #1a1a2e;
    border-bottom: 2px solid #e8edf2;
    text-align: center;
}

.tg-web-compare__table thead th:first-child {
    text-align: left;
}

.tg-web-compare__table tbody td {
    padding: 12px 16px;
    color: #4a4a6a;
    border-bottom: 1px solid #f1f3f5;
    text-align: center;
}

.tg-web-compare__table tbody td:first-child {
    text-align: left;
    font-weight: 600;
    color: #1a1a2e;
}

.tg-web-compare__table tbody tr:last-child td {
    border-bottom: none;
}

.tg-web-compare__table .material-symbols-outlined {
    font-size: 18px;
    vertical-align: middle;
}

.tg-web-compare__table .tg-web-yes {
    color: #1abc9c;
}

.tg-web-compare__table .tg-web-no {
    color: #ccc;
}

/* ── 하단 CTA 링크 ── */
.tg-web-bottom-cta {
    max-width: 760px;
    margin: 40px auto 0;
    padding: 0 20px;
    text-align: center;
}

.tg-web-bottom-cta__text {
    font-size: 14px;
    color: #888;
    margin: 0 0 16px;
}

.tg-web-bottom-cta__links {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.tg-web-bottom-cta__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 10px;
    background: #f5f5f5;
    color: #28373b !important;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    transition: background-color 0.2s ease;
}

.tg-web-bottom-cta__link:hover {
    background: #28373b;
    color: #ffffff !important;
}

.tg-web-bottom-cta__link .material-symbols-outlined {
    font-size: 18px;
}



/* ── 반응형 ── */
@media (max-width: 767px) {
    .tg-web-hero {
        padding: 36px 16px 28px;
    }

    .tg-web-hero__title {
        font-size: 24px;
    }

    .tg-web-hero__desc {
        font-size: 15px;
    }

    .tg-web-cards {
        grid-template-columns: 1fr;
        padding: 0 16px;
    }

    .tg-web-card {
        padding: 32px 24px 28px;
    }

    .tg-web-card__desc {
        min-height: auto;
    }

    .tg-web-info {
        padding: 0 16px;
    }

    .tg-web-compare {
        padding: 0 16px;
    }

    .tg-web-compare__table {
        font-size: 13px;
    }

    .tg-web-compare__table thead th,
    .tg-web-compare__table tbody td {
        padding: 10px 10px;
    }

    .tg-web-tabs {
        padding: 0 16px;
    }

    .tg-web-bottom-cta {
        padding: 0 16px;
    }
}
