/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background: #e9eaec;
}

.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ==================== TYPOGRAPHY ==================== */
.highlight {
    color: #ee275d;
}

.price-highlight {
    color: #2969b0;
    font-weight: 700;
}

.time-highlight {
    color: #ee275d;
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 35px;
    background: #ee275d;
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50px;
    border: none;
    transition: background 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    text-align: center;
}

.btn--big {
    font-size: 1.4rem;
    padding: 18px 45px;
}

.btn:hover {
    background: #c41c4a;
    transform: scale(1.02);
}

.btn__icon {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

/* ==================== HEADER ==================== */
.header {
    padding: 25px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.logo img {
    width: 125px;
    height: auto;
}

.header__info {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.header__slogan {
    font-size: 0.9rem;
    color: #666;
    max-width: 200px;
}

.contacts {
    text-align: right;
}

.contacts__schedule {
    font-size: 0.85rem;
    color: #a3a3a3;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.status-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #9ade47;
    border-radius: 50%;
    flex-shrink: 0;
}

.contacts__phone {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    transition: color 0.3s ease;
}

.contacts__phone:hover {
    color: #ee275d;
}

/* ==================== BANNER ==================== */
.banner {
    padding: 60px 20px;
    background: linear-gradient(135deg, #fbfbfa 0%, #f4f6f9 100%);
    position: relative;
}

.banner__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.banner__content {
    flex: 1 1 55%;
}

.banner__title {
    font-size: 2.8rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 15px;
}

.banner__free {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: #1f1f1f;
}

.banner__free strong {
    color: #41a85f;
    font-size: 1.5rem;
}

.banner__advantages {
    margin-bottom: 30px;
    padding-left: 20px;
}

.banner__advantages li {
    font-size: 1.1rem;
    margin-bottom: 8px;
    list-style-type: decimal;
    padding-left: 5px;
}

.banner__advantages li strong {
    font-weight: 700;
}

.banner__call-to-action {
    margin-top: 10px;
}

.banner__sub-text {
    margin-top: 12px;
    font-size: 0.95rem;
    color: #767779;
}

.banner__image {
    flex: 0 1 40%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.banner__image img {
    max-height: 450px;
    width: auto;
}

/* ==================== STATS ==================== */
.stats {
    padding: 40px 0;
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid #f0f0f0;
}

.stats__list {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.stats__item {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 0.95rem;
    color: #616161;
    flex: 1 1 200px;
    max-width: 320px;
}

.stats__item svg {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    color: #ee275d;
}

.stats__item span {
    line-height: 1.4;
}

/* ==================== ABOUT ==================== */
.about {
    padding: 60px 20px;
    text-align: center;
    background: #fff;
}

.about__title {
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 25px;
    color: #222;
}

.about__text {
    max-width: 850px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    text-align: left;
}

.about__text p:not(:last-child) {
    margin-bottom: 15px;
}

/* ==================== FOOTER ==================== */
.footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 40px 20px;
    margin-top: 20px;
}

.footer__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer__text {
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.footer__phone {
    font-size: 1.6rem;
    font-weight: 700;
    color: #cee8ff;
    border-bottom: 1px solid rgba(206, 232, 255, 0.3);
    transition: color 0.3s ease, border-color 0.3s ease;
}

.footer__phone:hover {
    color: #fff;
    border-color: #fff;
}

.footer__copy {
    font-size: 0.85rem;
    color: #888;
}

/* ==================== ADAPTIVE ==================== */

/* Планшеты */
@media (max-width: 992px) {
    .banner__container {
        flex-direction: column;
        text-align: center;
    }

    .banner__image {
        justify-content: center;
        order: -1;
    }

    .banner__image img {
        max-height: 300px;
    }

    .banner__advantages {
        padding-left: 0;
        display: inline-block;
        text-align: left;
    }

    .contacts {
        text-align: center;
        width: 100%;
    }

    .contacts__schedule {
        justify-content: center;
    }
}

/* Телефоны */
@media (max-width: 768px) {
    .wrapper {
        padding: 0 15px;
    }

    .header__container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .header__info {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .header__slogan {
        max-width: 100%;
    }

    .contacts__phone {
        font-size: 1.3rem;
    }

    .banner {
        padding: 30px 0;
    }

    .banner__title {
        font-size: 2rem;
    }

    .banner__free {
        font-size: 1.1rem;
    }
    .banner__free strong {
        font-size: 1.2rem;
    }

    .banner__advantages li {
        font-size: 1rem;
    }

    .btn--big {
        font-size: 1.1rem;
        padding: 14px 25px;
        width: 100%;
    }

    .stats__list {
        flex-direction: column;
        align-items: stretch;
    }

    .stats__item {
        max-width: 100%;
        justify-content: center;
        padding: 15px;
        background: #f9f9f9;
        border-radius: 12px;
    }

    .about {
        padding: 30px 0;
    }

    .about__title {
        font-size: 1.7rem;
    }

    .about__text {
        font-size: 0.95rem;
    }

    .footer__container {
        flex-direction: column;
        text-align: center;
    }

    .footer__phone {
        font-size: 1.3rem;
    }
}

/* Маленькие экраны (< 400px) */
@media (max-width: 400px) {
    .banner__title {
        font-size: 1.6rem;
    }

    .banner__advantages li {
        font-size: 0.9rem;
    }

    .contacts__phone {
        font-size: 1.1rem;
        word-break: break-all;
    }
}