/* Контейнер основной секции с теми же границами, что у хедера/футера */
.main-section .megaheader-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== MAIN SECTION STYLES ===== */

.main-section {
    background-color: #ffffff;
    color: var(--megaheader-text-dark);
}

.main-section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--megaheader-secondary-color);
    position: relative;
    padding-bottom: 15px;
}

.main-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--megaheader-primary-color);
    border-radius: 2px;
}

/* 1. Hero Section */
.main-section-hero {
    background: url('https://images.pexels.com/photos/4489749/pexels-photo-4489749.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2') no-repeat center center/cover;
    color: var(--megaheader-white);
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.main-section-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(44, 78, 94, 0.75);
}

.main-section-hero-content {
    position: relative;
    z-index: 2;
}

.main-section-hero-title {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.main-section-hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.main-section-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.main-section-btn {
    padding: 15px 35px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}

.main-section-btn-primary {
    background-color: var(--megaheader-primary-color);
    color: var(--megaheader-white);
}

.main-section-btn-primary:hover {
    background-color: var(--megaheader-accent-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.main-section-btn-secondary {
    background-color: transparent;
    color: var(--megaheader-white);
    border-color: var(--megaheader-white);
}

.main-section-btn-secondary:hover {
    background-color: var(--megaheader-white);
    color: var(--megaheader-secondary-color);
}

/* 2. Badges Section */
.main-section-badges {
    padding: 30px 0;
    background-color: #f1f1f1;
    border-bottom: 1px solid var(--megaheader-border-color);
}

.main-section-badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.main-section-badge-item {
    padding: 20px;
}

.main-section-badge-value {
    font-size: 40px;
    font-weight: 700;
    color: var(--megaheader-primary-color);
}

.main-section-badge-label {
    font-size: 16px;
    color: var(--megaheader-text-light);
}

/* 3. Why Me Section */
.main-section-why-me {
    padding: 80px 0;
}

.main-section-grid {
    display: grid;
    gap: 30px;
}

.main-section-why-me-grid {
    grid-template-columns: repeat(4, 1fr);
}

.main-section-why-me-item {
    text-align: center;
    padding: 20px;
}

.main-section-why-me-item i {
    font-size: 48px;
    color: var(--megaheader-primary-color);
    margin-bottom: 25px;
}

.main-section-why-me-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--megaheader-secondary-color);
}

/* 4. About Section */
.main-section-about {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.main-section-about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.main-section-about-text .main-section-title {
    margin-bottom: 30px;
}

.main-section-about-text .main-section-title::after {
    left: 0;
    transform: translateX(0);
}

.main-section-about-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.main-section-about-text ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.main-section-about-text ul li {
    font-size: 16px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.main-section-about-text ul i {
    color: var(--megaheader-success-color);
    margin-right: 15px;
    font-size: 20px;
}

.main-section-about-image img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    object-position: top center;
    border-radius: 12px;
    box-shadow: var(--megaheader-shadow-lg);
}


/* 5. Services Section */
.main-section-services {
    padding: 80px 0;
}

.main-section-services-grid {
    grid-template-columns: repeat(4, 1fr);
}

.main-section-service-item {
    background-color: #f8f9fa;
    border: 1px solid var(--megaheader-border-color);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.main-section-service-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--megaheader-shadow-lg);
    border-color: var(--megaheader-primary-color);
}

.main-section-service-item i {
    font-size: 48px;
    color: var(--megaheader-primary-color);
    margin-bottom: 25px;
}

.main-section-service-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

/* ===== PRICING (услуги и цены) - ПОЛНАЯ ПЕРЕРАБОТКА С FLEXBOX ===== */

.main-section-pricing {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.main-section-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px 26px;
    box-shadow: 0 4px_10px rgba(44,78,94,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(44,78,94,0.12);
}

.pricing-card h3 {
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    font-size: 20px;
    color: var(--megaheader-secondary-color);
    border-bottom: 2px solid var(--megaheader-primary-color);
}

.pricing-card ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

/* Новый, надежный Flexbox-стиль для строк */
.pricing-card li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px dotted #e0e0e0;
    line-height: 1.6;
}

.pricing-card li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* Название услуги (может переноситься) */
.pricing-card li span {
    text-align: left;
}

/* Цена (никогда не переносится) */
.pricing-card li strong {
    color: var(--megaheader-primary-color);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
    text-align: right;
}

.main-section-pricing-note {
    text-align: center;
    margin-top: 30px;
    color: var(--megaheader-text-light);
    font-size: 14px;
}


/* ===== BENEFITS - ОБНОВЛЕННЫЕ СТИЛИ ===== */
.main-section-benefits {
    padding: 80px 0;
    background: #ffffff;
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.benefit {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    text-align: center;
}
.benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(44,78,94,0.1);
    border-color: var(--megaheader-primary-color);
}
.benefit h4 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: var(--megaheader-secondary-color);
}
.benefit p {
    margin: 0;
    color: var(--megaheader-text-light);
    font-size: 15px;
    line-height: 1.7;
}

/* ===== CONTACT CTA ===== */
.main-section-contact { padding: 70px 0; background: #ffffff; }
.contact-card { display: flex; gap: 24px; align-items: center; justify-content: space-between; border: 1px solid var(--megaheader-border-color); border-radius: 10px; padding: 24px; background: #f8fbfc; }
.contact-text h2 { margin: 0 0 8px 0; }
.contact-info { list-style: none; padding: 0; margin: 10px 0 0 0; }
.contact-info li { margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
.contact-info a { color: var(--megaheader-primary-color); text-decoration: none; }
.contact-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ================================================================
   НОВЫЕ БЛОКИ: Марки, Как мы работаем, Отзывы, FAQ, Запись, Карта
   ================================================================ */

.section-brands,
.section-how-it-works,
.section-reviews,
.section-faq,
.section-booking {
    padding: 80px 0;
}

/* ===== МАРКИ ===== */
.section-brands { background: var(--megaheader-light-bg); }

.brands-top-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.brands-mid-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.brand-card.mid-brand { padding: 22px 12px; }
.brand-card.mid-brand .brand-name { font-size: 1.05rem; font-weight: 700; }

.brands-other-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}

.brand-card {
    background: var(--megaheader-white);
    border-radius: 10px;
    padding: 25px 15px;
    text-decoration: none;
    color: inherit;
    display: block;
    text-align: center;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--megaheader-shadow);
}

.brand-card:hover {
    transform: translateY(-4px);
    border-color: var(--megaheader-primary-color);
    box-shadow: 0 8px 25px rgba(230,126,34,0.3);
}

.brand-card.top-brand { padding: 30px 20px; }
.brand-card.top-brand .brand-name { font-size: 1.3rem; font-weight: 800; }

.brand-card .brand-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--megaheader-secondary-color);
    transition: all 0.3s ease;
}

.brand-card:hover .brand-name { color: var(--megaheader-primary-color); }

.brand-card .brand-line {
    width: 40px;
    height: 3px;
    background: var(--megaheader-primary-color);
    margin: 10px auto 0;
    opacity: 0;
    transition: all 0.3s ease;
}

.brand-card:hover .brand-line { opacity: 1; }

.brands-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    background: var(--megaheader-white);
    border-radius: 10px;
    max-width: 400px;
    margin: 0 auto;
}

.brands-counter i { color: var(--megaheader-primary-color); font-size: 1.5rem; }
.brands-counter span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--megaheader-secondary-color);
}

/* ===== КАК МЫ РАБОТАЕМ ===== */
.section-how-it-works { background: var(--megaheader-white); }

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    gap: 15px;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 4px;
    background: linear-gradient(90deg, var(--megaheader-primary-color), var(--megaheader-accent-color));
    border-radius: 2px;
    z-index: 0;
}

.step-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-circle {
    width: 80px;
    height: 80px;
    background: var(--megaheader-primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--megaheader-white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    box-shadow: 0 5px 20px rgba(230,126,34,0.4);
}

.step-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--megaheader-secondary-color);
    margin-bottom: 10px;
}

.step-desc {
    font-size: 0.9rem;
    color: var(--megaheader-text-light);
    line-height: 1.5;
    max-width: 180px;
    margin: 0 auto;
}

/* ===== ОТЗЫВЫ ===== */
.section-reviews { background: var(--megaheader-white); }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.review-card {
    background: var(--megaheader-white);
    border-radius: 10px;
    padding: 25px;
    box-shadow: var(--megaheader-shadow);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.review-card:hover {
    transform: translateY(-4px);
    border-color: var(--megaheader-primary-color);
    box-shadow: 0 8px 25px rgba(230,126,34,0.3);
}

.review-source {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--megaheader-light-bg);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #666;
}

.review-stars {
    color: var(--megaheader-accent-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.review-text {
    font-style: italic;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.review-author { display: flex; align-items: center; gap: 12px; }

.review-avatar {
    width: 45px;
    height: 45px;
    background: var(--megaheader-primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--megaheader-white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.review-author-info strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--megaheader-secondary-color);
}

.review-author-info span { font-size: 0.85rem; color: #888; }
.review-author-photo { width:45px; height:45px; border-radius:50%; object-fit:cover; flex-shrink:0; border:2px solid #E67E22; }
.review-author-job { font-size:0.78rem; color:#888; margin-top:1px; }
.review-vk { display:inline-flex; align-items:center; gap:4px; margin-top:4px; background:#4680c2; color:#fff; border-radius:4px; padding:2px 7px; font-size:10px; font-weight:600; text-decoration:none; transition:background .2s; }
.review-vk:hover { background:#2d5e96; }

/* Рейтинги */
.reviews-rating {
    margin-top: 40px;
    text-align: center;
    padding: 25px;
    background: var(--megaheader-light-bg);
    border-radius: 10px;
}

.reviews-rating-stars {
    color: var(--megaheader-accent-color);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.reviews-rating-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 15px;
}

.reviews-rating-text strong {
    font-family: 'Montserrat', sans-serif;
    color: var(--megaheader-secondary-color);
}

.reviews-cta {
    display: inline-block;
    background: var(--megaheader-primary-color);
    color: var(--megaheader-white);
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.reviews-cta:hover { background: #D35400; transform: translateY(-2px); }

/* ===== ЧАСТЫЕ ВОПРОСЫ ===== */
.section-faq { background: var(--megaheader-light-bg); }

.faq-accordion { max-width: 800px; margin: 0 auto; }

.faq-item {
    background: var(--megaheader-white);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover { background: #eef1f3; }

.faq-question h3 {
    font-size: 1rem;
    color: var(--megaheader-secondary-color);
    font-weight: 600;
    padding-right: 20px;
    margin: 0;
}

.faq-toggle {
    color: var(--megaheader-primary-color);
    font-size: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle { transform: rotate(180deg); }
.faq-item.active .faq-question { background: var(--megaheader-primary-color); }
.faq-item.active .faq-question h3 { color: var(--megaheader-white); }
.faq-item.active .faq-toggle { color: var(--megaheader-white); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer { max-height: 400px; }

.faq-answer p {
    padding: 20px 25px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* ===== ФОРМА ЗАПИСИ ===== */
.section-booking {
    background: linear-gradient(135deg, var(--megaheader-dark-bg), var(--megaheader-secondary-color));
    color: var(--megaheader-white);
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.booking-info h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--megaheader-white);
}

.booking-info > p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.7;
}

.booking-badges { display: flex; flex-direction: column; gap: 15px; }

.booking-badge { display: flex; align-items: center; gap: 12px; }
.booking-badge i { color: var(--megaheader-primary-color); font-size: 1.3rem; }
.booking-badge span { font-size: 1rem; }

.booking-form-card {
    background: var(--megaheader-white);
    border-radius: 10px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.booking-form-card h3 {
    color: var(--megaheader-secondary-color);
    margin-bottom: 25px;
    font-size: 1.4rem;
}

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--megaheader-secondary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1.5px solid var(--megaheader-border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--megaheader-primary-color);
    box-shadow: 0 0 0 3px rgba(230,126,34,0.15);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-submit {
    width: 100%;
    background: var(--megaheader-primary-color);
    color: var(--megaheader-white);
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover { background: #D35400; transform: translateY(-2px); }
.form-submit.success { background: var(--megaheader-success-color); }

.form-privacy {
    margin-top: 15px;
    font-size: 0.8rem;
    color: #888;
    text-align: center;
}

/* ===== ЧЕКБОКС СОГЛАСИЯ ===== */
.consent-label {
    display: flex; align-items: flex-start; gap: 8px;
    font-size: 0.8rem; color: #666; margin: 12px 0 14px; cursor: pointer; line-height: 1.4;
}
.consent-label input[type="checkbox"] {
    margin-top: 2px; flex-shrink: 0; width: 16px; height: 16px; accent-color: #E67E22; cursor: pointer;
}
.consent-label a { color: #E67E22; text-decoration: underline; }
.consent-label a:hover { color: #D35400; }

/* ===== COOKIE БАННЕР ===== */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9998;
    background: #1f3541; color: #fff; padding: 16px 20px;
    display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap;
    font-size: 0.85rem; line-height: 1.5;
    box-shadow: 0 -4px 20px rgba(0,0,0,.2);
    animation: cookieSlideUp .4s ease;
}
@keyframes cookieSlideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.cookie-banner p { margin: 0; max-width: 700px; }
.cookie-banner a { color: #F39C12; text-decoration: underline; }
.cookie-banner-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn-accept {
    background: #E67E22; color: #fff; border: none; padding: 8px 20px; border-radius: 6px;
    font-weight: 700; font-size: 0.85rem; cursor: pointer; transition: background .2s;
}
.cookie-btn-accept:hover { background: #D35400; }
.cookie-btn-reject {
    background: transparent; color: #aaa; border: 1px solid #555; padding: 8px 16px; border-radius: 6px;
    font-size: 0.85rem; cursor: pointer; transition: all .2s;
}
.cookie-btn-reject:hover { border-color: #aaa; color: #fff; }
@media (max-width: 600px) {
    .cookie-banner { flex-direction: column; text-align: center; padding: 14px 16px; }
}

/* ===== ПОПАП ФОРМЫ ===== */
.popup-overlay {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,.55); backdrop-filter: blur(4px);
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
    animation: popupFadeIn .25s ease;
}
@keyframes popupFadeIn { from { opacity: 0; } to { opacity: 1; } }

.popup-form-card {
    background: #fff; border-radius: 14px; padding: 36px 32px;
    width: 100%; max-width: 460px;
    box-shadow: 0 20px 60px rgba(0,0,0,.25);
    position: relative;
    animation: popupSlideUp .3s ease;
}
@keyframes popupSlideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.popup-form-card h3 {
    color: #2C4E5E; margin-bottom: 22px; font-size: 1.35rem;
    font-family: 'Montserrat', sans-serif;
}
.popup-close {
    position: absolute; top: 14px; right: 16px;
    background: none; border: none; font-size: 28px; color: #999;
    cursor: pointer; line-height: 1; padding: 0 4px;
    transition: color .2s;
}
.popup-close:hover { color: #E67E22; }

/* ===== УСПЕХ ФОРМЫ ===== */
.form-success-msg {
    text-align: center; padding: 20px 10px;
    animation: popupFadeIn .4s ease;
}
.form-success-icon {
    width: 72px; height: 72px; margin: 0 auto 18px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border-radius: 50%; color: #fff;
    font-size: 36px; line-height: 72px;
    box-shadow: 0 6px 20px rgba(39,174,96,.3);
}
.form-success-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem; font-weight: 700; color: #2C4E5E;
    margin-bottom: 8px;
}
.form-success-text {
    font-size: 1rem; color: #555; margin-bottom: 22px; line-height: 1.5;
}
.form-success-fallback {
    background: #f8f9fa; border-radius: 10px; padding: 14px 18px;
    font-size: 0.85rem; color: #666; line-height: 1.5;
    display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.form-success-phone {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 18px;
    background: #E67E22; color: #fff; border-radius: 6px;
    text-decoration: none; font-weight: 700; font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
    transition: background .2s;
}
.form-success-phone:hover { background: #D35400; }
.form-success-phone i { font-size: 13px; }

@media (max-width: 500px) {
    .popup-form-card { padding: 28px 20px; }
}

/* ===== КОНТАКТЫ (КАРТА) ===== */
.section-map { padding: 0; }

.map-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
}

.map-contacts {
    background: var(--megaheader-secondary-color);
    color: var(--megaheader-white);
    padding: 50px 40px;
}

.map-contacts h2 { font-size: 1.8rem; margin-bottom: 30px; }

.map-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.map-contact-item i {
    color: var(--megaheader-primary-color);
    font-size: 1.3rem;
    margin-top: 3px;
}

.map-contact-item strong {
    display: block;
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}

.map-contact-item span,
.map-contact-item a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.map-contact-item a:hover { color: var(--megaheader-primary-color); }

.map-contact-phone {
    font-size: 1.4rem;
    color: var(--megaheader-primary-color) !important;
    font-weight: 700;
}

.map-iframe { min-height: 400px; }

.map-iframe iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
    display: block;
}

/* ===== АДАПТИВ НОВЫХ БЛОКОВ ===== */
@media (max-width: 1024px) {
    .brands-top-grid { grid-template-columns: repeat(4, 1fr); }
    .brands-mid-grid { grid-template-columns: repeat(5, 1fr); }
    .brands-other-grid { grid-template-columns: repeat(4, 1fr); }
    .steps-container { flex-wrap: wrap; gap: 30px; }
    .steps-container::before { display: none; }
    .step-item { flex: 0 0 calc(33.333% - 20px); }
}

@media (max-width: 768px) {
    .section-brands,
    .section-how-it-works,
    .section-reviews,
    .section-faq,
    .section-booking { padding: 60px 0; }

    .brands-top-grid { grid-template-columns: repeat(2, 1fr); }
    .brands-mid-grid { grid-template-columns: repeat(3, 1fr); }
    .brands-other-grid { grid-template-columns: repeat(3, 1fr); }

    .step-item {
        flex: 0 0 100%;
        display: flex;
        align-items: flex-start;
        text-align: left;
        gap: 20px;
    }
    .step-circle { width: 60px; height: 60px; font-size: 1.4rem; margin: 0; flex-shrink: 0; }
    .step-content { flex: 1; }
    .step-desc { max-width: none; margin: 0; }

    .reviews-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding-bottom: 15px;
        -webkit-overflow-scrolling: touch;
    }
    .reviews-grid::-webkit-scrollbar { height: 6px; }
    .reviews-grid::-webkit-scrollbar-track { background: var(--megaheader-light-bg); border-radius: 3px; }
    .reviews-grid::-webkit-scrollbar-thumb { background: var(--megaheader-primary-color); border-radius: 3px; }
    .review-card { flex: 0 0 85%; scroll-snap-align: start; }

    .booking-grid { grid-template-columns: 1fr; gap: 30px; }
    .booking-info h2 { font-size: 1.6rem; }
    .map-grid { grid-template-columns: 1fr; }
    .map-iframe iframe { min-height: 280px; }
}

@media (max-width: 480px) {
    .brands-top-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .brands-mid-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .brands-other-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .brand-card { padding: 15px 10px; }
    .brand-card.mid-brand { padding: 16px 10px; }
    .brands-other-grid .brand-card { padding: 10px 6px; }
    .brands-other-grid .brand-name { font-size: 0.72rem; }
    .brand-card.top-brand { padding: 20px 15px; }
    .brand-card.top-brand .brand-name { font-size: 1.1rem; }
    .review-card { flex: 0 0 90%; }
    .booking-form-card { padding: 25px 20px; }
    .map-contacts { padding: 35px 25px; }
}

/* ================================================================ */

/* Responsive */
@media (max-width: 1024px) {
    .main-section-badges-grid,
    .main-section-why-me-grid,
    .main-section-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .main-section-about-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .main-section-title, .main-section-cta h2 {
        font-size: 28px;
    }
    .main-section-hero-title {
        font-size: 36px;
    }
    .main-section-hero-subtitle {
        font-size: 18px;
    }
    .main-section-badges-grid,
    .main-section-why-me-grid,
    .main-section-services-grid {
        grid-template-columns: 1fr;
    }
    .main-section-hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    .main-section-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 1200px) {
  .main-section-pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .main-section-pricing-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .contact-card { flex-direction: column; align-items: flex-start; }
}
