/* ================================================================
   Service Pages — Delivery & Payment
   ================================================================ */

.br-sp-header { margin-bottom: var(--br-gap-xl); }
.br-sp-header h1 { margin-bottom: var(--br-gap-sm); }
.br-sp-intro { font-size: 17px; color: #555; max-width: 640px; line-height: 1.6; }

/* Cards */
.br-sp-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: var(--br-gap-xl);
}

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

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

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

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

.br-sp-card strong { display: block; font-size: 15px; margin-bottom: 4px; }
.br-sp-card p { font-size: 13px; color: #666; margin: 0; line-height: 1.4; }

/* Content */
.br-sp-content {
    margin-bottom: var(--br-gap-xl);
    max-width: 100%;
}

.br-sp-content h2 { margin: var(--br-gap-xl) 0 var(--br-gap-md); }
.br-sp-content h3 { margin: var(--br-gap-lg) 0 var(--br-gap-sm); color: #369155; }

/* Extra block */
.br-sp-extra {
    margin-bottom: var(--br-gap-xl);
    padding: 28px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    border-left: 4px solid #369155;
}

.br-sp-extra h2 {
    font-size: 20px;
    margin-bottom: var(--br-gap-md);
    color: #369155;
}

.br-sp-extra__body p { font-size: 15px; color: #555; line-height: 1.7; margin-bottom: 10px; }
.br-sp-extra__body p:last-child { margin-bottom: 0; }

/* FAQ + CTA Layout */
.br-sp-faq-section {
    margin-bottom: var(--br-gap-xl);
}

.br-sp-faq-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: var(--br-gap-xl);
    align-items: start;
}

@media (max-width: 991px) {
    .br-sp-faq-layout { grid-template-columns: 1fr; }
}

.br-sp-faq-main h2 {
    font-size: 22px;
    margin-bottom: var(--br-gap-md);
}

.br-sp-faq-list .br-qa__item {
    margin-bottom: 8px;
}

.br-sp-faq-list .br-qa__question {
    min-height: 52px;
    padding: 16px 18px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

@media (max-width: 767px) {
    .br-sp-faq-list .br-qa__question {
        min-height: 56px;
        padding: 18px 16px;
    }
}

/* FAQ Sidebar CTA */
.br-sp-faq-sidebar {
    position: sticky;
    top: 80px;
}

@media (max-width: 991px) {
    .br-sp-faq-sidebar { position: static; }
}

.br-sp-faq-cta {
    background: linear-gradient(135deg, #369155, #1e5c36);
    color: #fff;
    border-radius: 16px;
    padding: 28px;
    text-align: center;
}

.br-sp-faq-cta__icon {
    font-size: 36px;
    display: block;
    margin-bottom: 10px;
}

.br-sp-faq-cta h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.br-sp-faq-cta p {
    font-size: 14px;
    opacity: .85;
    margin-bottom: 18px;
}

.br-sp-faq-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.br-sp-faq-form input {
    width: 100%;
    padding: 12px 14px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    outline: none;
    font-family: inherit;
}

.br-sp-faq-form input:focus {
    box-shadow: 0 0 0 3px rgba(255,255,255,.3);
}

.br-sp-faq-phone {
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,.2);
}

.br-sp-faq-phone span {
    display: block;
    font-size: 12px;
    opacity: .7;
    margin-bottom: 4px;
}

.br-sp-faq-phone a {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

/* Crosslinks */
.br-crosslinks {
    display: flex;
    gap: 12px;
    margin: var(--br-gap-xl) 0 var(--br-gap-2xl);
    flex-wrap: wrap;
}

.br-crosslink {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    transition: all .2s;
    text-decoration: none;
    flex: 1;
    min-width: 160px;
    justify-content: center;
}

.br-crosslink:hover {
    border-color: #369155;
    background: #e8f5ed;
    color: #369155;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(54,145,85,.12);
}

@media (max-width: 767px) {
    .br-crosslinks { flex-direction: column; }
    .br-crosslink { min-width: auto; }
}

/* ================================================================
   MOBILE
   ================================================================ */

@media (max-width: 767px) {
    .br-sp-card {
        padding: 14px 16px;
    }

    .br-sp-card__icon {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }

    .br-sp-extra {
        padding: 20px;
    }

    .br-sp-faq-cta {
        padding: 22px;
    }

    .br-sp-faq-cta h3 {
        font-size: 16px;
    }
}

/* ================================================================
   FAQ Form — fix colors
   ================================================================ */

.br-sp-faq-form input::placeholder {
    color: rgba(0,0,0,.4);
}

.br-sp-faq-form input {
    color: #1a1a1a;
    background: #fff;
}

.br-sp-faq-cta .br-consent {
    color: rgba(255,255,255,.85);
    font-size: 12px;
}

.br-sp-faq-cta .br-consent a {
    color: #fff;
    text-decoration: underline;
}

.br-sp-faq-cta .br-consent__check {
    border-color: rgba(255,255,255,.4);
    background: rgba(255,255,255,.1);
}

.br-sp-faq-cta .br-consent__input:checked + .br-consent__check {
    background: #fff;
    border-color: #fff;
}

.br-sp-faq-cta .br-consent__input:checked + .br-consent__check::after {
    color: #369155;
}

/* Успешное сообщение после отправки */
.br-sp-faq-cta form p,
.br-sp-faq-cta .js-contact-form p {
    color: #fff !important;
}