body {
    margin: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    background: #fafafa;
    color: #222;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

header {
    background: #23232b;
    color: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.brand-title {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 900;
    font-size: 2rem;
    letter-spacing: 2px;
    color: #1E90FF;
    background: linear-gradient(90deg, #1E90FF 60%, #005DAA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  
    display: inline-block;
    vertical-align: middle;
}

header nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 24px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.2s;
}

header nav a:hover {
    color: #FF6600;
}

main {
    padding-top: 84px;
}

.hero {
    background: #fff;
    padding: 36px 0 24px 0;
    text-align: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
    margin-bottom: 24px;
}

.brand-block {
    background: #f4f6fb;
    border-radius: 18px;
    padding: 32px 16px 20px 16px;
    box-shadow: 0 2px 8px rgba(30, 144, 255, 0.07);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.17s;
}

.brand-block:hover {
    box-shadow: 0 6px 32px rgba(30, 144, 255, 0.11);
}

.brand-block img {
    max-height: 60px;
    max-width: 150px;
    margin-bottom: 18px;
    object-fit: contain;
    background: none;
    border-radius: 8px;
}

.brand-block p {
    font-size: 1.09rem;
    color: #444;
    margin: 0.2em 0 0.6em 0;
    font-weight: 500;
}

.hero-cta {
    margin: 18px 0 0 0;
}

.cta-button {
    background: linear-gradient(90deg, #FF6600, #FF9900);
    color: #fff;
    padding: 1rem 2.4rem;
    font-size: 1.13rem;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
    box-shadow: 0 2px 10px rgba(255, 102, 0, 0.08);
    cursor: pointer;
    transition: background 0.18s, box-shadow 0.18s;
    margin-top: 8px;
    display: inline-block;
}

.cta-button:hover,
button:hover {
    background: linear-gradient(90deg, #FF9900, #FF6600);
    box-shadow: 0 6px 32px rgba(255, 102, 0, 0.13);
}

/* LICENSE */
.license-block {
    background: #fff;
    padding: 32px 0 14px 0;
    text-align: center;
}

.license-label {
    display: inline-block;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    font-size: 1.34rem;
    letter-spacing: 2px;
    color: #1E90FF;
    background: linear-gradient(90deg, #1E90FF 60%, #005DAA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border-radius: 14px;
    padding: 8px 28px;
    box-shadow: 0 2px 16px rgba(30, 144, 255, 0.07);
}

/* FEATURES BLOCK */
.features-block {
    padding: 38px 0 18px 0;
    background: #fff;
}

.features-inner {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 52px;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 150px;
    max-width: 200px;
    text-align: center;
}

.feature svg {
    margin-bottom: 14px;
    display: block;
    filter: drop-shadow(0 2px 10px rgba(30, 144, 255, 0.09));
}

.feature div {
    font-size: 1.13rem;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    color: #1E90FF;
    margin-top: 2px;
    letter-spacing: 0.5px;
}

/* Форма записи — premium-карточка */
.request-form {
    background: #fff;
    padding: 44px 0 36px 0;
    border-radius: 24px;
    margin: 44px 0 0 0;
    box-shadow: 0 4px 32px rgba(30, 144, 255, 0.09);
}

.request-form h2 {
    color: #1E90FF;
    font-size: 2.1rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    margin-top: 0;
    margin-bottom: 28px;
    text-align: center;
    font-family: 'Montserrat', Arial, sans-serif;
    text-shadow: 0 2px 18px rgba(30, 144, 255, 0.07);
}

form {
    max-width: 420px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

label {
    margin-top: 0.9rem;
    font-weight: 600;
    color: #222;
    text-align: left;
}

input,
select,
textarea {
    padding: 0.7rem;
    margin-top: 0.3rem;
    border: 1.5px solid #e0e0e0;
    border-radius: 7px;
    font-size: 1.07rem;
    background: #f9f9fa;
}

input:focus,
select:focus,
textarea:focus {
    border: 1.5px solid #1E90FF;
    outline: none;
    background: #fff;
}

button,
form button {
    margin-top: 1.5rem;
    padding: 1rem 0;
    background: linear-gradient(90deg, #FF6600, #FF9900);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 1.09rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(255, 102, 0, 0.09);
    transition: background 0.18s;
}

/* Блок "Your Availability" */
.availability-block {
    margin-top: 2.2rem;
    border: none;
    padding: 0;
}

.availability-block legend {
    font-weight: 700;
    font-size: 1.18rem;
    color: #1E90FF;
    margin-bottom: 0.6rem;
    padding: 0;
    font-family: 'Montserrat', Arial, sans-serif;
}

.availability-block label {
    margin-top: 1.1rem;
    font-weight: 600;
    color: #243848;
    display: block;
    margin-bottom: 0.45rem;
    font-size: 1rem;
}

.optional {
    color: #888;
    font-weight: 400;
    font-size: 0.97rem;
    margin-left: 4px;
}

.arrival-times {
    display: flex;
    flex-wrap: wrap;
    gap: 22px 18px;
    margin: 0.5rem 0 0.2rem 0;
}

.arrival-times label {
    font-weight: 500;
    color: #23232b;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 0.1rem;
}

.arrival-times input[type="checkbox"] {
    accent-color: #1E90FF;
    width: 1.1rem;
    height: 1.1rem;
}

/* Портфолио */
.portfolio-block {
    padding: 40px 0 32px 0;
    background: #fff;
}

.portfolio-block h3 {
    color: #1E90FF;
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 18px;
    font-weight: 700;
    letter-spacing: 1.1px;
}

.portfolio-grid {
    display: flex;
    gap: 28px;
    justify-content: center;
    flex-wrap: wrap;
}

.portfolio-card {
    background: #f6f6fa;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(30, 144, 255, 0.06);
    padding: 12px;
    min-width: 210px;
    max-width: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.portfolio-card img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 10px;
}

.portfolio-caption {
    font-size: 0.99rem;
    color: #333;
    text-align: center;
}

/* REVIEWS */
.reviews-block {
    padding: 40px 0 28px 0;
    background: #fafbfc;
}

.reviews-block h3 {
    color: #1E90FF;
    text-align: center;
    margin-bottom: 24px;
    font-size: 1.33rem;
    font-weight: 700;
    letter-spacing: 1.1px;
}

.reviews-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.review-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(30, 144, 255, 0.07);
    padding: 24px 32px;
    min-width: 260px;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 12px;
}

.review-stars {
    color: #FFA500;
    font-size: 1.4rem;
    margin-bottom: 6px;
}

.review-text {
    color: #222;
    font-size: 1.07rem;
    margin-bottom: 7px;
}

.review-author {
    color: #888;
    font-size: 0.97rem;
    margin-top: auto;
    font-style: italic;
}

/* SEO блок */
.seo-block {
    padding: 40px 0 32px 0;
    background: #fff;
}

.seo-block h3 {
    color: #1E90FF;
    font-size: 1.23rem;
    text-align: center;
    margin-bottom: 18px;
    font-weight: 700;
    letter-spacing: 1.1px;
}

.seo-block p {
    color: #444;
    font-size: 1.08rem;
    max-width: 770px;
    margin: 0 auto 12px auto;
    text-align: center;
    line-height: 1.7;
}

/* Footer logo */
.footer-logo-block {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 42px 0 18px 0;
}

.footer-logo-svg {
    height: 76px;
    width: auto;
    opacity: 0.89;
    filter: drop-shadow(0 2px 8px rgba(30, 144, 255, 0.06));
}

footer {
    text-align: center;
    padding: 1.8rem 0 0.7rem 0;
    font-size: 1rem;
    color: #666;
    background: #f6f6f8;
    margin-top: 24px;
    letter-spacing: 0.2px;
}

/* Adaptive */
@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }

    .features-inner {
        gap: 22px;
    }

    .portfolio-grid {
        gap: 12px;
    }

    .reviews-grid {
        gap: 12px;
    }
}

@media (max-width: 600px) {
    header {
        padding: 0;
    }

    .container {
        padding: 0 8px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .brand-block {
        padding: 22px 7px 16px 7px;
    }

    main {
        padding-top: 68px;
    }

    .brand-title {
        font-size: 1.2rem;
    }

    .footer-logo-svg {
        height: 38px;
    }

    .features-inner {
        flex-direction: column;
        gap: 18px;
    }

    .portfolio-grid,
    .reviews-grid {
        flex-direction: column;
        gap: 12px;
    }

    .review-card,
    .portfolio-card {
        max-width: 98vw;
    }
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    /* чуть выше */
    padding-left: 20px;
    padding-right: 20px;
}
.header-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.header-logo-small {
    height: 120px;
    /* логотип крупнее */
    width: auto;
    filter: brightness(0) invert(1);
    /* белый цвет */
}

.brand-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: #fff;
    white-space: nowrap;
}

.header-right {
    display: flex;
    gap: 12px;
}

/* Кнопка BOOK ONLINE — оранжевая */
.btn-book {
    background: linear-gradient(90deg, #FF6600, #FF9900);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    border: none;
    border-radius: 22px;
    padding: 12px 20px;
    text-decoration: none;
    transition: background 0.2s;
}

.btn-book:hover {
    background: linear-gradient(90deg, #FF9900, #FF6600);
}

/* Кнопка CALL — синяя */
.btn-call {
    background: linear-gradient(90deg, #1E90FF, #007BFF);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    border: none;
    border-radius: 22px;
    padding: 12px 20px;
    text-decoration: none;
    transition: background 0.2s;
}

.btn-call:hover {
    background: linear-gradient(90deg, #007BFF, #1E90FF);
}

.brand-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    /* стало крупнее */
    color: #fff;
    white-space: nowrap;
    letter-spacing: 0.5px;
    margin-top: 6px;
}

/* --- Adaptive header scaling --- */
@media (max-width: 1024px) {
    .header-logo {
        height: 64px;
    }

    .header-slogan {
        font-size: 1.05rem;
        margin-left: 12px;
    }

    .header-button {
        padding: 10px 18px;
        font-size: 1rem;
        margin-left: 10px;
    }
}

@media (max-width: 900px) {
    .header-logo {
        height: 58px;
    }

    .header-slogan {
        font-size: 1rem;
        margin-left: 10px;
    }

    .header-button {
        padding: 8px 16px;
        font-size: 0.95rem;
        margin-left: 8px;
    }
}

@media (max-width: 768px) {
    .header-logo {
        height: 50px;
    }

    .header-slogan {
        font-size: 0.95rem;
        margin-left: 8px;
    }

    .header-button {
        padding: 7px 14px;
        font-size: 0.9rem;
        margin-left: 6px;
    }
}

@media (max-width: 600px) {
    .header-logo {
        height: 44px;
    }

    .header-slogan {
        font-size: 0.88rem;
        margin-left: 6px;
    }

    .header-button {
        padding: 6px 12px;
        font-size: 0.85rem;
        margin-left: 6px;
    }

    .header-flex {
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .header-flex {
            flex-direction: column;
            align-items: center;
            gap: 10px;
            padding: 8px 10px;
        }

    .header-left {
            justify-content: center;
        }
        .header-right {
            flex-direction: row;
            justify-content: center;
            flex-wrap: wrap;
            gap: 8px;
        }

        .header-slogan {
            font-size: 1.05rem;
            color: #fff;
            font-weight: 600;
            margin-left: 14px;
            white-space: nowrap;
        }

    .header-button {
        width: 120px;
        text-align: center;
        margin-left: 6px;
    }
        .btn-book,
        .btn-call {
            font-size: 0.9rem;
            padding: 10px 16px;
            border-radius: 20px;
        }
    
        .hero-title {
            margin-top: 20px;
        }
}
@media (max-width: 650px) {
    .header-slogan {
        display: none;
    }
}

.header-slogan {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #fff;
    margin-left: 12px;
    white-space: nowrap;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.hero-title {
    font-size: 2.1rem;
    /* раньше было ~1.6rem */
    font-weight: 700;
    text-align: center;
    color: #1E90FF;
    margin: 40px 0 32px 0;
    font-family: 'Montserrat', Arial, sans-serif;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(30, 144, 255, 0.07);
}

.features-title {
    text-align: center;
    color: #1E90FF;
    font-size: 2rem;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 800;
    margin-bottom: 28px;
}
.hero-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
    padding: 0 16px;
    margin-bottom: 32px;
}

.brand-block {
    flex: 1 1 160px;
    max-width: 220px;
    height: 110px;
    background-color: #f4f6fb;
    border-radius: 18px;
    padding: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(30, 144, 255, 0.07);
}

.brand-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 24px rgba(30, 144, 255, 0.1);
    background: #e9f2ff;
}

.brand-block img {
    max-height: 60px;
    max-width: 100%;
    object-fit: contain;
}

.license-minimal {
    padding: 32px 0;
    background: #ffffff;
    border-top: 1px solid #e5e5e5;
}

.license-list {
    display: flex;
    justify-content: center;
    gap: 48px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1.15rem;
    font-weight: 600;
    color: #1E90FF;
    letter-spacing: 1px;
}

.license-list li {
    position: relative;
}

.license-list li::after {
    content: '';
    display: block;
    margin-top: 6px;
    height: 2px;
    width: 100%;
    background: #1E90FF;
}

@media (max-width: 600px) {
    .header-flex {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 10px 16px;
    }

    .header-left {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
    }

    .header-right {
        display: flex;
        flex-direction: row;
        gap: 10px;
        justify-content: flex-end;
        flex-shrink: 0;
    }

    .btn-book,
    .btn-call {
        font-size: 0.88rem;
        padding: 10px 16px;
        border-radius: 20px;
        white-space: nowrap;
    }

    .header-slogan {
        display: none;
    }

    .hero-title {
        margin-top: 20px;
    }

    main {
        padding-top: 100px;
    }

    .hero {
        padding-top: 0;
    }
}

@media (max-width: 600px) {
    .header-flex {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 10px 16px;
    }

    .header-left {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
    }

    .header-right {
        display: flex;
        flex-direction: row;
        gap: 8px;
        justify-content: flex-end;
        flex-shrink: 0;
        flex-wrap: wrap;
    }

    .btn-book,
    .btn-call {
        font-size: 0.85rem;
        padding: 10px 16px;
        border-radius: 20px;
        white-space: nowrap;
    }

    .btn-call::after {
        content: " 888-888-7888";
        font-weight: 600;
        font-size: 0.82rem;
        margin-left: 6px;
        display: inline;
    }

    .header-slogan {
        display: none;
    }

    .hero-title {
        margin-top: 20px;
    }

    main {
        padding-top: 100px;
    }

    .hero {
        padding-top: 0;
    }
}

/* Общий стиль для CALL с номером */
.btn-call::after {
    content: " 888-888-7888";
    font-weight: 600;
    font-size: 0.92rem;
    margin-left: 8px;
    display: inline;
}

/* На маленьких экранах — скрыть BOOK ONLINE */
@media (max-width: 650px) {
    .btn-book {
        display: none;
    }

    .btn-call {
        font-size: 0.9rem;
        padding: 10px 16px;
        border-radius: 22px;
        white-space: nowrap;
    }

    .header-flex {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 10px 16px;
    }

    .header-left {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .header-right {
        display: flex;
        justify-content: flex-end;
        flex-wrap: nowrap;
    }

    .header-slogan {
        display: none;
    }
}

@media (max-width: 650px) {

    /* Кнопки брендов */
    .hero-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 8px;
        margin-bottom: 16px;
    }

    .brand-block {
        flex: 1 1 auto;
        height: 90px;
        padding: 14px;
        border-radius: 14px;
    }

    .brand-block img {
        max-height: 40px;
    }

    /* Лицензии */
 .license-list {
     display: flex;
     justify-content: center;
     align-items: center;
     flex-wrap: nowrap;
     gap: 24px;
     list-style: none;
     padding: 0;
     margin: 0 auto;
     font-size: 1.02rem;
     font-weight: 600;
     color: #1E90FF;
     letter-spacing: 0.5px;
     white-space: nowrap;
 }

 .license-minimal {
     padding: 16px 0 8px 0;
     background: #ffffff;
     border-top: 1px solid #e5e5e5;
     margin: 0;
 }

    .license-list li::after {
        display: none;
        /* уберём подчеркивание, чтобы выглядело компактнее */
    }

    /* Кнопка Request */
    .cta-button {
        font-size: 0.95rem;
        padding: 0.9rem 1.6rem;
        border-radius: 22px;
        margin-top: 16px;
    }

    /* Уменьшим заголовок “Select Your Appliance Brand” */
    .hero-title {
        font-size: 1.4rem;
        margin: 24px 0 16px 0;
    }
}

@media (max-width: 430px) {

    /* Кнопки брендов: ещё компактнее */
    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0 6px;
    }

    .brand-block {
        height: 80px;
        padding: 10px;
        border-radius: 12px;
    }

    .brand-block img {
        max-height: 34px;
    }


    /* Кнопка Request */
    .cta-button {
        font-size: 0.9rem;
        padding: 0.75rem 1.4rem;
        border-radius: 20px;
        margin-top: 12px;
    }

    /* Заголовок */
    .hero-title {
        font-size: 1.25rem;
        margin: 18px 0 14px 0;
    }

    /* Кнопка CALL в шапке — подогнать */
    .btn-call {
        font-size: 0.85rem;
        padding: 10px 14px;
    }

    /* Шапка — уменьшить логотип */
    .header-logo-small {
        height: 58px;
    }

    .header-flex {
        gap: 8px;
        padding: 0 10px;
    }

    .header-slogan {
        font-size: 0.9rem;
    }
}

header+main {
    margin-top: 0;
    border-top: none;
    padding-top: 84px;
}

main {
    padding-top: 84px;
    margin-top: 0;
}

@media (max-width: 430px) {
    .header-logo-small {
        height: 72px;
        /* был 58px */
    }

    .hero-title {
        font-size: 1.15rem;
        margin: 14px 0 12px 0;
    }

    .cta-button {
        font-size: 0.85rem;
        padding: 0.7rem 1.2rem;
        margin-top: 8px;
    }

    .hero-grid {
        margin-bottom: 12px;
    }

}

@media (max-width: 600px) {
    .header-logo-small {
        height: 115px !important;
    }
}


@media (max-width: 600px) {
    .header-logo-small {
        height: 115px !important;
    }
}

@media (max-width: 430px) {
    .header-logo-small {
        height: 115px !important;
    }
}

.hero-cta {
    margin: 10px 0 0 0;
}

@media (max-width: 400px) {
    .license-list {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 8px;
        font-size: 0.67rem;
        white-space: nowrap;
        overflow-x: auto;
    }

    .license-list li::after {
        display: none;
        /* убрать подчёркивания, если они мешают */
    }
}

.hero {
    margin-top: 0;
    padding-top: 0;
}

main {
    padding-top: 84px;
    /* чтобы не перекрывалась контентом */
    margin-top: 0;
}

header {
    margin: 0;
    padding: 0;
    border: none;
    box-shadow: none;
}

.learn-more {
    margin-top: 10px;
    font-size: 14px;
    color: #ff6600;
    font-weight: 600;
    text-align: center;
    text-decoration: underline;
}

.header-right {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    align-items: center;
    margin-left: auto;
    /* выталкивает вправо */
    padding-right: 12px;
    /* отступ от края экрана */
}

.btn-book,
.btn-call {
    padding: 12px 18px;
    border-radius: 32px;
    /* сохраняем округлость */
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    white-space: nowrap;
    display: inline-block;
}

/* Скрыть "BOOK ONLINE" на узких экранах */
@media (max-width: 500px) {
    .btn-book {
        display: none;
    }
}

.header-slogan {
    margin-right: 8px;
    /* или 12px — выбери визуально */
}

header {
    border-bottom: none;
    box-shadow: none;
}

.hero-grid {
    background-color: #ffffff;
    /* или просто убери background-color */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.btn-call {
    padding: 10px 14px;
    font-size: 13px;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.learn-more {
    margin-top: 6px;
    font-size: 13px;
    color: #ff6600;
    font-weight: 500;
    text-align: center;
    text-decoration: underline;
}

body {
    overflow-x: hidden;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

.header-right {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    align-items: center;
    padding-right: 12px;
    flex-shrink: 0;
}

.btn-call,
.btn-book {
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 32px;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Скрываем "BOOK ONLINE" на узких экранах */
@media (max-width: 500px) {
    .btn-book {
        display: none;
    }
}

.learn-more {
    margin-top: 6px;
    font-size: 13px;
    color: #ff6600;
    font-weight: 500;
    text-align: center;
    text-decoration: underline;
}

.brand-block {
    padding: 16px;
    border-radius: 16px;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 140px;
    margin: auto;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    justify-content: center;
    padding: 20px;
}

@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 24px;
    justify-content: center;
    padding: 20px;
    max-width: 960px;
    /* Ограничим ширину на десктопе */
    margin: 0 auto;
    /* Центруем */
}

.brand-block {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 180px;
}

.brand-block img {
    max-height: 60px;
    object-fit: contain;
    width: auto;
}

.learn-more {
    margin-top: 8px;
    font-size: 13px;
    color: #ff6600;
    font-weight: 500;
    text-align: center;
    text-decoration: underline;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Мобильный вид по умолчанию: 2x2 */
    gap: 24px;
    justify-content: center;
    padding: 24px 16px;
    max-width: 960px;
    margin: 0 auto;
}

/* На планшетах и десктопах — 4 в ряд */
@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.brand-block {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 220px;
    margin: auto;
}

.brand-block img {
    max-height: 60px;
    object-fit: contain;
    width: auto;
}

.learn-more {
    margin-top: 8px;
    font-size: 13px;
    color: #ff6600;
    font-weight: 500;
    text-align: center;
    text-decoration: underline;
}

.learn-more {
    margin-top: 8px;
    font-size: 13px;
    color: #ff6600;
    font-weight: 500;
    text-align: center;
    text-decoration: underline;
}

/* На маленьких экранах — ещё меньше шрифт */
@media (max-width: 480px) {
    .learn-more {
        font-size: 11px;
        margin-top: 6px;
    }
}

.learn-more {
    margin-top: 8px;
    font-size: 13px;
    color: #ff6600;
    font-weight: 500;
    text-align: center;
    text-decoration: underline;
}

/* На маленьких экранах — почти как подпись */
@media (max-width: 480px) {
    .learn-more {
        font-size: 11px;
        font-weight: 400;
        margin-top: 4px;
        text-decoration: none;
        opacity: 0.9;
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    justify-content: center;
    padding: 24px 16px;
    max-width: 960px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.brand-block {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 240px;
    min-height: 140px;
}

.brand-block img {
    max-height: 60px;
    object-fit: contain;
    width: auto;
    margin-bottom: 6px;
}

.learn-more {
    font-size: 13px;
    color: #ff6600;
    font-weight: 500;
    text-align: center;
    text-decoration: underline;
    margin-top: 4px;
}

/* ✅ Специально для всех iPhone и узких телефонов */
@media (max-width: 480px) {
    .brand-block {
        max-width: 100%;
        padding: 28px 20px;
        min-height: 160px;
    }

    .brand-block img {
        max-height: 72px;
    }

    .learn-more {
        font-size: 12px;
        margin-top: 6px;
    }

    .hero-grid {
        gap: 20px;
        padding: 24px 12px;
    }
}

@media (max-width: 480px) {
    .brand-block {
        max-width: 100%;
        padding: 20px 16px;
        min-height: auto;
        aspect-ratio: 1 / 1;
        /* автоматически делает блоки почти квадратными */
    }

    .brand-block img {
        max-height: 66px;
    }

    .learn-more {
        font-size: 12px;
        margin-top: 6px;
    }

    .hero-grid {
        gap: 20px;
        padding: 24px 12px;
    }
}

.hero-title {
    text-transform: uppercase;
    font-size: 28px;
    /* можно увеличить до 32px при желании */
    font-weight: 700;
    text-align: center;
    color: #1E90FF;
    /* или тот же синий, который ты используешь */
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
}

.hero-grid {
    background-color: #ffffff;
    /* или просто убери background вообще */
}

* {
    border: none;
    box-shadow: none;
}

.container.header-flex {
    border: none !important;
    box-shadow: none !important;
    background-color: transparent !important;
}

.hero-title {
    text-transform: uppercase;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    color: #1E90FF;
    margin: 32px auto 24px auto;
    line-height: 1.2;
    max-width: 90vw;
    white-space: nowrap;
    /* 👉 Ставим всё в одну строку */
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-title {
    text-align: center;
    margin: 20px auto 12px auto;
}

.title-line {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    color: #1E90FF;
    gap: 12px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.title-line::before,
.title-line::after {
    content: '';
    display: block;
    height: 2px;
    background: #1E90FF;
    width: 40px;
}

@media (min-width: 768px) {
    .hero-title {
        margin: 32px auto 24px auto;
    }

    .title-line {
        font-size: 36px;
        gap: 20px;
    }

    .title-line::before,
    .title-line::after {
        width: 60px;
    }
}

@media (min-width: 1200px) {

    .title-line::before,
    .title-line::after {
        width: 80px;
    }
}

.features-block {
    padding: 60px 0;
    background: #fff;
}

.features-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    font-weight: 800;
    color: #222;
}

.features-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 28px;
    justify-items: center;
    text-align: center;
}

.feature svg {
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.feature svg:hover {
    transform: scale(1.1);
}

.feature div {
    font-size: 15px;
    font-weight: 600;
    color: #222;
}

/* Mobile optimization */
@media (max-width: 480px) {
    .features-title {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .features-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .feature div {
        font-size: 14px;
    }
}

.features-block {
    padding-top: 40px;
    /* вместо 80px или auto */
    margin-top: 0;
}

.cta-button:hover {
    background-color: #ff8800;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-cta {
    margin-bottom: 20px;
    /* Было, возможно, больше — уменьшаем */
}

.features-block {
    padding-top: 20px;
    /* Было 50–80px, теперь компактнее */
}

.features-block {
    padding-top: 1px;
}

html {
    scroll-padding-top: 69px;
    /* подстрой под высоту header */
}

.service-fee-confirmation {
    display: flex;
    justify-content: center;
    margin: 24px 0;
}

.fee-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 420px;
    font-size: 16px;
    color: #222;
    font-family: inherit;
}

.fee-label input[type="checkbox"] {
    width: 22px;
    height: 22px;
    margin-top: 4px;
    accent-color: #1E90FF;
    /* или убери, если нужен стандартный */
}

.fee-text {
    line-height: 1.45;
}

/* Container for entire form body */
.form-content {
    max-width: 480px;
    margin: 0 auto;
    padding: 0 12px;
}

/* Headings */
.request-form h2 {
    text-align: center;
}

.availability-block {
    margin-top: 32px;
}

.availability-block legend {
    font-size: 18px;
    font-weight: 700;
    color: #1E90FF;
    margin-bottom: 12px;
    text-align: left;
}

/* Arrival time checkboxes */
.arrival-times {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin: 12px 0 24px;
}

.arrival-times label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: #222;
}

.arrival-times input[type="checkbox"] {
    transform: scale(1.1);
}

/* Service fee checkbox */
.service-fee-confirmation {
    display: flex;
    justify-content: center;
    margin: 24px 0;
}

.fee-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 420px;
    font-size: 16px;
    color: #222;
    font-family: inherit;
}

.fee-label input[type="checkbox"] {
    width: 22px;
    height: 22px;
    margin-top: 4px;
    accent-color: #1E90FF;
}

.fee-text {
    line-height: 1.45;
}

/* Required / optional tags */
.required {
    color: red;
    margin-left: 4px;
}

.optional {
    color: #888;
    font-size: 0.9em;
    margin-left: 6px;
}

.form-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 16px;
}

.availability-block,
.service-fee-confirmation {
    width: 100%;
    max-width: 420px;
    text-align: left;
}

.availability-block legend {
    font-size: 18px;
    font-weight: 700;
    color: #1E90FF;
    margin-bottom: 12px;
    width: 100%;
}

.availability-block label,
.availability-block input,
.availability-block select {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.arrival-times {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    margin: 12px 0 24px;
}

.arrival-times label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: #222;
}

.arrival-times input[type="checkbox"] {
    transform: scale(1.1);
}

/* Diagnostic fee checkbox */
.fee-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    color: #222;
    font-family: inherit;
}

.fee-label input[type="checkbox"] {
    width: 22px;
    height: 22px;
    margin-top: 4px;
    accent-color: #1E90FF;
}

.fee-text {
    line-height: 1.45;
}

/* Required / optional markers */
.required {
    color: red;
    margin-left: 4px;
}

.optional {
    color: #888;
    font-size: 0.9em;
    margin-left: 6px;
}

.availability-block {
    width: 100%;
    max-width: 420px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.availability-block legend {
    font-size: 18px;
    font-weight: 700;
    color: #1E90FF;
    margin-bottom: 12px;
    width: 100%;
    text-align: center;
}

.arrival-times {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 24px;
    margin: 12px 0 24px;
    width: 100%;
}

.arrival-times label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: #222;
}

.form-content button[type="submit"] {
    width: 100%;
    max-width: 420px;
    height: 56px;
    background: linear-gradient(to right, #ff6600, #ff9900);
    color: white;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.1s ease;
    margin-top: 20px;
}

.form-content button[type="submit"]:hover {
    background: linear-gradient(to right, #ff7700, #ffaa00);
    transform: scale(1.02);
}

.form-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 16px;
}

.availability-block,
.service-fee-confirmation,
.form-content button[type="submit"] {
    width: 100%;
    max-width: 420px;
    text-align: left;
}

/* Legend and headings */
.availability-block legend {
    font-size: 18px;
    font-weight: 700;
    color: #1E90FF;
    margin-bottom: 12px;
    width: 100%;
    text-align: center;
}

/* Grid for time checkboxes */
.arrival-times {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 24px;
    margin: 12px 0 24px;
    width: 100%;
}

.arrival-times label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: #222;
}

/* Fee confirmation checkbox */
.fee-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    color: #222;
    font-family: inherit;
}

.fee-label input[type="checkbox"] {
    width: 22px;
    height: 22px;
    margin-top: 4px;
    accent-color: #1E90FF;
}

.fee-text {
    line-height: 1.45;
}

/* Submit button */
.form-content button[type="submit"] {
    height: 56px;
    background: linear-gradient(to right, #ff6600, #ff9900);
    color: white;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.3s ease, transform 0.1s ease;
    margin-top: 20px;
}

.form-content button[type="submit"]:hover {
    background: linear-gradient(to right, #ff7700, #ffaa00);
    transform: scale(1.02);
}

/* Required and optional markers */
.required {
    color: red;
    margin-left: 4px;
}

.optional {
    color: #888;
    font-size: 0.9em;
    margin-left: 6px;
}

.form-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 16px;
}

.availability-block,
.service-fee-confirmation,
.form-content button[type="submit"] {
    width: 100%;
    max-width: 420px;
    text-align: left;
}

/* Arrival Time grid */
.arrival-times {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 24px;
    margin: 12px 0 24px;
    width: 100%;
}

.arrival-times label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: #222;
}

/* Checkbox area */
.fee-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    color: #222;
}

.fee-label input[type="checkbox"] {
    width: 22px;
    height: 22px;
    margin-top: 4px;
    accent-color: #1E90FF;
}

.fee-text {
    line-height: 1.45;
    font-weight: 500;
}

/* SUBMIT button */
.form-content button[type="submit"] {
    display: inline-block;
    width: 100%;
    max-width: 420px;
    height: 60px;
    padding: 0 32px;
    background: linear-gradient(to right, #ff6600, #ff9900);
    color: white;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.15s ease;
    box-shadow: 0 4px 10px rgba(255, 102, 0, 0.2);
    text-align: center;
    margin-top: 20px;
}

.form-content button[type="submit"]:hover {
    background: linear-gradient(to right, #ff7700, #ffaa00);
    transform: translateY(-1px);
}

/* Markers */
.required {
    color: red;
    margin-left: 4px;
}

.optional {
    color: #888;
    font-size: 0.9em;
    margin-left: 6px;
}

.form-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 16px;
}

.availability-block,
.service-fee-confirmation,
.form-content button[type="submit"] {
    width: 100%;
    max-width: 420px;
    text-align: left;
}

/* Чекбоксы времени */
.arrival-times {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 24px;
    margin: 12px 0 24px;
    width: 100%;
}

.arrival-times label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: #222;
}

/* Чекбокс подтверждения оплаты */
.fee-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    color: #222;
}

.fee-label input[type="checkbox"] {
    width: 22px;
    height: 22px;
    margin-top: 4px;
    accent-color: #1E90FF;
}

.fee-text {
    line-height: 1.45;
    font-weight: 500;
}

/* Кнопка */
.form-content button[type="submit"] {
    display: inline-block;
    width: 100%;
    max-width: 420px;
    height: 60px;
    padding: 0 32px;
    background: linear-gradient(to right, #ff6600, #ff9900);
    color: white;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.15s ease;
    box-shadow: 0 4px 10px rgba(255, 102, 0, 0.2);
    text-align: center;
    margin-top: 20px;
}

.form-content button[type="submit"]:hover {
    background: linear-gradient(to right, #ff7700, #ffaa00);
    transform: translateY(-1px);
}

/* Дополнительные метки */
.required {
    color: red;
    margin-left: 4px;
}

.optional {
    color: #888;
    font-size: 0.9em;
    margin-left: 6px;
}

.submit-button {
    display: inline-block;
    background: linear-gradient(to right, #ff6600, #ff9900);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    border: none;
    padding: 18px 48px;
    border-radius: 60px;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 8px 16px rgba(255, 102, 0, 0.2);
    transition: background 0.3s ease;
    margin: 40px auto 0;
}

.submit-button:hover {
    background: linear-gradient(to right, #ff5500, #ff8800);
}

.submit-btn {
    display: inline-block;
    background: linear-gradient(to right, #ff6600, #ff9900);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    border: none;
    padding: 18px 48px;
    border-radius: 60px;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 8px 16px rgba(255, 102, 0, 0.2);
    transition: background 0.3s ease;
    margin-top: 40px;
}

.submit-btn:hover {
    background: linear-gradient(to right, #ff5500, #ff8800);
}

.request-form .form-content {
    text-align: center;
}

.request-form form {
    display: inline-block;
    text-align: left;
    max-width: 480px;
    width: 100%;
}

.request-form .form-content {
    text-align: center;
}

.request-form form {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
}

.request-form label {
    align-self: flex-start;
    margin-top: 16px;
    font-weight: 600;
}

.request-form input,
.request-form select,
.request-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
    margin-top: 4px;
}

.arrival-times {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    margin-top: 8px;
}

.arrival-times label {
    flex: 1 1 45%;
    display: flex;
    align-items: center;
    gap: 6px;
}

.service-fee-confirmation {
    text-align: left;
    margin-top: 24px;
    width: 100%;
}

.fee-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.fee-text {
    line-height: 1.4;
}

.submit-btn {
    margin-top: 40px;
}

.cta-submit {
    display: inline-block;
    background: linear-gradient(to right, #ff6600, #ff9900);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    padding: 20px 60px;
    border: none;
    border-radius: 60px;
    box-shadow: 0 8px 20px rgba(255, 102, 0, 0.3);
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    max-width: 400px;
    margin-top: 32px;
    cursor: pointer;
}

.cta-submit:hover {
    background: linear-gradient(to right, #ff8800, #ffaa00);
}

.cta-submit {
    display: inline-block;
    background: linear-gradient(90deg, #ff6600 0%, #ff9900 100%);
    color: white;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    border: none;
    border-radius: 999px;
    padding: 20px 60px;
    box-shadow: 0 10px 20px rgba(255, 102, 0, 0.25);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 40px auto 0;
}

.cta-submit:hover {
    opacity: 0.9;
}

.cta-submit {
    width: 340px;
    max-width: 100%;
}

.cta-submit {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(to right, #ff6600, #ff9900);
    padding: 20px 60px;
    border: none;
    border-radius: 100px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 128, 0, 0.25);
    transition: transform 0.2s ease;
}

.cta-submit:hover {
    transform: translateY(-2px);
}

.cta-submit {
    font-size: 20px !important;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif !important;
}

.cta-submit {
    width: 320px;
    height: 64px;
    background-color: #FF6600;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: block;
    margin: 40px auto 0;
    transition: background-color 0.3s ease;
}

.cta-submit:hover {
    background-color: #FF9900;
}

.availability-block {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}

.availability-block legend {
    font-size: 22px;
    font-weight: 700;
    color: #1E90FF;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
    display: block;
}

/* Увеличенный отступ сверху перед секцией "Your Availability" */
.availability-block {
    margin-top: 40px;
}

/* Центрирование и выравнивание лейблов */
.availability-block label[for="day1"],
.availability-block label:not([for]) {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

/* Отступ между input и Arrival Time */
#day1 {
    margin-bottom: 12px;
}

/* Равномерное выравнивание времени */
.arrival-times {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 40px;
}

.availability-inner {
    max-width: 640px;
    margin: 0 auto 48px auto;
    text-align: left;
}

.arrival-times {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 32px;
    max-width: 100%;
    margin-top: 8px;
}

.availability-block {
    border: none;
    margin-bottom: 48px;
    padding: 0;
}

.availability-inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: left;
}

.availability-inner label {
    display: block;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 24px;
    margin-bottom: 6px;
}

.optional {
    color: #888888;
    font-weight: 400;
    margin-left: 6px;
}

input[type="date"] {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border-radius: 10px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.arrival-times {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 32px;
    margin-top: 10px;
}

input[type="date"] {
    width: 100%;
    max-width: 640px;
    /* такой же, как у textarea */
    padding: 14px;
    font-size: 16px;
    border-radius: 10px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    display: block;
    margin: 0 auto;
}

.availability-block {
    margin-top: 48px;
    /* от Describe до Preferred Date */
}

.accept-block {
    margin-top: 48px;
    /* от чекбоксов до Accept */
}

textarea[name="problem"] {
    margin-bottom: 48px;
}

.arrival-times {
    margin-bottom: 48px;
}

.availability-block {
    margin-top: 48px;
    text-align: left;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.availability-block label {
    display: block;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    margin-top: 24px;
}

.availability-block input[type="date"] {
    width: 100%;
    padding: 12px;
    font-size: 18px;
    border-radius: 10px;
    border: 1px solid #ccc;
}

.arrival-times {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 12px;
}

.arrival-times label {
    font-size: 18px;
}

.service-fee-confirmation {
    margin: 48px auto;
    max-width: 540px;
    text-align: left;
}

.fee-label {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.fee-text {
    font-size: 16px;
}

.submit-wrapper {
    text-align: center;
    margin-top: 32px;
}

.cta-submit {
    background: linear-gradient(90deg, #ff6a00 0%, #ffa500 100%);
    color: white;
    border: none;
    border-radius: 999px;
    padding: 20px 60px;
    font-size: 20px;
    font-weight: bold;
    box-shadow: 0 8px 20px rgba(255, 102, 0, 0.2);
    cursor: pointer;
    width: 100%;
    max-width: 540px;
}

/* Общий блок формы */
.form-section {
    max-width: 540px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Поле Describe */
textarea {
    margin-bottom: 32px;
}

/* Дата */
.availability-block {
    margin-bottom: 32px;
}

/* Arrival times (группа чекбоксов) */
.arrival-times {
    margin-bottom: 32px;
}

/* Checkbox с $99 */
.service-fee-confirmation {
    margin-bottom: 32px;
}

/* Submit Button — уже идёт снизу */
.submit-wrapper {
    text-align: center;
}

.availability-block,
.service-fee-confirmation,
.submit-wrapper {
    margin-top: 40px;
}

.availability-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
    width: 100%;
}

.availability-inner label {
    font-weight: 600;
    font-size: 18px;
}

.arrival-times {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 40px;
    justify-content: center;
    margin-top: 8px;
}

.availability-inner input[type="date"] {
    width: 100%;
    max-width: 500px;
    padding: 14px;
    border-radius: 12px;
    border: 1.5px solid #ccc;
    font-size: 18px;
}

.service-fee-confirmation {
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

.fee-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 500px;
}

.fee-text {
    font-size: 16px;
}

.submit-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.cta-submit {
    background: linear-gradient(to right, #ff6600, #ff9900);
    color: #fff;
    padding: 20px 48px;
    font-size: 20px;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(255, 102, 0, 0.3);
    transition: background 0.3s ease;
    width: 100%;
    max-width: 500px;
}

.availability-block {
    margin-top: 40px;
    padding: 0 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.availability-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.availability-inner label {
    font-weight: 600;
    font-size: 18px;
}

.availability-inner input[type="date"] {
    padding: 14px;
    font-size: 18px;
    border-radius: 12px;
    border: 1.5px solid #ccc;
    width: 100%;
}

.arrival-times {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 40px;
}

.form-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.form-block label {
    font-size: 18px;
    font-weight: 600;
    color: #222;
}

.form-block input[type="date"] {
    padding: 14px;
    border-radius: 12px;
    border: 1.5px solid #ccc;
    font-size: 16px;
    width: 100%;
}

.arrival-times {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 40px;
}

.arrival-times label {
    font-size: 17px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-block {
    margin-bottom: 28px;
}

.form-block label {
    font-size: 18px;
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
    color: #222;
}

.form-block input[type="date"] {
    padding: 14px;
    border: 1.5px solid #ccc;
    border-radius: 10px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
}

.arrival-times {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 32px;
}

.arrival-times label {
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fee-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.fee-text {
    font-size: 16px;
    color: #222;
}

.fee-text div:first-child {
    font-weight: bold;
    margin-bottom: 4px;
}

.arrival-times {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: center;
    gap: 12px 40px;
    margin-top: 10px;
}

.arrival-times label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 16px;
}

.form-block.fee-align {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.fee-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    max-width: 400px;
}

.fee-label input[type="checkbox"] {
    margin-top: 4px;
}

.fee-text {
    line-height: 1.4;
    font-size: 15px;
}

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

.arrival-times {
    margin-top: 8px;
    margin-bottom: 12px;
}

.form-block.fee-align {
    margin-top: 10px;
    margin-bottom: 20px;
}

.submit-wrapper {
    margin-top: 20px;
}

.form-block {
    margin-bottom: 12px;
}

.arrival-times {
    margin-top: 4px;
    margin-bottom: 8px;
}

.form-block.fee-align {
    margin-top: 8px;
    margin-bottom: 12px;
}

.submit-wrapper {
    margin-top: 16px;
}

.form-block.fee-align {
    margin: 4px 0;
}

.submit-wrapper {
    margin-top: 8px;
}

.form-block.fee-align {
    display: flex;
    align-items: flex-start;
    margin: 10px 0 16px;
}

.fee-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.fee-label input[type="checkbox"] {
    margin-top: 2px;
    transform: scale(1.2);
}

.fee-text {
    font-size: 16px;
    line-height: 1.4;
    display: inline-block;
}

.fee-subtext {
    font-weight: normal;
    display: block;
    margin-top: 2px;
    font-size: 15px;
    color: #333;
}

.submit-wrapper {
    text-align: center;
    margin-top: 10px;
}

.form-block.fee-align.reverse-check {
    display: flex;
    justify-content: center;
    margin: 10px 0 16px;
}

.fee-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    line-height: 1.4;
}

.fee-label input[type="checkbox"] {
    transform: scale(1.2);
    margin: 0;
}

.fee-text {
    text-align: right;
}

.fee-subtext {
    font-weight: normal;
    font-size: 15px;
    color: #333;
    display: block;
}

#day1 {
    margin-bottom: 16px;
    /* как между input-ами вверху */
}

.arrival-dropdown-block {
    margin-bottom: 16px;
}

.compact-fee {
    margin-bottom: 20px;
    margin-top: 0;
}

/* Чтобы чекбокс не "висел" — прижимаем текст ближе */
.fee-compact-label {
    gap: 10px;
    align-items: flex-start;
}

/* Уменьшаем расстояния между нижними секциями */
#day1 {
    margin-bottom: 16px;
}

.arrival-dropdown-block {
    margin-bottom: 16px;
}

/* Чекбокс и текст ближе друг к другу */
.compact-fee {
    margin: 0 0 16px 0;
}

.fee-compact-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 0;
}

/* Чтобы не сдвигалось по вертикали */
.fee-compact-label input[type="checkbox"] {
    margin-top: 6px;
}

#problem {
    margin-bottom: 5px;
}

.arrival-dropdown-block {
    margin-top: 12px;
    /* как между остальными полями */
}

.arrival-label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    text-align: left;
}

.arrival-select {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border-radius: 10px;
    border: 1px solid #ccc;
    background-color: #f8f8f8;
}

select,
input[type="text"],
input[type="date"],
textarea {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border-radius: 10px;
    border: 1px solid #ccc;
    background-color: #f8f8f8;
    box-sizing: border-box;
}

.preferred-service-date-label,
.preferred-arrival-time-label {
    margin-top: 8px !important;
}

.consent-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    margin-bottom: 24px;
    max-width: 720px;
    font-size: 16px;
}

.consent-row input[type="checkbox"] {
    width: 20px;
    height: 20px;
}

.consent-row label {
    font-weight: 600;
    color: #222;
}

.consent-row .note {
    font-weight: 400;
    color: #555;
    margin-left: 6px;
}

/* СНИЗУ блока Arrival Time */
#preferred-arrival-time {
    margin-bottom: 8px !important;
}

/* СВЕРХУ чекбокса */
#fee-consent {
    margin-top: 0 !important;
}

/* ВЕРХ И НИЗ текста с чекбоксом */
.consent-row {
    margin-top: 4px;
    margin-bottom: 12px;
}

/* СВЕРХУ кнопки */
.submit-button {
    margin-top: 12px;
}

.fee-note {
    display: block;
    font-weight: normal;
    margin-top: 4px;
}

h2 {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    color: #1E90FF;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    h2 {
        font-size: 32px;
    }
}

.brand-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.brand-block:hover {
    transform: translateY(-3px);
}

.brand-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s ease;
    height: 100%;
}

.brand-logo {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    margin-bottom: 8px;
}

.arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 500;
    color: #FF6600;
    transition: color 0.3s ease;
}

.brand-block:hover .arrow-link {
    color: #FF9900;
}

.arrow-link svg {
    stroke-width: 2;
    transition: transform 0.3s ease;
}

.brand-block:hover .arrow-link svg {
    transform: translateX(3px);
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 24px;
    justify-items: center;
    margin-top: 24px;
}

.brand-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s ease;
    height: 100%;
}

.brand-block:hover {
    transform: translateY(-2px);
}

.brand-logo {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    margin-bottom: 8px;
}

.arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 500;
    color: #FF6600;
    transition: color 0.3s ease;
}

.brand-block:hover .arrow-link {
    color: #FF9900;
}

.arrow-link svg {
    stroke-width: 2;
    transition: transform 0.3s ease;
}

.brand-block:hover .arrow-link svg {
    transform: translateX(3px);
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 24px;
    justify-items: center;
    margin-top: 24px;
}

/* ✅ Для узких экранов: 2 столбца */
@media (max-width: 767px) {
    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.request-form input,
.request-form select,
.request-form textarea {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border-radius: 10px;
    border: 1px solid #ccc;
    background-color: #f8f8f8;
    box-sizing: border-box;
    margin-bottom: 20px;
}

.request-form .consent-row {
    margin-top: 12px;
    margin-bottom: 24px;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 24px;
    justify-items: center;
    margin-top: 24px;
    /* ← это будет по умолчанию на десктопе */
}

/* 🔽 Для мобильных экранов уменьшаем отступ */
@media (max-width: 767px) {
    .hero-grid {
        margin-top: 12px;
    }
}

.request-form input,
.request-form select,
.request-form textarea {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border-radius: 10px;
    border: 1px solid #ccc;
    background-color: #f8f8f8;
    box-sizing: border-box;
    margin-bottom: 20px;
}
.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 24px;
    justify-items: center;
    margin-top: 12px;
}

/* 🔽 На мобильных: жёстко 2 колонки */
@media (max-width: 767px) {
    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.request-form input,
.request-form select,
.request-form textarea {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border-radius: 10px;
    border: 1px solid #ccc;
    background-color: #f8f8f8;
    box-sizing: border-box;
    margin-bottom: 20px;
}

.consent-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}

.consent-row input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 12px;
    /* ← центр между двумя строками */
    flex-shrink: 0;
}

.consent-label {
    font-size: 17px;
    line-height: 1.5;
    font-weight: 600;
    color: #222;
    cursor: pointer;
}

.consent-label span {
    display: block;
    font-weight: normal;
    margin-top: 2px;
}

.faq-block {
    padding: 60px 20px;
    background-color: #fafafa;
    text-align: center;
}

.faq-block h2 {
    font-size: 28px;
    margin-bottom: 40px;
    color: #222;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.faq-item {
    margin-bottom: 16px;
}

.faq-question {
    display: inline-block;
    max-width: 600px;
    width: 100%;
    background-color: #007BFF;
    /* основной синий */
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 20px;
    cursor: pointer;
    border-radius: 8px;
    text-align: left;
    transition: background-color 0.2s ease;
    font-family: 'Montserrat', sans-serif;
}

.faq-question:hover,
.faq-question:focus {
    background-color: #005DAA;
    /* темнее при наведении */
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0;
    margin-top: 4px;
}

.faq-answer p {
    margin: 10px auto 20px;
    max-width: 600px;
    text-align: left;
    color: #333;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
}

.faq-question {
    display: inline-block;
    max-width: 600px;
    width: 100%;
    background-color: #007BFF;
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 20px;
    cursor: pointer;
    border-radius: 32px;
    /* 👈 крупное скругление */
    text-align: left;
    transition: background-color 0.2s ease;
    font-family: 'Montserrat', sans-serif;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    color: #1E90FF;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 40px;
}

.section-title {
    color: #1E90FF;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    color: #1E90FF;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 40px;
    line-height: 1.3;
}
.faq-question {
    display: flex;
    justify-content: center;
    /* по центру по горизонтали */
    align-items: center;
    /* по центру по вертикали */
    text-align: center;
    background-color: #007BFF;
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 20px;
    border-radius: 32px;
    cursor: pointer;
    width: 100%;
    max-width: 500px;
    margin: 0 auto 16px;
    font-family: 'Montserrat', sans-serif;
    transition: background-color 0.3s ease;
}

.portfolio-block {
    padding: 40px 0;
}

.portfolio-swiper {
    width: 100%;
    padding: 20px 0;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 16px;
}

@media (max-width: 480px) {
    .hero {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .hero-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .brand-block {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 6px 12px;
        background: #f8f8f8;
        border-radius: 8px;
        height: 50px;
        box-shadow: none;
    }

    .brand-logo {
        height: 28px;
        width: auto;
    }

    .arrow-link {
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .arrow-link span {
        font-size: 12px;
    }

    .arrow-link svg {
        width: 12px;
        height: 12px;
    }

    /* Уменьшим отступы сверху/снизу секции "BRANDS WE REPAIR" */
    .hero-title {
        margin-bottom: 8px;
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .arrow-link span {
        display: none;
    }
}

.section-title {
    font-size: 36px;
    /* Увеличивает размер шрифта */
    font-weight: 750;
    /* Делает жирным (можно 700, 800 или 900) */
    color: #1E90FF;
    /* Яркий синий, если хочешь */
    text-align: center;
    margin-bottom: 24px;
}

.reviews-block h3 {
    font-size: 36px;
    /* или 32px, чтобы было как в .section-title */
    font-weight: 750;
    /* жирность */
    color: #1E90FF;
    /* ярко-синий */
    text-align: center;
    /* если нужно выровнять по центру */
    margin-bottom: 24px;
}

.reviews-arrow {
    color: #007BFF;
    width: 36px;
    height: 36px;
}

.reviews-swiper {
    position: relative;
    padding: 0 20px;
    /* небольшой отступ внутри контейнера */
}

.swiper-button-prev,
.swiper-button-next {
    color: #1E90FF;
    /* твой фирменный синий */
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    background: none;
    border: none;
}

.swiper-button-prev {
    left: -40px;
}

.swiper-button-next {
    right: -40px;
}

/* убираем стандартные иконки Swiper */
.swiper-button-prev::after,
.swiper-button-next::after {
    font-family: Arial, sans-serif;
    font-size: 36px;
    font-weight: bold;
    color: #1E90FF;
}

.swiper-button-prev::after {
    content: '<';
}

.swiper-button-next::after {
    content: '>';
}
.reviews-swiper {
    position: relative;
    padding: 0 48px;
    /* Пространство слева и справа для стрелок */
    overflow: hidden;
}

.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 24px;
    height: 24px;
    color: #1E90FF;
}

.swiper-button-prev {
    left: 0;
}

.swiper-button-next {
    right: 0;
}

@media (max-width: 767px) {

    .swiper-button-prev,
    .swiper-button-next {
        display: none !important;
    }
}



/* Убираем артефакты пустого места справа */
.reviews-swiper .swiper-slide {
    flex-shrink: 0;
    width: auto;
    /* или 100% если карточка должна занимать весь слайд */
    box-sizing: border-box;
}

.reviews-swiper .review-card {
    width: 100%;
    height: 100%;
}

/* Чтобы стрелки исчезали на мобильных */
@media (max-width: 767px) {

    .reviews-swiper .swiper-button-next,
    .reviews-swiper .swiper-button-prev {
        display: none !important;
    }
}

/* === Wolfix FAQ (isolated) === */
:root {
    --wf-blue: #1E90FF;
    --wf-text: #222;
    --wf-muted: #555;
    --wf-line: #EAEAEA;
}

.wf-faq {
    padding: 64px 16px;
    background: #fff;
}

.wf-wrap {
    max-width: 980px;
    margin: 0 auto;
}

.wf-title {
    margin: 0 0 28px;
    text-align: center;
    font: 800 32px/1.2 Montserrat, system-ui;
    color: var(--wf-blue);
}

.wf-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

@media (min-width:992px) {
    .wf-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.wf-item {
    border: 1px solid var(--wf-line);
    border-radius: 14px;
    background: #FAFAFA;
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s;
}

.wf-item:hover {
    border-color: #ddd;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
}

.wf-btn {
    all: unset;
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 20px;
    cursor: pointer;
}

.wf-btn span {
    color: var(--wf-text);
    font: 700 18px/1.2 Montserrat, system-ui;
}

.wf-chev {
    width: 22px;
    height: 22px;
    stroke: var(--wf-blue);
    stroke-width: 2.5;
    fill: none;
    transition: transform .2s;
}

.wf-panel {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    border-top: 1px solid transparent;
    transition: max-height .28s ease, padding .28s ease, border-color .28s ease;
}

.wf-panel p {
    margin: 0;
    color: var(--wf-muted);
    font: 400 16px/1.6 system-ui;
}

.wf-item.is-open {
    border-color: var(--wf-blue);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .06);
}

.wf-item.is-open .wf-btn span {
    color: var(--wf-blue);
}

.wf-item.is-open .wf-chev {
    transform: rotate(180deg);
}

.wf-item.is-open .wf-panel {
    max-height: 240px;
    padding: 14px 20px 18px;
    border-top: 1px solid var(--wf-line);
}

/* Жёстко отключаем старые «оранжевые» стили, если что-то прилипает */
.wf-faq [style*="background"],
.wf-faq .active,
.wf-faq .open {
    background: transparent !important;
}
/* === SEO block (centered title/button, left text) === */
.wf-seo {
    padding: 48px 16px;
    background: #fff;
    text-align: center;
    /* центрируем заголовок и кнопку */
}

.wf-seo__title {
    margin: 0 0 14px;
    font-weight: 800;
    font-size: 26px;
    line-height: 1.2;
    color: #1E90FF;
}

.wf-seo__body {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
    text-align: left;
    /* всегда слева */
}

.wf-seo__body p,
.wf-seo__body li {
    text-align: left;
    color: #555;
    line-height: 1.75;
}

.wf-seo__body h4 {
    margin: 18px 0 8px;
    font-weight: 800;
    color: #222;
    font-size: 18px;
}

.wf-seo__body ul {
    margin: 0 0 10px 18px;
    padding: 0;
}

.wf-seo__bullets li {
    margin: 0 0 6px;
}

.wf-seo__body[data-collapsed="true"] {
    max-height: 230px;
    overflow: hidden;
}

.wf-seo__body[data-collapsed="true"]::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 80px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 70%);
}

.wf-seo__toggle {
    margin-top: 10px;
    padding: 9px 16px;
    border: 1px solid #1E90FF;
    border-radius: 10px;
    background: #fff;
    color: #1E90FF;
    font-weight: 700;
    cursor: pointer;
    transition: box-shadow 0.2s, border-color 0.2s;
    display: inline-block;
}

.wf-seo__toggle:hover {
    box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
    border-color: #005DAA;
}

@media (min-width: 992px) {
    .wf-seo__title {
        font-size: 28px;
    }
}

/* чтобы градиент SEO-блока не наезжал на нижние элементы */
.wf-seo__body[data-collapsed="true"] {
    position: relative;
}

.wf-seo__body[data-collapsed="true"]::after {
    pointer-events: none;
    z-index: 0;
}

.wf-seo {
    position: relative;
    z-index: 1;
}

/* декоративный разделитель с логотипом */
.brand-sep {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    max-width: 980px;
    margin: 28px auto 20px;
    padding: 0 16px;
}

.brand-sep__line {
    flex: 1 1 auto;
    height: 1px;
    background: #EAEAEA;
}

.brand-sep__logo {
    display: block;
    width: 96px;
    height: auto;
    opacity: .6;
    filter: grayscale(100%);
    transition: opacity .2s ease;
    pointer-events: none;
    /* чисто декоративно */
}

@media (min-width: 992px) {
    .brand-sep {
        margin: 34px auto 24px;
        gap: 20px;
    }

    .brand-sep__logo {
        width: 110px;
    }
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    /* чуть больше для баланса с крупным логотипом */
    margin-bottom: 14px;
}

.footer-line {
    flex: 1 1 auto;
    height: 1px;
    background: #E0E0E0;
}

.footer-logo {
    opacity: 0.6;
    filter: grayscale(100%);
    width: 140px;
    /* увеличено с 96px */
    height: auto;
}

.footer-copy p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

@media (min-width: 768px) {
    .footer-logo {
        width: 160px;
        /* на десктопе ещё чуть больше */
    }

    .footer-copy p {
        font-size: 15px;
    }
}

/* ====== HERO пояс (фон + аккуратные отступы) ====== */
.hero{
  position: relative;
  padding: 56px 0 34px;
  background:
    radial-gradient(1100px 520px at 50% -10%, rgba(30,144,255,0.06), transparent 60%),
    radial-gradient(900px 420px at 50% 110%, rgba(255,102,0,0.05), transparent 60%),
    linear-gradient(180deg,#ffffff 0%, #FAFAFA 100%);
  border-top: 1px solid #F0F0F0;
  border-bottom: 1px solid #F0F0F0;
}

/* Заголовок блока брендов */
.hero-title{
  letter-spacing: .04em;
  margin-bottom: 18px;
}

/* ====== Карточки брендов ====== */
.hero-grid{
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap:18px;
  max-width:1100px;
  margin: 16px auto 18px;
}
@media (max-width: 1024px){ .hero-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px){ .hero-grid{ gap:12px; } }

.brand-block{
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:10px;
  height:120px; /* одинаковая высота */
  background:#fff;
  border:1px solid #EEE;
  border-radius:16px;
  box-shadow:0 1px 0 rgba(0,0,0,.02);
  text-decoration:none;
  transition:border-color .2s, box-shadow .2s, transform .2s;
}
.brand-block:hover{
  border-color:#E3EEFC;
  box-shadow:0 10px 24px rgba(30,144,255,.10);
  transform: translateY(-2px);
}
.brand-logo{ max-height:36px; width:auto; display:block; }

.arrow-link{
  display:inline-flex; align-items:center; gap:6px;
  font-weight:700; font-size:14px; color:#FF6600;
}
.brand-block:hover .arrow-link svg{ transform: translateX(3px); }
.arrow-link svg{ transition: transform .2s; }

/* ====== Бейджи LICENSED / EPA / INSURED ====== */
.license-minimal{ margin-top: 8px; }
.license-list{
  list-style:none; padding:0; margin:0 auto 18px;
  display:flex; flex-wrap:wrap; gap:14px; align-items:center; justify-content:center;
}
.license-list li{
  border:1px solid #E3EEFC; background:#fff; color:#1E90FF;
  padding:9px 14px; border-radius:999px; font-weight:800; font-size:13px; letter-spacing:.02em;
  transition: background .2s, border-color .2s, box-shadow .2s, transform .2s;
}
.license-list li:hover{
  background:#F5FAFF; border-color:#CFE4FF; box-shadow:0 6px 18px rgba(30,144,255,.12);
  transform: translateY(-1px);
}

/* ====== CTA ====== */
.hero-cta{ text-align:center; margin: 6px 0 8px; }
.cta-button{
  display:inline-block; padding:14px 28px; border-radius:999px;
  background: linear-gradient(180deg,#FF8A24,#FF6600);
  color:#fff; font-weight:900; letter-spacing:.02em;
  box-shadow:0 12px 26px rgba(255,102,0,.28);
  transition: transform .15s, box-shadow .15s, filter .15s;
}
.cta-button:hover{ transform: translateY(-1px); filter: brightness(1.02); }
.cta-button:active{ transform: translateY(0); box-shadow:0 8px 18px rgba(255,102,0,.26); }
.cta-button:focus{ outline:3px solid #1E90FF; outline-offset:3px; }
@media (max-width:480px){ .cta-button{ width:100%; text-align:center; } }

/* ====== Разделитель перед Why ====== */
.section-sep{
  max-width:1100px; height:1px; background:#EAEAEA;
  margin: 22px auto 12px;
}

/* ====== Why Choose ====== */
.features-block{ padding: 32px 0 50px; }
.features-title{ margin: 12px 0 10px; font-weight:800; font-size:26px; text-align:center; color:#222; }
.features-inner{
  display:grid; gap:26px; max-width:980px; margin: 16px auto 0;
  grid-template-columns:repeat(4,1fr);
}
@media (max-width:1024px){ .features-inner{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .features-inner{ grid-template-columns:1fr; } }
.feature{ display:flex; flex-direction:column; align-items:center; text-align:center; gap:10px; }
.feature svg{ width:40px; height:40px; stroke:#1E90FF; }
.feature div{ font-weight:700; color:#222; }

.license-list li,
.license-list li a {
    text-decoration: none !important;
    /* убираем подчёркивания/бордеры */
    border-bottom: 0 !important;
}

.license-list li {
    font-size: 14px;
    /* было 13 */
    padding: 11px 18px;
    /* больше подушек */
    border-radius: 999px;
    border: 1px solid #D6E7FF;
    background: #fff;
    color: #1E90FF;
    box-shadow: 0 1px 0 rgba(0, 0, 0, .02);
}

@media (min-width: 992px) {
    .license-list li {
        font-size: 15px;
        padding: 12px 20px;
    }
}

/* --- 2) Чистим «серые куски» вокруг бейджей/CTA --- */
/* Убедимся, что нигде нет локальных фонов */
.hero .container,
.license-minimal,
.license-minimal .container,
.hero-cta {
    background: transparent !important;
    box-shadow: none !important;
}

/* --- 3) Красивый единый фон для пояса: мягкие градиенты --- */
.hero {
    position: relative;
    background: #fff;
    /* база */
    overflow: hidden;
    /* на всякий */
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(1100px 520px at 50% -12%, rgba(30, 144, 255, .06), transparent 60%),
        radial-gradient(1100px 520px at 50% 112%, rgba(255, 102, 0, .05), transparent 60%),
        linear-gradient(180deg, #ffffff 0%, #FAFAFA 100%);
    pointer-events: none;
    z-index: 0;
}

/* поднимаем контент над фоном */
.hero>.container {
    position: relative;
    z-index: 1;
}

/* --- 4) Why Choose всегда «помещается»: компактнее отступы на мобиле --- */
.section-sep {
    margin: 18px auto 10px;
}

.features-block {
    padding: 26px 0 44px;
}

.features-title {
    margin: 8px 0 8px;
    font-size: 24px;
}

@media (max-width: 768px) {
    .hero {
        padding-bottom: 26px;
    }

    /* меньше «воздуха» под CTA */
    .license-list {
        gap: 10px;
    }

    .features-block {
        padding-top: 22px;
    }

    .features-inner {
        gap: 20px;
    }
}

/* === HERO: фотофон с блюром и затемнением === */
.hero {
    position: relative;
    min-height: 520px;
    /* можно менять */
    overflow: hidden;
    background: none !important;
    /* глушим старые фоны */
}

/* Слой с изображением — блюрим ИМЕННО картинку */
.hero::before {
    content: "";
    position: absolute;

    /* чтобы не было тёмных краёв от blur */
    background: url("/images/kitchen-blur-bg.jpg") center/cover no-repeat;
    filter: blur(8px) saturate(1.05);
    /* мягкий blur + лёгкая сочность */
    transform: scale(1.06);
    /* компенсируем усадку от blur */
    z-index: 0;
}

/* Затемняем и добавляем деликатный цветовой объём */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(1100px 520px at 20% 10%, rgba(30, 144, 255, .10), transparent 65%),
        radial-gradient(1000px 480px at 80% 90%, rgba(255, 102, 0, .08), transparent 65%),
        rgba(0, 0, 0, .22);
    /* общее затемнение (меняй 0.18–0.28) */
    z-index: 1;
    pointer-events: none;
}

/* Контент поверх фона */
.hero>.container {
    position: relative;
    z-index: 2;
}

/* Чуть ниже порог высоты на телефонах */
@media (max-width: 480px) {
    .hero {
        min-height: 460px;
    }
}

/* --- убрать линии у заголовка BRANDS WE REPAIR --- */
.hero-title .title-line::before,
.hero-title .title-line::after { display: none !important; }

/* --- сделать кнопки брендов без белых прямоугольников --- */
.brand-block{
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 8px 0 !important;   /* компактнее */
}
.brand-block:hover{ transform: none !important; box-shadow: none !important; }
/* опционально: лёгкий ховер на "Learn" */
.brand-block:hover .arrow-link span{ text-decoration: underline; border-bottom: 0 !important; }

/* --- ужать отступы, чтобы Why Choose поместился сразу ниже --- */
.hero .container{ padding-top: 16px !important; padding-bottom: 18px !important; }
.license-minimal{ margin-top: 6px !important; }
.hero-cta{ margin-top: 10px !important; }
.section-sep{ height: 8px !important; margin: 0 !important; }

/* Why Choose — ближе к герою */
.features-block .container{ padding-top: 8px !important; }
.features-title{ margin: 8px 0 12px !important; }

/* --- на всякий случай прибьём возможные “линии” от псевдоэлементов --- */
.hero .container::before,
.hero .container::after{ content: none !important; }
/* 1) Убрать белую панель и полоску под гридом */
.hero .container { border: none !important; }
.hero-grid{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}
/* На случай, если белый фон сидит на wrapper-е: */
.hero .container > div:not(.license-minimal):not(.hero-cta):not(.hero-title):not(.hero-grid) {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}
/* Убрать любые псевдо-«линии» */
.hero .container::before,
.hero .container::after { content: none !important; }

/* 2) Кнопки брендов — без карточек */
.brand-block{
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 6px 0 !important;
}
.brand-block:hover{ transform:none !important; box-shadow:none !important; }
.brand-block .arrow-link span{
  border-bottom: 0 !important; text-decoration: none;
}
.brand-block:hover .arrow-link span{ text-decoration: underline; }

/* 3) Ужать вертикальные отступы, чтобы Why Choose поместился */
.hero .container{ padding-top: 12px !important; padding-bottom: 14px !important; }
.license-minimal{ margin: 6px 0 4px !important; }
.hero-cta{ margin-top: 8px !important; }
.section-sep{ height: 6px !important; margin:0 !important; }

/* Why Choose — ближе к герою */
.features-block{ margin-top: 6px !important; }
.features-block .container{ padding-top: 6px !important; }
.features-title{ margin: 6px 0 10px !important; }

/* 4) Убрать линии у заголовка (если включались) */
.hero-title .title-line::before,
.hero-title .title-line::after{ display:none !important; }
/* 1) Убрать белую панель и полоску под гридом */
.hero .container {
    border: none !important;
}

/* === HERO: читаемость заголовка BRANDS WE REPAIR (override) === */
.hero .hero-title-bg{
    display: inline-block;
    margin: 0 auto 28px;
    padding: 10px 26px;
    border-radius: 28px;
    background: rgba(255,255,255,0.94);
    border: 2px solid #1E90FF;
    box-shadow: 0 12px 28px rgba(0,0,0,0.18), inset 0 2px 0 rgba(255,255,255,0.85);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

.hero .hero-title{
    font-size: clamp(2rem, 4.6vw, 3rem);
    font-weight: 900;
    color: #1E90FF;
    text-transform: uppercase;
    letter-spacing: .06em;
    line-height: 1.1;
    margin: 0;
}

.hero-grid {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
}

/* На случай, если белый фон сидит на wrapper-е: */
.hero .container>div:not(.license-minimal):not(.hero-cta):not(.hero-title):not(.hero-grid) {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

/* Убрать любые псевдо-«линии» */
.hero .container::before,
.hero .container::after {
    content: none !important;
}

/* 2) Кнопки брендов — без карточек */
.brand-block {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 6px 0 !important;
}

.brand-block:hover {
    transform: none !important;
    box-shadow: none !important;
}

.brand-block .arrow-link span {
    border-bottom: 0 !important;
    text-decoration: none;
}

.brand-block:hover .arrow-link span {
    text-decoration: underline;
}

/* 3) Ужать вертикальные отступы, чтобы Why Choose поместился */
.hero .container {
    padding-top: 12px !important;
    padding-bottom: 14px !important;
}

.license-minimal {
    margin: 6px 0 4px !important;
}

.hero-cta {
    margin-top: 8px !important;
}

.section-sep {
    height: 6px !important;
    margin: 0 !important;
}

/* Why Choose — ближе к герою */
.features-block {
    margin-top: 6px !important;
}

.features-block .container {
    padding-top: 6px !important;
}

.features-title {
    margin: 6px 0 10px !important;
}

/* 4) Убрать линии у заголовка (если включались) */
.hero-title .title-line::before,
.hero-title .title-line::after {
    display: none !important;
}

/* --- Кнопки брендов с полупрозрачным фоном и тенью --- */
.brand-block {
    background: rgba(255, 255, 255, 0.85);
    /* слегка прозрачный белый */
    border: none !important;
    border-radius: 14px;
    padding: 14px 12px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.brand-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.brand-block .arrow-link span {
    border-bottom: 2px solid #FF6600;
}

.brand-block:hover .arrow-link span {
    text-decoration: none;
}

/* --- Линии возле BRANDS WE REPAIR оставляем --- */
.hero-title .title-line::before,
.hero-title .title-line::after {
    display: inline-block !important;
}
/* --- Размер логотипов крупнее --- */
.brand-logo {
    max-width: 200px !important;
    max-height: 60px !important;
}

/* --- Грид всегда 4 на десктопе, 2 на мобильных --- */
.hero-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }
}

/* --- Кнопки брендов с мягким выделением --- */
.brand-block {
    background: rgba(255, 255, 255, 0.85);
    border: none !important;
    border-radius: 14px;
    padding: 16px 14px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.brand-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

/* --- Ссылка Learn под логотипами --- */
.brand-block .arrow-link span {
    border-bottom: 2px solid #FF6600;
}

.brand-block:hover .arrow-link span {
    border-bottom: none;
}

/* --- Линии возле BRANDS WE REPAIR оставляем --- */
.hero-title .title-line::before,
.hero-title .title-line::after {
    display: inline-block !important;
}
/* 0) Чуть затемняем фон в hero для контраста */
.hero::after{
  background: linear-gradient(180deg,
    rgba(2,13,24,.65) 0%,
    rgba(2,13,24,.45) 35%,
    rgba(255,255,255,1) 100%) !important;
}

/* 1) Карточки брендов => «кнопки» (фрост + тонкая рамка) */
.brand-block{
  cursor: pointer;
  background: rgba(12, 22, 38, 0.28) !important;     /* тёмная полупрозрачная подложка */
  backdrop-filter: blur(6px);                         /* эффект “стекла” (если поддерживается) */
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.28) !important;/* тонкая светлая рамка */
  border-radius: 16px !important;
  padding: 16px 14px !important;
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.brand-block:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
  border-color: rgba(255,255,255,0.45) !important;
}
.brand-block:focus-visible{
  outline: 0;
  box-shadow: 0 0 0 3px rgba(30,144,255,.55), 0 10px 24px rgba(0,0,0,.22);
}

/* 2) Логотипы крупнее */
.brand-logo{
  max-width: 200px !important;
  max-height: 60px !important;
  filter: drop-shadow(0 1px 0 rgba(0,0,0,.08));
}

/* 3) Делаем “Learn” настоящей кнопкой-пилюлей внутри карточки */
.arrow-link{ margin-top: 8px; }
.arrow-link span{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  font-weight: 800;
  border-radius: 999px;
  background: #FF6600;       /* яркая CTA-подложка */
  color: #fff;
  border-bottom: 0 !important;
  box-shadow: 0 2px 8px rgba(255,102,0,.28);
}
.arrow-link svg{ stroke: #fff !important; }
.brand-block:hover .arrow-link span{ transform: translateY(-1px); }

/* 4) Сетка: 2x2 на мобиле, 4 в ряд на десктопе */
.hero-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
}
@media (min-width:768px){
  .hero-grid{ grid-template-columns:repeat(4,1fr); gap:16px; }
}

/* 5) Линии у BRANDS WE REPAIR — оставить */
.hero-title .title-line::before,
.hero-title .title-line::after{ display:inline-block !important; }
/* ——— КАК ДОЛЖНА ВЫГЛЯДЕТЬ КНОПКА БРЕНДА ——— */
.hero-grid{
  display:grid; grid-template-columns:repeat(2,1fr); gap:12px;
}
@media (min-width:768px){ .hero-grid{ grid-template-columns:repeat(4,1fr); gap:16px; }}

/* карточка: чисто, тонкая рамка, лёгкая подложка */
.brand-block{
  cursor:pointer;
  background: rgba(255,255,255,0.10) !important; /* лёгкий “туман”, не тёмный блок */
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.32) !important; /* тонкая светлая рамка */
  border-radius: 16px !important;
  padding: 18px 14px !important;
  box-shadow: 0 4px 14px rgba(0,0,0,.08);         /* мягкая тень */
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.brand-block:hover{
  transform: translateY(-1px);
  border-color: #1E90FF !important;               /* акцент на ховере */
  box-shadow: 0 8px 22px rgba(0,0,0,.12);
}
.brand-block:focus-visible{
  outline:0;
  box-shadow: 0 0 0 3px rgba(30,144,255,.45), 0 8px 22px rgba(0,0,0,.12);
}

/* логотип крупный и контрастный */
.brand-logo{
  max-width: 200px !important;
  max-height: 60px !important;
  opacity: 1 !important; filter: none !important; /* убираем затемнение */
}

/* “Learn” — не плашка, а текстовая кнопка */
.arrow-link{ margin-top:10px; }
.arrow-link span{
  display:inline-flex; align-items:center; gap:6px;
  font-weight:800; color:#FF6600;                 /* оранжевый текст */
  border:0 !important; text-decoration:none;
}
.arrow-link svg{ stroke:#FF6600 !important; }
.brand-block:hover .arrow-link span{ text-decoration: underline; }

/* оставить линии у BRANDS WE REPAIR */
.hero-title .title-line::before,
.hero-title .title-line::after{ display:inline-block !important; }

/* сжать вертикальные отступы, чтобы Why Choose вошёл */
.hero .container{ padding-top:16px !important; padding-bottom:18px !important; }
.section-sep{ height:8px !important; }
.features-block .container{ padding-top:8px !important; }
/* --- Грид: 4 на десктопе, 2 на мобильных --- */
.hero-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
    }
}
/* ==== 1) БЕЛЫЕ КНОПКИ-БРЕНДЫ (аккуратно, без таблеток) ==== */

/* сетка: 4 в ряд на десктопе, 2x2 на мобиле */
.hero-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

@media (min-width:768px) {
    .hero-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
    }
}

/* сама карточка */
.brand-block {
    background: #fff !important;
    border: 1px solid #e9eef5 !important;
    border-radius: 14px !important;
    padding: 14px 12px !important;
    /* компактнее, чем было */
    text-align: center;
    box-shadow: 0 3px 12px rgba(0, 0, 0, .08);
    /* мягко */
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.brand-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
    border-color: #dbe5f3 !important;
}

/* логотипы крупные, но не «давят» */
.brand-logo {
    max-width: 200px !important;
    max-height: 60px !important;
    margin-bottom: 10px !important;
    filter: none !important;
    opacity: 1 !important;
    /* убрать затемнение */
}

/* "Learn" — просто текст со стрелкой, без плашек */
.arrow-link {
    margin-top: 6px;
}

.arrow-link span {
    background: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    color: #FF6600 !important;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-bottom: 2px solid #FF6600;
    /* читаемая «ссылка» */
}

.arrow-link svg {
    stroke: #FF6600 !important;
}

.brand-block:hover .arrow-link span {
    border-bottom-color: transparent;
}

/* на всякий случай убираем старые «пилюли», если где-то остались */
.brand-block .arrow-link span[style] {
    all: unset;
}

.brand-block .arrow-link span[style]::before,
.brand-block .arrow-link span[style]::after {
    content: none !important;
}

/* ==== 2) УЖИМАЕМ HERO, ЧТОБЫ WHY CHOOSE ПОМЕСТИЛСЯ ==== */

/* оставляем линии у заголовка */
.hero-title .title-line::before,
.hero-title .title-line::after {
    display: inline-block !important;
}

/* меньше высота hero */
.hero .container {
    padding-top: 14px !important;
    padding-bottom: 12px !important;
}

/* бейджи лицензий компактнее */
.license-minimal {
    margin: 8px 0 6px !important;
}

.license-list {
    gap: 6px 10px !important;
}

.license-list li {
    padding: 6px 10px !important;
    font-weight: 800;
}

/* кнопка BOOK ниже — почище и ниже тень */
.hero-cta {
    margin-top: 10px !important;
}

.cta-button {
    padding: 12px 18px !important;
    font-size: 16px !important;
    border-radius: 22px !important;
    box-shadow: 0 6px 16px rgba(255, 102, 0, .25) !important;
}

/* убираем лишний разделитель и «полоски» под героем */
.section-sep {
    height: 6px !important;
    margin: 0 !important;
    border: 0 !important;
}

.hero .container::before,
.hero .container::after {
    content: none !important;
}

/* Why Choose ближе */
.features-block {
    margin-top: 6px !important;
}

.features-block .container {
    padding-top: 8px !important;
}

.features-title {
    margin: 8px 0 12px !important;
}

/* чуть темнее блюр вверху для читаемости, без зашторивания низа */
.hero::after {
    background: linear-gradient(180deg, rgba(2, 13, 24, .55) 0%, rgba(2, 13, 24, .35) 30%, rgba(255, 255, 255, 1) 100%) !important;
}

/* ——— 1) Убрать белую полосу под шапкой ——— */
header,
.container.header-flex {
    border-bottom: 0 !important;
}

.hero {
    margin-top: 0 !important;
    border-top: 0 !important;
}

.hero .container {
    border-top: 0 !important;
}

.hero .container::before,
.hero .container::after {
    content: none !important;
}

/* верх геро чуть темнее для контраста, без белой кромки */
.hero::after {
    background: linear-gradient(180deg,
            rgba(2, 13, 24, .55) 0%,
            rgba(2, 13, 24, .35) 32%,
            rgba(255, 255, 255, 1) 100%) !important;
}

/* ——— 2) Убрать линию под 4 кнопками ——— */
.section-sep {
    display: none !important;
    height: 0 !important;
    margin: 0 !important;
    border: 0 !important;
}

/* ——— 3) Пилюли LICENSED/EPA/INSURED — без подчёркиваний ——— */
.license-minimal {
    margin: 10px 0 6px !important;
}

.license-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    justify-content: center;
    margin: 0 !important;
    padding: 0 !important;
}

.license-list li,
.license-list a {
    text-decoration: none !important;
}

.license-list li {
    background: #fff;
    color: #1E90FF;
    font-weight: 800;
    border: 1px solid #DFE9FF;
    border-radius: 999px;
    padding: 10px 14px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .06);
}

/* ——— Белые кнопки-бренды (как просил) ——— */
.hero-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

@media (min-width:768px) {
    .hero-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
    }
}

.brand-block {
    background: #fff !important;
    border: 1px solid #e9eef5 !important;
    border-radius: 14px !important;
    padding: 16px 12px !important;
    text-align: center;
    box-shadow: 0 3px 12px rgba(0, 0, 0, .08);
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.brand-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
    border-color: #dbe5f3 !important;
}

.brand-logo {
    max-width: 200px !important;
    max-height: 56px !important;
    margin-bottom: 10px !important;
    opacity: 1 !important;
    filter: none !important;
}

.arrow-link {
    margin-top: 6px;
}

.arrow-link span {
    color: #FF6600 !important;
    font-weight: 800;
    display: inline-flex;
    gap: 6px;
    border-bottom: 2px solid #FF6600;
}

.arrow-link svg {
    stroke: #FF6600 !important;
}

.brand-block:hover .arrow-link span {
    border-bottom-color: transparent;
}

/* ——— Ужать hero, чтобы Why Choose влезал ——— */
.hero-title {
    margin: 12px 0 14px !important;
}

.hero .container {
    padding-top: 14px !important;
    padding-bottom: 12px !important;
}

.hero-cta {
    margin-top: 10px !important;
}

.features-block {
    margin-top: 8px !important;
}

.features-block .container {
    padding-top: 10px !important;
}

.features-title {
    margin: 8px 0 12px !important;
}

/* ——— Линии около BRANDS WE REPAIR оставить ——— */
.hero-title .title-line::before,
.hero-title .title-line::after {
    display: inline-block !important;
}

/* 1) Серая полоса под 4 кнопками — убрать */
.hero-grid,
.hero-grid::before,
.hero-grid::after {
    border: 0 !important;
    box-shadow: none !important;
}

.hero .container {
    border-bottom: 0 !important;
}

.hero hr,
.hero .line,
.hero .divider,
.section-sep {
    display: none !important;
    height: 0 !important;
}

/* 2) LICENSED/EPA/INSURED — красивые pills без подчёркивания */
.license-list,
.license-list *,
.license-list li,
.license-list a {
    text-decoration: none !important;
    border-bottom: 0 !important;
}

.license-list {
    gap: 8px 10px !important;
    margin: 8px 0 6px !important;
}

.license-list li {
    background: #fff;
    color: #1E90FF;
    font-weight: 800;
    border: 1px solid #DFE9FF;
    border-radius: 999px;
    padding: 8px 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .06);
}

/* 3) Белые карточки брендов (оставляем как есть, чуть компактнее) */
.brand-block {
    padding: 14px 12px !important;
}

.brand-logo {
    max-height: 56px !important;
}

/* можно 52px, если нужно ещё ниже */

/* 4) Ужимаем hero, чтобы Why Choose был ближе и целиком влез */
.hero .container {
    padding-top: 10px !important;
    padding-bottom: 8px !important;
}

.hero-title {
    margin: 10px 0 12px !important;
}

.license-minimal {
    margin: 6px 0 6px !important;
}

.hero-cta {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
}

/* 5) Why Choose Wolfix — ближе и компактнее, 4 карточки в ряд */
.features-block {
    margin-top: 4px !important;
}

.features-block .container {
    padding-top: 6px !important;
}

.features-title {
    margin: 6px 0 10px !important;
}

.features-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

@media (min-width: 820px) {
    .features-inner {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }
}

.feature {
    padding: 12px !important;
    border-radius: 14px;
    border: 1px solid #e9eef5;
}

.feature svg {
    width: 36px;
    height: 36px;
}

/* 6) Линии у BRANDS WE REPAIR оставить */
.hero-title .title-line::before,
.hero-title .title-line::after {
    display: inline-block !important;
}

/* 0) Убрать белую полосу под шапкой (шов между header и hero) */
header,
.container.header-flex {
    border-bottom: 0 !important;
    box-shadow: none !important;
    margin-bottom: 0 !important;
}

header::before,
header::after {
    content: none !important;
}

.hero {
    margin-top: 0 !important;
    position: relative;
}

/* заставляем фон hero начинаться НА 1 пиксель выше, чтобы перекрыть шов */
.hero::before,
.hero::after {
    inset: -1px 0 0 0 !important;
}

/* 1) Линия под 4 кнопками — убрать любой источник */
.hero .container,
.hero .container * {
    border-bottom: 0 !important;
}

.section-sep,
.hero hr,
.hero .divider,
.hero .line {
    display: none !important;
    height: 0 !important;
}

/* 2) Pills “LICENSED/EPA/INSURED” — без подчёркиваний и аккуратный вид */
.license-list,
.license-list *,
.license-list a {
    text-decoration: none !important;
    border-bottom: 0 !important;
}

.license-minimal {
    margin: 8px 0 6px !important;
}

.license-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 10px;
    padding: 0;
    margin: 0;
}

.license-list li {
    background: #fff;
    color: #1E90FF;
    font-weight: 800;
    border: 1px solid #DFE9FF;
    border-radius: 999px;
    padding: 8px 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .06);
}

/* 3) Белые карточки брендов — компактнее, чтобы Why Choose влез */
.brand-block {
    background: #fff !important;
    border: 1px solid #e9eef5 !important;
    border-radius: 14px !important;
    padding: 14px 12px !important;
    box-shadow: 0 3px 12px rgba(0, 0, 0, .08);
}

.brand-logo {
    max-height: 54px !important;
    margin-bottom: 8px !important;
}

/* при необходимости опусти до 52px */

/* 4) Сжать отступы hero и Why Choose ближе к BOOK AN APPOINTMENT */
.hero-title {
    margin: 10px 0 10px !important;
}

.hero .container {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
}

.hero-cta {
    margin: 8px 0 8px !important;
}

.features-block {
    margin-top: 4px !important;
}

.features-block .container {
    padding-top: 6px !important;
}

.features-title {
    margin: 6px 0 10px !important;
}

.features-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

@media (min-width:820px) {
    .features-inner {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }
}

/* 5) Линии у BRANDS WE REPAIR оставить */
.hero-title .title-line::before,
.hero-title .title-line::after {
    display: inline-block !important;
}
.hero {
    padding: 36px 0 24px;
}

.hero-title {
    margin: 0 0 16px;
}

.title-line {
    display: inline-block;
    position: relative;
    padding: 0 16px;
}

.title-line::before,
.title-line::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 120px;
    height: 2px;
    background: #1E90FF;
    opacity: .35;
}

.title-line::before {
    right: 100%;
    margin-right: 12px;
}

.title-line::after {
    left: 100%;
    margin-left: 12px;
}

.hero-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
    .hero-grid {
        gap: 16px;
        grid-template-columns: repeat(4, 1fr);
    }
}

.brand-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #E6E9EE;
    border-radius: 14px;
    padding: 16px 12px;
    background: #fff;
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease;
}

.brand-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, .06);
}

.brand-logo {
    max-width: 150px;
    max-height: 36px;
    object-fit: contain;
    margin: 4px 0 10px;
}

.arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.arrow-link svg {
    flex: 0 0 auto;
}

/* стрелка не выпирает */
.license-minimal { padding: 10px 0 8px; }
.license-list { display:flex; gap:8px; justify-content:center; padding:0; margin:12px 0 0; list-style:none; }
.license-list li {
  font-size:12px; letter-spacing:.6px; color:#0B1420;
  background:#F0F4F8; border:1px solid #E3E8EF; border-radius:999px; padding:6px 10px; font-weight:700;
}
@media (min-width:768px){ .license-list li{ font-size:13px; padding:6px 12px; } }

.features-block {
    padding: 28px 0 12px;
}

.features-title {
    margin: 0 0 14px;
    text-align: center;
}

.features-inner {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
    justify-items: center;
}

@media (min-width: 900px) {
    .features-inner {
        grid-template-columns: repeat(4, 1fr);
        gap: 14px;
    }
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #E6E9EE;
    border-radius: 14px;
    padding: 14px 10px;
}

.feature svg {
    width: 40px;
    height: 40px;
    stroke: #1E90FF;
}

.feature div {
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    line-height: 1.2;
}
header {
    margin-bottom: -1px;
    /* перекрыть белый зазор */
}

.hero {
    margin-top: 0 !important;
    /* чтобы не было лишнего отступа сверху */
}
header,
.container.header-flex {
    border-bottom: none !important;
}

.hero {
    position: relative;
    top: -12px;
    /* убираем линию физически */
}

.hero-title {
    font-size: 32px;
    font-weight: 900;
    text-align: center;
    color: #007BFF;
    letter-spacing: 1px;
    z-index: 2;
    padding: 8px 20px;
    display: inline-block;
    background: #ffffff;
    /* чисто белый фон */
    border-radius: 12px;
    /* как у карточек */
    text-transform: uppercase;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    /* лёгкая тень как у кнопок */
}

.title-line {
    padding: 0;
    /* убираем отступы под линии */
}

.title-line::before,
.title-line::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 100px;
    height: 2px;
    background: rgba(0, 123, 255, 0.5);
    /* полупрозрачный синий */
}

.title-line::before {
    right: 100%;
    margin-right: 12px;
}

.title-line::after {
    left: 100%;
    margin-left: 12px;
}
.title-line::before,
.title-line::after {
    content: none !important;
}
.hero {
    padding-top: 20px !important;
    /* было больше, уменьшаем */
}

.hero .container {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Сетка 2×2 на мобиле, 4 в ряд на десктопе */
.hero-grid{
  display:grid;
  gap:16px;
  grid-template-columns:repeat(2,1fr);
}
@media (min-width: 900px){
  .hero-grid{ grid-template-columns:repeat(4,1fr); gap:18px; }
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 8px;
}

@media (min-width: 900px) {
    .hero-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }
}

.brand-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 120px;
    /* меньше высота */
    padding: 12px 10px;
    border: 1px solid #E6E9EE;
    border-radius: 10px;
    background: #fff;
    text-decoration: none;
    box-shadow: none;
    transition: border-color 0.15s ease, transform 0.12s ease;
}

.brand-block:hover {
    border-color: #D6DEE8;
    transform: translateY(-1px);
}

.brand-logo {
    height: 32px;
    /* меньше логотип */
    max-width: 140px;
    object-fit: contain;
    margin: 4px 0 8px;
}

.arrow-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 700;
    font-size: 13px;
    /* меньше текст Learn */
    color: #FF6600;
}

.arrow-link svg {
    width: 12px;
    height: 12px;
    transition: transform 0.15s ease;
}

.brand-block:hover .arrow-link svg {
    transform: translateX(2px);
}
.brand-logo {
    height: 52px;
    /* было 32px — теперь крупнее */
    max-width: 180px;
    object-fit: contain;
    margin: 6px 0 10px;
}

@media (min-width: 1200px) {
    .brand-logo {
        height: 58px;
        /* на больших экранах ещё чуть больше */
        max-width: 200px;
    }
}

.brand-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 140px;
    padding: 14px 12px;
    border: 1px solid #E6E9EE;
    border-radius: 10px;
    background: #fff;
    text-decoration: none;
}

/* контейнер для логотипа фиксированной высоты */
.brand-logo-wrapper {
    height: 56px;
    /* одинаковое место под логотипы */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.brand-logo {
    max-height: 100%;
    max-width: 180px;
    object-fit: contain;
}

/* Learn всегда прижат вниз */
.arrow-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 700;
    font-size: 14px;
    color: #FF6600;
}

@media (hover: hover) and (pointer: fine) {
    .brand-block {
        transition: box-shadow .2s ease, border-color .2s ease, background .2s ease;
    }

    .brand-block:hover {
        border-color: #1E90FF;
        /* подсветка рамки синим */
        box-shadow: 0 6px 18px rgba(30, 144, 255, 0.25);
        /* мягкая голубая тень */
        background: #ffffff;
    }

    /* Лого чуть приподнимается */
    .brand-logo-wrapper {
        transition: transform .18s ease;
    }

    .brand-block:hover .brand-logo-wrapper {
        transform: translateY(-1px);
    }

    /* Learn → — стрелка слегка сдвигается */
    .arrow-link svg {
        transition: transform .18s ease, opacity .18s ease;
        transform: translateX(0);
        opacity: .9;
    }

    .brand-block:hover .arrow-link svg {
        transform: translateX(3px);
        opacity: 1;
    }
}

/* Фокус для клавиатуры */
.brand-block:focus-visible {
    outline: 3px solid #1E90FF;
    outline-offset: 3px;
    border-radius: 12px;
}

@media (hover: hover) and (pointer: fine) {
    .brand-block {
        transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
        will-change: transform;
    }

    .brand-block:hover {
        transform: scale(1.02);
        /* очень лёгкое увеличение */
        border-color: #1E90FF;
        /* синий акцент */
        box-shadow: 0 8px 22px rgba(30, 144, 255, 0.25);
        background: #ffffff;
    }

    /* Лого слегка приподнимается */
    .brand-logo-wrapper {
        transition: transform .18s ease;
    }

    .brand-block:hover .brand-logo-wrapper {
        transform: translateY(-1px);
    }

    /* Learn → — стрелка едет чуть дальше */
    .arrow-link svg {
        transition: transform .18s ease, opacity .18s ease;
        transform: translateX(0);
        opacity: .9;
    }

    .brand-block:hover .arrow-link svg {
        transform: translateX(4px);
        opacity: 1;
    }
}

/* оранжевая подсветка при hover — поверх белого фона */
.brand-block {
    position: relative;
    overflow: hidden;
}

@media (hover: hover) and (pointer: fine) {
    .brand-block::after {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: radial-gradient(120% 120% at 50% -20%, rgba(255, 102, 0, .18) 0%, rgba(255, 102, 0, 0) 70%),
            linear-gradient(0deg, rgba(255, 102, 0, .08), rgba(255, 102, 0, .08));
        opacity: 0;
        transition: opacity .2s ease;
    }

    .brand-block:hover {
        transform: scale(1.02);
        border-color: #FF6600;
        box-shadow: 0 8px 22px rgba(255, 102, 0, .25);
    }

    .brand-block:hover::after {
        opacity: 1;
    }

    /* стрелка оживает */
    .arrow-link svg {
        transition: transform .18s ease, opacity .18s ease;
    }

    .brand-block:hover .arrow-link svg {
        transform: translateX(4px);
        opacity: 1;
    }
}

/* если где-то осталось старое правило — перекрываем его */
.brand-block:hover {
    background: #fff !important;
}
.hero-grid {
    border-bottom: none !important;
}
hr {
  display: none;
}

.hero-grid {
  border: none;
}
/* Убираем белую полосу и сжимаем отступ */
.hero {
    margin-top: 0 !important;
    padding-bottom: 0 !important;
}

.hero-cta {
    margin-bottom: 8px !important;
}

.features-block {
    margin-top: 8px !important;
    /* ближе к BOOK AN APPOINTMENT */
}

.features-block .container {
    padding-top: 0 !important;
}
/* Убираем серую линию под блоком брендов */
.hero-grid {
    border-bottom: none !important;
}

.section-sep,
.hero hr,
.hero .divider,
.hero .line {
    display: none !important;
    height: 0 !important;
}

/* Убираем подчёркивание у LICENSED/EPA/INSURED */
.license-list a,
.license-list li {
    text-decoration: none !important;
    border-bottom: none !important;
}
/* Убить разделитель между сеткой брендов и чипами */
.hero .hero-grid+.license-minimal,
.hero .hero-grid+.license-minimal::before,
.hero .hero-grid+.license-minimal::after,
.license-minimal,
.license-minimal::before,
.license-minimal::after {
    border-top: 0 !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
    background-image: none !important;
}

/* если линия рисуется на контейнере внутри */
.license-minimal .container,
.license-minimal .container::before,
.license-minimal .container::after {
    border: 0 !important;
    box-shadow: none !important;
}

/* запасной вариант: кто-то вставил hr/divider */
.hero .container>hr,
.hero .container>.divider,
.hero .container>.line {
    display: none !important;
    height: 0 !important;
}
.features-block {
    margin-top: 20px !important;
    /* уменьшаем расстояние */
}

/* Убираем серую линию */
hr,
.separator-line {
    display: none !important;
    border: none !important;
}
.features-block {
    margin-top: -50px !important;
    /* подними на 50px, при необходимости меняй значение */
}

.license-buttons a {
    display: inline-block;
    padding: 10px 22px;
    background: #fff;
    color: #222;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    font-size: 15px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.license-buttons a:hover {
    background: #1E90FF;
    color: #fff;
    box-shadow: 0 4px 10px rgba(30, 144, 255, 0.3);
}

.license-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    /* расстояние между кнопками */
    flex-wrap: wrap;
}

.license-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.license-buttons a {
    padding: 10px 22px;
    font-size: 14px;
    background: white;
    border-radius: 50px;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .license-buttons {
        gap: 12px;
        /* меньше расстояние между кнопками */
    }

    .license-buttons a {
        flex: 1 1 calc(50% - 12px);
        /* две кнопки в ряд */
        text-align: center;
    }
}

@media (max-width: 480px) {
    .license-buttons a {
        flex: 1 1 100%;
        /* по одной кнопке в ряд на узких экранах */
    }
}
@media (max-width: 480px) {

    /* Уменьшаем бренды */
    .hero-grid .brand-block {
        flex: 1 1 calc(25% - 8px);
        padding: 8px;
    }

    .brand-logo {
        max-width: 60px;
    }

    /* Сжимаем блок LICENSED */
    .license-buttons {
        display: flex;
        justify-content: center;
        gap: 6px;
        margin-top: 10px;
    }

    .license-buttons a {
        padding: 6px 10px;
        font-size: 11px;
        border-radius: 30px;
    }

    /* Кнопка BOOK меньше */
    .cta-button {
        padding: 8px 12px;
        font-size: 13px;
        margin-top: 8px;
    }
}

/* ===== iPhone / узкие экраны: всё вмещается в 1 экран ===== */
@media (max-width: 430px) {

    /* Заголовок */
    .hero-title {
        font-size: 20px !important;
        padding: 6px 12px !important;
        border-radius: 10px !important;
        margin: 8px 0 10px !important;
    }

    /* 4 карточки брендов — компактнее */
    .hero-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        margin-top: 8px !important;
    }

    .brand-block {
        padding: 10px 8px !important;
        border-radius: 12px !important;
        min-height: 120px !important;
    }

    .brand-logo {
        /* логотип всегда влезает и не «режется» */
        height: clamp(26px, 6.2vw, 38px) !important;
        max-width: 100% !important;
        object-fit: contain !important;
        margin: 4px 0 8px !important;
    }

    .arrow-link {
        font-size: 13px !important;
        gap: 6px !important;
    }

    /* LICENSED / EPA / INSURED — в одну строку, низкие капсулы */
    .license-minimal {
        margin: 10px 0 8px !important;
    }

    .license-list {
        display: flex !important;
        flex-wrap: nowrap !important;
        /* одна строка */
        gap: 8px !important;
        padding: 0 6px !important;
        justify-content: space-between !important;
    }

    .license-list li {
        flex: 1 1 0 !important;
        /* одинаковая ширина */
        min-width: 0 !important;
        text-align: center !important;
        white-space: nowrap !important;
        padding: 8px 6px !important;
        /* ниже капсулы */
        font-size: 12px !important;
        line-height: 1.1 !important;
        border: none !important;
        /* без рамки */
        background: #fff !important;
        box-shadow: 0 3px 8px rgba(0, 0, 0, .10) !important;
        border-radius: 9999px !important;
    }

    /* Оранжевая кнопка — компактная и ближе к лицензиям */
    .hero-cta {
        margin: 10px 0 6px !important;
    }

    .cta-button {
        font-size: 15px !important;
        padding: 12px 14px !important;
        border-radius: 26px !important;
    }

    /* «Why Choose Wolfix» — ближе к кнопке BOOK */
    .features-block {
        margin-top: 6px !important;
    }

    .features-title {
        margin: 8px 0 10px !important;
        font-size: 22px !important;
    }
}

/* более агрессивная ужимка именно для 390px (iPhone 13/14/15/16) */
@media (max-width: 390px) {
    .brand-block {
        min-height: 112px !important;
    }

    .brand-logo {
        height: clamp(24px, 6vw, 34px) !important;
    }

    .license-list li {
        padding: 7px 6px !important;
        font-size: 11.5px !important;
    }

    .cta-button {
        font-size: 14px !important;
        padding: 11px 12px !important;
    }
}
@media (max-width: 430px) {

    /* LICENSED / EPA / INSURED — компактные прямоугольники */
    .license-minimal {
        margin: 8px 0 8px !important;
    }

    .license-list {
        display: flex !important;
        gap: 6px !important;
        justify-content: space-between !important;
    }

    .license-list li {
        flex: 1 !important;
        padding: 6px 4px !important;
        /* ниже и уже */
        font-size: 11.5px !important;
        line-height: 1.1 !important;
        border-radius: 6px !important;
        /* прямоугольник с лёгким скруглением */
        background: #fff !important;
        box-shadow: 0 2px 5px rgba(0, 0, 0, .1) !important;
        border: none !important;
        white-space: nowrap !important;
        text-align: center !important;
    }
}
@media (max-width: 430px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 8px !important;
    }

    .brand-block {
        height: 70px !important;
        /* уменьшили высоту */
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 8px 10px !important;
        border-radius: 8px !important;
        /* небольшое скругление */
    }

    .brand-logo {
        max-height: 40px !important;
        max-width: 60% !important;
        object-fit: contain;
    }

    .arrow-link {
        font-size: 14px !important;
        display: flex;
        align-items: center;
        gap: 4px;
        white-space: nowrap;
    }

    .arrow-link svg {
        width: 12px !important;
        height: 12px !important;
    }
}
@media (max-width: 430px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 8px !important;
    }

    .brand-block {
        height: 70px !important;
        /* фиксированная меньшая высота */
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 6px 10px !important;
        border-radius: 8px !important;
    }

    .brand-logo {
        max-height: 40px !important;
        max-width: 60% !important;
        object-fit: contain;
    }

    .arrow-link {
        font-size: 14px !important;
        display: flex;
        align-items: center;
        gap: 4px;
        white-space: nowrap;
    }

    .arrow-link svg {
        width: 12px !important;
        height: 12px !important;
    }
}
/* iPhone / узкие экраны */
@media (max-width: 430px) {

    /* сетка 2×2, чуть меньше зазоры */
    .hero-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 8px !important;
    }

    /* делаем карточку прямоугольной и низкой */
    .brand-block {
        height: 78px !important;
        /* ➜ невысокие прямоугольники */
        min-height: 0 !important;
        padding: 8px 12px !important;
        border-radius: 10px !important;
        display: flex !important;
        /* логотип слева, Learn справа */
        align-items: center !important;
        justify-content: space-between !important;
        box-shadow: 0 3px 10px rgba(0, 0, 0, .08) !important;
    }

}

@media (max-width: 430px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 8px !important;
    }

    .brand-block {
        height: 78px !important;
        padding: 6px !important;
        border-radius: 10px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08) !important;
        text-align: center !important;
    }

    .brand-logo {
        max-height: 32px !important;
        width: auto !important;
        margin-bottom: 4px !important;
        object-fit: contain !important;
    }

    .arrow-link {
        font-size: 14px !important;
        font-weight: 800 !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 6px !important;
        white-space: nowrap !important;
        justify-content: center !important;
    }

    .arrow-link svg {
        width: 12px !important;
        height: 12px !important;
    }
}
/* Контейнер секции — плотнее и чище */
.features-block {
    padding: 24px 0 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.0), rgba(255, 255, 255, 0.6));
}

/* Заголовок — немного крупнее, компактнее */
.features-title {
    margin: 8px 0 16px;
    font-weight: 900;
    font-size: clamp(22px, 2.4vw, 34px);
    letter-spacing: .2px;
}

/* Сетка: 4 в ряд на десктопе, 2×2 на мобилке */
.features-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    align-items: stretch;
}

@media (min-width: 900px) {
    .features-inner {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }
}

/* Карточка: ровная высота, мягкая тень, ровная рамка */
.feature {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    min-height: 160px;
    /* одинаковая высота */
    padding: 16px 14px;
    background: #fff;
    border: 1px solid #E6E9EE;
    border-radius: 16px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .06);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

/* Ховер-эффект — лёгкий подъём и glow */
@media (hover: hover) and (pointer: fine) {
    .feature:hover {
        transform: translateY(-2px);
        border-color: #1E90FF22;
        box-shadow: 0 10px 24px rgba(30, 144, 255, .18);
    }
}

/* Иконки — единый стиль: кольцо и лёгкое свечение */
.feature svg {
    width: 44px;
    height: 44px;
    stroke: #1E90FF;
    filter: drop-shadow(0 2px 8px rgba(30, 144, 255, .18));
}

/* Текст под иконкой — жирнее и чуть крупнее */
.feature div {
    font-weight: 800;
    font-size: 16px;
    line-height: 1.25;
    letter-spacing: .2px;
    text-align: center;
    color: #252A34;
}

/* Более компактная мобилка, чтобы всё помещалось без скролла */
@media (max-width: 420px) {
    .feature {
        min-height: 140px;
        padding: 12px 10px;
    }

    .feature svg {
        width: 38px;
        height: 38px;
    }

    .feature div {
        font-size: 15px;
    }
}

/* DESKTOP ONLY: уплотняем низ hero и подтягиваем Why */
@media (min-width: 1024px) {
    .hero {
        padding-bottom: 14px !important;
    }

    .hero .container {
        padding-bottom: 0 !important;
    }

    .license-minimal {
        margin: 8px 0 6px !important;
    }

    .license-minimal .license-buttons {
        gap: 16px !important;
        justify-content: center !important;
    }

    .hero-cta {
        margin: 12px 0 10px !important;
    }

    /* подвинуть следующий блок ближе к кнопке */
    .features-block {
        margin-top: -18px !important;
        /* можно варьировать: -10…-28px */
    }
}

/* на всякий: убираем любые разделители внутри hero */
.hero hr,
.hero .divider,
.hero .line,
.section-sep {
    display: none !important;
    height: 0 !important;
}

/* десктопные округлые pills (вернул красивый вид) */
@media (min-width: 1024px) {
    .license-minimal .license-buttons a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 12px 22px;
        background: #fff;
        border-radius: 999px;
        font-weight: 800;
        box-shadow: 0 8px 22px rgba(0, 0, 0, .12);
    }
}

/* =========================
   DESKTOP-ONLY TIGHTENING
   ========================= */
@media (min-width: 1024px) {
    

    /* Чуть уменьшаем «хвост» hero снизу */
    .hero {
        padding-bottom: 36px !important;
    }

    .hero .container {
        padding-bottom: 0 !important;
    }

    /* Pills — красивые, округлые, в ряд */
    .license-minimal {
        margin: 38px 0 10px !important;
    }

    .license-buttons {
        display: flex;
        justify-content: center;
        flex-wrap: nowrap;
        gap: 22px;
        /* расстояние между pills */
    }

    .license-buttons a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 14px 28px;
        border-radius: 999px;
        /* округлые как раньше */
        background: #fff;
        font-weight: 800;
        box-shadow: 0 6px 18px rgba(0, 0, 0, .12);
        border: 1px solid #EAF0F8;
        white-space: nowrap;
        /* не ломаем строку */
    }

    /* Кнопка — ближе к низу хиро, но без вмешательства в фон */
    .hero-cta {
        margin: 34px 0 10px !important;
    }

    /* Подтягиваем Why Choose вверх, не трогая фон hero */
    .features-block {
        margin-top: -42px !important;
        /* мягко перекрываем зазор */
    }

    .features-block .container {
        padding-top: 0 !important;
    }

    .features-title {
        margin-top: 6px !important;
    }
}

/* На случай промежуточных ширин — округлые pills тоже сохраняем */
@media (min-width: 768px) and (max-width: 1023px) {
    .license-buttons {
        justify-content: center;
        gap: 18px;
    }

    .license-buttons a {
        border-radius: 999px;
    }
}

@media (min-width: 1025px) {

    /* Уменьшаем отступ под брендами */
    .hero-grid {
        margin-bottom: 20px;
        /* было больше */
    }

    /* Уменьшаем отступ под бейджами */
    .badges-row {
        margin-bottom: 20px;
        /* было больше */
    }

    /* Отступ под кнопкой BOOK AN APPOINTMENT */
    .book-appointment-btn {
        margin-bottom: 30px;
        /* было ~60px, уменьшаем */
    }

    /* Why Choose Wolfix ближе к кнопке */
    .features-block {
        margin-top: 20px;
        /* было больше */
    }
}
/* === Desktop tight layout for hero === */
@media (min-width: 1025px) {

    /* Чуть компактнее верхний блок */
    .hero {
        padding-bottom: 24px;
        /* было щедрее */
    }

    /* Карточки брендов — меньше нижний отступ */
    .hero .hero-grid {
        row-gap: 24px;
        /* визуально стало плотнее */
        margin-bottom: 12px;
        /* было больше */
    }

    /* Ряд бейджей — всегда в строку и по центру */
    .license-minimal {
        margin-top: 8px;
        margin-bottom: 12px;
        /* было ~24–32 */
    }

    .license-minimal .license-buttons {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        /* визуальная «дыхалка» между бейджами */
        flex-wrap: nowrap;
        /* только одна строка на десктопе */
    }

    .license-minimal .license-buttons a {
        padding: 12px 22px;
        /* компактнее плашки */
    }

    /* Кнопка записи — чуть ближе к бейджам и к заголовку ниже */
    .hero-cta {
        margin-top: 14px;
        /* было больше */
        margin-bottom: 18px;
        /* уменьшили «провал» перед Why */
    }

    /* Why Choose Wolfix — ещё ближе к кнопке */
    .features-block {
        margin-top: 18px;
        /* было заметно больше */
    }
}

/* Extra-tight desktop spacing */
@media (min-width: 1025px) {

    /* бейджи ближе к карточкам */
    .license-minimal {
        margin-top: 6px;
        margin-bottom: 10px;
    }

    .license-minimal .license-buttons {
        gap: 18px;
    }

    /* кнопка ближе к бейджам и к блоку ниже */
    .hero-cta {
        margin-top: 10px;
        margin-bottom: 12px;
    }

    /* Why ещё ближе к кнопке */
    .features-block {
        margin-top: 14px;
    }
}

@media (min-width: 1025px) {
    .hero .hero-grid {
        margin-top: 15px;
    }

    /* увеличь число, если нужно ниже */
}

.license-buttons a:hover {
    color: #000 !important;
}

@media (max-width: 768px) {

    /* Заголовок, чтобы всегда помещался */
    .hero-title {
        font-size: 20px;
        text-align: center;
        white-space: nowrap;
    }

    /* Кнопки Licensed и т.д. в одну строку */
    .license-buttons {
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 8px;
    }

    .license-buttons button {
        padding: 8px 14px;
        font-size: 12px;
        border-radius: 30px;
        white-space: nowrap;
    }

    /* Логотипы брендов крупнее */
    .brand-logo {
        max-width: 120px;
        height: auto;
    }

    /* Сетка брендов, чтобы было просторнее */
    .hero-grid {
        gap: 14px;
    }
}

@media (max-width: 768px) {
    .license-buttons {
        display: flex;
        justify-content: center;
        gap: 6px;
        flex-wrap: nowrap;
    }

    .license-buttons button {
        flex: 1;
        padding: 6px 4px;
        font-size: 10px;
        border-radius: 20px;
        white-space: nowrap;
        /* Не переносить текст */
    }
}

/* ===== iPhone / мобильные: кнопки в одну строку, без переноса ===== */
@media (max-width: 480px) {
    .hero .license-minimal .license-buttons {
        display: flex;
        flex-wrap: nowrap;
        /* одна строка */
        justify-content: center;
        gap: 8px;
        margin-top: 10px;
    }

    .hero .license-minimal .license-buttons a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 1 1 0;
        /* три равных пилюли */
        min-width: 0;
        /* разрешаем сжиматься */
        height: 40px;
        /* компактная одинаковая высота */
        padding: 0 10px;
        /* уже — чтобы вместить текст */
        border-radius: 999px;
        white-space: nowrap;
        /* ВАЖНО: не переносить “EPA CERTIFIED” */
        font-weight: 800;
        font-size: clamp(10px, 2.7vw, 13px);
        /* плавное ужатие шрифта на узких экранах */
        letter-spacing: 0.02em;
        line-height: 1;
        /* чтобы текст не добавлял высоту */
    }

    /* Чуть сильнее ужмём именно среднюю кнопку, если всё ещё не влазит */
    .hero .license-minimal .license-buttons a:nth-child(2) {
        font-size: clamp(9.5px, 2.5vw, 12px);
        padding: 0 8px;
    }
}

/* 📱 айфоны/мобилки: подтянуть Why Choose ближе к кнопке,
   НЕ меняя фон и его затухание */
@media (max-width: 480px) {

    /* немного компактнее вокруг бейджей и кнопки */
    .license-minimal {
        margin-bottom: 10px !important;
    }

    .hero-cta {
        margin-bottom: 12px !important;
    }

    /* ключ: наезжаем блоком фич на низ hero */
    .features-block {
        margin-top: calc(-1 * clamp(12px, 4vw, 28px)) !important;
        position: relative;
        z-index: 1;
        /* чтобы не прятался под градиентом, если у того высокий z-index */
    }

    /* заголовок без лишнего воздуха */
    .features-title {
        margin-top: 0 !important;
    }
}

/* 📱 iPhone — ещё ближе к кнопке, без правок фона */
@media (max-width: 480px) {

    /* чуть компактнее отступы перед Why */
    .license-minimal {
        margin-bottom: 6px !important;
    }

    .hero-cta {
        margin-bottom: 8px !important;
    }

    /* сильнее наезжаем блоком преимуществ на низ hero */
    .features-block {
        /* было ~ -12…-28px; делаем -40…-88px адаптивно */
        margin-top: calc(-1 * clamp(75px, 10vw, 99px)) !important;
        position: relative;
        z-index: 1;
    }

    /* убираем лишний воздух у заголовка Why */
    .features-title {
        margin-top: 0 !important;
        /* если нужно ещё плотнее: */
        /* margin-bottom: 8px !important; */
    }
}

/* === Modal Styles === */
.wf-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.wf-modal.active {
    display: flex;
}

.wf-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.wf-modal__dialog {
    position: relative;
    background: #fff;
    border-radius: 12px;
    max-width: 640px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 2;
    padding: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.25s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wf-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #333;
    line-height: 1;
}

body.modal-open {
    overflow: hidden;
}

/* === Responsive (Bottom Sheet) === */
@media (max-width: 640px) {
    .wf-modal {
        align-items: flex-end;
    }

    .wf-modal__dialog {
        border-radius: 16px 16px 0 0;
        max-width: 100%;
        max-height: 85vh;
        padding: 20px 16px;
        animation: modalSlideUp 0.25s ease;
    }

    @keyframes modalSlideUp {
        from {
            transform: translateY(100%);
            opacity: 0;
        }

        to {
            transform: translateY(0);
            opacity: 1;
        }
    }
}
/* раньше было .wf-modal.active { ... } */
.wf-modal.is-open {
    display: flex;
}

/* Сам диалог */
.wf-modal__dialog {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    position: relative;
    max-width: 640px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    animation: modalFadeIn 0.25s ease-out;
}

/* Кнопка закрытия */
.wf-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    font-size: 28px;
    font-weight: 700;
    color: #555;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 0.2s ease;
}

.wf-modal__close:hover {
    color: #1E90FF;
    /* подсветка при наведении */
}

/* Анимация появления */
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 📱 Исправляем наложение на больших экранах iPhone */
@media (max-width: 480px) and (min-height: 800px) {
    .features-block {
        margin-top: -60px !important;
        /* было -88px, чуть дальше от кнопки */
    }
}

/* Для iPhone 16 Pro Max и других длинных экранов */
@media (max-width: 480px) and (min-height: 850px) {
    .features-block {
        margin-top: 30px !important;
        /* было меньше, теперь чуть ниже */
    }
}

/* Хедер-кнопки: привести к общей жирности как у остального UI */
.header-right .btn-book,
.header-right .btn-call {
    font-family: 'Montserrat', system-ui, -apple-system, Arial, sans-serif;
    font-weight: 900;
    /* такой же, как у остального жирного текста */
    letter-spacing: 0.4px;
    /* как на остальных кнопках (по желанию) */
    text-transform: uppercase;
    /* на всякий случай — как везде */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* если где-то раньше стоит более "лёгкий" вес — перебьём его */
.header-right .btn-book *,
.header-right .btn-call * {
    font-weight: inherit !important;
}

/* 16 Pro Max — браузер (портрет) */
@media screen and (width: 430px) and (orientation: portrait) {
    .hero-cta {
        margin-bottom: 6px !important;
    }

    .features-block {
        margin-top: 6px !important;
        padding-top: 1px !important;
        display: flow-root !important;
    }
}

/* 16 Pro Max — иконка/standalone (портрет) */
@media (display-mode: standalone) and (width: 430px) and (orientation: portrait) {
    .hero-cta {
        margin-bottom: 2px !important;
    }

    .features-block {
        margin-top: 2px !important;
        padding-top: 1px !important;
        display: flow-root !important;
    }
}

/* страховка для Safari iOS + этого девайса */
@supports (-webkit-touch-callout: none) {
    @media screen and (width: 430px) and (orientation: portrait) {
        .features-block .container {
            padding-top: .0001px !important;
        }

        /* ломаем коллапс марджинов */
    }
}

@media screen and (device-width: 430px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait) {
    .hero-cta {
        margin-bottom: 6px !important;
    }

    .features-block {
        margin-top: 6px !important;
        padding-top: 1px !important;
        display: flow-root !important;
    }
}

/* ===== Sub-Zero brand page only ===== */
.hero--subzero {
    /* убираем странную полосу/границы под шапкой и любые оверлеи */
    margin-top: 0;
    padding-top: 14px;
    position: relative;
}

.hero--subzero::before,
.hero--subzero::after {
    /* на главной у тебя есть градиентные псевдоэлементы — отключаем их ТОЛЬКО здесь */
    display: none !important;
    content: none !important;
}

/* читаемость и размер логотипа */
.hero--subzero .brand-logo-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
    margin: 6px auto 10px;
}

.hero--subzero .brand-logo {
    width: 340px;
    /* было меньше — делаем заметно крупнее */
    max-width: 86vw;
    height: auto;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .12));
}

/* подзаголовок чуть компактнее, чтобы всё уместилось красиво */
.hero--subzero .hero-kicker {
    margin: 8px 0 10px;
    color: #444;
}

/* на планшете/десктопе — ещё больше логотип */
@media (min-width: 992px) {
    .hero--subzero .brand-logo {
        width: 420px;
    }
}

/* iPhone 16 Pro Max — держим плотнее к верху и без артефактов */
@media screen and (width: 430px) and (orientation: portrait) {
    .hero--subzero {
        padding-top: 10px;
    }

    .hero--subzero .brand-logo {
        width: 360px;
        max-width: 90vw;
    }
}

/* Sub-Zero hero: чуть сближаем элементы после удаления kicker */
.sub-hero .hero-title-bg {
    margin: 10px auto 6px;
}

.sub-hero .license-minimal {
    margin: 6px 0 8px;
}

.sub-hero .hero-cta {
    margin-top: 10px;
}

/* опционально: тонкая разделительная линия перед Why Choose */
.features-block {
    border-top: 1px solid #f1f3f6;
}

@media (min-width: 992px) {
    .brand-logo-large {
        width: 520px;
    }
}

/* Sub-Zero page: сжать расстояние между CTA и Why */
.hero.sub-hero {
    min-height: 0 !important;
    /* убрать глобальный min-height у hero */
    padding-bottom: 10px;
    /* компактнее низ hero */
    margin-bottom: 0;
    /* без лишнего внешнего отступа */
}

.hero.sub-hero .container {
    padding-bottom: 0;
}

.hero.sub-hero+.features-block {
    margin-top: 8px !important;
    /* вместо большого дефолтного отступа */
    padding-top: 12px !important;
    /* заголовок ближе к CTA */
    border-top: 1px solid #f1f3f6;
    /* тонкая разделительная линия (как в макете) */
}
/* Sub-Zero: убираем двойные линии и сжимаем зазор */
.hero.sub-hero {
    min-height: 0 !important;
    padding-bottom: 12px;
    margin-bottom: 0 !important;
    border: 0 !important;
    box-shadow: none !important;
}

.hero.sub-hero::before,
.hero.sub-hero::after {
    display: none !important;
    content: none !important;
}

/* следующий за hero блок "Why" — без верхних линий/оверлеев */
.hero.sub-hero+.features-block {
    margin-top: 6px !important;
    padding-top: 10px !important;
    border-top: 0 !important;
    box-shadow: none !important;
}

.hero.sub-hero+.features-block::before,
.hero.sub-hero+.features-block::after {
    display: none !important;
    content: none !important;
}

/* ---------- Breadcrumbs: спокойнее и компактнее ---------- */
.brand-crumbs {
    font-size: 13px;
    color: #777
}

.brand-crumbs .home-link {
    color: #FF6600;
}

@media (max-width:480px) {

    .brand-crumbs span[aria-hidden="true"],
    .brand-crumbs>span:last-child {
        display: none;
    }

    /* прячем “/ Sub-Zero” */
}

/* ---------- Hero: плотнее кластер, мягче тени ---------- */
.sub-hero .hero-title-bg {
    margin: 10px auto 6px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .07);
}

.license-minimal .license-buttons a {
    min-width: 140px;
    /* одинаковая “оптика” бейджей */
    padding: 10px 16px;
    text-align: center;
    box-shadow: 0 6px 14px rgba(0, 0, 0, .06);
}

@media (max-width:480px) {
    .license-minimal .license-buttons a {
        min-width: 118px;
        padding: 9px 12px;
    }
}

.sub-hero .hero-cta {
    margin-top: 10px;
}

.cta-note {
    margin: 8px 0 0;
    font-size: 13px;
    line-height: 1.2;
    color: #6b7280;
}

/* ---------- Мини-навигация якорей ---------- */
.hero-mini-nav {
    margin: 10px 0 0;
    font-size: 14px;
    color: #667085;
    text-align: center;
}

.hero-mini-nav a {
    color: #1E90FF;
    text-decoration: none;
}

.hero-mini-nav a:hover {
    text-decoration: underline;
}

/* ---------- Сближаем CTA и Why ---------- */
.hero.sub-hero {
    min-height: 0 !important;
    padding-bottom: 12px;
    margin-bottom: 0 !important;
}

.hero.sub-hero::before,
.hero.sub-hero::after {
    display: none !important;
}

.hero.sub-hero+.features-block {
    margin-top: 10px !important;
    padding-top: 12px !important;
    border-top: 0 !important;
    box-shadow: none !important;
}

/* ---------- Плавающий CTA на мобиле ---------- */
.sticky-cta {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    display: none;
    /* по умолчанию скрыта на десктопе */
    z-index: 1000;
    text-align: center;
    font-weight: 800;
    letter-spacing: .2px;
    padding: 14px 16px;
    border-radius: 999px;
    background: linear-gradient(180deg, #FF7A1A 0%, #FF6600 100%);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 14px 30px rgba(255, 102, 0, .28);
}

@media (max-width: 768px) {
    .sticky-cta {
        display: block;
    }
}

body.modal-open .sticky-cta {
    display: none;
}

/* прячем при открытой модалке */

/* ---------- Why Choose: адаптивная сетка безопаснее ---------- */
@media (max-width: 1024px) {
    .features-inner {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }
}

@media (max-width: 600px) {
    .features-inner {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Плавающая CTA по умолчанию скрыта; показываем только на мобилках и когда добавлен .is-visible */
.sticky-cta {
    display: none;
}

@media (max-width: 768px) {
    .sticky-cta {
        display: none;
    }

    /* базово скрыта */
    .sticky-cta.is-visible {
        display: block;
    }

    /* показываем только при .is-visible */
}

body.modal-open .sticky-cta {
    display: none !important;
}

/* Why Choose: 2×2 на iPhone (и вообще <=600px) */
@media (max-width: 1024px) {
    .features-inner {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }
}

@media (max-width: 600px) {
    .features-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }
}