.br-why-header { margin-bottom: 40px; }
.br-why-intro { font-size: 17px; color: #555; max-width: 640px; line-height: 1.6; margin-top: 8px; }

/* Counters */
.br-why-counters {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 40px;
}

@media (max-width: 767px) { .br-why-counters { grid-template-columns: repeat(2, 1fr); } }

.br-why-counter {
    text-align: center;
    padding: 24px 16px;
    background: linear-gradient(135deg, #369155, #1e5c36);
    color: #fff;
    border-radius: 14px;
}

.br-why-counter__val { display: block; font-size: 36px; font-weight: 700; margin-bottom: 4px; }
.br-why-counter__label { font-size: 13px; opacity: .8; }

/* Advantages */
.br-why-advantages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

@media (max-width: 991px) { .br-why-advantages { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .br-why-advantages { grid-template-columns: 1fr; } }

.br-why-adv {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 20px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 14px;
    transition: all .2s;
}

.br-why-adv:hover { border-color: #369155; box-shadow: 0 4px 15px rgba(54,145,85,.1); transform: translateY(-2px); }

.br-why-adv__icon {
    font-size: 28px;
    width: 48px;
    height: 48px;
    background: #e8f5ed;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.br-why-adv h3 { font-size: 15px; margin-bottom: 4px; }
.br-why-adv p { font-size: 13px; color: #666; margin: 0; line-height: 1.5; }

/* Content */
.br-why-content { margin-bottom: 40px; max-width: 100%; }

/* Reviews */
.br-why-reviews { margin-bottom: 40px; }
.br-why-reviews h2 { margin-bottom: 16px; }

/* Awards */
.br-why-awards { margin-bottom: 40px; }
.br-why-awards h2 { margin-bottom: 16px; }

.br-why-awards__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 14px;
}

.br-why-awards__item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    transition: all .2s;
}

.br-why-awards__item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,.08);
    border-color: #369155;
    transform: translateY(-2px);
}

.br-why-awards__item img { width: 100%; height: auto; display: block; }