.erp-inner-hero {
    min-height: auto;
    padding-top: 60px;
}

.erp-hero-card {
    background: rgba(255, 255, 255, .5);
}

.erp-modules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.erp-module-card {
    background: rgba(255, 255, 255, .56);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(214, 230, 247, .95);
    box-shadow: var(--shadow-soft);
    border-radius: 30px;
    overflow: hidden;
    transition: .3s ease;
}

.erp-module-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 55px rgba(31, 110, 255, .14);
}

.erp-module-image {
    height: 260px;
    overflow: hidden;
}

.erp-module-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s ease;
}

.erp-module-card:hover .erp-module-image img {
    transform: scale(1.06);
}

.erp-module-content {
    padding: 24px;
}

.erp-module-tag {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .72);
    border: 1px solid var(--border);
    color: #2d70d8;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 14px;
}

.erp-module-content h3 {
    margin: 0 0 12px;
    font-size: 25px;
    color: #17314d;
}

.erp-module-content p {
    margin: 0;
    color: var(--muted);
    line-height: 1.9;
}

.erp-module-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 18px;
}

.erp-module-points div {
    background: rgba(255, 255, 255, .72);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 14px 10px;
    text-align: center;
    font-weight: 800;
    color: #315172;
    box-shadow: var(--shadow-soft);
    font-size: 14px;
}

@media (max-width: 1100px) {
    .erp-modules-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .erp-module-image {
        height: 220px;
    }

    .erp-module-points {
        grid-template-columns: 1fr;
    }
}