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;
}