.refonte-solutions-sector-section {
    padding: 64px 64px 96px 64px;
    background-color: #FFFFFF;
    font-family: var(--font-primary);
    max-width: 1440px;
    margin: 0 auto;
}

.solutions-container {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.solutions-title {
    color: #003329;
    /* Dark-green */
    font-family: var(--font-primary);
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 48px;
    letter-spacing: -0.576px;
    text-align: center;
    margin-bottom: 64px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.solution-card {
    background-color: #EFF5F3;
    /* Light grey/green background */
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: transform 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
}

.card-image {
    width: 100%;
    height: 240px;
    position: relative;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    border-radius: var(--Radius-radius-16, 16px);
    background: var(--Components-Colors-Amber-utility-amber-100, #FDE7E3);
    /* Light Peach/Orange */
    color: #EC674E;
    /* Dark Red/Brown matching ACV theme or general text */
    /* wait, screenshot shows "Construction" tag in light reddish pink */
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Outfit', sans-serif;
}

.card-content {
    padding: 32px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #1A1A1A;
    margin-bottom: 16px;
}

.card-desc {
    font-size: 16px;
    line-height: 1.5;
    color: #4A4A4A;
    margin-bottom: 32px;
    flex-grow: 1;
}

.btn-card {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #003329;
    /* Dark Green */
    padding: 6px 6px 6px 20px;
    border-radius: 100px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 51, 41, 0.3);
}

.btn-card span {
    color: #E6FFA3;
    /* Lime Green */
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
}

.btn-icon-circle {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icon-circle img {
    width: 100%;
    height: 100%;
    filter: none;
}

@media (max-width: 1024px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .refonte-solutions-sector-section {
        padding: 64px 24px;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }
}