.montagut-wrapper-5236cf71 {
    font-family: 'Montserrat', sans-serif;
    color: #1a1a1a;
    padding: 20px 0;
}

/* 1. STATS SECTION */
.stats-grid-5236cf71 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 30px;
}
.stat-card-5236cf71 {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
}
.stat-icon-wrapper-5236cf71 {
    background-color: #fff5f5;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.stat-icon svg, .stat-icon i {
    width: 28px;
    height: 28px;
    font-size: 28px;
    color: #C4151C;
    fill: #C4151C;
}
.stat-number {
    font-weight: 800;
    font-size: 24px;
    color: #1a1a1a;
    line-height: 1.2;
}
.stat-label {
    font-size: 13px;
    color: #666;
    margin-top: 2px;
}

/* 2. FILTER MENU */
.portfolio-filter-menu-5236cf71 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 35px;
}
.filter-btn {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #4a5568;
    padding: 10px 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.filter-btn.active, .filter-btn:hover {
    background-color: #C4151C;
    border-color: #C4151C;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(196, 21, 28, 0.2);
}

/* 3. PROJECTS GRID */
.portfolio-grid-5236cf71 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}
.portfolio-item-5236cf71 {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.portfolio-item-5236cf71.hidden {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
    border: none;
}
.proj-img-wrap {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.proj-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.proj-icon-tag-5236cf71 {
    position: absolute;
    bottom: -15px;
    left: 20px;
    background: #ffffff;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    z-index: 2;
}
.proj-icon svg, .proj-icon i {
    width: 18px;
    height: 18px;
    font-size: 18px;
    color: #C4151C;
    fill: #C4151C;
}
.proj-body-5236cf71 {
    padding: 25px 20px 20px 20px;
}
.proj-cat {
    font-size: 10px;
    font-weight: 700;
    color: #888;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
    text-transform: uppercase;
}
.proj-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
    margin: 0 0 12px 0;
    height: 42px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.proj-loc {
    font-size: 12px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
}
.loc-icon {
    color: #C4151C;
}

.portfolio-loadmore-wrap {
    text-align: center;
    margin-bottom: 50px;
}
.loadmore-btn-5236cf71 {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #1a1a1a;
    padding: 12px 28px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 6px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}
.loadmore-btn-5236cf71:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

/* 4. CTA BANNER */
.cta-banner-5236cf71 {
    background-color: #f7f7f7;
    border-radius: 16px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
}
.cta-left-5236cf71 {
    display: flex;
    align-items: center;
    gap: 20px;
}
.cta-icon-wrapper {
    background-color: #ffffff;
    border-radius: 50%;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}
.cta-icon-wrapper svg, .cta-icon-wrapper i {
    width: 24px;
    height: 24px;
    font-size: 24px;
    color: #C4151C;
    fill: #C4151C;
}
.cta-title {
    font-size: 20px;
    font-weight: 800;
    margin: 0;
    color: #1a1a1a;
}
.cta-subtitle {
    font-size: 13px;
    color: #666;
    margin: 5px 0 0 0;
}
.cta-button {
    background-color: #C4151C;
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    padding: 14px 28px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}
.cta-button:hover {
    background-color: #a80f15;
    box-shadow: 0 5px 15px rgba(196, 21, 28, 0.3);
}

/* 5. WORKFLOW STEPS */
.workflow-section-5236cf71 {
    text-align: center;
    padding-top: 20px;
}
.workflow-header {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}
.workflow-header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 25%;
    width: 50%;
    height: 3px;
    background-color: #C4151C;
    border-radius: 2px;
}
.workflow-grid-5236cf71 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}
.workflow-step-5236cf71 {
    text-align: left;
}
.workflow-step-top {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    position: relative;
}
.workflow-step-icon {
    background-color: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.workflow-step-icon svg, .workflow-step-icon i {
    width: 22px;
    height: 22px;
    font-size: 22px;
    color: #C4151C;
    fill: #C4151C;
}
.workflow-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background-color: #C4151C;
    color: #ffffff;
    font-size: 9px;
    font-weight: 800;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.step-connector-5236cf71 {
    flex-grow: 1;
    text-align: center;
    color: #cbd5e1;
    font-size: 14px;
    margin-left: 10px;
}
.step-title {
    font-size: 11px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 6px 0;
    text-transform: uppercase;
}
.step-desc {
    font-size: 11px;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .stats-grid-5236cf71 {
        grid-template-columns: repeat(2, 1fr);
    }
    .portfolio-grid-5236cf71 {
        grid-template-columns: repeat(2, 1fr);
    }
    .workflow-grid-5236cf71 {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    .step-connector-5236cf71 {
        display: none;
    }
}

@media (max-width: 767px) {
    .stats-grid-5236cf71 {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .portfolio-grid-5236cf71 {
        grid-template-columns: 1fr;
    }
    .cta-banner-5236cf71 {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 25px;
    }
    .cta-right-5236cf71 {
        width: 100%;
    }
    .cta-button {
        width: 100%;
        justify-content: center;
    }
    .workflow-grid-5236cf71 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .workflow-step-5236cf71 {
        display: flex;
        align-items: flex-start;
        gap: 15px;
    }
    .workflow-step-top {
        margin-bottom: 0;
        flex-shrink: 0;
    }
    .step-connector-5236cf71 {
        display: none;
    }
    .workflow-step-content {
        flex-grow: 1;
        padding-top: 5px;
    }
}
