/* Reset и базовые стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

:root {
    --primary-color: #2A4D7A;       /* Основной синий */
    --accent-color: #FF6B35;        /* Акцентный оранжевый */
    --dark-bg: #1A1A1A;             /* Темный фон */
    --light-text: #F4F4F4;          /* Светлый текст */
    --gradient: linear-gradient(135deg, #2A4D7A 0%, #3B6978 100%);
}

body {
    line-height: 1.6;
    color: var(--dark-bg);
}

/* Стили для шапки */
header {
    background: var(--gradient);
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-menu a {
    color: var(--light-text);
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-menu a:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}


/* Стиль для кнопок */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--light-text);
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255,107,53,0.3);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255,107,53,0.4);
}

/* Секция преимуществ */
/* Секция преимуществ */
.advantages {
    padding: 6rem 1.5rem;
    background: #f9fafb;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1280px;
    margin: 0 auto;
}

.advantage-item {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(0,0,0,0.04);
}

.advantage-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.advantage-item img {
    width: 60%;
    height: 40%;
    margin: 0 auto 1.75rem;
    display: block;
    object-fit: contain;
}

.advantage-item h3 {
    color: #1f2937;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.advantage-item p {
    color: #4b5563;
    line-height: 1.6;
    font-size: 1.05rem;
}

@media (max-width: 1024px) {
    .advantages-grid {
        gap: 2rem;
        grid-template-columns: repeat(2, 1fr);
    }

    .advantage-item {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 640px) {
    .advantages {
        padding: 4rem 1rem;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .advantage-item h3 {
        font-size: 1.35rem;
    }

    .advantage-item img {
        width: 80%;
        height: 45%;
    }
}
/* Адаптивность */
@media (max-width: 768px) {
    .nav-menu {
        /*flex-direction: column;*/
        gap: 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
}
/* Бургер-меню */
.burger-menu {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: var(--light-text);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--gradient);
        padding: 1rem;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
    }

    .burger-menu {
        display: flex;
    }

    /* Анимация бургера */
    .burger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}
/* Стили для подвала */
.site-footer {
    background: var(--dark-bg);
    color: var(--light-text);
    padding: 3rem 2rem 0;
    margin-top: auto; /* Для прижатия к низу, если контента мало */
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-section {
    margin-bottom: 1.5rem;
}

.footer-section h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links img {
    width: 32px;
    height: 32px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.social-links img:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

/* Адаптивность футера */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}
/* Мобильное меню */
.nav-links {
    display: flex;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--dark-bg);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        transition: left 0.3s ease;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        width: 80%;
        text-align: center;
        padding: 1rem;
        font-size: 1.2rem;
    }
}
/* Стили для гео-блока */
.geo-block {
    background: #f9f9f9;
    padding: 3rem 2rem;
    text-align: center;
}

.cities-list ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    list-style: none;
    margin: 2rem 0;
}

.cities-list li {
    background: var(--primary-color);
    color: white;
    padding: 0.8rem;
    border-radius: 8px;
}

.geo-note {
    font-size: 0.9rem;
    color: #666;
}

.breadcrumbs {
    padding: 1rem 2rem;
    background: #f5f5f5;
    font-size: 0.9rem;
}

.breadcrumbs a {
    color: var(--primary-color);
    text-decoration: none;
    transition: opacity 0.3s;
}

.breadcrumbs a:hover {
    opacity: 0.8;
}

.separator {
    margin: 0 0.5rem;
    color: #666;
}
/* ===== Калькулятор стоимости ===== */
.calculator {
    padding: 2.5rem 1rem;
    background: #f8fafc;
}

.calculator-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    border-radius: 18px;
    overflow: hidden;
    background: white;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

/* Визуальная часть */
.calculator-visual {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.calc-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
}

.calc-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    z-index: 2;
    background: rgb(249 249 249);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgb(0 0 0 / 15%);
}

.calc-overlay h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.calc-overlay p {
    color: #64748b;
    font-size: 0.9rem;
}

/* Форма */
.calculator-form {
    padding: 2rem 1.8rem;
}

.form-title {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1.8rem;
    text-align: center;
}

/* Элементы формы */
.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    color: #334155;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Радиокнопки */
.radio-group {
    display: grid;
    gap: 0.8rem;
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.7rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.radio-item:hover {
    border-color: var(--accent-color);
    transform: translateY(-1px);
}

.radio-custom {
    width: 18px;
    height: 18px;
    border: 2px solid #cbd5e1;
    border-radius: 50%;
    position: relative;
}

input:checked + .radio-custom {
    border-color: var(--accent-color);
}

input:checked + .radio-custom::after {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--accent-color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

/* Поля ввода */
.custom-input,
.custom-select,
.custom-textarea {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.custom-input:focus,
.custom-select:focus,
.custom-textarea:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255,107,53,0.1);
    outline: none;
}

.custom-textarea {
    height: 80px;
    resize: vertical;
}

/* Кнопка */
.calc-submit {
    width: 100%;
    padding: 0.9rem;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: all 0.2s;
}

.calc-submit:hover {
    background: #ff5a1f;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255,107,53,0.25);
}

.calc-submit svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Адаптивность */
@media (max-width: 768px) {
    .calculator-container {
        grid-template-columns: 1fr;
    }

    .calculator-visual {
        min-height: 250px;
    }

    .calculator-form {
        padding: 1.8rem 1.2rem;
    }

    .form-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .calc-overlay {
        top: 10px;
        left: 10px;
        right: 10px;
        padding: 1rem;
    }

    .calc-overlay h3 {
        font-size: 1.1rem;
    }

    .radio-item {
        font-size: 0.85rem;
    }
}
/* Секция брендов */
.brands {
    padding: 4rem 1rem;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
    margin-bottom: 2rem;
}

.brand-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    border-color: var(--accent-color);
}

.brand-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.brand-name {
    color: var(--primary-color);
    font-weight: 500;
    text-align: center;
}

.hidden {
    display: none;
}

.show-more {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
    padding: 0.8rem 2rem;
    background: none;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.show-more:hover {
    background: var(--accent-color);
    color: white;
}

.show-more svg {
    transition: transform 0.3s ease;
}

.show-more.active svg {
    transform: rotate(180deg);
}
.additional {
    order: 1; /* Переносим в конец сетки */
}

.show-more svg {
    width: 14px;
    height: 14px;
}

@media (max-width: 768px) {
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .brand-card {
        padding: 1rem;
    }

    .brand-logo {
        width: 60px;
        height: 60px;
    }
}
/* ===== Этапы сделки ===== */
.etap-sdelka {
    padding: 1rem 1rem;
    background: #ffffff;
}

:root {
    --etap-pix-primary: #2a4d7a;       /* Основной цвет */
    --etap-pix-text: #2d3748;          /* Цвет текста */
    --etap-pix-hover-bg: #f8fafc;      /* Фон при наведении */
    --etap-pix-border: #e2e8f0;        /* Граница */
    --etap-pix-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); /* Тень */
}

/* Контейнер этапы */
.etap-pix-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 5px 0 5px;
}

/* Заголовок */
.etap-pix-section-title {
    text-align: center;
    font-size: 28px;
    margin: 0 0 40px;
    color: var(--etap-pix-primary);
    position: relative;
}

.etap-pix-section-title:after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--etap-pix-primary);
    border-radius: 4px;
}

/* Сетка этапов */
.etap-pix-steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.etap-pix-steps-grid-skp {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Этап */
.etap-pix-step {
    background: #fff;
    border-radius: 12px;
    padding: 10px 5px 0 5px;
    box-shadow: var(--etap-pix-shadow);
    border: 1px solid var(--etap-pix-border);
    border-top: 4px solid var(--etap-pix-primary);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.etap-pix-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

/* Номер этапа */
.etap-pix-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--etap-pix-primary);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 20px;
}

/* Иконка этапа */
.etap-pix-step-icon {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--etap-pix-primary);
    transition: transform 0.3s ease;
}

.etap-pix-step:hover .etap-pix-step-icon {
    transform: scale(1.1);
}

/* Заголовок этапа */
.etap-pix-step-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--etap-pix-primary);
}

/* Описание этапа */
.etap-pix-step-desc {
    color: var(--etap-pix-text);
    line-height: 1.5;
    font-size: 15px;
}

/* Стрелки между этапами */
.etap-pix-step:not(:last-child):after {
    content: "→";
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--etap-pix-primary);
    opacity: 0.5;
}

/* Адаптация для планшетов */
@media (max-width: 992px) {
    .etap-pix-steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    .etap-pix-steps-grid-skp {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .etap-pix-step:not(:last-child):after {
        display: none;
    }
}

/* Адаптация для мобильных */
@media (max-width: 768px) {
    .etap-pix-steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .etap-pix-steps-grid-skp {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .etap-pix-step {
        padding: 25px 15px;
    }

    .etap-pix-section-title {
        font-size: 24px;
    }
}
/* Секция примеров */
.primers {
    padding: 4rem 1rem;
    background: #f8fafc;
}

.primers-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.primers-carousel {
    overflow-x: hidden;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.primers-container {
    display: flex;
    gap: 2rem;
    padding: 1rem;
    scroll-behavior: smooth;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.primers-card {
    min-width: 300px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    /*flex-shrink: 0;*/
}

.primers-image {
    position: relative;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
    /*aspect-ratio: 16/9;*/
}

.primers-image img {
    width: 100%;
    height: 70%;
    object-fit: cover;
    transition: transform 0.3s;
}

.primers-card:hover .primers-image img {
    transform: scale(1.05);
}

.primers-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(255,107,53,0.95);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 500;
}

.primers-info {
    padding: 1.5rem;
}

.primers-info h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.primers-details {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: #64748b;
}

/* Навигация */
.primers-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.primers-nav-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--accent-color);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.primers-nav-btn:hover {
    background: #ff5a1f;
    transform: scale(1.1);
}

.primers-nav-btn svg {
    fill: white;
    width: 24px;
    height: 24px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .primers-container {
        gap: 1rem;
        padding: 0.5rem;
    }

    .primers-card {
        min-width: 85%;
    }

    .primers-badge {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
}
/* Хедер с навигацией */
.primers-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 0 1rem;
}

.primers-nav {
    display: flex;
    gap: 0.5rem;
}

/* Скрытие скроллбара */
.primers-carousel {
    -ms-overflow-style: none;  /* IE и Edge */
    scrollbar-width: none;  /* Firefox */
}

.primers-carousel::-webkit-scrollbar {
    display: none; /* Chrome, Safari и Opera */
}

/* Адаптивность */
@media (max-width: 768px) {
    .primers-nav {
        display: none; /* Скрываем кнопки на мобильных */
    }

    .primers-header {
        justify-content: center;
        text-align: center;
    }

    .primers-container {
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .primers-card {
        scroll-snap-align: start;
        min-width: 85%;
        margin: 0 7.5%;
    }
}
/* Секция отзывов */
.reviews {
    padding: 4rem 1rem;
    background: #fff;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-title {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
}

.review-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0,0,0,0.04);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-color);
}

.review-author {
    flex-grow: 1;
}

.review-name {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--primary-color);
}

.review-date {
    font-size: 0.85rem;
    color: #64748b;
}

.review-rating {
    flex-shrink: 0;
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.review-text {
    color: #475569;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* Адаптивность */
@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .review-card {
        padding: 1.5rem;
    }

    .review-avatar {
        width: 50px;
        height: 50px;
    }
}
.reviews-more {
    text-align: center;
    margin-top: 3rem;
}

.show-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem 2.2rem;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.show-more-btn:hover {
    background: #ff5a1f;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,107,53,0.25);
}

.show-more-btn svg {
    width: 14px;
    height: 14px;
    stroke-width: 2px;
}

.hidden-review {
    display: none;
}

@media (max-width: 768px) {
    .show-more-btn {
        width: 100%;
        justify-content: center;
    }
}
/* Секция FAQ */
.faq {
    padding: 4rem 1rem;
    background: #f8fafc;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-title {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.faq-list {
    border-radius: 12px;
    overflow: hidden;
}

.faq-item {
    background: white;
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.question-text {
    margin: 0;
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 500;
}

.faq-icon {
    flex-shrink: 0;
    margin-left: 1rem;
    transition: transform 0.3s ease;
    fill: var(--accent-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1.5rem;
}

.faq-answer .answer-text {
    padding: 0 0 1.5rem;
    color: #475569;
    line-height: 1.6;
}

/* Активное состояние */
.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .faq-question {
        padding: 1rem;
    }

    .question-text {
        font-size: 1rem;
    }

    .faq-answer .answer-text {
        font-size: 0.9rem;
    }
}
:root {
    --primary: #2A4D7A;
    --accent: #FF6B35;
    --text-dark: #1A1A1A;
    --text-light: #F4F4F4;
}
.whatsapp-icon {
    width: 24px;
    height: 24px;
    fill: white;
}
/* Базовые стили */
.hero-modern {
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.modern-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 0 2rem;
}

/* Контентная часть */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.modern-title {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.city-highlight {
    color: var(--primary);
    font-weight: 600;
}

/* Кнопка */
.modern-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.4rem;
    background: var(--accent);
    color: var(--text-light);
    border-radius: 2rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.modern-btn:hover {
    transform: translateY(-3px);
}

/* Контакты */
.hero-contacts {
    margin-top: 2rem;
}

.hero-phone {
    font-size: 1.5rem;
    color: var(--primary);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.work-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    justify-content: center;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #25D366;
    border-radius: 50%;
}

/* Изображения */
.desktop-visual img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 1rem;
    filter: grayscale(20%) contrast(110%);
}

.mobile-visual {
    display: none;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .modern-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .desktop-visual {
        display: none;
    }

    .mobile-visual {
        display: block;
        order: -1;
        height: 40vh;
        min-height: 300px;
    }

    .mobile-visual img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .modern-title {
        font-size: 2rem;
        text-align: center;
    }

    .hero-actions {
        text-align: center;
    }

    .hero-contacts {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .modern-title {
        font-size: 1.75rem;
    }

    .hero-phone {
        font-size: 1.2rem;
    }

    .modern-btn {
        width: 100%;
        justify-content: center;
    }
}
.modern-seo {
    padding: 80px 0;
    background: #fafafa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.seo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.seo-title {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.seo-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    max-width: 480px;
}

.seo-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: rgba(255,107,53,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon .icon {
    width: 24px;
    height: 24px;
    fill: #FF6B35;
}

.feature-content {
    flex-grow: 1;
}

.feature-title {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin: 0 0 8px;
}

.feature-text {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .seo-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .seo-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .modern-seo {
        padding: 60px 0;
    }

    .feature-item {
        padding: 20px;
        gap: 15px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    .feature-icon .icon {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .seo-title {
        font-size: 1.75rem;
    }

    .seo-text {
        font-size: 1rem;
    }

    .feature-title {
        font-size: 1.1rem;
    }

    .feature-text {
        font-size: 0.9rem;
    }
}