body {
    padding-bottom: 200px;
}

/* ===== Internet Page ===== */
.net-page {
    padding: 50px 0 100px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.net-title-wrap {
    display: flex;
    align-items: flex-end;
    gap: 8px;
}

.net-title {
    font-size: 36px;
    font-weight: 600;
    color: #1e1e1e;
    letter-spacing: -0.72px;
    line-height: 1;
    margin: 0;
}

.net-title-wrap .dot-accent {
    margin-left: 0;
    margin-bottom: 6px;
}

.net-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.net-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.net-section-title {
    font-size: 32px;
    font-weight: 600;
    color: #111;
    letter-spacing: -0.64px;
    line-height: 1.5;
    margin: 0;
}

/* ===== 카드 (인터넷·TV 통합) ===== */
.net-card {
    width: 100%;
    /* max-width: 350px; */
    aspect-ratio: 350/236;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: border-color 0.15s, background 0.15s;
    overflow: hidden;
}

.net-card:hover {
    border-color: #b8e9e8;
}

.net-card.is-active {
    border-color: transparent;
    background: linear-gradient(116.95deg, #1488E8 -85.14%, #00B2B0 101.66%);
}

.net-card .net-bg {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 30px 22px;
    background: #fff;
    font-family: inherit;
}

.net-card.is-active .net-bg {
    background: #f8ffff;
}

.net-card-top {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.net-tag {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    letter-spacing: -0.32px;
    line-height: 1.5;
}

.net-data {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    margin: 0;
}

.net-data-num {
    font-size: 32px;
    font-weight: 600;
    color: #111;
    letter-spacing: -0.64px;
    line-height: 1.5;
}

.net-data-unit {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    letter-spacing: -0.36px;
    line-height: 1.5;
    padding: 5px 0;
}

.net-desc {
    font-size: 16px;
    font-weight: 400;
    color: #555;
    letter-spacing: -0.32px;
    line-height: 1.5;
    margin: 0;
}

.net-price {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 6px;
    margin: 0;
}

.net-price-unit {
    font-size: 20px;
    font-weight: 500;
    color: #333;
    letter-spacing: -0.4px;
    line-height: 1.5;
    padding: 6px 0;
}

.net-price-num {
    font-size: 32px;
    font-weight: 600;
    color: #00b2b0;
    letter-spacing: -0.64px;
    line-height: 1.5;
}

/* 인터넷 / TV 스와이퍼 */
.net-swiper,
.tv-swiper {
    width: 100%;
}

/* ===== 가이드 ===== */
.net-guide {
    background: #f3f3f3;
    padding: 100px 0;
}

/* 가이드 헤더 (그라디언트 배너) */
.guide-header {
    background: linear-gradient(95.6deg, #00b2b0 0%, #133eea 202%);
    padding: 40px 100px;
    color: #fff;
}

.guide-header-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.72px;
    line-height: 1.5;
    margin-bottom: 6px;
}

.guide-header-sub {
    font-size: 22px;
    font-weight: 600;
    color: #f3f3f3;
    letter-spacing: -0.44px;
    line-height: 1.5;
}

.guide-wrap {
    background: #fff;
    padding: 80px 100px;
}

.guide-body {
    margin-bottom: 120px;
}


/* 끝 로고 */
.guide-end {
    text-align: center;
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
}

.guide-end-logo {
    height: 42px;
    width: auto;
}

.guide-end-text {
    font-size: 32px;
    font-weight: 600;
    color: #111;
    letter-spacing: -1px;
    line-height: 1.5;
}

.guide-end-tel {
    font-size: 52px;
    font-weight: 600;
    color: #00b2b0;
    letter-spacing: -1.04px;
    line-height: 1.5;
}

/* ===== 고객후기 ===== */

.review-swiper {
    width: 100%;
}

.review-swiper .swiper-slide {
    /* width: 284px; */
}

.net-page .swiper-slide {
    width: 350px;
}


/* ===== Tablet ===== */
@media screen and (max-width:1023px) {
    body {
        padding-bottom: 140px;
    }
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
    body {
        padding-bottom: 84px;
    }

    .net-page {
        padding: 45px 0 60px;
        gap: 40px;
    }

    .net-title {
        font-size: 24px;
    }

    .net-section-title {
        font-size: 20px;
    }

    .net-card {
        aspect-ratio: 200/158;
        border-radius: 10px;
    }

    .net-card .net-bg {
        padding: 16px 16px 12px;
    }

    .net-card-top {
        gap: 2px;
    }

    .net-tag {
        font-size: 14px;
    }

    .net-data {
        gap: 4px;
    }

    .net-data-num {
        font-size: 20px;
    }

    .net-data-unit {
        font-size: 14px;
        padding: 2px;
    }

    .net-desc {
        font-size: 13px;
    }

    .net-price {
        gap: 3px;
    }

    .net-price-unit {
        font-size: 13px;
        padding: 3px 0;
        line-height: 1.2;
    }

    .net-price-num {
        font-size: 20px;
        line-height: 1.2;
    }

    /* 가이드 모바일 */
    .net-guide {
        padding: 0 0 20px;
    }

    .guide-header {
        padding: 30px 20px;
        width: calc(100% + 48px);
        margin-left: -24px;
    }

    .guide-header-title {
        font-size: 24px;
        margin-bottom: 4px;
    }

    .guide-header-sub {
        font-size: 18px;
    }

    .guide-wrap {
        padding: 60px 24px;
        width: calc(100% + 48px);
        margin-left: -24px;
    }

    .guide-body {
        margin-bottom: 60px;
    }

    /* 끝 로고 */
    .guide-end {
        padding: 20px 0;
        gap: 20px;
    }

    .guide-end-logo {
        height: 28px;
    }

    .guide-end-text {
        font-size: 24px;
    }

    .guide-end-tel {
        font-size: 32px;
    }

    .net-page .swiper-slide {
        width: 200px;
    }

    /* 후기 모바일 */
}