@charset "utf-8";

/* Reset & Base for new sections */
.new-section-wrap {
    font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    color: #fff;
    background-color: #07080E;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    /* 모바일 가로 스크롤 완벽 차단 */
}

.new-section-wrap * {
    box-sizing: border-box;
}

/* Common Classes */
.inner-container {
    width: 100%;
    max-width: 1200px;
    /* 모바일에서 삐져나가지 않도록 강제 제한 */
    padding: 0 16px;
    /* 좌우 화면 터치 방지 여백 */
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.section-title-wrap {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #a1a1aa;
    margin-top: 12px;
}

/* ------------------------------------- */
/* SECTION 1: HERO                       */
/* ------------------------------------- */
.hero-sec {
    position: relative;
    width: 100%;
    height: 700px;
    background: radial-gradient(circle at 70% 50%, #1e1b2e 0%, #07080E 60%);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-text-box {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #a1a1aa;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.hero-title {
    font-size: 4.8rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -0.04em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-desc {
    font-size: 1.1rem;
    color: #d4d4d8;
    line-height: 1.6;
    margin-top: 10px;
    word-break: keep-all;
}

.hero-btn-group {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-btn-red {
    background: linear-gradient(90deg, #d32f2f, #e53935);
    color: #fff;
    box-shadow: 0 4px 14px rgba(229, 57, 53, 0.4);
    border: none;
}

.hero-btn-red:hover {
    box-shadow: 0 6px 20px rgba(229, 57, 53, 0.6);
    transform: translateY(-2px);
    color: #fff;
}

.hero-btn-dark {
    background: transparent;
    color: #fff;
    border: 1px solid #52525b;
}

.hero-btn-dark:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #a1a1aa;
    transform: translateY(-2px);
    color: #fff;
}

.hero-image-box {
    width: 600px;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.hero-pc-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 0 40px rgba(139, 92, 246, 0.4));
    border-radius: 20px;
    mix-blend-mode: screen;
}

/* SECTION 1.5: STATS STRIP */
.stats-strip {
    width: 100%;
    background-color: #0D0E14;
    border-top: 1px solid #1f222b;
    border-bottom: 1px solid #1f222b;
    padding: 24px 0;
    display: flex;
    justify-content: center;
}

.stats-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #a1a1aa;
    font-size: 1.05rem;
    font-weight: 500;
}

.stat-check {
    color: #e53935;
    font-weight: bold;
}

/* Global Responsive Adjustments */
@media (max-width: 1240px) {
    .inner-container {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* Prevent any element from causing horizontal scroll */
@media (max-width: 768px) {
    .new-section-wrap {
        overflow-x: hidden;
    }

    .inner-container {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (max-width: 480px) {
    .inner-container {
        padding-left: 12px;
        padding-right: 12px;
    }
}

/* Global Responsive Adjustments for Section Titles */
@media (max-width: 768px) {
    html body .he-title,
    html body .install-title,
    html body .reasons-title,
    html body .cpc-title,
    html body .vp-title,
    html body .gallery-title,
    html body .delivery-title,
    html body .section-title,
    html body .bb-title,
    html body .peri-title {
        font-size: 24px !important;
    }

    /* Subtitles & Descriptions */
    html body .he-subtitle,
    html body .install-subtitle,
    html body .reasons-subtitle,
    html body .cpc-subtitle,
    html body .vp-subtitle,
    html body .gallery-subtitle,
    html body .delivery-subtitle,
    html body .bb-subtitle,
    html body .peri-subtitle,
    html body .section-subtitle,
    html body .gallery-sub-heading {
        font-size: 13px !important;
        line-height: 1.5 !important;
    }

    /* Card & Product Titles */
    html body .cpc-name,
    html body .he-feat-name,
    html body .peri-name,
    html body .product-title,
    html body .review-product,
    html body .delivery-card-title {
        font-size: 15px !important;
        margin-bottom: 4px !important;
    }

    html body .delivery-card-type {
        font-size: 12px !important;
    }

    html body .delivery-feature-item {
        font-size: 13px !important;
    }

    /* Prices */
    html body .cpc-price-new,
    html body .he-feat-price,
    html body .peri-price,
    html body .product-price-new,
    html body .product-price {
        font-size: 18px !important;
    }

    /* Buttons */
    html body .he-feat-btn,
    html body .cpc-banner-btn,
    html body .rec-btn,
    html body .btn-cart {
        font-size: 13px !important;
        padding: 10px 16px !important;
    }
}