.software-card-wrapper {
    margin-bottom: 32px;
}
.software-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    position: relative;
    transition: all .3s ease;
     display: block;        /* Makes anchor behave like a block card */
    text-decoration: none; /* Removes underline */
    color: inherit
}

.software-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

.icon-box {
    width: 58px;
    height: 58px;
    background: rgba(255,0,0,0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e60000;
    font-size: 26px;
    margin-bottom: 12px;
}

.status-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: #e60000;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.card-desc {
    font-size: 14px;
    color: #555;
    margin-bottom: 14px;
}

.feat-list {
    padding-left: 18px;
}

.feat-list li {
    font-size: 14px;
    margin-bottom: 6px;
    position: relative;
}

.feat-list li::marker {
    color: #e60000;
}
.mix {
    margin-bottom: 35px !important;
}

/* For smooth mixitup animation */
.mixitup-container .mix {
    display: none;
}
/* FULL WIDTH CTA */
.cta-fullwidth {
    width: 100%;
    padding: 80px 20px;
    margin-top: 70px;
    text-align: center;
    background: linear-gradient(to right, #ffe6e6, #fff5f5);
}

.cta-fullwidth h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.cta-fullwidth p {
    font-size: 17px;
    color: #555;
    margin-bottom: 30px;
}

/* Buttons */
.cta-buttons .btn-demo,
.cta-buttons .btn-sales {
    padding: 12px 28px;
    border-radius: 10px;
    margin: 10px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
}

.btn-demo {
    background: #ff3b3b;
    color: white;
}

.btn-sales {
    background: #f0f0f0;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-fullwidth h2 { font-size: 26px; }
    .cta-buttons a { width: 100%; display: inline-block; }
}
