.pro-card {
    position: relative;
    background: linear-gradient(200deg, #fbf1e8, #ffffff);
    border-radius: 20px !important;
    padding: 2.5rem 2rem 2rem 2rem;
    box-shadow: 0 8px 30px rgb(100 100 111 / 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
}

.pro-card:hover,
.pro-card:focus {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgb(100 100 111 / 0.3);
    outline: none;
    /* background: linear-gradient(135deg, #dee4ff, #f4f6fe); */
}

.pro-card:focus-visible {
    outline: 3px solid #fa923d;
    outline-offset: 4px;
}

.corner-triangle {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-top: 60px solid #fa923dd3;
    border-left: 60px solid transparent;
    border-radius: 0 18px 0 0;
}

.pro-card h5 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.pro-card p {
    color: var(--gray);
    flex-grow: 1;
}

/* Responsive */
@media (max-width: 991px) {
    .pro-card {
        padding: 2rem 1.5rem 1.5rem 1.5rem;
    }

    .corner-triangle {
        border-top-width: 40px;
        border-left-width: 40px;
    }
}


.accounting-row.g-4 {
    display: flex;
    flex-wrap: wrap;
}

.accounting-row.g-4 > [class*='col-'] {
    display: flex;
}

.solution-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: start;
    transition: all 0.3s ease;
    border: 1px solid #e1e1e1;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.solution-card-header {
    background-color: #3ba7e117;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.solution-card h5 {
    font-weight: 600;
    margin-bottom: 15px;
}

.solution-card p {
    color: var(--gray);
    line-height: 1.6;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #61c0bf;
    margin-right: 10px;
}

.styled-saas-card {
    color: black;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: none;
}

.styled-saas-card h5 {
    font-weight: 600;
    margin-top: 0;
}

.styled-saas-card p {
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .styled-saas-card .card-body {
        flex-direction: column;
        text-align: center;
    }

    .styled-saas-card .image-section {
        margin-top: 20px;
    }
}


.benefits-grid {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.benefit-card {
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 16px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    background-color: #aae0f558;
    color: #ffffff;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 22px;
    flex-shrink: 0;
    margin-right: 16px;
}

.benefit-content text-start {
    display: flex;
    flex-direction: column;
}

.benefit-title {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
}

.benefit-desc {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }
}
