@charset "UTF-8";

/* ==========================================================================
   Asolv Hub Page Styles
   ========================================================================== */

/* 1. Hero Section: 웅장하고 신뢰감 있는 디자인 */
.asolv-hero {
    padding: 9rem 0 7rem 0;
    background: radial-gradient(circle at 50% 50%, #ffffff 0%, #f8f9fa 100%);
}

.asolv-slogan {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 1.5rem;
    display: inline-block;
    border-bottom: 2px solid #000;
    padding-bottom: 5px;
}

.asolv-title {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.15;
    margin-bottom: 2rem;
    color: #000;
}

@media (max-width: 768px) {
    .asolv-title { font-size: 2.8rem; }
    .asolv-hero { padding: 6rem 0 5rem 0; }
}

/* 2. Product Card: 제품 목록 카드 스타일 */
.product-grid {
    margin-top: -4rem; /* Hero 섹션 위로 살짝 겹치게 */
    position: relative;
    z-index: 10;
}

.product-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: #000;
}

.card-header-img {
    height: 220px;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.card-body {
    padding: 2.5rem 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* 제품 상태 뱃지 */
.prod-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.4em 0.8em;
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.badge-live { color: #03c75a; border: 1px solid #03c75a; }
.badge-dev { color: #f55320; border: 1px solid #f55320; }
.badge-plan { color: #999; border: 1px solid #ddd; }

/* 3. Value Section: 회사 가치 소개 (검은 배경) */
.value-section {
    padding: 7rem 0;
    background-color: #000;
    color: #fff;
    margin-top: 5rem;
}

.value-box {
    padding: 2rem;
    border-left: 1px solid rgba(255,255,255,0.2);
    height: 100%;
}

.value-num {
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(255,255,255,0.1); /* 투명한 흰색 */
    line-height: 1;
    margin-bottom: 1.5rem;
}

.value-box h4 {
    color: #fff;
    font-size: 1.5rem;
}

.value-box p {
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin-bottom: 0;
}

/* 링크 버튼 커스텀 */
.btn-link-custom {
    text-decoration: none;
    color: #000;
    font-weight: 800;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    margin-top: auto;
    transition: margin-left 0.2s ease;
}
.btn-link-custom:hover {
    text-decoration: underline;
    margin-left: 5px; /* 호버 시 살짝 이동 */
}