/* =============================================
   [1] 히어로 영역
   ============================================= */
.albup-hero,
.albup-hero *,
.quick-links-section,
.quick-links-section * {
    font-family: "Apple SD Gothic Neo", AppleSDGothicNeo,
        -apple-system, BlinkMacSystemFont,
        "Noto Sans KR", "Segoe UI",
        system-ui, sans-serif !important;
}

.albup-hero {
    position: relative;
    max-width: 1040px;
    margin: 0 auto 30px;
    padding: 0 24px;
}

.albup-hero__inner {
    position: relative;
    background: #ffffff;
    border: 1px solid #E8EBF0;
    border-radius: 20px;
    padding: 48px 40px 44px;
    text-align: center;
    overflow: hidden;
    box-shadow:
        0 1px 3px rgba(15, 23, 42, 0.04),
        0 8px 32px rgba(15, 23, 42, 0.06);
}

.albup-hero__inner::before {
    content: '';
    position: absolute;
    top: -60%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.albup-hero__inner > * {
    position: relative;
    z-index: 1;
}

/* 신뢰 배지 */
.hero-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #FFF8E7;
    border: 1px solid #F5DFA0;
    color: #92700C;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 100px;
    line-height: 1;
    letter-spacing: -0.02em;
}

.hero-badge svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
}

/* 모바일: 배지 2개 → 1개로 합치기 */
.hero-badge--combined {
    display: none;
}

@media (max-width: 480px) {
    .hero-badge--separate {
        display: none !important;
    }

    .hero-badge--combined {
        display: inline-flex !important;
    }
}
.hero-headline {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.04em;
    color: #111827;
    margin-bottom: 10px;
}

.hero-headline .accent {
    color: #2563EB;
    position: relative;
}

.hero-headline .accent::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 8px;
    background: rgba(37, 99, 235, 0.12);
    border-radius: 4px;
    z-index: -1;
}

.hero-sub {
    font-size: 15px;
    font-weight: 400;
    color: #6B7280;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
    line-height: 1.5;
}

.hero-sub strong {
    font-weight: 600;
    color: #4B5563;
}

/* CTA 버튼 */
.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-btn-primary {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 210px;
    padding: 16px 32px;
    border-radius: 14px;
    background: #2563EB;
    color: #ffffff;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow:
        0 2px 8px rgba(37, 99, 235, 0.25),
        0 8px 24px rgba(37, 99, 235, 0.15);
}

.hero-btn-primary .btn-main {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-btn-primary .btn-sub {
    font-size: 12px;
    font-weight: 400;
    opacity: 0.85;
    margin-top: 4px;
}

.hero-btn-secondary {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 210px;
    padding: 16px 32px;
    border-radius: 14px;
    background: #ffffff;
    border: 1.5px solid #D1D5DB;
    color: #374151;
    text-decoration: none;
    cursor: pointer;
}

.hero-btn-secondary .btn-main {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-btn-secondary .btn-sub {
    font-size: 12px;
    font-weight: 500;
    color: #2563EB;
    margin-top: 6px;
}

/* hover 시 글자색 변경 방지 (사이트 기본 a:hover 오버라이드) */
.hero-btn-primary:hover,
.hero-btn-primary:hover .btn-main,
.hero-btn-primary:hover .btn-sub {
    color: #ffffff;
    text-decoration: none;
}

.hero-btn-secondary:hover,
.hero-btn-secondary:hover .btn-main {
    color: #374151;
    text-decoration: none;
}

.hero-btn-secondary:hover .btn-sub {
    color: #2563EB;
    text-decoration: none;
}

.quick-link:hover,
.quick-link:hover .quick-link__title {
    color: #111827;
    text-decoration: none;
}

.quick-link:hover .quick-link__desc {
    color: #9CA3AF;
    text-decoration: none;
}


/* =============================================
   [2] AI진단 + 판례검색 바로가기
   ============================================= */
.quick-links-section {
    max-width: 1040px;
    margin: 30px auto 0;
    padding: 0 24px;
}

.quick-links-heading {
    font-size: 20px;
    font-weight: 600;
    color: #6B7280;
    letter-spacing: -0.02em;
    text-align: center;
    margin-bottom: 12px;
}

.quick-links {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border: 1px solid #E8EBF0;
    border-radius: 14px;
    padding: 14px 24px;
    text-decoration: none;
    color: #374151;
    min-width: 200px;
    cursor: pointer;
}

.quick-link__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quick-link__icon--ai {
    background: #EFF6FF;
    color: #2563EB;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: -0.5px;
    line-height: 1;
    position: relative;
}

.quick-link__icon--ai::after {
    content: '!';
    position: absolute;
    top: -3px;
    right: -3px;
    width: 16px;
    height: 16px;
    background: #DC2626;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    line-height: 1;
}

.quick-link__icon--case {
    background: #EFF6FF;
    color: #2563EB;
}

.quick-link__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.quick-link__title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #111827;
}

.quick-link__desc {
    font-size: 12px;
    font-weight: 400;
    color: #9CA3AF;
    letter-spacing: -0.01em;
    margin-top: 6px;
}


/* =============================================
   [3] 히어로 + 바로가기 모바일 반응형
   ============================================= */
@media (max-width: 768px) {
    .albup-hero {
        padding: 0 16px;
        margin-top: 8px;
    }

    .albup-hero__inner {
        padding: 32px 20px 28px;
        border-radius: 16px;
    }

    .hero-badges {
        margin-bottom: 18px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 4px 10px;
    }

    .hero-headline {
        font-size: 24px;
        line-height: 1.4;
        margin-bottom: 8px;
    }

    .hero-headline .accent::after {
        height: 6px;
        bottom: 1px;
    }

    .hero-sub {
        font-size: 13px;
        margin-bottom: 24px;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 0 8px;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        min-width: unset;
        width: 100%;
        padding: 14px 20px;
        border-radius: 12px;
    }

    .hero-btn-primary .btn-main {
        font-size: 15px;
    }

    .hero-btn-secondary .btn-main {
        font-size: 14px;
    }

    .quick-links-section {
        padding: 0 16px;
        margin-top: 14px;
    }

    .quick-links-heading {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .quick-links {
        gap: 10px;
    }

    .quick-link {
        flex: 1 1 0;
        min-width: unset;
        padding: 12px 14px;
        border-radius: 12px;
        gap: 8px;
    }

    .quick-link__icon {
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }

    .quick-link__icon--ai {
        font-size: 14px;
    }

    .quick-link__title {
        font-size: 14px;
    }

    .quick-link__desc {
        display: none;
    }
}

@media (max-width: 360px) {
    .hero-headline {
        font-size: 21px;
    }

    .hero-badge {
        font-size: 10px;
        padding: 3px 8px;
    }

    .quick-link {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 12px 10px;
    }
}