/**
 * Стили секций страницы услуги (service.php)
 * Общие стили для всех контейнеров секций
 */

/* ============================================
   Базовые стили контейнеров
   ============================================ */

/* Контейнер секции */
.service-cards .container,
.service-features .container,
.service-construction .container,
.service-faq .container,
.service-gallery .container,
.service-suppliers .container,
.service-prices .container,
.service-news.container,
.service-reviews.container,
.service-pay__content.container,
.service-cta.container,
.service-order__content.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   Чередование фонов секций
   ============================================ */

.service-section--white {
    background: #fff !important;
}

.service-section--gray {
    background: #f8f9fa !important;
}

/* ============================================
   Типография (единая для всех секций)
   ============================================ */

/* Заголовок секции h2 */
.service-cards__title,
.service-features__title,
.service-construction__title,
.service-faq__title,
.service-gallery__title,
.service-suppliers__title,
.service-prices__title,
.service-news__title,
.service-reviews__title,
.service-how__title,
.service-pay__title,
.service-order__title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    color: #333;
    line-height: 1.2;
}

/* Подзаголовок h3 */
.service-card__title,
.service-accordion__title,
.service-construction__subtitle,
.service-supplier__title,
.service-price__title,
.service-news__item-title,
.service-review__name,
.service-how__item-title,
.service-pay__item-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

/* Основной текст */
.service-card__text,
.service-accordion__text,
.service-construction__text,
.service-construction__list li,
.service-faq__answer-inner,
.service-gallery__text,
.service-supplier__text,
.service-price__value,
.service-prices__note,
.service-news__text,
.service-review__content,
.service-pay__text,
.service-cta__text,
.service-hero__text {
    font-size: 1.6rem;
    line-height: 140%;
    color: #333;
}

/* Акцентный цвет */
.service-construction__subtitle,
.service-accordion__icon,
.service-accordion__text ul li::marker,
.service-accordion__text ol li::marker,
.service-accordion__list li::marker,
.service-construction__text ul li::marker,
.service-construction__text ol li::marker,
.service-construction__list li::before,
.service-faq__answer-inner ul li::marker,
.service-faq__answer-inner ol li::marker,
.service-supplier__text ul li::marker,
.service-supplier__text ol li::marker,
.service-news__text ul li::marker,
.service-news__text ol li::marker,
.service-review__content ul li::marker,
.service-review__content ol li::marker,
.service-pay__text ul li::marker,
.service-pay__text ol li::marker {
    color: #5271FF;
}

/* ============================================
   Секция Hero
   ============================================ */

.service-hero {
    position: relative;
    padding: 160px 0 80px;
    overflow: hidden;
    background: #fff;
}

.service-hero__inner {
    display: flex;
    align-items: center;
    min-height: 500px;
    position: relative;
}

.service-hero__content {
    position: relative;
    z-index: 2;
    width: 50%;
    padding-right: 40px;
}

.service-hero__title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 28px;
    color: #333;
    line-height: 1.2;
}

.service-hero__text {
    font-size: 1.6rem;
    line-height: 140%;
    color: #333;
    margin-bottom: 40px;
}

.service-hero__text p {
    margin-bottom: 20px;
}

.service-hero__text p:last-child {
    margin-bottom: 0;
}

.service-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    font-size: 1.6rem;
}

.service-hero__image-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    z-index: 1;
}

.service-hero__image {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.service-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-hero__gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(to right, #fff 0%, rgba(255,255,255,0.95) 30%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}

/* Large Desktop */
@media (min-width: 1400px) {
    .service-hero {
        padding: 180px 0 100px;
    }
    
    .service-hero__inner {
        min-height: 550px;
    }
    
    .service-hero__title {
        font-size: 4.5rem;
    }
    
    .service-hero__text {
        font-size: 2.2rem;
    }
    
    .service-hero__image-wrapper {
        width: 50%;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .service-hero {
        padding: 140px 0 60px;
    }
    
    .service-hero__inner {
        min-height: 400px;
    }
    
    .service-hero__content {
        width: 55%;
    }
    
    .service-hero__title {
        font-size: 3.2rem;
        margin-bottom: 20px;
    }
    
    .service-hero__text {
        font-size: 1.6rem;
        margin-bottom: 32px;
    }
    
    .service-hero__image-wrapper {
        width: 50%;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .service-hero {
        padding: 120px 0 50px;
    }
    
    .service-hero__inner {
        flex-direction: column;
        min-height: auto;
    }
    
    .service-hero__content {
        width: 100%;
        padding-right: 0;
        margin-bottom: 32px;
    }
    
    .service-hero__title {
        font-size: 2.4rem;
        margin-bottom: 16px;
    }
    
    .service-hero__text {
        font-size: 1.4rem;
        margin-bottom: 24px;
    }
    
    .service-hero__btn {
        padding: 14px 24px;
        font-size: 1.4rem;
    }
    
    .service-hero__image-wrapper {
        position: relative;
        width: 100%;
        height: 300px;
    }
    
    .service-hero__gradient {
        display: none;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .service-hero {
        padding: 100px 0 40px;
    }
    
    .service-hero__title {
        font-size: 2rem;
    }
    
    .service-hero__text {
        font-size: 1.2rem;
    }
    
    .service-hero__image-wrapper {
        height: 250px;
    }
}

/* ============================================
   Секция Cards
   ============================================ */

.service-cards {
    padding: 100px 0;
}

.service-cards__title {
    margin-bottom: 40px;
}

.service-cards__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.service-card__image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-card__image img {
    transform: scale(1.08);
}

.service-card__body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card__title {
    margin-bottom: 16px;
}

.service-card__text {
    flex: 1;
}

.service-card__text p {
    margin-bottom: 14px;
}

.service-card__text p:last-child {
    margin-bottom: 0;
}

/* Large Desktop */
@media (min-width: 1400px) {
    .service-cards {
        padding: 120px 0;
    }
    
    .service-cards__grid {
        gap: 36px;
    }
    
    .service-card__image {
        height: 220px;
    }
}

/* Tablet */
@media (max-width: 1200px) {
    .service-cards__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 992px) {
    .service-cards {
        padding: 70px 0;
    }
    
    .service-cards__title {
        font-size: 3.2rem;
        margin-bottom: 40px;
    }
    
    .service-card__title {
        font-size: 1.8rem;
    }
    
    .service-card__text {
        font-size: 1.6rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .service-cards {
        padding: 50px 0;
    }
    
    .service-cards__title {
        font-size: 2.4rem;
        margin-bottom: 32px;
    }
    
    .service-cards__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card__image {
        height: 220px;
    }
    
    .service-card__title {
        font-size: 1.6rem;
    }
    
    .service-card__text {
        font-size: 1.4rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .service-cards {
        padding: 40px 0;
    }
    
    .service-cards__title {
        font-size: 2rem;
    }
    
    .service-card__image {
        height: 180px;
    }
    
    .service-card__body {
        padding: 18px;
    }
    
    .service-card__title {
        font-size: 1.4rem;
    }
    
    .service-card__text {
        font-size: 1.2rem;
    }
}

/* ============================================
   Секция Features (аккордеон)
   ============================================ */

.service-features {
    padding: 40px 0;
}

.service-features__title {
    margin-bottom: 30px;
}

.service-features__accordion {
    max-width: 1000px;
    margin: 0 auto;
}

.service-accordion__item {
    background: #fff;
    border-radius: 16px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s ease;
}

.service-accordion__item:last-child {
    margin-bottom: 0;
}

.service-accordion__item:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.service-accordion__header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    text-align: left;
    transition: background 0.3s ease;
    gap: 20px;
}

.service-accordion__header:hover {
    background: #fafafa;
}

.service-accordion__title {
    flex: 1;
    line-height: 1.5;
}

.service-accordion__icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
}

.service-accordion__item.active .service-accordion__icon {
    transform: rotate(180deg);
}

.service-accordion__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.service-accordion__item.active .service-accordion__content {
    max-height: 1200px;
}

.service-accordion__text {
    padding: 0 24px 16px;
    color: #333;
    line-height: 140%;
    font-size: 1.6rem;
}

.service-accordion__text p {
    margin-bottom: 12px;
}

.service-accordion__text p:last-child {
    margin-bottom: 0;
}

.service-accordion__text ul,
.service-accordion__text ol {
    padding: 16px;
    border-radius: 8px;
    margin: 16px 0;
    list-style: disc;
}

.service-accordion__text ul li,
.service-accordion__text ol li {
    margin-bottom: 10px;
    line-height: 140%;
    padding-left: 8px;
    font-size: 1.6rem;
}

.service-accordion__list {
    padding: 16px 24px 16px 40px;
    color: #333;
    list-style: disc;
    font-size: 1.6rem;
    border-radius: 8px;
    margin: 0 24px 16px;
}

.service-accordion__list li {
    margin-bottom: 10px;
    line-height: 140%;
    padding-left: 8px;
}

.service-accordion__list li:last-child {
    margin-bottom: 0;
}

/* Large Desktop */
@media (min-width: 1400px) {
    .service-features {
        padding: 120px 0;
    }
    
    .service-features__accordion {
        max-width: 1100px;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .service-features {
        padding: 70px 0;
    }
    
    .service-features__title {
        font-size: 3.2rem;
        margin-bottom: 40px;
    }
    
    .service-accordion__header {
        padding: 20px 24px;
        font-size: 1.05rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .service-features {
        padding: 50px 0;
    }
    
    .service-features__title {
        font-size: 2.4rem;
        margin-bottom: 32px;
    }
    
    .service-accordion__header {
        padding: 18px 20px;
        font-size: 1rem;
    }
    
    .service-accordion__text,
    .service-accordion__list {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .service-accordion__list {
        padding-left: 36px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .service-features {
        padding: 40px 0;
    }
    
    .service-features__title {
        font-size: 2rem;
    }
    
    .service-accordion__header {
        padding: 16px 18px;
        font-size: 0.95rem;
    }
    
    .service-accordion__text,
    .service-accordion__list {
        padding-left: 18px;
        padding-right: 18px;
    }
    
    .service-accordion__list {
        padding-left: 32px;
    }
}

/* ============================================
   Секция Construction
   ============================================ */

.service-construction {
    padding: 100px 0;
}

.service-construction__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.service-construction__title {
    margin-bottom: 24px;
    text-align: left;
}

.service-construction__subtitle {
    margin-bottom: 32px;
}

.service-construction__text {
    margin-bottom: 32px;
}

.service-construction__text p {
    margin-bottom: 24px;
}

.service-construction__text p:last-child {
    margin-bottom: 0;
}

.service-construction__text ul,
.service-construction__text ol {
    padding: 16px;
    border-radius: 8px;
    margin: 16px 0;
    list-style: disc;
}

.service-construction__text ul li,
.service-construction__text ol li {
    margin-bottom: 10px;
    line-height: 140%;
    padding-left: 8px;
    font-size: 1.6rem;
}

.service-construction__list {
    list-style: none;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    margin-top: 20px;
}

.service-construction__list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 16px;
    color: #333;
    line-height: 140%;
    font-size: 1.6rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 16px;
}

.service-construction__list li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.service-construction__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background: #5271FF;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(82, 113, 255, 0.3);
}

.service-construction__image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.service-construction__image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Large Desktop */
@media (min-width: 1400px) {
    .service-construction {
        padding: 120px 0;
    }
    
    .service-construction__grid {
        gap: 100px;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .service-construction {
        padding: 70px 0;
    }
    
    .service-construction__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .service-construction__image {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .service-construction__title {
        font-size: 3.2rem;
    }
    
    .service-construction__subtitle {
        font-size: 1.8rem;
    }
    
    .service-construction__text {
        font-size: 1.6rem;
    }
    
    .service-construction__list li {
        font-size: 1.6rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .service-construction {
        padding: 50px 0;
    }
    
    .service-construction__title {
        font-size: 2.4rem;
        margin-bottom: 12px;
    }
    
    .service-construction__subtitle {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
    
    .service-construction__text {
        font-size: 1.4rem;
    }
    
    .service-construction__grid {
        gap: 40px;
    }
    
    .service-construction__list li {
        padding-left: 28px;
        font-size: 1.4rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .service-construction {
        padding: 40px 0;
    }
    
    .service-construction__title {
        font-size: 2rem;
    }
    
    .service-construction__subtitle {
        font-size: 1.2rem;
    }
    
    .service-construction__text {
        font-size: 1.2rem;
    }
    
    .service-construction__list li {
        padding-left: 24px;
        font-size: 1.2rem;
    }
}

/* ============================================
   Секция FAQ
   ============================================ */

.service-faq {
    padding: 50px 0;
}

.service-faq__title {
    margin-bottom: 40px;
}

.service-faq__accordion {
    max-width: 1000px;
    margin: 0 auto;
}

.service-faq__item {
    background: #fff;
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s ease;
}

.service-faq__item:last-child {
    margin-bottom: 0;
}

.service-faq__item:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.service-faq__header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    text-align: left;
    gap: 20px;
    transition: background 0.3s ease;
}

.service-faq__header:hover {
    color: rgba(51, 51, 51, 0.7);
}

.service-faq__question {
    flex: 1;
    line-height: 1.5;
}

.service-faq__icon {
    position: relative;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.service-faq__icon img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.3s ease;
}

.service-faq__icon-close {
    opacity: 0;
}

.service-faq__item.active .service-faq__icon-open {
    opacity: 0;
}

.service-faq__item.active .service-faq__icon-close {
    opacity: 1;
}

.service-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.service-faq__item.active .service-faq__answer {
    max-height: 600px;
}

.service-faq__answer-inner {
    padding: 0 24px 20px;
    color: #333;
    line-height: 140%;
    font-size: 1.6rem;
}

.service-faq__answer-inner p {
    margin-bottom: 16px;
}

.service-faq__answer-inner p:last-child {
    margin-bottom: 0;
}

.service-faq__answer-inner ul,
.service-faq__answer-inner ol {
    padding: 16px;
    border-radius: 8px;
    margin: 16px 0;
    list-style: disc;
}

.service-faq__answer-inner ul li,
.service-faq__answer-inner ol li {
    margin-bottom: 10px;
    line-height: 140%;
    padding-left: 8px;
    font-size: 1.6rem;
}

/* Large Desktop */
@media (min-width: 1400px) {
    .service-faq {
        padding: 120px 0;
    }
    
    .service-faq__accordion {
        max-width: 1100px;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .service-faq {
        padding: 40px 0;
    }
    
    .service-faq__title {
        font-size: 3.2rem;
        margin-bottom: 30px;
    }
    
    .service-faq__header {
        padding: 18px 20px;
        font-size: 1.2rem;
    }
    
    .service-faq__answer-inner {
        padding: 0 20px 18px;
        font-size: 1.2rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .service-faq {
        padding: 35px 0;
    }
    
    .service-faq__title {
        font-size: 2.4rem;
        margin-bottom: 24px;
    }
    
    .service-faq__header {
        padding: 16px 18px;
        font-size: 1.1rem;
    }
    
    .service-faq__answer-inner {
        padding: 0 18px 16px;
        font-size: 1.1rem;
    }
    
    .service-faq__icon {
        width: 28px;
        height: 28px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .service-faq {
        padding: 30px 0;
    }
    
    .service-faq__title {
        font-size: 2rem;
    }
    
    .service-faq__header {
        padding: 14px 16px;
        font-size: 1rem;
    }
    
    .service-faq__answer-inner {
        padding: 0 16px 14px;
        font-size: 1rem;
    }
}

/* ============================================
   Секция Gallery
   ============================================ */

.service-gallery {
    padding: 100px 0;
}

.service-gallery__title {
    margin-bottom: 20px;
}

.service-gallery__text {
    text-align: center;
    color: #333;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 140%;
    font-size: 1.6rem;
}

.service-gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
    gap: 24px;
}

.service-gallery__item {
    border-radius: 16px;
    overflow: hidden;
}

.service-gallery__item--large {
    grid-column: span 2;
    grid-row: span 2;
}

.service-gallery__item a {
    display: block;
    width: 100%;
    height: 100%;
}

.service-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-gallery__item:hover img {
    transform: scale(1.06);
}

/* Large Desktop */
@media (min-width: 1400px) {
    .service-gallery {
        padding: 120px 0;
    }
    
    .service-gallery__grid {
        grid-auto-rows: 250px;
        gap: 28px;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .service-gallery {
        padding: 70px 0;
    }
    
    .service-gallery__title {
        font-size: 3.2rem;
    }
    
    .service-gallery__text {
        margin-bottom: 40px;
    }
    
    .service-gallery__grid {
        grid-auto-rows: 200px;
        gap: 20px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .service-gallery {
        padding: 50px 0;
    }
    
    .service-gallery__title {
        font-size: 2.4rem;
        margin-bottom: 16px;
    }
    
    .service-gallery__text {
        margin-bottom: 32px;
        font-size: 1.4rem;
    }
    
    .service-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
        gap: 16px;
    }
    
    .service-gallery__item--large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .service-gallery {
        padding: 40px 0;
    }
    
    .service-gallery__title {
        font-size: 2rem;
    }
    
    .service-gallery__grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }
    
    .service-gallery__item--large {
        grid-column: span 1;
    }
}

/* ============================================
   Секция Suppliers
   ============================================ */

.service-suppliers {
    padding: 100px 0;
}

.service-suppliers__title {
    margin-bottom: 60px;
}

.service-suppliers__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-supplier {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-supplier:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.service-supplier__logo {
    text-align: center;
    margin-bottom: 28px;
    padding: 24px;
    background: #fafafa;
    border-radius: 16px;
}

.service-supplier__logo img {
    max-width: 180px;
    max-height: 90px;
    object-fit: contain;
}

.service-supplier__title {
    margin-bottom: 20px;
}

.service-supplier__text {
    flex: 1;
}

.service-supplier__text p {
    margin-bottom: 16px;
}

.service-supplier__text p:last-child {
    margin-bottom: 0;
}

.service-supplier__text ul,
.service-supplier__text ol {
    padding: 16px;
    border-radius: 8px;
    margin: 16px 0;
    list-style: disc;
}

.service-supplier__text ul li,
.service-supplier__text ol li {
    margin-bottom: 10px;
    line-height: 140%;
    padding-left: 8px;
    font-size: 1.6rem;
}

/* Large Desktop */
@media (min-width: 1400px) {
    .service-suppliers {
        padding: 120px 0;
    }
    
    .service-suppliers__grid {
        gap: 48px;
    }
    
    .service-supplier {
        padding: 48px;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .service-suppliers {
        padding: 70px 0;
    }
    
    .service-suppliers__title {
        font-size: 3.2rem;
        margin-bottom: 40px;
    }
    
    .service-suppliers__grid {
        gap: 28px;
    }
    
    .service-supplier {
        padding: 32px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .service-suppliers {
        padding: 50px 0;
    }
    
    .service-suppliers__title {
        font-size: 2.4rem;
        margin-bottom: 32px;
    }
    
    .service-suppliers__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .service-supplier {
        padding: 28px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .service-suppliers {
        padding: 40px 0;
    }
    
    .service-suppliers__title {
        font-size: 2rem;
    }
    
    .service-supplier {
        padding: 24px;
    }
    
    .service-supplier__logo {
        padding: 20px;
    }
    
    .service-supplier__logo img {
        max-width: 140px;
        max-height: 70px;
    }
}

/* ============================================
   Секция Prices
   ============================================ */

.service-prices {
    padding: 100px 0;
}

.service-prices__title {
    margin-bottom: 60px;
}

.service-prices__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.service-price {
    background: #fff;
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-price:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.service-price__image {
    margin-bottom: 20px;
}

.service-price__image img {
    max-width: 90px;
    height: auto;
}

.service-price__title {
    margin-bottom: 20px;
    min-height: 3em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-price__value {
    color: #5271FF;
    font-weight: 600;
    margin-bottom: 24px;
    flex: 1;
}

.service-price__value span {
    display: block;
    font-size: 1.4rem;
    color: #888;
    margin-top: 6px;
}

.service-price__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: auto;
    padding: 14px 28px;
}

.service-prices__note {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 32px;
    color: #333;
    line-height: 140%;
}

.service-prices__note p {
    margin-bottom: 16px;
}

.service-prices__note p:last-child {
    margin-bottom: 0;
}

/* Large Desktop */
@media (min-width: 1400px) {
    .service-prices {
        padding: 120px 0;
    }
    
    .service-prices__grid {
        gap: 36px;
    }
    
    .service-price {
        padding: 36px 32px;
    }
}

/* Tablet */
@media (max-width: 1200px) {
    .service-prices__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .service-prices {
        padding: 70px 0;
    }
    
    .service-prices__title {
        font-size: 3.2rem;
        margin-bottom: 40px;
    }
    
    .service-prices__grid {
        gap: 24px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .service-prices {
        padding: 50px 0;
    }
    
    .service-prices__title {
        font-size: 2.4rem;
        margin-bottom: 32px;
    }
    
    .service-prices__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-price {
        padding: 28px 24px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .service-prices {
        padding: 40px 0;
    }
    
    .service-prices__title {
        font-size: 2rem;
    }
    
    .service-price {
        padding: 24px 20px;
    }
    
    .service-prices__note {
        padding: 24px;
        font-size: 0.9rem;
    }
}

/* ============================================
   Секция News
   ============================================ */

.service-news {
    padding: 80px 0;
}

.service-news__title {
    margin-bottom: 48px;
}

.service-news__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.service-news__item {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-news__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.service-news__image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.service-news__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-news__item:hover .service-news__image img {
    transform: scale(1.05);
}

.service-news__body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-news__item-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
    line-height: 1.4;
}

.service-news__text {
    color: #333;
    line-height: 140%;
    margin-bottom: 20px;
    flex: 1;
}

.service-news__text p {
    margin-bottom: 12px;
}

.service-news__text p:last-child {
    margin-bottom: 0;
}

.service-news__text ul,
.service-news__text ol {
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
    margin: 16px 0;
    list-style: disc;
}

.service-news__text ul li,
.service-news__text ol li {
    margin-bottom: 10px;
    line-height: 140%;
    padding-left: 8px;
    font-size: 1.6rem;
}

.service-news__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

/* Tablet */
@media (max-width: 992px) {
    .service-news {
        padding: 60px 0;
    }
    
    .service-news__title {
        font-size: 3.2rem;
        margin-bottom: 36px;
    }
    
    .service-news__grid {
        gap: 24px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .service-news {
        padding: 48px 0;
    }
    
    .service-news__title {
        font-size: 2.4rem;
        margin-bottom: 28px;
    }
    
    .service-news__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-news__image {
        height: 200px;
    }
    
    .service-news__body {
        padding: 20px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .service-news {
        padding: 40px 0;
    }
    
    .service-news__title {
        font-size: 2rem;
    }
    
    .service-news__image {
        height: 180px;
    }
    
    .service-news__body {
        padding: 16px;
    }
    
    .service-news__item-title {
        font-size: 1.05rem;
    }
}

/* ============================================
   Секция Reviews
   ============================================ */

.service-reviews {
    padding: 80px 0;
}

.service-reviews__title {
    margin-bottom: 48px;
}

.service-reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-review {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-review:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.service-review__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    gap: 12px;
}

.service-review__name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
}

.service-review__date {
    font-size: 0.85rem;
    color: #999;
    white-space: nowrap;
}

.service-review__content {
    flex: 1;
    color: #333;
    line-height: 140%;
    margin-bottom: 20px;
}

.service-review__content p {
    margin: 0;
}

.service-review__content ul,
.service-review__content ol {
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
    margin: 16px 0;
    list-style: disc;
}

.service-review__content ul li,
.service-review__content ol li {
    margin-bottom: 10px;
    line-height: 140%;
    padding-left: 8px;
    font-size: 1.6rem;
}

.service-review__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #eee;
    gap: 12px;
}

.service-review__stars {
    display: flex;
    gap: 4px;
}

.service-review__stars img {
    width: 18px;
    height: 18px;
}

.service-review__address {
    font-size: 0.85rem;
    color: #999;
    text-align: right;
}

/* Tablet */
@media (max-width: 1200px) {
    .service-reviews__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .service-reviews {
        padding: 60px 0;
    }
    
    .service-reviews__title {
        font-size: 3.2rem;
        margin-bottom: 36px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .service-reviews {
        padding: 48px 0;
    }
    
    .service-reviews__title {
        font-size: 2.4rem;
        margin-bottom: 28px;
    }
    
    .service-reviews__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-review {
        padding: 20px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .service-reviews {
        padding: 40px 0;
    }
    
    .service-reviews__title {
        font-size: 2rem;
    }
    
    .service-review {
        padding: 16px;
    }
    
    .service-review__header {
        flex-direction: column;
        gap: 4px;
    }
    
    .service-review__footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .service-review__address {
        text-align: left;
    }
}

/* ============================================
   Секция How (Как мы работаем)
   ============================================ */

.service-how {
    padding: 80px 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.service-how__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-how__title {
    margin-bottom: 48px;
}

.service-how__list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-how__item {
    flex: 0 0 180px;
    text-align: center;
    position: relative;
}

.service-how__item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 60px;
    right: -33px;
    width: 40px;
    height: 2px;
    background: #ddd;
    transform: translateY(-50%);
}

.service-how__number {
    display: none;
}

.service-how__image {
    width: 120px;
    height: 120px;
    margin: 0 auto 16px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 4px solid #fff;
}

.service-how__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-how__item-title {
    font-weight: 600;
    color: #333;
    line-height: 140%;
}

/* Tablet */
@media (max-width: 992px) {
    .service-how {
        padding: 50px 0;
    }
    
    .service-how__title {
        font-size: 3.2rem;
        margin-bottom: 30px;
    }
    
    .service-how__item:not(:last-child)::after {
        display: none;
    }
    
    .service-how__list {
        gap: 20px;
    }
    
    .service-how__item-title {
        font-size: 1.2rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .service-how {
        padding: 40px 0;
    }
    
    .service-how__title {
        font-size: 2.4rem;
        margin-bottom: 24px;
    }
    
    .service-how__list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }
    
    .service-how__item {
        flex: 0 0 auto;
    }
    
    .service-how__item:nth-child(odd):not(:last-child)::after {
        content: '';
        position: absolute;
        top: 50px;
        right: -10px;
        width: 20px;
        height: 2px;
        background: #ddd;
    }
    
    .service-how__item:nth-child(even)::before {
        content: '';
        position: absolute;
        top: 50px;
        left: -10px;
        width: 20px;
        height: 2px;
        background: #ddd;
    }
    
    .service-how__image {
        width: 100px;
        height: 100px;
    }
    
    .service-how__item-title {
        font-size: 1.1rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .service-how {
        padding: 30px 0;
    }
    
    .service-how__title {
        font-size: 2rem;
    }
    
    .service-how__list {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .service-how__item {
        display: flex;
        align-items: center;
        gap: 16px;
        text-align: left;
    }
    
    .service-how__image {
        width: 80px;
        height: 80px;
        margin: 0;
        flex-shrink: 0;
    }
    
    .service-how__item-title {
        font-size: 1rem;
    }
}

/* ============================================
   Секция Pay (Способы оплаты)
   ============================================ */

.service-pay {
    padding: 80px 0;
}

.service-pay__title {
    margin-bottom: 48px;
}

.service-pay__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-pay__item {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-pay__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.service-pay__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.service-pay__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-pay__body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-pay__item-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
    line-height: 1.3;
}

.service-pay__text {
    font-size: 1.4rem;
    color: #333;
    line-height: 140%;
    flex: 1;
}

.service-pay__text p {
    margin: 0;
}

.service-pay__text ul,
.service-pay__text ol {
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
    margin: 16px 0;
    list-style: disc;
}

.service-pay__text ul li,
.service-pay__text ol li {
    margin-bottom: 10px;
    line-height: 140%;
    padding-left: 8px;
    font-size: 1.6rem;
}

/* Tablet */
@media (max-width: 992px) {
    .service-pay {
        padding: 60px 0;
    }
    
    .service-pay__title {
        font-size: 3.2rem;
        margin-bottom: 36px;
    }
    
    .service-pay__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .service-pay {
        padding: 48px 0;
    }
    
    .service-pay__title {
        font-size: 2.4rem;
        margin-bottom: 28px;
    }
    
    .service-pay__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .service-pay__item {
        padding: 20px;
        flex-direction: row;
        text-align: left;
        gap: 16px;
        align-items: flex-start;
    }
    
    .service-pay__icon {
        width: 60px;
        height: 60px;
        margin: 0;
        flex-shrink: 0;
    }
    
    .service-pay__body {
        flex: 1;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .service-pay {
        padding: 40px 0;
    }
    
    .service-pay__title {
        font-size: 2rem;
    }
    
    .service-pay__item {
        padding: 16px;
    }
    
    .service-pay__icon {
        width: 50px;
        height: 50px;
    }
    
    .service-pay__item-title {
        font-size: 1.4rem;
    }
    
    .service-pay__text {
        font-size: 1.2rem;
    }
}

/* ============================================
   Секция CTA
   ============================================ */

.service-cta {
    padding: 50px 0;
    text-align: center;
}

.service-cta__text {
    color: #333;
    line-height: 140%;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.service-cta__text p {
    margin-bottom: 10px;
}

.service-cta__buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.service-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 768px) {
    .service-cta {
        padding: 40px 0;
    }
    
    .service-cta__buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ============================================
   Секция Order (Форма заявки)
   ============================================ */

.service-order {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.service-order__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.3;
}

.service-order__bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-order__inner {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-start;
    max-width: 600px;
    margin: 0 auto;
}

.service-order__content {
    max-width: 100%;
    width: 100%;
}

.service-order__header {
    text-align: center;
    margin-bottom: 48px;
}

.service-order__title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #333;
    line-height: 1.2;
}

.service-order__subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.5;
}

.service-order__form {
    background: #fff;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-order__form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.service-order__form-group {
    display: flex;
    flex-direction: column;
}

.service-order__form-group--full {
    grid-column: span 2;
}

.service-order__form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.service-order__form-group label i {
    color: #5271FF;
    font-size: 1.4rem;
    width: 1.4rem;
    height: 1.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.service-order__form-group input,
.service-order__form-group textarea {
    padding: 16px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1.05rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.service-order__form-group input:focus,
.service-order__form-group textarea:focus {
    outline: none;
    border-color: #5271FF;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(82, 113, 255, 0.1);
}

.service-order__form-group input::placeholder,
.service-order__form-group textarea::placeholder {
    color: #adb5bd;
}

.service-order__form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.service-order__form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding-top: 32px;
    border-top: 2px solid #f0f0f0;
}

.service-order__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    flex: 1;
}

.service-order__checkbox input {
    display: none;
}

.service-order__checkbox-custom {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border: 2px solid #ddd;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    margin-top: 2px;
}

.service-order__checkbox input:checked + .service-order__checkbox-custom {
    background: #5271FF;
    border-color: #5271FF;
}

.service-order__checkbox input:checked + .service-order__checkbox-custom::after {
    content: '✓';
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.service-order__privacy {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.service-order__privacy a {
    color: #5271FF;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.service-order__privacy a:hover {
    color: #3a56d4;
}

.service-order__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    font-size: 1.6rem;
    font-weight: 600;
    flex-shrink: 0;
    background: linear-gradient(135deg, #5271FF 0%, #3a56d4 100%);
    border: none;
    border-radius: 12px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(82, 113, 255, 0.3);
}

.service-order__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(82, 113, 255, 0.4);
}

.service-order__btn i {
    font-size: 1.2rem;
}

/* Tablet */
@media (max-width: 992px) {
    .service-order {
        padding: 60px 0;
    }
    
    .service-order__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-order__title {
        font-size: 2.2rem;
    }
    
    .service-order__subtitle {
        font-size: 1.1rem;
    }
    
    .service-order__form {
        padding: 36px;
    }
    
    .service-order__header {
        margin-bottom: 36px;
    }
    
    .service-order__image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .service-order {
        padding: 48px 0;
    }
    
    .service-order__inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-order__title {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }
    
    .service-order__subtitle {
        font-size: 1rem;
    }
    
    .service-order__form {
        padding: 24px;
        border-radius: 16px;
    }
    
    .service-order__form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-order__form-group--full {
        grid-column: span 1;
    }
    
    .service-order__form-footer {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .service-order__checkbox {
        justify-content: center;
    }
    
    .service-order__btn {
        width: 100%;
        justify-content: center;
    }
    
    .service-order__image {
        display: none;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .service-order {
        padding: 32px 0;
    }
    
    .service-order__title {
        font-size: 1.5rem;
    }
    
    .service-order__form {
        padding: 20px;
    }
    
    .service-order__form-group input,
    .service-order__form-group textarea {
        padding: 14px 16px;
    }
}
