.stats-brands-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 40px;
    color: #fff;
}

.stats-row {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.stats-logo-col {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.1;
    margin: 0;
    letter-spacing: 1px;
}

.stats-logo {
    max-width: 170px;
    height: auto;
    display: block;
}

.text-orange { color: #f38a00; }
.registered { font-size: 0.8rem; color: #f38a00; }

.orange-line {
    width: 80px;
    height: 2px;
    background-color: #f38a00;
}

.stats-boxes {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-box {
    position: relative;
    width: 190px;
    height: 160px;
    border: 1px solid #444; 
    border-bottom: none; 
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
}

.stat-num {
    font-size: 4rem;
    font-weight: 550;
    color: #f38a00;
    line-height: 1;
    margin-bottom: 25px;
}

.notch-svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px; 
    pointer-events: none;
}

.stat-label {
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
    font-size: 0.7em;
    color: rgba(255, 245, 235, 1);
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1.2;
}

.stat-label-bottom {
    bottom: 1px;
}

.brands-row {
    text-align: center;
    margin-bottom: 60px;
}

.brands-title {
    font-size: 1.4rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.4;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.brand-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.brand-box {
    width: 170px;
    height: 75px;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
}

.brand-box img {
    width: 85%;
    height: 85%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.contact-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.icon-circle {
    width: 35px;
    height: 35px;
    background-color: #f38a00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .stats-brands-section {
        margin: 40px auto;
        padding: 0 20px;
    }

    .stats-boxes {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .stat-label-bottom {
        top: 190px;
    }

    .stat-box {
        width: 280px;
        height: 220px;
    }

    .stat-num {
        font-size: 5.5rem;
        margin-bottom: 30px;
    }

    .stat-label {
        font-size: 0.9rem;
        bottom: 12px;
    }

    .brands-title {
        font-size: 1.2rem;
    }

    .brand-box {
        width: 140px;
        height: 65px;
    }

    .contact-row {
        gap: 20px;
        flex-direction: column; 
    }
}