html {
    scroll-behavior: smooth;
}

/* Hero Section Scoped Styles */
.hero-sec-new {
    position: relative;
    background-color: #090A10;
    color: #fff;
    padding: 0;
    min-height: 800px;
    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;
}

.hero-inner-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding-top: 40px;
}

.hero-text-box-new {
    max-width: 650px;
    z-index: 2;
}

.hero-subtitle-new {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.hero-subtitle-new .subtitle-text {
    color: #FF1F23;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.hero-subtitle-new .dot {
    margin: 0 4px;
    opacity: 0.6;
}

.hero-subtitle-new .subtitle-line {
    width: 40px;
    height: 1px;
    background-color: #431E21;
}

.hero-title-new {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin: 0 0 28px 0;
    color: #FFFFFF;
}

.hero-title-new .text-red {
    color: #FF1F23;
}

.hero-desc-new {
    font-size: 16px;
    color: #8C8F9E;
    line-height: 1.6;
    margin-bottom: 40px;
    letter-spacing: -0.01em;
    font-weight: 400;
}

.hero-btn-group-new {
    display: flex;
    gap: 16px;
    margin-bottom: 54px;
}

.hero-btn-group-new a {
    text-decoration: none;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #FF1F23;
    color: white;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 6px;
    transition: all 0.2s ease;
    border: none;
}

.btn-primary:hover {
    background-color: #F01015;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 62, 66, 0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: #E2E4EB;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: 6px;
    border: 1px solid #2B2E38;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background-color: #1A1C23;
    border-color: #404452;
    color: white;
}

.hero-stats-new {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 18px;
    width: 100%;
}

.stat-item {
    display: flex;
    align-items: center;
    color: #8C8F9E;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    background-color: #FF1F23;
    color: white;
    font-size: 9px;
    font-weight: bold;
    border-radius: 50%;
    margin-right: 6px;
}

.hero-image-box-new {
    position: relative;
    width: 550px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glow-bg-new {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(50% 50% at 50% 50%, rgba(210, 225, 255, 0.4) 0%, rgba(180, 200, 255, 0.2) 40%, rgba(0, 0, 0, 0) 80%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.hero-pc-img-new {
    position: relative;
    z-index: 2;
    max-width: 100%;
    filter: drop-shadow(0 15px 45px rgba(0, 0, 0, 0.6));
}

/* Responsive */
@media (max-width: 100%) {
    .hero-inner-new {
        width: 100%;
        padding: 60px 20px 40px;
    }
}

@media (max-width: 1024px) {
    .hero-sec-new {
        min-height: auto;
    }

    .hero-inner-new {
        flex-direction: column-reverse;
        text-align: center;
        padding: 60px 20px;
        gap: 40px;
    }

    .hero-text-box-new {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 100%;
    }

    .hero-stats-new {
        display: none !important;
        /* 창 축소 시 가독성 위해 즉시 숨김 */
    }

    .hero-image-box-new {
        width: 100%;
        max-width: 450px;
    }

    .hero-desc-new,
    .hero-subtitle-new {
        display: none !important;
    }

    .hero-title-new {
        font-size: 38px !important;
        line-height: 1.3 !important;
        word-break: keep-all;
    }

    .hero-title-new br {
        display: none;
    }

    .hero-btn-group-new {
        flex-direction: row;
        width: 100%;
        gap: 12px !important;
        margin-top: 16px;
    }

    .btn-primary,
    .btn-secondary {
        flex: 1;
        justify-content: center;
        font-size: 15px !important;
        font-weight: bold !important;
        padding: 14px 10px !important;
        white-space: nowrap;
    }
}

@media (max-width: 768px) {
    .hero-title-new {
        font-size: 32px !important;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .hero-title-new {
        font-size: 6.5vw !important;
        margin-bottom: 20px !important;
        white-space: nowrap;
    }

    .hero-inner-new {
        padding: 30px 0 !important;
        /* 좌우 여백은 부모 inner-container에 맡김 */
    }
}