﻿/* СБРОС И БАЗОВЫЕ СТИЛИ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    color: #111111;
    background: #ffffff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* КНОПКИ */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
    text-align: center;
}

.btn--primary {
    background: #1a73e8;
    color: #ffffff;
    border-color: #1a73e8;
}

.btn--primary:hover {
    background: #1557b0;
    border-color: #1557b0;
}

.btn--outline {
    background: transparent;
    color: #1a73e8;
    border-color: #1a73e8;
}

.btn--outline:hover {
    background: #1a73e8;
    color: #ffffff;
}

/* ЗАГОЛОВОК СЕКЦИИ */
.section-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    color: #111111;
}

/* ШАПКА */
.header {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: bold;
    color: #1a73e8;
}

.header__logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.header__nav ul {
    display: flex;
    gap: 25px;
}

.header__nav a {
    font-size: 15px;
    color: #111111;
    transition: color 0.3s;
}

.header__nav a:hover {
    color: #1a73e8;
}

.header__phone a {
    font-size: 16px;
    font-weight: bold;
    color: #1a73e8;
    white-space: nowrap;
}

.header__phone a:hover {
    text-decoration: underline;
}

/* БУРГЕР */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger span {
    display: block;
    width: 25px;
    height: 2px;
    background: #111111;
    transition: all 0.3s;
}

.burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* МОБИЛЬНОЕ МЕНЮ */
.mobile-menu {
    display: none;
    position: fixed;
    top: 71px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px;
    z-index: 99;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.mobile-menu a {
    font-size: 16px;
    color: #111111;
}

.mobile-menu__phone {
    font-size: 18px;
    font-weight: bold;
    color: #1a73e8;
}

/* ПЕРВЫЙ ЭКРАН */
.hero {
    padding: 80px 0;
    background: #f8f8f8;
}

.hero__inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero__text {
    flex: 1;
}

.hero__text h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #111111;
}

.hero__text p {
    font-size: 18px;
    color: #555555;
    margin-bottom: 30px;
}

.hero__buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.hero__brands {
    font-size: 14px;
    color: #888888;
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
}

.hero__img {
    flex: 1;
    max-width: 500px;
}

.hero__img img {
    width: 100%;
    border-radius: 8px;
}

/* ЦИФРЫ */
.numbers {
    background: #1a73e8;
    padding: 50px 0;
}

.numbers__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.numbers__value {
    font-size: 42px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 8px;
}

.numbers__label {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
}

/* ПРЕИМУЩЕСТВА */
.advantages {
    padding: 80px 0;
    background: #ffffff;
}

.advantages__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.advantages__item {
    text-align: center;
    padding: 30px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: box-shadow 0.3s;
}

.advantages__item:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.advantages__icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.advantages__item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #111111;
}

.advantages__item p {
    font-size: 14px;
    color: #555555;
}

/* УСЛУГИ */
.services {
    padding: 80px 0;
    background: #f8f8f8;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.services__item {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: box-shadow 0.3s;
}

.services__item:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.services__icon {
    font-size: 32px;
}

.services__item h3 {
    font-size: 18px;
    color: #111111;
}

.services__item p {
    font-size: 14px;
    color: #555555;
    flex: 1;
}

.services__time {
    font-size: 13px;
    color: #1a73e8;
    font-weight: bold;
}

/* КАК МЫ РАБОТАЕМ */
.steps {
    padding: 80px 0;
    background: #ffffff;
}

.steps__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.steps__item {
    text-align: center;
    padding: 20px;
}

.steps__number {
    width: 60px;
    height: 60px;
    background: #1a73e8;
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.steps__item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #111111;
}

.steps__item p {
    font-size: 14px;
    color: #555555;
}

/* КОГДА НУЖНО ОБСЛУЖИВАНИЕ */
.when {
    padding: 80px 0;
    background: #f8f8f8;
}

.when__inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.when__text {
    flex: 1;
}

.when__text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color:
        color: #111111;
}

.when__text p {
    font-size: 16px;
    color: #555555;
    margin-bottom: 20px;
}

.when__list {
    list-style: none;
    margin-bottom: 30px;
}

.when__list li {
    font-size: 15px;
    color: #333333;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    border-bottom: 1px solid #e0e0e0;
}

.when__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1a73e8;
    font-weight: bold;
}

.when__img {
    flex: 1;
    max-width: 500px;
}

.when__img img {
    width: 100%;
    border-radius: 8px;
}

/* ОТЗЫВЫ */
.reviews {
    padding: 80px 0;
    background: #ffffff;
}

.reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.reviews__item {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: box-shadow 0.3s;
}

.reviews__item:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.reviews__header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.reviews__avatar {
    width: 50px;
    height: 50px;
    background: #1a73e8;
    color: #ffffff;
    font-size: 20px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reviews__name {
    font-size: 16px;
    font-weight: bold;
    color: #111111;
    margin-bottom: 4px;
}

.reviews__stars {
    font-size: 16px;
    color: #f4a400;
}

.reviews__item p {
    font-size: 14px;
    color: #555555;
    line-height: 1.7;
}

.reviews__more {
    text-align: center;
}

/* ЧАСТЫЕ ВОПРОСЫ */
.faq {
    padding: 80px 0;
    background: #f8f8f8;
}

.faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 12px;
    background: #ffffff;
    overflow: hidden;
}

.faq__question {
    width: 100%;
    text-align: left;
    padding: 20px 25px;
    font-size: 16px;
    font-weight: bold;
    color: #111111;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.faq__question::after {
    content: '+';
    font-size: 24px;
    color: #1a73e8;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq__item.active .faq__question {
    color: #1a73e8;
}

.faq__item.active .faq__question::after {
    transform: rotate(45deg);
}

.faq__answer {
    display: none;
    padding: 0 25px 20px;
}

.faq__item.active .faq__answer {
    display: block;
}

.faq__answer p {
    font-size: 15px;
    color: #555555;
    line-height: 1.7;
}

/* ПРИЗЫВ К ДЕЙСТВИЮ */
.cta {
    padding: 80px 0;
    background: #1a73e8;
}

.cta__inner {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta__inner h2 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 15px;
}

.cta__inner p {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 35px;
}

.cta__buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn--primary {
    background: #ffffff;
    color: #1a73e8;
    border-color: #ffffff;
}

.cta .btn--primary:hover {
    background: #f0f0f0;
    border-color: #f0f0f0;
}

.cta .btn--outline {
    color: #ffffff;
    border-color: #ffffff;
}

.cta .btn--outline:hover {
    background: #ffffff;
    color: #1a73e8;
}

/* ПОДВАЛ */
.footer {
    background: #111111;
    padding: 50px 0 20px;
}

.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #333333;
    flex-wrap: wrap;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
}

.footer__logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer__nav ul {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer__nav a {
    font-size: 15px;
    color: #aaaaaa;
    transition: color 0.3s;
}

.footer__nav a:hover {
    color: #ffffff;
}

.footer__phone a {
    font-size: 18px;
    font-weight: bold;
    color: #1a73e8;
}

.footer__phone a:hover {
    text-decoration: underline;
}

.footer__copy {
    padding-top: 20px;
    text-align: center;
}

.footer__copy p {
    font-size: 14px;
    color: #666666;
}

/* АДАПТИВ */
@media (max-width: 1024px) {
    .advantages__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .numbers__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header__nav {
        display: none;
    }

    .header__phone {
        display: none;
    }

    .burger {
        display: flex;
    }

    .section-title {
        font-size: 26px;
    }

    .hero {
        padding: 50px 0;
    }

    .hero__inner {
        flex-direction: column;
        gap: 30px;
    }

    .hero__text h1 {
        font-size: 28px;
    }

    .hero__text p {
        font-size: 16px;
    }

    .hero__img {
        max-width: 100%;
    }

    .numbers__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .numbers__value {
        font-size: 32px;
    }

    .advantages__grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .services__grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .steps__grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .when__inner {
        flex-direction: column;
        gap: 30px;
    }

    .when__img {
        max-width: 100%;
    }

    .when__text h2 {
        font-size: 26px;
    }

    .reviews__grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .cta__inner h2 {
        font-size: 26px;
    }

    .cta__inner p {
        font-size: 16px;
    }

    .footer__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .footer__nav ul {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .hero__buttons {
        flex-direction: column;
    }

    .hero__buttons .btn {
        width: 100%;
        text-align: center;
    }

    .cta__buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta__buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .numbers__grid {
        grid-template-columns: repeat(1, 1fr);
    }
}
/* ДОКУМЕНТЫ (политика, соглашение) */
.doc {
    padding: 60px 0 80px;
    background: #ffffff;
}

.doc__inner {
    max-width: 800px;
    margin: 0 auto;
}

.doc__inner h1 {
    font-size: 36px;
    color: #111111;
    margin-bottom: 10px;
}

.doc__date {
    font-size: 14px;
    color: #888888;
    margin-bottom: 10px;
}

.doc__inner > p {
    font-size: 15px;
    color: #444444;
    line-height: 1.8;
    margin-bottom: 12px;
}

.doc__inner h2 {
    font-size: 20px;
    font-weight: bold;
    color: #111111;
    margin-top: 35px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #1a73e8;
}

.doc__inner p {
    font-size: 15px;
    color: #444444;
    line-height: 1.8;
    margin-bottom: 10px;
}

.doc__inner ul {
    list-style: none;
    margin: 0 0 15px 0;
    padding: 0;
}

.doc__inner ul li {
    font-size: 15px;
    color: #444444;
    line-height: 1.8;
    padding: 6px 0 6px 25px;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.doc__inner ul li:last-child {
    border-bottom: none;
}

.doc__inner ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #1a73e8;
}

.doc__inner a {
    color: #1a73e8;
    text-decoration: underline;
    transition: color 0.3s;
}

.doc__inner a:hover {
    color: #0d5bcc;
    text-decoration: none;
}

/* ПОДВАЛ — ссылки в копирайте */
.footer__copy a {
    color: #888888;
    text-decoration: underline;
    transition: color 0.3s;
}

.footer__copy a:hover {
    color: #ffffff;
}

/* АДАПТИВ для документов */
@media (max-width: 768px) {
    .doc {
        padding: 40px 0 60px;
    }

    .doc__inner h1 {
        font-size: 26px;
    }

    .doc__inner h2 {
        font-size: 18px;
        margin-top: 25px;
    }

    .doc__inner p,
    .doc__inner ul li {
        font-size: 14px;
    }
}
/* =============================
   PAGE HERO
   ============================= */
.page-hero {
    background-color: #f0f7ff;
    padding: 60px 0 50px;
    border-bottom: 1px solid #dde8f5;
}

.page-hero__title {
    font-size: 32px;
    font-weight: 700;
    color: #1a2e44;
    margin: 0 0 16px;
    line-height: 1.3;
}

.page-hero__text {
    font-size: 17px;
    color: #4a6080;
    max-width: 700px;
    line-height: 1.7;
    margin: 0;
}

/* =============================
   ABOUT WORK
   ============================= */
.about-work {
    padding: 60px 0;
}

.about-work__text {
    font-size: 16px;
    color: #4a6080;
    line-height: 1.8;
    max-width: 760px;
    margin: 0 0 16px;
}

.about-work__text:last-child {
    margin-bottom: 0;
}

/* =============================
   SERVICES CARDS
   ============================= */
.services-cards {
    padding: 0 0 70px;
}

.services-cards__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.services-cards__item {
    background: #ffffff;
    border: 1px solid #dde8f5;
    border-radius: 12px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    box-shadow: 0 2px 12px rgba(0, 80, 160, 0.06);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.services-cards__item:hover {
    box-shadow: 0 6px 24px rgba(0, 80, 160, 0.12);
    transform: translateY(-3px);
}

.services-cards__icon {
    font-size: 36px;
    line-height: 1;
}

.services-cards__item h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a2e44;
    margin: 0;
    line-height: 1.3;
}

.services-cards__item p {
    font-size: 15px;
    color: #4a6080;
    line-height: 1.7;
    margin: 0;
    flex-grow: 1;
}

.services-cards__item .btn {
    margin-top: auto;
}

/* =============================
   SERVICES TABLE
   ============================= */
.services-table {
    padding: 70px 0;
    background-color: #f7fafd;
}

.services-table__wrap {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 80, 160, 0.07);
}

.services-table__wrap table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    font-size: 15px;
}

.services-table__wrap thead tr {
    background-color: #1a6fc4;
    color: #ffffff;
}

.services-table__wrap thead th {
    padding: 16px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.services-table__wrap tbody tr {
    border-bottom: 1px solid #e8f0fa;
    transition: background 0.2s ease;
}

.services-table__wrap tbody tr:last-child {
    border-bottom: none;
}

.services-table__wrap tbody tr:hover {
    background-color: #f0f7ff;
}

.services-table__wrap tbody td {
    padding: 16px 20px;
    color: #2c4a6e;
    line-height: 1.6;
    vertical-align: top;
}

.services-table__wrap tbody td:first-child {
    font-weight: 600;
    white-space: nowrap;
    color: #1a2e44;
}

.services-table__wrap tbody td.price {
    white-space: nowrap;
    font-weight: 700;
    color: #1a6fc4;
    font-size: 15px;
}

.services-table__note {
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.services-table__note p {
    font-size: 14px;
    color: #7a90aa;
    line-height: 1.6;
    margin: 0;
    flex: 1;
    min-width: 200px;
}

/* =============================
   ADVANTAGES
   ============================= */
.advantages {
    padding: 70px 0;
}

.advantages__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.advantages__item {
    text-align: center;
    padding: 32px 24px;
    background: #f7fafd;
    border-radius: 12px;
    border: 1px solid #dde8f5;
    transition: box-shadow 0.25s ease;
}

.advantages__item:hover {
    box-shadow: 0 4px 20px rgba(0, 80, 160, 0.1);
}

.advantages__icon {
    font-size: 40px;
    margin-bottom: 16px;
    line-height: 1;
}

.advantages__item h3 {
    font-size: 17px;
    font-weight: 700;
    color: #1a2e44;
    margin: 0 0 10px;
}

.advantages__item p {
    font-size: 14px;
    color: #4a6080;
    line-height: 1.7;
    margin: 0;
}

/* =============================
   CTA
   ============================= */
.cta {
    padding: 70px 0;
    background: linear-gradient(135deg, #1a6fc4 0%, #1557a0 100%);
}

.cta__inner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta__inner h2 {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px;
    line-height: 1.3;
}

.cta__inner p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0 0 28px;
}

.btn--white {
    background-color: #ffffff;
    color: #1a6fc4;
    border: 2px solid #ffffff;
    padding: 14px 36px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background 0.25s ease, color 0.25s ease;
}

.btn--white:hover {
    background-color: transparent;
    color: #ffffff;
}

/* =============================
   АДАПТИВ USLUGI
   ============================= */
@media (max-width: 900px) {
    .services-cards__grid {
        grid-template-columns: 1fr;
    }

    .advantages__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .page-hero__title {
        font-size: 24px;
    }

    .page-hero__text {
        font-size: 15px;
    }

    .cta__inner h2 {
        font-size: 22px;
    }

    .services-table__note {
        flex-direction: column;
        align-items: flex-start;
    }

    .services-table__wrap thead th,
    .services-table__wrap tbody td {
        padding: 12px 14px;
        font-size: 14px;
    }
}
/* =============================
   REVIEWS
   ============================= */
.reviews {
    padding: 70px 0;
}

.reviews__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.reviews__item {
    background: #ffffff;
    border: 1px solid #dde8f5;
    border-radius: 12px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: 0 2px 12px rgba(0, 80, 160, 0.06);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.reviews__item:hover {
    box-shadow: 0 6px 24px rgba(0, 80, 160, 0.12);
    transform: translateY(-3px);
}

.reviews__header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.reviews__avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #1a6fc4;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reviews__meta {
    flex: 1;
}

.reviews__name {
    font-size: 15px;
    font-weight: 700;
    color: #1a2e44;
    line-height: 1.3;
}

.reviews__service {
    font-size: 13px;
    color: #1a6fc4;
    margin-top: 3px;
}

.reviews__stars {
    font-size: 15px;
    flex-shrink: 0;
}

.reviews__text {
    font-size: 15px;
    color: #4a6080;
    line-height: 1.75;
    margin: 0;
    flex-grow: 1;
}

.reviews__date {
    font-size: 13px;
    color: #9aafc5;
    margin-top: auto;
}

/* =============================
   АДАПТИВ REVIEWS
   ============================= */
@media (max-width: 768px) {
    .reviews__grid {
        grid-template-columns: 1fr;
    }

    .reviews__item {
        padding: 22px 18px;
    }
}
/* =============================
   PAGE-HERO BTNS
   ============================= */
.page-hero__btns {
    display: flex;
    gap: 16px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.btn--outline-white {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.7);
    color: #ffffff;
    background: transparent;
    transition: background 0.2s, border-color 0.2s;
}

.btn--outline-white:hover {
    background: rgba(255,255,255,0.12);
    border-color: #ffffff;
}

/* =============================
   CONTACT INFO
   ============================= */
.contact-info {
    padding: 70px 0 40px;
}

.contact-info__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.contact-info__card {
    background: #ffffff;
    border: 1px solid #dde8f5;
    border-radius: 14px;
    padding: 28px 24px;
    box-shadow: 0 2px 12px rgba(0,80,160,0.06);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-info__icon {
    font-size: 28px;
    margin-bottom: 4px;
}

.contact-info__label {
    font-size: 12px;
    font-weight: 700;
    color: #9aafc5;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.contact-info__value {
    font-size: 17px;
    font-weight: 700;
    color: #1a2e44;
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.2s;
}

a.contact-info__value:hover {
    color: #1a6fc4;
}

.contact-info__desc {
    font-size: 14px;
    color: #6a85a0;
    margin: 0;
    line-height: 1.6;
}

.contact-info__messengers {
    display: flex;
    gap: 10px;
    margin-top: 6px;
    flex-wrap: wrap;
}

.contact-info__messenger {
    display: inline-flex;
    align-items: center;
    padding: 7px 16px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
}

.contact-info__messenger:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

.contact-info__messenger--wa {
    background: #25d366;
    color: #ffffff;
}

.contact-info__messenger--tg {
    background: #2aabee;
    color: #ffffff;
}

/* =============================
   CONTACT ZONE
   ============================= */
.contact-zone {
    padding: 40px 0 60px;
}

.contact-zone__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.contact-zone__title {
    font-size: 26px;
    font-weight: 700;
    color: #1a2e44;
    margin-bottom: 14px;
}

.contact-zone__text {
    font-size: 15px;
    color: #4a6080;
    line-height: 1.75;
    margin-bottom: 20px;
}

.contact-zone__subtitle {
    font-size: 15px;
    font-weight: 600;
    color: #1a2e44;
    margin-bottom: 10px;
}

.contact-zone__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-zone__list li {
    font-size: 15px;
    color: #4a6080;
    padding-left: 20px;
    position: relative;
}

.contact-zone__list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: #1a6fc4;
    font-weight: 700;
}

.contact-zone__map {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,80,160,0.10);
}

/* =============================
   CONTACT WAYS
   ============================= */
.contact-ways {
    padding: 60px 0;
    background: #f4f8ff;
}

.contact-ways__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.contact-ways__card {
    background: #ffffff;
    border: 1px solid #dde8f5;
    border-radius: 14px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    box-shadow: 0 2px 12px rgba(0,80,160,0.06);
    transition: box-shadow 0.25s, transform 0.25s;
}

.contact-ways__card:hover {
    box-shadow: 0 6px 24px rgba(0,80,160,0.12);
    transform: translateY(-3px);
}

.contact-ways__icon {
    font-size: 32px;
}

.contact-ways__title {
    font-size: 18px;
    font-weight: 700;
    color: #1a2e44;
    margin: 0;
}

.contact-ways__text {
    font-size: 14px;
    color: #6a85a0;
    line-height: 1.7;
    margin: 0;
    flex-grow: 1;
}

/* =============================
   CONTACT FORM SECTION
   ============================= */
.contact-form-section {
    padding: 70px 0;
}

.contact-form-section__inner {
    max-width: 680px;
    margin: 0 auto;
}

.contact-form-section__title {
    font-size: 28px;
    font-weight: 700;
    color: #1a2e44;
    margin-bottom: 10px;
}

.contact-form-section__text {
    font-size: 15px;
    color: #6a85a0;
    line-height: 1.7;
    margin-bottom: 32px;
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form__group {
    margin-bottom: 18px;
}

.form__group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1a2e44;
    margin-bottom: 6px;
}

.form__group input[type="text"],
.form__group input[type="tel"],
.form__group input[type="email"],
.form__group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #c8d9ee;
    border-radius: 8px;
    font-size: 15px;
    color: #1a2e44;
    background: #f9fbff;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
    font-family: inherit;
}

.form__group input:focus,
.form__group textarea:focus {
    border-color: #1a6fc4;
    background: #ffffff;
}

.form__group textarea {
    resize: vertical;
    min-height: 110px;
}

.form__group--checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form__group--checkbox input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    accent-color: #1a6fc4;
    cursor: pointer;
}

.form__group--checkbox label {
    font-size: 13px;
    color: #6a85a0;
    font-weight: 400;
    margin-bottom: 0;
    cursor: pointer;
}

.form__group--checkbox label a {
    color: #1a6fc4;
    text-decoration: underline;
}

.form__req {
    color: #e53935;
}

.btn--full {
    width: 100%;
    justify-content: center;
}

.contact-form__success {
    display: none;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #1a6fc4;
    padding: 48px 20px;
    background: #f4f8ff;
    border-radius: 12px;
    margin-top: 20px;
}

/* =============================
   CONTACT MAP
   ============================= */
.contact-map {
    padding: 0 0 70px;
}

.contact-map__wrap {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,80,160,0.10);
    margin-top: 32px;
}

.contact-map__note {
    text-align: center;
    font-size: 14px;
    color: #6a85a0;
    margin-top: 14px;
}

/* =============================
   CONTACT TIPS
   ============================= */
.contact-tips {
    padding: 70px 0;
    background: #f4f8ff;
}

.contact-tips__grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
    max-width: 760px;
}

.contact-tips__item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #ffffff;
    border: 1px solid #dde8f5;
    border-radius: 12px;
    padding: 20px 24px;
    box-shadow: 0 2px 8px rgba(0,80,160,0.05);
}

.contact-tips__num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: #1a6fc4;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
}

.contact-tips__body {
    flex: 1;
}

.contact-tips__title {
    font-size: 15px;
    font-weight: 700;
    color: #1a2e44;
    margin: 0 0 4px;
}

.contact-tips__text {
    font-size: 14px;
    color: #6a85a0;
    line-height: 1.65;
    margin: 0;
}

/* =============================
   АДАПТИВ
   ============================= */
@media (max-width: 960px) {
    .contact-info__grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-ways__grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-zone__inner {
        grid-template-columns: 1fr;
    }

    .contact-zone__map {
        height: 280px;
    }

    .contact-zone__map iframe {
        height: 280px;
    }
}

@media (max-width: 640px) {
    .contact-info__grid {
        grid-template-columns: 1fr;
    }

    .contact-ways__grid {
        grid-template-columns: 1fr;
    }

    .form__row {
        grid-template-columns: 1fr;
    }

    .page-hero__btns {
        flex-direction: column;
    }

    .page-hero__btns .btn {
        text-align: center;
        justify-content: center;
    }

    .contact-tips__item {
        padding: 16px 18px;
    }
}
/* =============================
   ZAYAVKA SECTION
   ============================= */
.zayavka-section {
    padding: 60px 0 80px;
}

.zayavka__inner {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: flex-start;
}

/* --- Шапка формы --- */
.zayavka__form-head {
    margin-bottom: 28px;
}

.zayavka__form-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a2e44;
    margin-bottom: 12px;
}

.zayavka__form-text {
    font-size: 15px;
    color: #6a85a0;
    line-height: 1.75;
    margin-bottom: 10px;
}

/* --- Форма --- */
.zayavka-form {
    background: #ffffff;
    border: 1px solid #dde8f5;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 16px rgba(0,80,160,0.07);
}

.zayavka-form__note {
    font-size: 13px;
    color: #9aafc5;
    margin-top: 14px;
    text-align: center;
}

.zayavka-form__success {
    display: none;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #1a6fc4;
    padding: 48px 20px;
    background: #f4f8ff;
    border-radius: 12px;
    margin-top: 20px;
}

/* Select */
.form__group select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #c8d9ee;
    border-radius: 8px;
    font-size: 15px;
    color: #1a2e44;
    background: #f9fbff;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
    font-family: inherit;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239aafc5' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
}

.form__group select:focus {
    border-color: #1a6fc4;
    background-color: #ffffff;
}

/* Radio */
.form__radio-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.form__radio {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: #1a2e44;
    font-weight: 400;
}

.form__radio input[type="radio"] {
    accent-color: #1a6fc4;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

/* --- Aside --- */
.zayavka__aside {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 24px;
}

.zayavka__aside-card {
    background: #ffffff;
    border: 1px solid #dde8f5;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0,80,160,0.06);
}

.zayavka__aside-card--urgent {
    background: #fff8f0;
    border-color: #ffd4a8;
}

.zayavka__urgent-icon {
    font-size: 28px;
    margin-bottom: 8px;
}

.zayavka__aside-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a2e44;
    margin-bottom: 14px;
}

.zayavka__aside-text {
    font-size: 14px;
    color: #6a85a0;
    line-height: 1.7;
    margin-bottom: 14px;
}

/* Шаги */
.zayavka__steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.zayavka__step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.zayavka__step-num {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    background: #1a6fc4;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    margin-top: 1px;
}

.zayavka__step-body {
    font-size: 13px;
    color: #4a6080;
    line-height: 1.65;
}

.zayavka__step-body strong {
    color: #1a2e44;
    font-weight: 600;
}

/* Список подготовки */
.zayavka__prepare-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.zayavka__prepare-list li {
    font-size: 13px;
    color: #4a6080;
    padding-left: 18px;
    position: relative;
    line-height: 1.6;
}

.zayavka__prepare-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: #1a6fc4;
    font-weight: 700;
}

/* =============================
   АДАПТИВ
   ============================= */
@media (max-width: 1024px) {
    .zayavka__inner {
        grid-template-columns: 1fr;
    }

    .zayavka__aside {
        position: static;
    }
}

@media (max-width: 640px) {
    .zayavka-form {
        padding: 20px 16px;
    }

    .form__radio-group {
        flex-direction: column;
        gap: 10px;
    }
}
/* =============================
   ЛОГОТИП
   ============================= */
.header__logo {
    text-decoration: none;
    flex-shrink: 0;
}

.logo__wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.logo__name {
    font-size: 26px;
    font-weight: 800;
    color: #1a6fc4;
    letter-spacing: -0.5px;
    line-height: 1;
}

.logo__sub {
    font-size: 13px;
    font-weight: 600;
    color: #4a6a8a;
    letter-spacing: 1.5px;
    line-height: 1;
    text-transform: uppercase;
}