.scpav-hm1111 {
    text-align: center;
    padding-top: 1rem;
    margin-bottom: 3.5rem;
}

.scpav-hm1111 h1 {
    font-size: clamp(2.3rem, 4vw, 3.4rem);
    font-weight: 700;
    letter-spacing: -1px;
    background: var(--site-gradient-black);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hm1111-accent {
    font-weight: 700;
    margin-left: 6px;
    background: var(--site-gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.scpav-hm1111 p {
    color: #666;
    margin-top: 0.8rem;
    font-size: 1.05rem;
}

.scpav-hm1121 h2 {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    color: var(--black);
}

.scpav-hm1122 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.hm1122-card {
    background: var(--white);
    border-radius: 14px;
    padding: 1.2rem;
    border: 1px solid var(--gray-200);
    text-decoration: none;
    color: var(--black);
    transition: all 0.2s ease;
    text-align: center;
}

.hm1122-card:hover {
    border-color: var(--blue-300);
    background: #FAFAFC;
    transform: translateY(-3px);
}

.hm1122-card h3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
    gap: 0.4rem;
}

.hm1122-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hm1122-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--blue-400);
    transition: 0.3s ease;
}

.hm1122-card:hover .hm1122-icon svg {
    transform: scale(1.1);
}

.hm1122-card p {
    font-size: 0.85rem;
    color: #777;
}

.scpav-hm1131 {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.scpav-hm1131 h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.scpav-hm1131 p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.hm1131-btn {
    background: #2e2e2e;
    color: #fff;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    line-height: 1;
    user-select: none;
}

.hm1131-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hm1131-btn span {
    display: flex;
    align-items: center;
}

.hm1131-icon svg {
    width: 16px;
    height: 16px;
    fill: #fff;
    transition: 0.3s ease;
}

.hm1131-btn:hover .hm1131-icon svg {
    transform: translateX(3px);
}

@media (max-width: 900px) {
    .scpav-hm1111 {
        padding-top: 0;
    }

    .scpav-hm1122 {
        grid-template-columns: repeat(2, 1fr);
    }
}