/* ==========================================================
   КРОВЛЯ КОЛОМНА
   НОВЫЙ ПОЛНЫЙ CSS
   ЧАСТЬ 1 — ОСНОВА + ШАПКА + HERO
   ========================================================== */


/* ==========================================================
   1. СБРОС СТИЛЕЙ
   ========================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

html,
body {
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Rubik", Arial, Helvetica, sans-serif;

    color: #263238;

    background: #ffffff;

    font-size: 16px;

    line-height: 1.7;

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    display: block;

    max-width: 100%;

    height: auto;
}

a {
    color: inherit;

    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

p {
    margin-top: 0;
    margin-bottom: 18px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Rubik", Arial, Helvetica, sans-serif;

    color: #17212b;

    margin-top: 0;

    line-height: 1.25;

    font-weight: 700;
}

ul,
ol {
    margin-top: 0;
}


/* ==========================================================
   2. ОСНОВНОЙ CONTAINER
   ========================================================== */

.container {
    width: 100%;

    max-width: 1320px;

    margin-left: auto;
    margin-right: auto;

    padding-left: 20px;
    padding-right: 20px;
}


/* ==========================================================
   3. ВЫДЕЛЕНИЕ ТЕКСТА
   ========================================================== */

::selection {
    color: #ffffff;

    background: #e67e22;
}


/* ==========================================================
   4. SCROLLBAR
   ========================================================== */

::-webkit-scrollbar {
    width: 9px;
}

::-webkit-scrollbar-track {
    background: #edf0f2;
}

::-webkit-scrollbar-thumb {
    background: #c4c9ce;

    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e67e22;
}


/* ==========================================================
   5. ОБЩИЕ КЛАССЫ
   ========================================================== */

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.position-relative {
    position: relative;
}

.overflow-hidden {
    overflow: hidden;
}


/* ==========================================================
   6. ШАПКА САЙТА
   ========================================================== */

.site-header {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 9999;

    background:
        linear-gradient(
            180deg,
            rgba(7, 15, 24, 0.94) 0%,
            rgba(7, 15, 24, 0.86) 100%
        );

    border-bottom: 1px solid rgba(255, 255, 255, 0.12);

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.18);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.site-header .container {
    max-width: 1400px;
}

.header-inner {
    min-height: 84px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;
}


/* ==========================================================
   7. ЛОГОТИП
   ========================================================== */

.logo {
    flex: 0 0 auto;

    position: relative;

    z-index: 10002;
}

.logo a {
    display: inline-flex;

    align-items: center;

    color: #ffffff !important;

    font-family: "Oswald", "Rubik", Arial, sans-serif;

    font-size: 24px;

    line-height: 1;

    font-weight: 700;

    letter-spacing: 1px;

    white-space: nowrap;

    text-decoration: none !important;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.logo a:hover {
    color: #ffad42 !important;

    transform: translateY(-1px);
}


/* ==========================================================
   8. ГЛАВНОЕ МЕНЮ
   ========================================================== */

.main-menu {
    flex: 1 1 auto;

    display: flex;

    align-items: center;

    justify-content: center;

    min-width: 0;
}

.main-menu ul {
    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: nowrap;

    gap: 18px;

    margin: 0;

    padding: 0;

    list-style: none;
}

.main-menu ul li {
    display: block;

    margin: 0;

    padding: 0;
}

.main-menu ul li a {
    position: relative;

    display: block;

    padding: 10px 2px;

    color: #ffffff !important;

    font-size: 14px;

    font-weight: 500;

    line-height: 1.2;

    white-space: nowrap;

    text-decoration: none !important;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.main-menu ul li a::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;

    bottom: 2px;

    height: 2px;

    border-radius: 2px;

    background: #f39c12;

    transform: scaleX(0);

    transform-origin: center;

    transition: transform 0.3s ease;
}

.main-menu ul li a:hover {
    color: #ffad42 !important;

    transform: translateY(-1px);
}

.main-menu ul li a:hover::after {
    transform: scaleX(1);
}


/* ==========================================================
   9. ТЕЛЕФОН В ШАПКЕ
   ========================================================== */

.header-phone {
    flex: 0 0 auto;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    min-height: 46px;

    padding: 0 18px;

    color: #ffffff !important;

    background:
        linear-gradient(
            135deg,
            #e67e22 0%,
            #f39c12 100%
        );

    border-radius: 50px;

    font-size: 14px;

    font-weight: 700;

    line-height: 1;

    white-space: nowrap;

    text-decoration: none !important;

    box-shadow:
        0 7px 20px rgba(230, 126, 34, 0.25);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        filter 0.3s ease;
}

.header-phone i {
    font-size: 13px;
}

.header-phone:hover {
    color: #ffffff !important;

    transform: translateY(-2px);

    filter: brightness(1.06);

    box-shadow:
        0 10px 26px rgba(230, 126, 34, 0.38);
}


/* ==========================================================
   10. БУРГЕР
   ========================================================== */

.menu-toggle {
    display: none;

    flex: 0 0 46px;

    width: 46px;
    height: 46px;

    margin: 0;

    padding: 7px;

    border: 1px solid rgba(255, 255, 255, 0.25);

    border-radius: 10px;

    outline: none;

    background: rgba(255, 255, 255, 0.08);

    position: relative;

    z-index: 10005;

    transition:
        background 0.3s ease,
        border-color 0.3s ease;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.16);

    border-color: rgba(255, 255, 255, 0.4);
}

.menu-toggle span {
    display: block;

    width: 28px;
    height: 3px;

    margin: 5px auto;

    border-radius: 5px;

    background: #ffffff;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}


/* ==========================================================
   11. HERO — ПЕРВЫЙ ЭКРАН
   ========================================================== */

.hero {
    position: relative;

    width: 100%;

    min-height: 760px;

    display: flex;

    align-items: center;

    background-color: #263238;

    background-image:
        url("../images/hero-krovlya.jpg");

    background-repeat: no-repeat;

    background-position: center center;

    background-size: cover;

    overflow: hidden;
}


/* Затемнение фотографии */

.hero-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(5, 12, 18, 0.88) 0%,
            rgba(5, 12, 18, 0.68) 38%,
            rgba(5, 12, 18, 0.42) 70%,
            rgba(5, 12, 18, 0.35) 100%
        );
}


/* Лёгкое дополнительное затемнение снизу */

.hero::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 180px;

    z-index: 2;

    pointer-events: none;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 0.28)
        );
}

.hero .container {
    position: relative;

    z-index: 3;
}

.hero-content {
    max-width: 850px;

    padding-top: 85px;

    color: #ffffff;
}

.hero-content h1 {
    max-width: 850px;

    margin-bottom: 24px;

    color: #ffffff;

    font-family: "Oswald", "Rubik", Arial, sans-serif;

    font-size: 60px;

    line-height: 1.08;

    font-weight: 700;

    letter-spacing: 0.2px;

    text-shadow:
        0 4px 20px rgba(0, 0, 0, 0.45);
}

.hero-content p {
    max-width: 720px;

    margin-bottom: 35px;

    color: rgba(255, 255, 255, 0.95);

    font-size: 21px;

    line-height: 1.65;

    font-weight: 400;

    text-shadow:
        0 2px 10px rgba(0, 0, 0, 0.4);
}


/* ==========================================================
   12. КНОПКИ HERO
   ========================================================== */

.hero-buttons {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 14px;
}

.hero-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 54px;

    padding: 0 28px;

    color: #ffffff !important;

    background:
        linear-gradient(
            135deg,
            #e67e22,
            #f39c12
        );

    border: 2px solid transparent;

    border-radius: 50px;

    font-size: 16px;

    font-weight: 700;

    text-decoration: none !important;

    box-shadow:
        0 9px 25px rgba(230, 126, 34, 0.30);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        filter 0.3s ease;
}

.hero-btn:hover {
    color: #ffffff !important;

    transform: translateY(-3px);

    filter: brightness(1.06);

    box-shadow:
        0 13px 32px rgba(230, 126, 34, 0.40);
}


/* ==========================================================
   13. АДАПТАЦИЯ — НОУТБУК
   ========================================================== */

@media (max-width: 1199px) {

    .main-menu ul {
        gap: 13px;
    }

    .main-menu ul li a {
        font-size: 13px;
    }

    .header-phone {
        padding-left: 14px;
        padding-right: 14px;

        font-size: 13px;
    }

    .hero-content h1 {
        font-size: 54px;
    }
}


/* ==========================================================
   14. АДАПТАЦИЯ — ПЛАНШЕТ
   ========================================================== */

@media (max-width: 991px) {

    .site-header {
        position: absolute;

        background:
            rgba(7, 15, 24, 0.94);
    }

    .header-inner {
        min-height: 72px;

        gap: 12px;
    }

    .logo a {
        font-size: 21px;
    }

    .header-phone {
        display: none;
    }

    .menu-toggle {
        display: block;

        margin-left: auto;
    }

    .main-menu {
        display: none !important;

        position: absolute;

        top: 72px;

        left: 15px;
        right: 15px;

        width: auto;

        max-height: calc(100vh - 90px);

        overflow-y: auto;

        padding: 8px 0;

        background: #ffffff;

        border-radius: 14px;

        box-shadow:
            0 18px 45px rgba(0, 0, 0, 0.28);

        z-index: 10004;
    }

    .main-menu.active {
        display: block !important;
    }

    .main-menu ul {
        display: block !important;

        width: 100%;

        margin: 0 !important;
        padding: 0 !important;
    }

    .main-menu ul li {
        display: block !important;

        width: 100%;

        margin: 0 !important;
        padding: 0 !important;
    }

    .main-menu ul li a {
        display: block;

        width: 100%;

        padding: 14px 20px;

        color: #263238 !important;

        background: #ffffff;

        font-size: 16px;

        font-weight: 600;

        line-height: 1.35;

        border-bottom: 1px solid #edf0f2;

        text-decoration: none !important;

        white-space: normal;

        transform: none !important;
    }

    .main-menu ul li a::after {
        display: none;
    }

    .main-menu ul li:last-child a {
        border-bottom: 0;
    }

    .main-menu ul li a:hover {
        color: #e67e22 !important;

        background: #f7f8f9;
    }

    .menu-toggle.active span:nth-child(1) {
        transform:
            translateY(8px)
            rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform:
            translateY(-8px)
            rotate(-45deg);
    }

    .hero {
        min-height: 680px;

        background-position: center center;
    }

    .hero-content {
        max-width: 760px;

        padding-top: 85px;

        text-align: center;

        margin-left: auto;
        margin-right: auto;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;

        font-size: 19px;
    }

    .hero-buttons {
        justify-content: center;
    }
}


/* ==========================================================
   15. АДАПТАЦИЯ — ТЕЛЕФОН
   ========================================================== */

@media (max-width: 575px) {

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .header-inner {
        min-height: 68px;
    }

    .logo a {
        font-size: 17px;

        letter-spacing: 0.5px;
    }

    .menu-toggle {
        width: 44px;
        height: 44px;
    }

    .main-menu {
        top: 68px;

        left: 10px;
        right: 10px;
    }

    .hero {
        min-height: 650px;
    }

    .hero-content {
        padding-top: 75px;
    }

    .hero-content h1 {
        font-size: 36px;

        line-height: 1.12;
    }

    .hero-content p {
        font-size: 17px;

        line-height: 1.55;

        margin-bottom: 28px;
    }

    .hero-buttons {
        flex-direction: column;

        width: 100%;
    }

    .hero-btn {
        width: 100%;

        max-width: 330px;
    }
}


/* ==========================================================
   КОНЕЦ ЧАСТИ 1
   ========================================================== */
   /* ==========================================================
   КРОВЛЯ КОЛОМНА
   НОВЫЙ ПОЛНЫЙ CSS
   ЧАСТЬ 2 — СЕКЦИИ + ЗАГОЛОВКИ + УСЛУГИ
   ========================================================== */


/* ==========================================================
   16. ОБЩИЕ СЕКЦИИ
   ========================================================== */

.site-section {
    position: relative;

    width: 100%;

    padding-top: 95px;
    padding-bottom: 95px;

    overflow: hidden;
}

.site-section.bg-light {
    background: #f5f7f9;
}


/* ==========================================================
   17. ЗАГОЛОВКИ СЕКЦИЙ
   ========================================================== */

.section-title {
    position: relative;

    max-width: 850px;

    margin-left: auto;
    margin-right: auto;

    margin-bottom: 55px;

    text-align: center;
}

.section-title h2 {
    position: relative;

    margin: 0 0 18px;

    color: #17212b;

    font-family: "Oswald", "Rubik", Arial, sans-serif;

    font-size: 42px;

    line-height: 1.15;

    font-weight: 700;
}

.section-title p {
    max-width: 700px;

    margin-left: auto;
    margin-right: auto;

    margin-bottom: 0;

    color: #68737d;

    font-size: 17px;

    line-height: 1.7;
}


/* Оранжевая линия под заголовком */

.section-title::after {
    content: "";

    display: block;

    width: 65px;
    height: 4px;

    margin: 22px auto 0;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            #e67e22,
            #f39c12
        );
}


/* ==========================================================
   18. МАЛЕНЬКАЯ НАДПИСЬ НАД ЗАГОЛОВКОМ
   ========================================================== */

.section-subtitle {
    display: inline-block;

    margin-bottom: 12px;

    color: #e67e22;

    font-size: 14px;

    font-weight: 700;

    line-height: 1.2;

    letter-spacing: 1.8px;

    text-transform: uppercase;
}


/* ==========================================================
   19. GRID СИСТЕМА ДЛЯ НАШИХ КАРТОЧЕК
   ========================================================== */

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 28px;
}


/* ==========================================================
   20. КАРТОЧКА УСЛУГИ
   ========================================================== */

.service-card {
    position: relative;

    display: flex;

    flex-direction: column;

    height: 100%;

    background: #ffffff;

    border: 1px solid #e7ebee;

    border-radius: 18px;

    overflow: hidden;

    box-shadow:
        0 8px 30px rgba(20, 35, 45, 0.07);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.service-card:hover {
    transform: translateY(-8px);

    border-color: rgba(230, 126, 34, 0.25);

    box-shadow:
        0 18px 45px rgba(20, 35, 45, 0.13);
}


/* ==========================================================
   21. ИЗОБРАЖЕНИЕ КАРТОЧКИ
   ========================================================== */

.service-card img {
    width: 100%;

    height: 245px;

    object-fit: cover;

    object-position: center;

    transition:
        transform 0.5s ease;
}

.service-card:hover img {
    transform: scale(1.045);
}


/* ==========================================================
   22. СОДЕРЖИМОЕ КАРТОЧКИ
   ========================================================== */

.service-card-content {
    display: flex;

    flex-direction: column;

    flex: 1;

    padding: 26px 25px 27px;
}

.service-card h3 {
    margin-bottom: 12px;

    color: #17212b;

    font-size: 22px;

    line-height: 1.3;

    font-weight: 700;
}

.service-card p {
    margin-bottom: 20px;

    color: #68737d;

    font-size: 15px;

    line-height: 1.7;
}


/* ==========================================================
   23. ЦЕНА В КАРТОЧКЕ
   ========================================================== */

.service-price {
    margin-top: auto;

    padding-top: 16px;

    color: #e67e22;

    font-size: 18px;

    font-weight: 700;
}

.service-price span {
    color: #7b858d;

    font-size: 13px;

    font-weight: 400;
}


/* ==========================================================
   24. КНОПКА КАРТОЧКИ
   ========================================================== */

.service-card .card-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    align-self: flex-start;

    min-height: 42px;

    margin-top: 18px;

    padding: 0 20px;

    color: #263238 !important;

    background: #f1f3f5;

    border: 1px solid #e1e5e8;

    border-radius: 30px;

    font-size: 14px;

    font-weight: 600;

    text-decoration: none !important;

    transition:
        color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.service-card .card-btn:hover {
    color: #ffffff !important;

    background: #e67e22;

    border-color: #e67e22;

    transform: translateY(-2px);
}


/* ==========================================================
   25. СТАНДАРТНАЯ СЕТКА BOOTSTRAP
   Если HTML использует col-lg-...
   ========================================================== */

.row {
    display: flex;

    flex-wrap: wrap;

    margin-left: -15px;
    margin-right: -15px;
}

[class*="col-"] {
    position: relative;

    width: 100%;

    padding-left: 15px;
    padding-right: 15px;
}


/* ==========================================================
   26. ОТСТУПЫ
   ========================================================== */

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.mt-5 {
    margin-top: 3rem !important;
}


/* ==========================================================
   27. БЛОК ОПИСАНИЯ УСЛУГ
   ========================================================== */

.services-intro {
    max-width: 900px;

    margin: -20px auto 50px;

    color: #68737d;

    text-align: center;

    font-size: 17px;

    line-height: 1.8;
}


/* ==========================================================
   28. ИКОНКА В КАРТОЧКЕ
   ========================================================== */

.service-icon {
    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #e67e22,
            #f39c12
        );

    border-radius: 14px;

    font-size: 23px;

    box-shadow:
        0 8px 20px rgba(230, 126, 34, 0.22);
}


/* ==========================================================
   29. ИНФОРМАЦИОННЫЙ БЛОК
   ========================================================== */

.info-box {
    position: relative;

    padding: 35px;

    background: #ffffff;

    border-radius: 18px;

    border: 1px solid #e7ebee;

    box-shadow:
        0 8px 30px rgba(20, 35, 45, 0.06);
}

.info-box h3 {
    margin-bottom: 16px;

    font-size: 26px;
}

.info-box p:last-child {
    margin-bottom: 0;
}


/* ==========================================================
   30. СПИСОК С ГАЛОЧКАМИ
   ========================================================== */

.check-list {
    margin: 0;

    padding: 0;

    list-style: none;
}

.check-list li {
    position: relative;

    margin-bottom: 13px;

    padding-left: 30px;

    color: #4f5b64;

    line-height: 1.6;
}

.check-list li::before {
    content: "\f00c";

    position: absolute;

    left: 0;

    top: 2px;

    width: 20px;
    height: 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #ffffff;

    background: #e67e22;

    border-radius: 50%;

    font-family: "Font Awesome 5 Free";

    font-size: 10px;

    font-weight: 900;
}


/* ==========================================================
   31. БЛОК "ПОЧЕМУ МЫ"
   ========================================================== */

.advantages-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 22px;
}

.advantage-card {
    height: 100%;

    padding: 30px 24px;

    text-align: center;

    background: #ffffff;

    border: 1px solid #e8ecef;

    border-radius: 16px;

    box-shadow:
        0 7px 25px rgba(20, 35, 45, 0.06);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 15px 35px rgba(20, 35, 45, 0.11);
}

.advantage-icon {
    width: 62px;
    height: 62px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin: 0 auto 18px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #e67e22,
            #f39c12
        );

    border-radius: 50%;

    font-size: 23px;
}

.advantage-card h3 {
    margin-bottom: 10px;

    font-size: 19px;
}

.advantage-card p {
    margin-bottom: 0;

    color: #6c757d;

    font-size: 14px;

    line-height: 1.65;
}


/* ==========================================================
   32. АДАПТАЦИЯ КАРТОЧЕК
   ========================================================== */

@media (max-width: 991px) {

    .site-section {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .section-title h2 {
        font-size: 36px;
    }

    .services-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 22px;
    }

    .advantages-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}


/* ==========================================================
   33. АДАПТАЦИЯ ТЕЛЕФОНА
   ========================================================== */

@media (max-width: 575px) {

    .site-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .section-title {
        margin-bottom: 32px;
    }

    .section-title h2 {
        font-size: 31px;
    }

    .section-title p {
        font-size: 15px;
    }

    .section-subtitle {
        font-size: 12px;

        letter-spacing: 1.4px;
    }

    .services-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .advantages-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .service-card img {
        height: 220px;
    }

    .service-card-content {
        padding: 22px 20px 24px;
    }

    .service-card h3 {
        font-size: 20px;
    }

    .info-box {
        padding: 25px 20px;
    }
}


/* ==========================================================
   КОНЕЦ ЧАСТИ 2
   ========================================================== */
   
 /* ==========================================================
   ЧАСТЬ 3
   ПРОФНАСТИЛ — ТОВАРЫ И КОМПЛЕКТУЮЩИЕ
   ========================================================== */

/* ----------------------------------------------------------
   ВВОДНЫЙ БЛОК ТОВАРОВ
   ---------------------------------------------------------- */

.products-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.products-intro p {
    margin: 0;
    color: #64748b;
    font-size: 17px;
    line-height: 1.85;
}


/* ----------------------------------------------------------
   СЕТКА ТОВАРОВ
   ---------------------------------------------------------- */

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
}


/* ----------------------------------------------------------
   КАРТОЧКА ТОВАРА
   ---------------------------------------------------------- */

.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 100%;
    overflow: hidden;

    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;

    box-shadow:
        0 10px 30px rgba(15, 23, 42, 0.07),
        0 2px 8px rgba(15, 23, 42, 0.03);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.product-card:hover {
    transform: translateY(-10px);

    border-color: rgba(37, 99, 235, 0.25);

    box-shadow:
        0 24px 55px rgba(15, 23, 42, 0.13),
        0 8px 20px rgba(37, 99, 235, 0.08);
}


/* ----------------------------------------------------------
   ИЗОБРАЖЕНИЕ ТОВАРА
   ---------------------------------------------------------- */

.product-card-image {
    position: relative;
    height: 230px;
    overflow: hidden;
    background: #f1f5f9;
}

.product-card-image img {
    display: block;
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1),
        filter 0.4s ease;
}

.product-card:hover .product-card-image img {
    transform: scale(1.08);
    filter: saturate(1.08);
}


/* ----------------------------------------------------------
   ЗАТЕМНЕНИЕ ИЗОБРАЖЕНИЯ
   ---------------------------------------------------------- */

.product-card-image::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(15, 23, 42, 0) 40%,
            rgba(15, 23, 42, 0.30) 100%
        );

    pointer-events: none;
}


/* ----------------------------------------------------------
   БЕЙДЖ ТОВАРА
   ---------------------------------------------------------- */

.product-badge {
    position: absolute;
    z-index: 3;
    top: 16px;
    left: 16px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 32px;
    padding: 7px 13px;

    color: #ffffff;
    background: rgba(15, 23, 42, 0.82);

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;

    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.03em;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.product-badge.sale {
    background: rgba(220, 38, 38, 0.92);
}

.product-badge.new {
    background: rgba(22, 163, 74, 0.92);
}

.product-badge.popular {
    background: rgba(37, 99, 235, 0.92);
}


/* ----------------------------------------------------------
   ИКОНКА НА ИЗОБРАЖЕНИИ
   ---------------------------------------------------------- */

.product-image-icon {
    position: absolute;
    z-index: 3;
    right: 16px;
    bottom: 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    color: #ffffff;
    background: rgba(15, 23, 42, 0.75);

    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.product-card:hover .product-image-icon {
    transform: scale(1.08);
    background: #2563eb;
}


/* ----------------------------------------------------------
   КОНТЕНТ КАРТОЧКИ
   ---------------------------------------------------------- */

.product-card-content {
    display: flex;
    flex-direction: column;
    flex: 1;

    padding: 25px 24px 24px;
}

.product-card-content h3 {
    margin: 0 0 12px;

    color: #0f172a;

    font-size: 21px;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.product-card-content p {
    margin: 0 0 20px;

    color: #64748b;

    font-size: 15px;
    line-height: 1.7;
}


/* ----------------------------------------------------------
   ХАРАКТЕРИСТИКИ ТОВАРА
   ---------------------------------------------------------- */

.product-features {
    display: flex;
    flex-direction: column;
    gap: 9px;

    margin: 0 0 22px;
    padding: 0;

    list-style: none;
}

.product-features li {
    position: relative;

    display: flex;
    align-items: flex-start;
    gap: 9px;

    color: #475569;

    font-size: 14px;
    line-height: 1.5;
}

.product-features li::before {
    content: "✓";

    flex: 0 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 20px;
    height: 20px;

    margin-top: 1px;

    color: #ffffff;
    background: #2563eb;

    border-radius: 50%;

    font-size: 11px;
    font-weight: 900;
}


/* ----------------------------------------------------------
   ЦЕНА
   ---------------------------------------------------------- */

.product-price {
    display: flex;
    flex-direction: column;
    gap: 3px;

    margin-top: auto;
    margin-bottom: 18px;
    padding-top: 18px;

    border-top: 1px solid #e5e7eb;
}

.product-price-label {
    color: #94a3b8;

    font-size: 12px;
    line-height: 1.3;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.product-price strong {
    color: #0f172a;

    font-size: 24px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.product-price span {
    color: #64748b;
    font-size: 13px;
}


/* ----------------------------------------------------------
   КНОПКА ТОВАРА
   ---------------------------------------------------------- */

.product-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    width: 100%;
    min-height: 50px;
    padding: 13px 20px;

    color: #ffffff;
    background: #2563eb;

    border: 2px solid #2563eb;
    border-radius: 13px;

    font-size: 14px;
    line-height: 1.2;
    font-weight: 800;
    text-decoration: none;

    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.18);

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.product-btn:hover {
    color: #ffffff;
    background: #1d4ed8;
    border-color: #1d4ed8;

    transform: translateY(-2px);

    box-shadow: 0 12px 26px rgba(37, 99, 235, 0.28);
}

.product-btn:active {
    transform: translateY(0);
}

.product-btn i {
    font-size: 14px;
}


/* ----------------------------------------------------------
   АЛЬТЕРНАТИВНАЯ КНОПКА
   ---------------------------------------------------------- */

.product-btn.secondary {
    color: #1d4ed8;
    background: #eff6ff;
    border-color: #bfdbfe;
    box-shadow: none;
}

.product-btn.secondary:hover {
    color: #ffffff;
    background: #2563eb;
    border-color: #2563eb;
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.22);
}


/* ----------------------------------------------------------
   БЛОК С ОСНОВНЫМИ ХАРАКТЕРИСТИКАМИ
   ---------------------------------------------------------- */

.products-info {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;

    margin-top: 50px;
}

.products-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;

    padding: 22px;

    background: #ffffff;

    border: 1px solid #e5e7eb;
    border-radius: 18px;

    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.05);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.products-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.09);
}

.products-info-icon {
    flex: 0 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    color: #2563eb;
    background: #eff6ff;

    border-radius: 14px;

    font-size: 20px;
}

.products-info-content h4 {
    margin: 0 0 6px;

    color: #0f172a;

    font-size: 16px;
    line-height: 1.35;
    font-weight: 800;
}

.products-info-content p {
    margin: 0;

    color: #64748b;

    font-size: 14px;
    line-height: 1.6;
}


/* ----------------------------------------------------------
   БЛОК "ПОМОЖЕМ ПОДОБРАТЬ"
   ---------------------------------------------------------- */

.selection-section {
    position: relative;

    margin-top: 60px;
    padding: 0;
}

.selection-card {
    position: relative;

    display: grid;
    grid-template-columns: 0.95fr 1.05fr;

    overflow: hidden;

    background: #0f172a;

    border-radius: 28px;

    box-shadow:
        0 25px 60px rgba(15, 23, 42, 0.18);
}

.selection-image {
    position: relative;
    min-height: 390px;
    overflow: hidden;
}

.selection-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.6s ease;
}

.selection-card:hover .selection-image img {
    transform: scale(1.05);
}

.selection-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(15, 23, 42, 0.08),
            rgba(15, 23, 42, 0.45)
        );
}

.selection-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 55px;
}

.selection-content .eyebrow {
    display: inline-flex;
    align-items: center;

    width: fit-content;

    margin-bottom: 14px;
    padding: 7px 13px;

    color: #bfdbfe;
    background: rgba(59, 130, 246, 0.15);

    border: 1px solid rgba(147, 197, 253, 0.15);
    border-radius: 999px;

    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.selection-content h3 {
    margin: 0 0 18px;

    color: #ffffff;

    font-size: 32px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.selection-content p {
    margin: 0 0 25px;

    color: #cbd5e1;

    font-size: 16px;
    line-height: 1.8;
}

.selection-list {
    display: flex;
    flex-direction: column;
    gap: 11px;

    margin: 0 0 30px;
    padding: 0;

    list-style: none;
}

.selection-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;

    color: #e2e8f0;

    font-size: 15px;
    line-height: 1.55;
}

.selection-list li::before {
    content: "✓";

    flex: 0 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 21px;
    height: 21px;

    margin-top: 1px;

    color: #0f172a;
    background: #93c5fd;

    border-radius: 50%;

    font-size: 11px;
    font-weight: 900;
}

.selection-content .btn {
    width: fit-content;
}


/* ----------------------------------------------------------
   КАТЕГОРИИ ТОВАРОВ
   ---------------------------------------------------------- */

.product-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;

    margin-bottom: 35px;
}

.product-category {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;
    padding: 9px 17px;

    color: #475569;
    background: #ffffff;

    border: 1px solid #dbe3ec;
    border-radius: 999px;

    font-size: 13px;
    font-weight: 700;

    cursor: default;

    transition:
        color 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.product-category:hover {
    color: #1d4ed8;
    background: #eff6ff;
    border-color: #bfdbfe;

    transform: translateY(-2px);
}


/* ----------------------------------------------------------
   ЦЕНА В КАРТОЧКАХ УСЛУГ
   ---------------------------------------------------------- */

.service-price {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;

    margin: 10px 0 18px;

    color: #0f172a;

    font-size: 23px;
    line-height: 1.2;
    font-weight: 900;
}

.service-price span {
    color: #64748b;

    font-size: 12px;
    font-weight: 600;
}


/* ----------------------------------------------------------
   УЛУЧШЕНИЕ КАРТОЧЕК НА МОБИЛЬНЫХ
   ---------------------------------------------------------- */

@media (max-width: 1199px) {

    .products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .products-info {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .selection-content {
        padding: 45px;
    }

    .selection-content h3 {
        font-size: 29px;
    }
}


@media (max-width: 991px) {

    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }

    .products-info {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .product-card-image {
        height: 220px;
    }

    .selection-card {
        grid-template-columns: 1fr;
    }

    .selection-image {
        min-height: 300px;
    }

    .selection-content {
        padding: 40px 32px;
    }

    .selection-content h3 {
        font-size: 28px;
    }
}


@media (max-width: 767px) {

    .products-intro {
        margin-bottom: 35px;
    }

    .products-intro p {
        font-size: 15px;
        line-height: 1.7;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .product-card {
        border-radius: 18px;
    }

    .product-card-image {
        height: 230px;
    }

    .product-card-content {
        padding: 22px 20px 20px;
    }

    .product-card-content h3 {
        font-size: 20px;
    }

    .product-price strong {
        font-size: 22px;
    }

    .products-info-item {
        padding: 19px;
    }

    .selection-image {
        min-height: 250px;
    }

    .selection-content {
        padding: 32px 24px;
    }

    .selection-content h3 {
        font-size: 25px;
    }

    .selection-content p {
        font-size: 15px;
    }

    .product-categories {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;

        padding: 4px 2px 10px;

        scrollbar-width: thin;
    }

    .product-category {
        flex: 0 0 auto;
    }
}


@media (max-width: 575px) {

    .product-card-image {
        height: 210px;
    }

    .product-card-content {
        padding: 20px 17px 18px;
    }

    .product-card-content h3 {
        font-size: 19px;
    }

    .product-card-content p {
        font-size: 14px;
    }

    .product-features li {
        font-size: 13px;
    }

    .product-price {
        margin-bottom: 15px;
        padding-top: 15px;
    }

    .product-price strong {
        font-size: 21px;
    }

    .product-btn {
        min-height: 48px;
    }

    .selection-content {
        padding: 28px 20px;
    }

    .selection-content h3 {
        font-size: 23px;
    }

    .selection-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .selection-list li {
        font-size: 14px;
    }

    .selection-content .btn {
        width: 100%;
    }
}


/* ==========================================================
   КОНЕЦ ЧАСТИ 3
   ========================================================== */
   
   /* ==========================================================
   ЧАСТЬ 4
   О КОМПАНИИ • ПРЕИМУЩЕСТВА • ЭТАПЫ • ГАРАНТИИ • ЦИФРЫ
   ========================================================== */


/* ----------------------------------------------------------
   БЛОК О КОМПАНИИ
   ---------------------------------------------------------- */

.about-section {
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-image {
    position: relative;
    overflow: hidden;

    min-height: 520px;

    border-radius: 28px;

    background: #e2e8f0;

    box-shadow:
        0 25px 60px rgba(15, 23, 42, 0.13);
}

.about-image img {
    display: block;

    width: 100%;
    height: 100%;

    min-height: 520px;

    object-fit: cover;

    transition: transform 0.7s ease;
}

.about-image:hover img {
    transform: scale(1.04);
}


/* ----------------------------------------------------------
   ДЕКОРАТИВНЫЙ ЭЛЕМЕНТ
   ---------------------------------------------------------- */

.about-image::before {
    content: "";

    position: absolute;
    z-index: 2;

    top: 24px;
    left: 24px;

    width: 70px;
    height: 70px;

    border-top: 3px solid rgba(255, 255, 255, 0.9);
    border-left: 3px solid rgba(255, 255, 255, 0.9);

    border-radius: 12px 0 0 0;

    pointer-events: none;
}

.about-image::after {
    content: "";

    position: absolute;
    z-index: 2;

    right: 24px;
    bottom: 24px;

    width: 70px;
    height: 70px;

    border-right: 3px solid rgba(255, 255, 255, 0.9);
    border-bottom: 3px solid rgba(255, 255, 255, 0.9);

    border-radius: 0 0 12px 0;

    pointer-events: none;
}


/* ----------------------------------------------------------
   ТЕКСТ О КОМПАНИИ
   ---------------------------------------------------------- */

.about-content {
    min-width: 0;
}

.about-content .eyebrow {
    display: inline-flex;
    align-items: center;

    margin-bottom: 14px;
    padding: 7px 13px;

    color: #1d4ed8;
    background: #eff6ff;

    border: 1px solid #dbeafe;
    border-radius: 999px;

    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.about-content h2 {
    margin: 0 0 22px;

    color: #0f172a;

    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.about-content h2 span {
    color: #2563eb;
}

.about-content p {
    margin: 0 0 18px;

    color: #64748b;

    font-size: 16px;
    line-height: 1.85;
}

.about-content p:last-of-type {
    margin-bottom: 28px;
}


/* ----------------------------------------------------------
   ФАКТЫ О КОМПАНИИ
   ---------------------------------------------------------- */

.about-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;

    margin-top: 30px;
}

.about-fact {
    display: flex;
    align-items: center;
    gap: 13px;

    padding: 16px;

    background: #f8fafc;

    border: 1px solid #e5e7eb;
    border-radius: 14px;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}

.about-fact:hover {
    transform: translateY(-3px);

    background: #ffffff;
    border-color: #bfdbfe;
}

.about-fact-icon {
    flex: 0 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 43px;
    height: 43px;

    color: #2563eb;
    background: #eff6ff;

    border-radius: 12px;

    font-size: 17px;
}

.about-fact strong {
    display: block;

    margin-bottom: 2px;

    color: #0f172a;

    font-size: 14px;
    font-weight: 800;
}

.about-fact span {
    display: block;

    color: #64748b;

    font-size: 12px;
    line-height: 1.4;
}


/* ----------------------------------------------------------
   ПРЕИМУЩЕСТВА
   ---------------------------------------------------------- */

.advantages-section {
    position: relative;

    background:
        linear-gradient(
            180deg,
            #f8fafc 0%,
            #f1f5f9 100%
        );
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.advantage-card {
    position: relative;

    padding: 30px 25px;

    background: #ffffff;

    border: 1px solid #e2e8f0;
    border-radius: 20px;

    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.05);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.advantage-card:hover {
    transform: translateY(-8px);

    border-color: #bfdbfe;

    box-shadow:
        0 20px 45px rgba(15, 23, 42, 0.10),
        0 5px 15px rgba(37, 99, 235, 0.06);
}

.advantage-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    margin-bottom: 20px;

    color: #2563eb;
    background: #eff6ff;

    border: 1px solid #dbeafe;
    border-radius: 16px;

    font-size: 23px;

    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.advantage-card:hover .advantage-icon {
    color: #ffffff;
    background: #2563eb;

    transform: rotate(-4deg) scale(1.05);
}

.advantage-card h3 {
    margin: 0 0 10px;

    color: #0f172a;

    font-size: 18px;
    line-height: 1.35;
    font-weight: 800;
}

.advantage-card p {
    margin: 0;

    color: #64748b;

    font-size: 14px;
    line-height: 1.7;
}


/* ----------------------------------------------------------
   НОМЕР КАРТОЧКИ
   ---------------------------------------------------------- */

.advantage-number {
    position: absolute;

    top: 20px;
    right: 20px;

    color: #e2e8f0;

    font-size: 34px;
    line-height: 1;
    font-weight: 900;
}

.advantage-card:hover .advantage-number {
    color: #dbeafe;
}


/* ----------------------------------------------------------
   ЦИФРЫ / СТАТИСТИКА
   ---------------------------------------------------------- */

.stats-section {
    position: relative;

    overflow: hidden;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #0f172a 0%,
            #172554 50%,
            #1e3a8a 100%
        );
}

.stats-section::before {
    content: "";

    position: absolute;

    top: -180px;
    right: -140px;

    width: 500px;
    height: 500px;

    background: rgba(59, 130, 246, 0.15);

    border-radius: 50%;

    filter: blur(10px);

    pointer-events: none;
}

.stats-section::after {
    content: "";

    position: absolute;

    bottom: -220px;
    left: -150px;

    width: 500px;
    height: 500px;

    background: rgba(96, 165, 250, 0.08);

    border-radius: 50%;

    pointer-events: none;
}

.stats-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.stat-item {
    position: relative;

    padding: 25px;

    text-align: center;

    background: rgba(255, 255, 255, 0.06);

    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 18px;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-6px);

    background: rgba(255, 255, 255, 0.10);
}

.stat-number {
    display: block;

    margin-bottom: 8px;

    color: #ffffff;

    font-size: clamp(30px, 4vw, 45px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.stat-number span {
    color: #60a5fa;
}

.stat-label {
    color: #cbd5e1;

    font-size: 13px;
    line-height: 1.5;
    font-weight: 600;
}


/* ----------------------------------------------------------
   ЭТАПЫ РАБОТЫ
   ---------------------------------------------------------- */

.work-steps {
    position: relative;

    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.work-steps::before {
    content: "";

    position: absolute;
    z-index: 0;

    top: 39px;
    left: 11%;
    right: 11%;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            #bfdbfe,
            #2563eb,
            #bfdbfe
        );
}

.work-step {
    position: relative;
    z-index: 1;

    text-align: center;
}

.work-step-number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 78px;
    height: 78px;

    margin: 0 auto 22px;

    color: #ffffff;
    background: #2563eb;

    border: 7px solid #ffffff;
    border-radius: 50%;

    box-shadow:
        0 0 0 1px #bfdbfe,
        0 12px 28px rgba(37, 99, 235, 0.22);

    font-size: 22px;
    font-weight: 900;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.work-step:hover .work-step-number {
    transform: scale(1.08);

    background: #1d4ed8;
}

.work-step h3 {
    margin: 0 0 9px;

    color: #0f172a;

    font-size: 17px;
    line-height: 1.35;
    font-weight: 800;
}

.work-step p {
    max-width: 230px;

    margin: 0 auto;

    color: #64748b;

    font-size: 13px;
    line-height: 1.65;
}


/* ----------------------------------------------------------
   ГАРАНТИЯ
   ---------------------------------------------------------- */

.guarantee-box {
    position: relative;

    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 25px;

    padding: 32px 38px;

    background:
        linear-gradient(
            135deg,
            #eff6ff,
            #ffffff
        );

    border: 1px solid #bfdbfe;
    border-radius: 22px;

    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.07);
}

.guarantee-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 70px;
    height: 70px;

    color: #2563eb;
    background: #ffffff;

    border: 1px solid #dbeafe;
    border-radius: 18px;

    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.08);

    font-size: 29px;
}

.guarantee-content h3 {
    margin: 0 0 7px;

    color: #0f172a;

    font-size: 21px;
    line-height: 1.3;
    font-weight: 900;
}

.guarantee-content p {
    margin: 0;

    color: #64748b;

    font-size: 14px;
    line-height: 1.7;
}

.guarantee-value {
    text-align: center;
}

.guarantee-value strong {
    display: block;

    color: #2563eb;

    font-size: 38px;
    line-height: 1;
    font-weight: 900;
}

.guarantee-value span {
    display: block;

    margin-top: 5px;

    color: #64748b;

    font-size: 12px;
    font-weight: 700;
}


/* ----------------------------------------------------------
   CTA ПОСЛЕ ПРЕИМУЩЕСТВ
   ---------------------------------------------------------- */

.cta-section {
    position: relative;
    overflow: hidden;

    background: #0f172a;
}

.cta-box {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;

    padding: 45px 50px;

    background:
        linear-gradient(
            135deg,
            #172554,
            #1e40af
        );

    border-radius: 26px;

    box-shadow:
        0 25px 60px rgba(15, 23, 42, 0.22);
}

.cta-box::before {
    content: "";

    position: absolute;

    top: -120px;
    right: -70px;

    width: 330px;
    height: 330px;

    background: rgba(255, 255, 255, 0.08);

    border-radius: 50%;

    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;

    max-width: 720px;
}

.cta-content h2 {
    margin: 0 0 12px;

    color: #ffffff;

    font-size: clamp(26px, 4vw, 38px);
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.cta-content p {
    margin: 0;

    color: #dbeafe;

    font-size: 16px;
    line-height: 1.7;
}

.cta-actions {
    position: relative;
    z-index: 2;

    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    flex: 0 0 auto;
}

.cta-actions .btn {
    min-width: 180px;
}


/* ----------------------------------------------------------
   АДАПТАЦИЯ
   ---------------------------------------------------------- */

@media (max-width: 1199px) {

    .about-grid {
        gap: 45px;
    }

    .advantages-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .work-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 45px;
    }

    .work-steps::before {
        display: none;
    }
}


@media (max-width: 991px) {

    .about-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .about-image,
    .about-image img {
        min-height: 400px;
    }

    .about-content h2 {
        font-size: 36px;
    }

    .guarantee-box {
        grid-template-columns: auto 1fr;
    }

    .guarantee-value {
        grid-column: 1 / -1;

        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;

        text-align: left;
    }

    .guarantee-value strong {
        font-size: 32px;
    }

    .cta-box {
        align-items: flex-start;
        flex-direction: column;

        padding: 38px;
    }
}


@media (max-width: 767px) {

    .about-image,
    .about-image img {
        min-height: 340px;
    }

    .about-content h2 {
        font-size: 31px;
    }

    .about-content p {
        font-size: 15px;
        line-height: 1.75;
    }

    .about-facts {
        grid-template-columns: 1fr;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .advantage-card {
        padding: 25px 22px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .stat-item {
        padding: 22px 15px;
    }

    .work-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .work-step p {
        max-width: 300px;
    }

    .guarantee-box {
        padding: 25px 22px;
    }

    .cta-box {
        padding: 30px 24px;
        border-radius: 20px;
    }

    .cta-content h2 {
        font-size: 27px;
    }

    .cta-content p {
        font-size: 14px;
    }

    .cta-actions {
        width: 100%;
    }

    .cta-actions .btn {
        width: 100%;
    }
}


@media (max-width: 575px) {

    .about-image,
    .about-image img {
        min-height: 280px;
    }

    .about-image::before,
    .about-image::after {
        width: 45px;
        height: 45px;
    }

    .about-image::before {
        top: 15px;
        left: 15px;
    }

    .about-image::after {
        right: 15px;
        bottom: 15px;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .about-fact {
        padding: 14px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-item {
        padding: 18px 10px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 11px;
    }

    .work-step-number {
        width: 68px;
        height: 68px;

        border-width: 6px;

        font-size: 19px;
    }

    .guarantee-box {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .guarantee-icon {
        margin: 0 auto;
    }

    .guarantee-value {
        justify-content: center;

        text-align: center;
    }

    .guarantee-value strong {
        font-size: 30px;
    }

    .cta-box {
        padding: 27px 19px;
    }
}


/* ==========================================================
   КОНЕЦ ЧАСТИ 4
   ========================================================== */
 /* ==========================================================
   ЧАСТЬ 5
   ПРАЙС • ЦЕНЫ • ТАБЛИЦА СТОИМОСТИ
   ========================================================== */


/* ----------------------------------------------------------
   СЕКЦИЯ ЦЕН
   ---------------------------------------------------------- */

.pricing-section {
    position: relative;
    overflow: hidden;
    background: #ffffff;
}


/* ----------------------------------------------------------
   ВВОДНЫЙ ТЕКСТ ПРАЙСА
   ---------------------------------------------------------- */

.pricing-intro {
    max-width: 850px;

    margin: 0 auto 45px;

    text-align: center;
}

.pricing-intro p {
    margin: 0;

    color: #64748b;

    font-size: 16px;
    line-height: 1.8;
}


/* ----------------------------------------------------------
   СЕТКА ЦЕН
   ---------------------------------------------------------- */

.pricing-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 24px;

    align-items: stretch;
}


/* ----------------------------------------------------------
   КАРТОЧКА ПРАЙСА
   ---------------------------------------------------------- */

.pricing-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-width: 0;

    padding: 32px 28px 28px;

    background: #ffffff;

    border: 1px solid #e2e8f0;
    border-radius: 22px;

    box-shadow:
        0 8px 30px rgba(15, 23, 42, 0.05);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);

    border-color: #bfdbfe;

    box-shadow:
        0 22px 50px rgba(15, 23, 42, 0.11),
        0 6px 18px rgba(37, 99, 235, 0.07);
}


/* ----------------------------------------------------------
   ПОПУЛЯРНАЯ КАРТОЧКА
   ---------------------------------------------------------- */

.pricing-card.featured {
    border: 2px solid #2563eb;

    box-shadow:
        0 18px 45px rgba(37, 99, 235, 0.14);
}

.pricing-card.featured:hover {
    box-shadow:
        0 28px 60px rgba(37, 99, 235, 0.19);
}


/* ----------------------------------------------------------
   БЕЙДЖ "ПОПУЛЯРНО"
   ---------------------------------------------------------- */

.pricing-popular {
    position: absolute;

    top: 0;
    left: 50%;

    transform: translate(-50%, -50%);

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 32px;

    padding: 7px 16px;

    color: #ffffff;

    background: #2563eb;

    border: 4px solid #ffffff;
    border-radius: 999px;

    box-shadow:
        0 7px 18px rgba(37, 99, 235, 0.25);

    font-size: 11px;
    line-height: 1;
    font-weight: 900;

    text-transform: uppercase;
    letter-spacing: 0.06em;

    white-space: nowrap;
}


/* ----------------------------------------------------------
   ЗАГОЛОВОК КАРТОЧКИ
   ---------------------------------------------------------- */

.pricing-card-header {
    padding-bottom: 23px;

    margin-bottom: 22px;

    border-bottom: 1px solid #e5e7eb;
}

.pricing-card-header h3 {
    margin: 0 0 9px;

    color: #0f172a;

    font-size: 21px;
    line-height: 1.3;
    font-weight: 900;
}

.pricing-card-header p {
    margin: 0;

    color: #64748b;

    font-size: 13px;
    line-height: 1.6;
}


/* ----------------------------------------------------------
   ОСНОВНАЯ ЦЕНА
   ---------------------------------------------------------- */

.pricing-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px;

    margin-bottom: 23px;
}

.pricing-price strong {
    color: #0f172a;

    font-size: 34px;
    line-height: 1;

    font-weight: 900;

    letter-spacing: -0.04em;
}

.pricing-price span {
    color: #64748b;

    font-size: 13px;
    font-weight: 600;
}


/* ----------------------------------------------------------
   СПИСОК УСЛУГ В КАРТОЧКЕ
   ---------------------------------------------------------- */

.pricing-list {
    display: flex;
    flex-direction: column;
    gap: 12px;

    margin: 0 0 28px;
    padding: 0;

    list-style: none;
}

.pricing-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;

    color: #475569;

    font-size: 14px;
    line-height: 1.55;
}

.pricing-list li::before {
    content: "✓";

    flex: 0 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 21px;
    height: 21px;

    margin-top: 1px;

    color: #ffffff;

    background: #2563eb;

    border-radius: 50%;

    font-size: 11px;
    font-weight: 900;
}


/* ----------------------------------------------------------
   КНОПКА В ПРАЙСЕ
   ---------------------------------------------------------- */

.pricing-card .btn {
    width: 100%;

    margin-top: auto;
}


/* ----------------------------------------------------------
   ТАБЛИЦА ЦЕН
   ---------------------------------------------------------- */

.price-table-wrapper {
    width: 100%;

    margin-top: 55px;

    overflow-x: auto;

    background: #ffffff;

    border: 1px solid #e2e8f0;
    border-radius: 20px;

    box-shadow:
        0 10px 35px rgba(15, 23, 42, 0.06);

    scrollbar-width: thin;
}

.price-table {
    width: 100%;

    min-width: 700px;

    border-collapse: collapse;

    font-size: 14px;
}

.price-table thead {
    background:
        linear-gradient(
            135deg,
            #0f172a,
            #1e293b
        );
}

.price-table th {
    padding: 17px 20px;

    color: #ffffff;

    border: 0;

    font-size: 12px;
    line-height: 1.3;
    font-weight: 800;

    text-align: left;

    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.price-table th:first-child {
    border-radius: 18px 0 0 0;
}

.price-table th:last-child {
    border-radius: 0 18px 0 0;
}

.price-table td {
    padding: 17px 20px;

    color: #475569;

    border-bottom: 1px solid #e5e7eb;

    vertical-align: middle;

    line-height: 1.5;
}

.price-table tbody tr:last-child td {
    border-bottom: 0;
}

.price-table tbody tr {
    transition: background 0.25s ease;
}

.price-table tbody tr:hover {
    background: #f8fafc;
}

.price-table td:first-child {
    color: #0f172a;

    font-weight: 700;
}

.price-table td.price-value {
    color: #2563eb;

    font-size: 16px;
    font-weight: 900;

    white-space: nowrap;
}


/* ----------------------------------------------------------
   ЕДИНИЦА ИЗМЕРЕНИЯ
   ---------------------------------------------------------- */

.price-unit {
    color: #94a3b8;

    font-size: 12px;
    font-weight: 600;
}


/* ----------------------------------------------------------
   ЗНАЧОК В ТАБЛИЦЕ
   ---------------------------------------------------------- */

.price-table-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    margin-right: 9px;

    color: #2563eb;

    background: #eff6ff;

    border-radius: 10px;

    font-size: 14px;

    vertical-align: middle;
}


/* ----------------------------------------------------------
   ЗАМЕТКА ПОД ТАБЛИЦЕЙ
   ---------------------------------------------------------- */

.price-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    margin-top: 18px;
    padding: 17px 20px;

    color: #475569;

    background: #f8fafc;

    border: 1px solid #e2e8f0;
    border-radius: 14px;

    font-size: 13px;
    line-height: 1.65;
}

.price-note i {
    flex: 0 0 auto;

    margin-top: 2px;

    color: #2563eb;

    font-size: 16px;
}


/* ----------------------------------------------------------
   БЛОК "ЧТО ВХОДИТ В СТОИМОСТЬ"
   ---------------------------------------------------------- */

.price-includes {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 18px;

    margin-top: 28px;
}

.price-includes-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;

    padding: 20px;

    background: #f8fafc;

    border: 1px solid #e2e8f0;
    border-radius: 16px;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}

.price-includes-item:hover {
    transform: translateY(-4px);

    background: #ffffff;

    border-color: #bfdbfe;
}

.price-includes-icon {
    flex: 0 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    color: #2563eb;

    background: #eff6ff;

    border-radius: 12px;

    font-size: 17px;
}

.price-includes-item strong {
    display: block;

    margin-bottom: 4px;

    color: #0f172a;

    font-size: 14px;
    line-height: 1.35;
    font-weight: 800;
}

.price-includes-item span {
    display: block;

    color: #64748b;

    font-size: 12px;
    line-height: 1.5;
}


/* ----------------------------------------------------------
   БЛОК С ПРИМЕРНЫМ РАСЧЁТОМ
   ---------------------------------------------------------- */

.price-calculator {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 30px;

    margin-top: 55px;

    padding: 35px;

    background:
        linear-gradient(
            135deg,
            #f8fafc,
            #eff6ff
        );

    border: 1px solid #dbeafe;
    border-radius: 24px;
}

.price-calculator-content h3 {
    margin: 0 0 12px;

    color: #0f172a;

    font-size: 25px;
    line-height: 1.3;
    font-weight: 900;
}

.price-calculator-content p {
    margin: 0;

    color: #64748b;

    font-size: 14px;
    line-height: 1.75;
}

.price-calculator-result {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    min-height: 150px;

    padding: 25px;

    text-align: center;

    background: #ffffff;

    border: 1px solid #dbeafe;
    border-radius: 18px;

    box-shadow:
        0 10px 25px rgba(37, 99, 235, 0.06);
}

.price-calculator-result span {
    margin-bottom: 7px;

    color: #64748b;

    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.price-calculator-result strong {
    color: #2563eb;

    font-size: 32px;
    line-height: 1;

    font-weight: 900;

    letter-spacing: -0.04em;
}

.price-calculator-result small {
    margin-top: 7px;

    color: #94a3b8;

    font-size: 12px;
}


/* ----------------------------------------------------------
   КНОПКИ ПОД ПРАЙСОМ
   ---------------------------------------------------------- */

.pricing-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 35px;
}

.pricing-actions .btn {
    min-width: 210px;
}


/* ----------------------------------------------------------
   МОБИЛЬНАЯ АДАПТАЦИЯ
   ---------------------------------------------------------- */

@media (max-width: 1199px) {

    .pricing-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .price-includes {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}


@media (max-width: 991px) {

    .pricing-grid {
        gap: 20px;
    }

    .pricing-card {
        padding: 28px 23px 24px;
    }

    .pricing-price strong {
        font-size: 30px;
    }

    .price-calculator {
        grid-template-columns: 1fr;

        padding: 28px;
    }
}


@media (max-width: 767px) {

    .pricing-intro {
        margin-bottom: 32px;
    }

    .pricing-intro p {
        font-size: 15px;
        line-height: 1.7;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .pricing-card {
        border-radius: 18px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-6px);
    }

    .price-table-wrapper {
        margin-top: 35px;

        border-radius: 16px;
    }

    .price-table th,
    .price-table td {
        padding: 14px 15px;
    }

    .price-includes {
        grid-template-columns: 1fr;
    }

    .price-calculator {
        margin-top: 35px;

        padding: 23px;

        border-radius: 19px;
    }

    .pricing-actions {
        width: 100%;
    }

    .pricing-actions .btn {
        width: 100%;
        min-width: 0;
    }
}


@media (max-width: 575px) {

    .pricing-card {
        padding: 25px 19px 21px;
    }

    .pricing-card-header {
        padding-bottom: 19px;
        margin-bottom: 19px;
    }

    .pricing-card-header h3 {
        font-size: 19px;
    }

    .pricing-price strong {
        font-size: 28px;
    }

    .pricing-list {
        gap: 10px;
    }

    .pricing-list li {
        font-size: 13px;
    }

    .price-table {
        min-width: 650px;
    }

    .price-note {
        padding: 15px 16px;

        font-size: 12px;
    }

    .price-calculator {
        padding: 20px;
    }

    .price-calculator-content h3 {
        font-size: 22px;
    }

    .price-calculator-result {
        min-height: 130px;
        padding: 20px;
    }

    .price-calculator-result strong {
        font-size: 28px;
    }
}


/* ==========================================================
   КОНЕЦ ЧАСТИ 5
   ========================================================== */
   /* ==========================================================
   ЧАСТЬ 6
   FAQ • ОТЗЫВЫ • РЕЙТИНГ • БЛОГ
   ========================================================== */


/* ----------------------------------------------------------
   FAQ
   ---------------------------------------------------------- */

.faq-section {
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8fafc 100%
        );
}

.faq-wrapper {
    max-width: 950px;

    margin: 0 auto;
}


/* ----------------------------------------------------------
   АККОРДЕОН FAQ
   ---------------------------------------------------------- */

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e2e8f0;
    border-radius: 16px;

    box-shadow:
        0 5px 18px rgba(15, 23, 42, 0.04);

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.faq-item:hover {
    border-color: #bfdbfe;

    box-shadow:
        0 10px 28px rgba(15, 23, 42, 0.07);
}

.faq-question {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    width: 100%;

    padding: 22px 25px;

    color: #0f172a;

    background: #ffffff;

    border: 0;

    font-family: inherit;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 800;

    text-align: left;

    cursor: pointer;

    transition:
        color 0.25s ease,
        background 0.25s ease;
}

.faq-question:hover {
    color: #1d4ed8;
}

.faq-question::after {
    content: "+";

    flex: 0 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    color: #2563eb;

    background: #eff6ff;

    border-radius: 50%;

    font-size: 22px;
    line-height: 1;
    font-weight: 400;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}


/* ----------------------------------------------------------
   ОТКРЫТЫЙ FAQ
   ---------------------------------------------------------- */

.faq-item.active {
    border-color: #bfdbfe;

    box-shadow:
        0 12px 30px rgba(37, 99, 235, 0.08);
}

.faq-item.active .faq-question {
    color: #1d4ed8;

    background: #f8fbff;
}

.faq-item.active .faq-question::after {
    content: "−";

    color: #ffffff;
    background: #2563eb;

    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;

    overflow: hidden;

    opacity: 0;

    transition:
        max-height 0.4s ease,
        opacity 0.3s ease;
}

.faq-answer-inner {
    padding: 0 25px 23px;

    color: #64748b;

    font-size: 14px;
    line-height: 1.8;
}

.faq-answer-inner p {
    margin: 0;
}


/* ----------------------------------------------------------
   БЛОК ПЕРЕД FAQ
   ---------------------------------------------------------- */

.faq-note {
    display: flex;
    align-items: flex-start;
    gap: 14px;

    margin-top: 28px;
    padding: 19px 22px;

    background: #eff6ff;

    border: 1px solid #dbeafe;
    border-radius: 15px;
}

.faq-note-icon {
    flex: 0 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    color: #2563eb;
    background: #ffffff;

    border-radius: 12px;

    font-size: 17px;
}

.faq-note p {
    margin: 0;

    color: #475569;

    font-size: 13px;
    line-height: 1.65;
}


/* ----------------------------------------------------------
   ОТЗЫВЫ
   ---------------------------------------------------------- */

.testimonials-section {
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #f8fafc 0%,
            #ffffff 100%
        );
}

.testimonials-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 24px;
}


/* ----------------------------------------------------------
   КАРТОЧКА ОТЗЫВА
   ---------------------------------------------------------- */

.testimonial-card {
    position: relative;

    display: flex;
    flex-direction: column;

    padding: 28px;

    background: #ffffff;

    border: 1px solid #e2e8f0;
    border-radius: 21px;

    box-shadow:
        0 8px 28px rgba(15, 23, 42, 0.05);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.testimonial-card:hover {
    transform: translateY(-7px);

    border-color: #bfdbfe;

    box-shadow:
        0 20px 45px rgba(15, 23, 42, 0.10);
}


/* ----------------------------------------------------------
   КАВЫЧКИ
   ---------------------------------------------------------- */

.testimonial-card::before {
    content: "“";

    position: absolute;

    top: 12px;
    right: 23px;

    color: #dbeafe;

    font-family: Georgia, serif;
    font-size: 75px;
    line-height: 1;

    pointer-events: none;
}


/* ----------------------------------------------------------
   ЗВЁЗДЫ
   ---------------------------------------------------------- */

.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 3px;

    margin-bottom: 18px;
}

.testimonial-rating i {
    color: #f59e0b;

    font-size: 14px;
}

.testimonial-rating span {
    margin-left: 7px;

    color: #94a3b8;

    font-size: 12px;
    font-weight: 600;
}


/* ----------------------------------------------------------
   ТЕКСТ ОТЗЫВА
   ---------------------------------------------------------- */

.testimonial-text {
    position: relative;
    z-index: 1;

    margin: 0 0 25px;

    color: #475569;

    font-size: 15px;
    line-height: 1.8;
}


/* ----------------------------------------------------------
   АВТОР
   ---------------------------------------------------------- */

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 13px;

    margin-top: auto;

    padding-top: 18px;

    border-top: 1px solid #e5e7eb;
}

.testimonial-avatar {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    width: 45px;
    height: 45px;

    color: #2563eb;

    background: #eff6ff;

    border-radius: 50%;

    font-size: 16px;
    font-weight: 900;
}

.testimonial-author strong {
    display: block;

    margin-bottom: 2px;

    color: #0f172a;

    font-size: 14px;
    line-height: 1.3;
    font-weight: 800;
}

.testimonial-author span {
    display: block;

    color: #94a3b8;

    font-size: 12px;
}


/* ----------------------------------------------------------
   ОБЩИЙ РЕЙТИНГ
   ---------------------------------------------------------- */

.rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;

    max-width: 600px;

    margin: 0 auto 45px;

    padding: 22px 28px;

    background: #ffffff;

    border: 1px solid #e2e8f0;
    border-radius: 18px;

    box-shadow:
        0 8px 25px rgba(15, 23, 42, 0.05);
}

.rating-score {
    color: #0f172a;

    font-size: 40px;
    line-height: 1;
    font-weight: 900;
}

.rating-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.rating-stars {
    display: flex;
    gap: 3px;
}

.rating-stars i {
    color: #f59e0b;

    font-size: 17px;
}

.rating-details span {
    color: #64748b;

    font-size: 12px;
}


/* ----------------------------------------------------------
   БЛОК "ОСТАЛИСЬ ВОПРОСЫ"
   ---------------------------------------------------------- */

.questions-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;

    margin-top: 40px;
    padding: 28px 32px;

    background: #ffffff;

    border: 1px solid #dbeafe;
    border-radius: 20px;

    box-shadow:
        0 10px 30px rgba(37, 99, 235, 0.06);
}

.questions-content h3 {
    margin: 0 0 6px;

    color: #0f172a;

    font-size: 20px;
    line-height: 1.3;
    font-weight: 900;
}

.questions-content p {
    margin: 0;

    color: #64748b;

    font-size: 14px;
    line-height: 1.6;
}

.questions-box .btn {
    flex: 0 0 auto;
}


/* ----------------------------------------------------------
   БЛОГ
   ---------------------------------------------------------- */

.blog-section {
    position: relative;

    background: #ffffff;
}

.blog-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 25px;
}


/* ----------------------------------------------------------
   КАРТОЧКА СТАТЬИ
   ---------------------------------------------------------- */

.blog-card {
    display: flex;
    flex-direction: column;

    overflow: hidden;

    min-width: 0;

    background: #ffffff;

    border: 1px solid #e2e8f0;
    border-radius: 20px;

    box-shadow:
        0 8px 28px rgba(15, 23, 42, 0.05);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.blog-card:hover {
    transform: translateY(-8px);

    border-color: #bfdbfe;

    box-shadow:
        0 22px 50px rgba(15, 23, 42, 0.10);
}


/* ----------------------------------------------------------
   ИЗОБРАЖЕНИЕ СТАТЬИ
   ---------------------------------------------------------- */

.blog-image {
    position: relative;

    height: 225px;

    overflow: hidden;

    background: #e2e8f0;
}

.blog-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.6s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.07);
}


/* ----------------------------------------------------------
   ГРАДИЕНТ НА ФОТО
   ---------------------------------------------------------- */

.blog-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(15, 23, 42, 0.42) 100%
        );

    pointer-events: none;
}


/* ----------------------------------------------------------
   КАТЕГОРИЯ СТАТЬИ
   ---------------------------------------------------------- */

.blog-category {
    position: absolute;
    z-index: 2;

    top: 16px;
    left: 16px;

    display: inline-flex;
    align-items: center;

    padding: 7px 12px;

    color: #ffffff;

    background: rgba(15, 23, 42, 0.78);

    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;

    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);

    font-size: 11px;
    line-height: 1;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 0.05em;
}


/* ----------------------------------------------------------
   ДАТА
   ---------------------------------------------------------- */

.blog-date {
    position: absolute;
    z-index: 2;

    right: 16px;
    bottom: 15px;

    color: #ffffff;

    font-size: 12px;
    font-weight: 600;
}


/* ----------------------------------------------------------
   КОНТЕНТ СТАТЬИ
   ---------------------------------------------------------- */

.blog-content {
    display: flex;
    flex-direction: column;
    flex: 1;

    padding: 24px;
}

.blog-content h3 {
    margin: 0 0 11px;

    color: #0f172a;

    font-size: 19px;
    line-height: 1.4;
    font-weight: 850;
}

.blog-content h3 a {
    color: inherit;

    text-decoration: none;

    transition: color 0.25s ease;
}

.blog-content h3 a:hover {
    color: #2563eb;
}

.blog-content p {
    margin: 0 0 20px;

    color: #64748b;

    font-size: 14px;
    line-height: 1.7;
}


/* ----------------------------------------------------------
   ССЫЛКА "ЧИТАТЬ"
   ---------------------------------------------------------- */

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    width: fit-content;

    margin-top: auto;

    color: #2563eb;

    font-size: 13px;
    line-height: 1.4;
    font-weight: 800;

    text-decoration: none;

    transition:
        gap 0.25s ease,
        color 0.25s ease;
}

.blog-link:hover {
    gap: 12px;

    color: #1d4ed8;
}

.blog-link i {
    font-size: 11px;
}


/* ----------------------------------------------------------
   КАРТОЧКА "ВСЕ СТАТЬИ"
   ---------------------------------------------------------- */

.blog-more {
    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 35px;
}

.blog-more .btn {
    min-width: 210px;
}


/* ----------------------------------------------------------
   НИЖНИЙ CTA БЛОГА
   ---------------------------------------------------------- */

.blog-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;

    margin-top: 45px;
    padding: 28px 32px;

    background:
        linear-gradient(
            135deg,
            #eff6ff,
            #f8fafc
        );

    border: 1px solid #dbeafe;
    border-radius: 20px;
}

.blog-cta-content h3 {
    margin: 0 0 6px;

    color: #0f172a;

    font-size: 20px;
    line-height: 1.3;
    font-weight: 900;
}

.blog-cta-content p {
    margin: 0;

    color: #64748b;

    font-size: 13px;
    line-height: 1.6;
}


/* ----------------------------------------------------------
   АДАПТАЦИЯ FAQ
   ---------------------------------------------------------- */

@media (max-width: 767px) {

    .faq-question {
        padding: 19px 18px;

        font-size: 15px;
    }

    .faq-question::after {
        width: 31px;
        height: 31px;

        font-size: 20px;
    }

    .faq-answer-inner {
        padding: 0 18px 19px;

        font-size: 13px;
        line-height: 1.7;
    }

    .faq-note {
        padding: 16px;
    }

    .rating-summary {
        margin-bottom: 30px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;

        gap: 17px;
    }

    .testimonial-card {
        padding: 23px;
    }

    .questions-box {
        align-items: flex-start;
        flex-direction: column;

        padding: 23px;
    }

    .questions-box .btn {
        width: 100%;
    }

    .blog-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .blog-image {
        height: 220px;
    }

    .blog-content {
        padding: 21px;
    }

    .blog-cta {
        align-items: flex-start;
        flex-direction: column;

        padding: 23px;
    }

    .blog-cta .btn {
        width: 100%;
    }
}


@media (max-width: 575px) {

    .faq-list {
        gap: 9px;
    }

    .faq-question {
        gap: 12px;

        padding: 17px 15px;

        font-size: 14px;
    }

    .faq-question::after {
        width: 29px;
        height: 29px;

        font-size: 18px;
    }

    .faq-answer-inner {
        padding: 0 15px 17px;

        font-size: 13px;
    }

    .faq-note {
        align-items: flex-start;

        padding: 14px;
    }

    .faq-note-icon {
        width: 38px;
        height: 38px;
    }

    .rating-summary {
        gap: 15px;

        padding: 18px 20px;
    }

    .rating-score {
        font-size: 34px;
    }

    .rating-stars i {
        font-size: 15px;
    }

    .testimonial-card {
        border-radius: 17px;
    }

    .testimonial-text {
        font-size: 14px;
    }

    .blog-image {
        height: 200px;
    }

    .blog-content h3 {
        font-size: 18px;
    }

    .blog-content p {
        font-size: 13px;
    }
}


/* ==========================================================
   КОНЕЦ ЧАСТИ 6
   ========================================================== */
   
   /* ==========================================================
   ЧАСТЬ 7
   КОНТАКТЫ • КАРТА • ФОРМА • МЕССЕНДЖЕРЫ • ФУТЕР
   ========================================================== */


/* ----------------------------------------------------------
   СЕКЦИЯ КОНТАКТОВ
   ---------------------------------------------------------- */

.contact-section {
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #f8fafc 0%,
            #ffffff 100%
        );
}

.contact-grid {
    display: grid;

    grid-template-columns:
        0.9fr 1.1fr;

    gap: 30px;

    align-items: stretch;
}


/* ----------------------------------------------------------
   ЛЕВАЯ КОНТАКТНАЯ ПАНЕЛЬ
   ---------------------------------------------------------- */

.contact-info {
    display: flex;
    flex-direction: column;

    padding: 35px;

    background:
        linear-gradient(
            145deg,
            #0f172a,
            #172554
        );

    border-radius: 24px;

    box-shadow:
        0 20px 50px rgba(15, 23, 42, 0.15);
}

.contact-info .eyebrow {
    display: inline-flex;
    align-items: center;

    width: fit-content;

    margin-bottom: 14px;
    padding: 7px 13px;

    color: #bfdbfe;

    background: rgba(59, 130, 246, 0.15);

    border: 1px solid rgba(147, 197, 253, 0.15);
    border-radius: 999px;

    font-size: 11px;
    line-height: 1;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.contact-info h2 {
    margin: 0 0 15px;

    color: #ffffff;

    font-size: 32px;
    line-height: 1.2;
    font-weight: 900;

    letter-spacing: -0.03em;
}

.contact-info > p {
    margin: 0 0 28px;

    color: #cbd5e1;

    font-size: 14px;
    line-height: 1.75;
}


/* ----------------------------------------------------------
   КОНТАКТНЫЕ ПУНКТЫ
   ---------------------------------------------------------- */

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;

    padding: 15px;

    background: rgba(255, 255, 255, 0.055);

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(4px);

    background: rgba(255, 255, 255, 0.09);
}

.contact-item-icon {
    flex: 0 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 43px;
    height: 43px;

    color: #93c5fd;

    background: rgba(59, 130, 246, 0.16);

    border-radius: 12px;

    font-size: 17px;
}

.contact-item-content strong {
    display: block;

    margin-bottom: 3px;

    color: #ffffff;

    font-size: 13px;
    line-height: 1.3;
    font-weight: 800;
}

.contact-item-content span,
.contact-item-content a {
    color: #cbd5e1;

    font-size: 13px;
    line-height: 1.5;

    text-decoration: none;

    transition: color 0.25s ease;
}

.contact-item-content a:hover {
    color: #ffffff;
}


/* ----------------------------------------------------------
   СОЦСЕТИ / МЕССЕНДЖЕРЫ
   ---------------------------------------------------------- */

.contact-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    margin-top: auto;
    padding-top: 28px;
}

.contact-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-height: 42px;

    padding: 9px 15px;

    color: #ffffff;

    background: rgba(255, 255, 255, 0.07);

    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 12px;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        border-color 0.3s ease;
}

.contact-social:hover {
    color: #ffffff;

    background: rgba(59, 130, 246, 0.25);

    border-color: rgba(147, 197, 253, 0.25);

    transform: translateY(-2px);
}

.contact-social i {
    font-size: 15px;
}


/* ----------------------------------------------------------
   ПРАВАЯ ПАНЕЛЬ
   ---------------------------------------------------------- */

.contact-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


/* ----------------------------------------------------------
   ФОРМА
   ---------------------------------------------------------- */

.contact-form {
    padding: 32px;

    background: #ffffff;

    border: 1px solid #e2e8f0;
    border-radius: 24px;

    box-shadow:
        0 10px 35px rgba(15, 23, 42, 0.06);
}

.contact-form h3 {
    margin: 0 0 7px;

    color: #0f172a;

    font-size: 23px;
    line-height: 1.3;
    font-weight: 900;
}

.contact-form > p {
    margin: 0 0 25px;

    color: #64748b;

    font-size: 13px;
    line-height: 1.6;
}


/* ----------------------------------------------------------
   СЕТКА ПОЛЕЙ
   ---------------------------------------------------------- */

.form-row {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 15px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;

    margin-bottom: 7px;

    color: #334155;

    font-size: 12px;
    line-height: 1.3;
    font-weight: 800;
}

.form-control,
.contact-form input,
.contact-form textarea,
.contact-form select {
    display: block;

    width: 100%;

    padding: 13px 15px;

    color: #0f172a;

    background: #f8fafc;

    border: 1px solid #dbe3ec;
    border-radius: 12px;

    outline: none;

    font-family: inherit;
    font-size: 14px;
    line-height: 1.45;

    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.contact-form input,
.contact-form select {
    min-height: 48px;
}

.contact-form textarea {
    min-height: 120px;

    resize: vertical;
}

.form-control::placeholder,
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #94a3b8;
}

.form-control:focus,
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    background: #ffffff;

    border-color: #60a5fa;

    box-shadow:
        0 0 0 4px rgba(37, 99, 235, 0.08);
}


/* ----------------------------------------------------------
   СОГЛАСИЕ
   ---------------------------------------------------------- */

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 9px;

    margin: 3px 0 18px;
}

.form-consent input[type="checkbox"] {
    flex: 0 0 auto;

    width: 17px;
    height: 17px;

    margin: 1px 0 0;

    accent-color: #2563eb;
}

.form-consent label {
    margin: 0;

    color: #64748b;

    font-size: 11px;
    line-height: 1.55;

    cursor: pointer;
}

.form-consent a {
    color: #2563eb;

    text-decoration: underline;
}


/* ----------------------------------------------------------
   КНОПКА ФОРМЫ
   ---------------------------------------------------------- */

.contact-form .form-submit {
    display: flex;

    width: 100%;
}

.contact-form .form-submit .btn {
    width: 100%;
}


/* ----------------------------------------------------------
   КАРТА
   ---------------------------------------------------------- */

.contact-map {
    position: relative;

    min-height: 330px;

    overflow: hidden;

    background: #e2e8f0;

    border: 1px solid #e2e8f0;
    border-radius: 22px;

    box-shadow:
        0 10px 30px rgba(15, 23, 42, 0.06);
}

.contact-map iframe {
    display: block;

    width: 100%;
    height: 100%;

    min-height: 330px;

    border: 0;
}


/* ----------------------------------------------------------
   КАРТОЧКА ПОВЕРХ КАРТЫ
   ---------------------------------------------------------- */

.map-address {
    position: absolute;
    z-index: 3;

    left: 18px;
    bottom: 18px;

    max-width: 310px;

    padding: 15px 17px;

    background: rgba(255, 255, 255, 0.94);

    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 14px;

    box-shadow:
        0 10px 25px rgba(15, 23, 42, 0.13);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.map-address strong {
    display: block;

    margin-bottom: 4px;

    color: #0f172a;

    font-size: 13px;
    font-weight: 800;
}

.map-address span {
    display: block;

    color: #64748b;

    font-size: 12px;
    line-height: 1.5;
}


/* ----------------------------------------------------------
   БЛОК РЕЖИМА РАБОТЫ
   ---------------------------------------------------------- */

.working-hours {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    padding: 18px 22px;

    background: #ffffff;

    border: 1px solid #e2e8f0;
    border-radius: 16px;

    box-shadow:
        0 6px 20px rgba(15, 23, 42, 0.04);
}

.working-hours-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.working-hours-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    color: #2563eb;
    background: #eff6ff;

    border-radius: 11px;
}

.working-hours strong {
    display: block;

    margin-bottom: 2px;

    color: #0f172a;

    font-size: 13px;
    font-weight: 800;
}

.working-hours span {
    color: #64748b;

    font-size: 12px;
}

.working-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: #15803d;

    font-size: 12px;
    font-weight: 800;
}

.working-status::before {
    content: "";

    width: 8px;
    height: 8px;

    background: #22c55e;

    border-radius: 50%;

    box-shadow:
        0 0 0 4px rgba(34, 197, 94, 0.12);
}


/* ----------------------------------------------------------
   ФУТЕР
   ---------------------------------------------------------- */

.site-footer {
    position: relative;

    color: #cbd5e1;

    background:
        linear-gradient(
            145deg,
            #020617,
            #0f172a
        );
}

.footer-main {
    padding: 70px 0 45px;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.35fr 1fr 1fr 1fr;

    gap: 45px;
}


/* ----------------------------------------------------------
   ЛОГО В ФУТЕРЕ
   ---------------------------------------------------------- */

.footer-brand {
    max-width: 340px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;

    margin-bottom: 17px;

    color: #ffffff;

    font-size: 24px;
    line-height: 1.2;
    font-weight: 900;

    letter-spacing: -0.03em;

    text-decoration: none;
}

.footer-logo:hover {
    color: #ffffff;
}

.footer-brand p {
    margin: 0 0 22px;

    color: #94a3b8;

    font-size: 13px;
    line-height: 1.8;
}


/* ----------------------------------------------------------
   СОЦСЕТИ ФУТЕРА
   ---------------------------------------------------------- */

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 39px;
    height: 39px;

    color: #cbd5e1;

    background: rgba(255, 255, 255, 0.05);

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 11px;

    text-decoration: none;

    transition:
        color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}

.footer-social:hover {
    color: #ffffff;

    background: #2563eb;

    transform: translateY(-3px);
}


/* ----------------------------------------------------------
   КОЛОНКИ ФУТЕРА
   ---------------------------------------------------------- */

.footer-column h3 {
    margin: 0 0 19px;

    color: #ffffff;

    font-size: 15px;
    line-height: 1.3;
    font-weight: 800;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 11px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: #94a3b8;

    font-size: 13px;
    line-height: 1.5;

    text-decoration: none;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.footer-links a::before {
    content: "›";

    color: #475569;

    font-size: 15px;

    transition: color 0.25s ease;
}

.footer-links a:hover {
    color: #ffffff;

    transform: translateX(3px);
}

.footer-links a:hover::before {
    color: #60a5fa;
}


/* ----------------------------------------------------------
   КОНТАКТЫ ФУТЕРА
   ---------------------------------------------------------- */

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact-item i {
    flex: 0 0 auto;

    width: 18px;

    margin-top: 3px;

    color: #60a5fa;

    font-size: 13px;

    text-align: center;
}

.footer-contact-item span,
.footer-contact-item a {
    color: #94a3b8;

    font-size: 13px;
    line-height: 1.55;

    text-decoration: none;

    transition: color 0.25s ease;
}

.footer-contact-item a:hover {
    color: #ffffff;
}


/* ----------------------------------------------------------
   НИЖНЯЯ ПОЛОСА ФУТЕРА
   ---------------------------------------------------------- */

.footer-bottom {
    padding: 20px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-copyright {
    color: #64748b;

    font-size: 12px;
    line-height: 1.5;
}

.footer-policy {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-policy a {
    color: #64748b;

    font-size: 12px;

    text-decoration: none;

    transition: color 0.25s ease;
}

.footer-policy a:hover {
    color: #ffffff;
}


/* ----------------------------------------------------------
   ПЛАВАЮЩАЯ КНОПКА ТЕЛЕФОНА
   ---------------------------------------------------------- */

.floating-phone {
    position: fixed;
    z-index: 999;

    right: 25px;
    bottom: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 62px;
    height: 62px;

    color: #ffffff;

    background: #2563eb;

    border: 3px solid #ffffff;
    border-radius: 50%;

    box-shadow:
        0 10px 30px rgba(37, 99, 235, 0.35);

    text-decoration: none;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.floating-phone:hover {
    color: #ffffff;

    background: #1d4ed8;

    transform: scale(1.08);
}


/* ----------------------------------------------------------
   АНИМАЦИЯ ВОКРУГ ТЕЛЕФОНА
   ---------------------------------------------------------- */

.floating-phone::before,
.floating-phone::after {
    content: "";

    position: absolute;

    inset: -7px;

    border: 2px solid rgba(37, 99, 235, 0.28);

    border-radius: 50%;

    animation:
        phone-pulse 2.2s infinite;
}

.floating-phone::after {
    inset: -13px;

    border-color: rgba(37, 99, 235, 0.12);

    animation-delay: 0.7s;
}

.floating-phone i {
    position: relative;
    z-index: 2;

    font-size: 22px;
}

@keyframes phone-pulse {

    0% {
        opacity: 0.85;

        transform: scale(0.88);
    }

    70% {
        opacity: 0;

        transform: scale(1.18);
    }

    100% {
        opacity: 0;

        transform: scale(1.18);
    }
}


/* ----------------------------------------------------------
   КНОПКА "НАВЕРХ"
   ---------------------------------------------------------- */

.scroll-top {
    position: fixed;
    z-index: 998;

    right: 25px;
    bottom: 102px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    color: #334155;

    background: #ffffff;

    border: 1px solid #dbe3ec;
    border-radius: 50%;

    box-shadow:
        0 8px 22px rgba(15, 23, 42, 0.10);

    text-decoration: none;

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease,
        background 0.25s ease,
        color 0.25s ease;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.scroll-top:hover {
    color: #ffffff;

    background: #2563eb;
}


/* ----------------------------------------------------------
   АДАПТАЦИЯ КОНТАКТОВ
   ---------------------------------------------------------- */

@media (max-width: 1199px) {

    .footer-grid {
        grid-template-columns:
            1.3fr 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;

        max-width: 600px;
    }
}


@media (max-width: 991px) {

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        padding: 30px;
    }

    .contact-right {
        gap: 18px;
    }

    .footer-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 35px 30px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}


@media (max-width: 767px) {

    .contact-info {
        padding: 27px 22px;
    }

    .contact-info h2 {
        font-size: 28px;
    }

    .contact-form {
        padding: 25px 21px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-map {
        min-height: 280px;
    }

    .contact-map iframe {
        min-height: 280px;
    }

    .working-hours {
        align-items: flex-start;
        flex-direction: column;

        padding: 17px 18px;
    }

    .footer-main {
        padding: 55px 0 35px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .floating-phone {
        right: 18px;
        bottom: 18px;

        width: 58px;
        height: 58px;
    }

    .scroll-top {
        right: 18px;
        bottom: 90px;

        width: 40px;
        height: 40px;
    }
}


@media (max-width: 575px) {

    .contact-info {
        padding: 23px 17px;

        border-radius: 19px;
    }

    .contact-info h2 {
        font-size: 25px;
    }

    .contact-item {
        padding: 13px;
    }

    .contact-socials {
        padding-top: 20px;
    }

    .contact-social {
        flex: 1 1 auto;
    }

    .contact-form {
        padding: 21px 17px;

        border-radius: 19px;
    }

    .contact-form h3 {
        font-size: 20px;
    }

    .contact-map {
        min-height: 250px;

        border-radius: 18px;
    }

    .contact-map iframe {
        min-height: 250px;
    }

    .map-address {
        left: 12px;
        right: 12px;
        bottom: 12px;

        max-width: none;
    }

    .footer-main {
        padding: 45px 0 30px;
    }

    .footer-logo {
        font-size: 22px;
    }

    .footer-bottom {
        padding: 17px 0;
    }

    .footer-policy {
        gap: 12px;
    }

    .floating-phone {
        width: 55px;
        height: 55px;
    }

    .floating-phone i {
        font-size: 20px;
    }
}


/* ==========================================================
   КОНЕЦ ЧАСТИ 7
   ========================================================== */
   /* =========================================================
   ЧАСТЬ 8
   ФИНАЛЬНАЯ ПОЛИРОВКА И ЗАВЕРШЕНИЕ CSS
   ========================================================= */


/* =========================================================
   1. БАЗОВЫЕ НАСТРОЙКИ ЭЛЕМЕНТОВ
   ========================================================= */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    overflow-x: hidden;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

iframe {
    max-width: 100%;
    border: 0;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
    transition:
        color .25s ease,
        background-color .25s ease,
        border-color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}


/* =========================================================
   2. ВЫДЕЛЕНИЕ ТЕКСТА
   ========================================================= */

::selection {
    background: #2563eb;
    color: #ffffff;
}

::-moz-selection {
    background: #2563eb;
    color: #ffffff;
}


/* =========================================================
   3. ПЛАВНЫЕ ПЕРЕХОДЫ
   ========================================================= */

a,
button,
.service-card,
.product-card,
.advantage-card,
.testimonial-card,
.blog-card,
.pricing-card,
.contact-social,
.footer-social,
.product-category,
.work-step,
.info-box,
.selection-card {
    -webkit-tap-highlight-color: transparent;
}


/* =========================================================
   4. УНИВЕРСАЛЬНЫЕ КНОПКИ
   ========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 52px;
    padding: 14px 28px;

    border-radius: 14px;

    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;

    text-align: center;
    white-space: nowrap;

    cursor: pointer;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background-color .25s ease,
        color .25s ease,
        border-color .25s ease;
}

.btn i {
    font-size: 15px;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn:active {
    transform: translateY(-1px);
}


/* Основная кнопка */

.btn-primary {
    color: #ffffff;
    background: linear-gradient(
        135deg,
        #2563eb 0%,
        #1d4ed8 100%
    );

    box-shadow:
        0 10px 25px rgba(37, 99, 235, .25);
}

.btn-primary:hover {
    color: #ffffff;

    box-shadow:
        0 16px 35px rgba(37, 99, 235, .35);
}


/* Светлая кнопка */

.btn-light {
    color: #172033;
    background: #ffffff;

    box-shadow:
        0 10px 25px rgba(15, 23, 42, .12);
}

.btn-light:hover {
    color: #172033;
    background: #f8fafc;

    box-shadow:
        0 16px 35px rgba(15, 23, 42, .18);
}


/* Вторая кнопка */

.btn-secondary {
    color: #ffffff;
    background: #0f172a;

    box-shadow:
        0 10px 25px rgba(15, 23, 42, .18);
}

.btn-secondary:hover {
    color: #ffffff;
    background: #1e293b;

    box-shadow:
        0 16px 35px rgba(15, 23, 42, .28);
}


/* Контурная кнопка */

.btn-outline {
    color: #2563eb;
    background: transparent;

    border: 2px solid #2563eb;
}

.btn-outline:hover {
    color: #ffffff;
    background: #2563eb;

    box-shadow:
        0 12px 28px rgba(37, 99, 235, .22);
}


/* Белая контурная кнопка */

.btn-outline-light {
    color: #ffffff;
    background: transparent;

    border: 2px solid rgba(255,255,255,.7);
}

.btn-outline-light:hover {
    color: #172033;
    background: #ffffff;
    border-color: #ffffff;
}


/* =========================================================
   5. ФОКУС ДЛЯ КЛАВИАТУРЫ
   ========================================================= */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid rgba(37, 99, 235, .45);
    outline-offset: 3px;
}


/* =========================================================
   6. СКРЫТЫЙ ТЕКСТ ДЛЯ ДОСТУПНОСТИ
   ========================================================= */

.visually-hidden {
    position: absolute !important;

    width: 1px !important;
    height: 1px !important;

    padding: 0 !important;
    margin: -1px !important;

    overflow: hidden !important;

    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;

    border: 0 !important;
}


/* =========================================================
   7. ДОПОЛНИТЕЛЬНЫЕ ТЕКСТОВЫЕ КЛАССЫ
   ========================================================= */

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.fw-800 {
    font-weight: 800;
}

.fw-900 {
    font-weight: 900;
}


/* =========================================================
   8. ДОПОЛНИТЕЛЬНЫЕ ОТСТУПЫ
   ========================================================= */

.mt-0 {
    margin-top: 0;
}

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}


/* =========================================================
   9. АНИМАЦИЯ ПОЯВЛЕНИЯ
   ========================================================= */

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(.94);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}


/* Универсальные классы */

.animate-fade {
    animation: fadeIn .7s ease both;
}

.animate-up {
    animation: fadeUp .7s ease both;
}

.animate-down {
    animation: fadeDown .7s ease both;
}

.animate-zoom {
    animation: zoomIn .7s ease both;
}


/* =========================================================
   10. ДЕКОРАТИВНАЯ ПОЛОСА
   ========================================================= */

.section-line {
    width: 70px;
    height: 4px;

    margin: 18px auto 25px;

    border-radius: 50px;

    background: linear-gradient(
        90deg,
        #2563eb,
        #60a5fa
    );
}


/* =========================================================
   11. УЛУЧШЕНИЕ КАРТОЧЕК
   ========================================================= */

.service-card,
.product-card,
.advantage-card,
.testimonial-card,
.blog-card,
.pricing-card {
    will-change: transform;
}

.service-card:hover,
.product-card:hover,
.advantage-card:hover,
.testimonial-card:hover,
.blog-card:hover {
    transform: translateY(-7px);
}


/* =========================================================
   12. ИЗОБРАЖЕНИЯ КАРТОЧЕК
   ========================================================= */

.service-card img,
.product-card img,
.blog-card img,
.about-image img,
.selection-image img {
    transition:
        transform .6s cubic-bezier(.2,.7,.2,1),
        filter .4s ease;
}

.service-card:hover img,
.product-card:hover img,
.blog-card:hover img,
.selection-card:hover .selection-image img {
    transform: scale(1.04);
}


/* =========================================================
   13. ЗАЩИТА ОТ СЛИШКОМ БОЛЬШИХ СТРОК
   ========================================================= */

p,
li,
td,
th,
a,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}


/* =========================================================
   14. ССЫЛКИ В ТЕКСТЕ
   ========================================================= */

.site-section p a:not(.btn),
.site-section li a:not(.btn) {
    color: #2563eb;
    font-weight: 600;
}

.site-section p a:not(.btn):hover,
.site-section li a:not(.btn):hover {
    color: #1d4ed8;
    text-decoration: underline;
}


/* =========================================================
   15. TELEPHONE ССЫЛКИ
   ========================================================= */

a[href^="tel:"] {
    white-space: nowrap;
}


/* =========================================================
   16. ФОРМЫ — AUTOFILL
   ========================================================= */

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-text-fill-color: #172033;

    transition:
        background-color 5000s ease-in-out 0s;
}


/* =========================================================
   17. ПЛАВНОЕ ПОЯВЛЕНИЕ HEADER
   ========================================================= */

.site-header {
    animation: fadeDown .65s ease both;
}


/* =========================================================
   18. HERO — ДОПОЛНИТЕЛЬНАЯ ГЛУБИНА
   ========================================================= */

.hero-content h1 {
    text-shadow:
        0 3px 15px rgba(0,0,0,.35);
}

.hero-content p {
    text-shadow:
        0 2px 8px rgba(0,0,0,.3);
}


/* =========================================================
   19. CTA — ЭФФЕКТ СВЕЧЕНИЯ
   ========================================================= */

.cta-box {
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    top: -150px;
    right: -100px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,255,255,.15) 0%,
            rgba(255,255,255,0) 70%
        );

    pointer-events: none;
}

.cta-box::after {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    bottom: -150px;
    left: -80px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,255,255,.10) 0%,
            rgba(255,255,255,0) 70%
        );

    pointer-events: none;
}


/* =========================================================
   20. ФОНОВЫЕ БЛОКИ
   ========================================================= */

.bg-white {
    background: #ffffff;
}

.bg-light {
    background: #f8fafc;
}

.bg-dark {
    background: #0f172a;
    color: #ffffff;
}

.bg-blue {
    background:
        linear-gradient(
            135deg,
            #2563eb,
            #1d4ed8
        );

    color: #ffffff;
}


/* =========================================================
   21. СКРУГЛЕНИЕ ДЛЯ ОБЩИХ БЛОКОВ
   ========================================================= */

.rounded {
    border-radius: 16px;
}

.rounded-lg {
    border-radius: 24px;
}

.rounded-xl {
    border-radius: 32px;
}


/* =========================================================
   22. ТЕНИ
   ========================================================= */

.shadow-sm {
    box-shadow:
        0 5px 18px rgba(15,23,42,.08);
}

.shadow {
    box-shadow:
        0 12px 30px rgba(15,23,42,.10);
}

.shadow-lg {
    box-shadow:
        0 20px 50px rgba(15,23,42,.14);
}


/* =========================================================
   23. РАЗДЕЛИТЕЛИ
   ========================================================= */

.divider {
    width: 100%;
    height: 1px;

    margin: 35px 0;

    background: #e2e8f0;
}


/* =========================================================
   24. АДАПТАЦИЯ КАРТОЧЕК НА ПЛАНШЕТАХ
   ========================================================= */

@media (max-width: 991px) {

    .btn {
        min-height: 50px;
        padding: 13px 23px;
    }

    .site-section {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .section-title {
        font-size: 34px;
    }

    .hero-content h1 {
        font-size: 48px;
    }

}


/* =========================================================
   25. МОБИЛЬНАЯ ВЕРСИЯ
   ========================================================= */

@media (max-width: 767px) {

    html {
        scroll-padding-top: 75px;
    }

    .container {
        width: min(100% - 30px, 1140px);
    }

    .site-section {
        padding-top: 55px;
        padding-bottom: 55px;
    }

    .section-title {
        font-size: 30px;
        line-height: 1.2;
    }

    .section-subtitle {
        font-size: 15px;
        line-height: 1.65;
    }

    .hero-content h1 {
        font-size: 38px;
        line-height: 1.1;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn,
    .hero-buttons a {
        width: 100%;
    }

    .btn {
        width: 100%;
        min-height: 52px;
    }

    .pricing-actions,
    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .pricing-actions .btn,
    .cta-actions .btn {
        width: 100%;
    }

}


/* =========================================================
   26. МАЛЕНЬКИЕ ТЕЛЕФОНЫ
   ========================================================= */

@media (max-width: 575px) {

    .container {
        width: calc(100% - 24px);
    }

    .site-section {
        padding-top: 45px;
        padding-bottom: 45px;
    }

    .section-title {
        font-size: 27px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .btn {
        min-height: 50px;
        padding: 13px 18px;
        font-size: 14px;
        border-radius: 12px;
    }

    .contact-form,
    .contact-info,
    .pricing-card,
    .testimonial-card,
    .blog-card,
    .product-card,
    .service-card {
        border-radius: 16px;
    }

    .floating-phone {
        right: 15px;
        bottom: 15px;
    }

    .scroll-top {
        right: 15px;
        bottom: 85px;
    }

}


/* =========================================================
   27. ОЧЕНЬ МАЛЕНЬКИЕ ЭКРАНЫ
   ========================================================= */

@media (max-width: 400px) {

    .container {
        width: calc(100% - 20px);
    }

    .hero-content h1 {
        font-size: 29px;
    }

    .section-title {
        font-size: 25px;
    }

    .logo {
        font-size: 21px;
    }

    .header-phone {
        font-size: 13px;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
    }

}


/* =========================================================
   28. REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }

}


/* =========================================================
   29. ПЕЧАТЬ
   ========================================================= */

@media print {

    .site-header,
    .menu-toggle,
    .floating-phone,
    .scroll-top,
    .hero-buttons,
    .cta-section,
    .contact-form,
    .contact-map,
    .footer-socials {
        display: none !important;
    }

    body {
        background: #ffffff !important;
        color: #000000 !important;
    }

    .site-section {
        padding: 25px 0;
        background: #ffffff !important;
    }

    .container {
        max-width: 100%;
    }

    a {
        color: #000000 !important;
        text-decoration: none !important;
    }

}


/* =========================================================
   30. ФИНАЛЬНАЯ ЗАЩИТА ОТ ГОРИЗОНТАЛЬНОГО СКРОЛЛА
   ========================================================= */

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

.site-header,
.hero,
.site-section,
.site-footer {
    max-width: 100%;
    overflow-x: clip;
}


/* =========================================================
   31. ФИНАЛЬНАЯ ЗАЩИТА FLEX / GRID
   ========================================================= */

.row > *,
.services-grid > *,
.products-grid > *,
.advantages-grid > *,
.testimonials-grid > *,
.blog-grid > *,
.pricing-grid > *,
.contact-grid > *,
.footer-grid > * {
    min-width: 0;
}


/* =========================================================
   32. ФИНАЛЬНАЯ НАСТРОЙКА TABLE
   ========================================================= */

.price-table-wrapper {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.price-table {
    min-width: 650px;
}


/* =========================================================
   33. ФИНАЛЬНАЯ НАСТРОЙКА IFRAME
   ========================================================= */

.contact-map iframe {
    display: block;
    width: 100%;
    min-height: 380px;
}


/* =========================================================
   34. ФИНАЛЬНАЯ НАСТРОЙКА FOOTER
   ========================================================= */

.site-footer a:hover {
    text-decoration: none;
}


/* =========================================================
   35. ФИНАЛЬНАЯ НАСТРОЙКА PHONE
   ========================================================= */

.header-phone i,
.floating-phone i {
    flex-shrink: 0;
}


/* =========================================================
   36. ФИНАЛЬНАЯ НАСТРОЙКА ССЫЛОК
   ========================================================= */

.logo,
.header-phone,
.footer-logo,
.footer-social,
.contact-social {
    text-decoration: none !important;
}


/* =========================================================
   37. ФИНАЛЬНАЯ ОПТИМИЗАЦИЯ КАРТОЧЕК
   ========================================================= */

.service-card,
.product-card,
.advantage-card,
.testimonial-card,
.blog-card,
.pricing-card,
.contact-form,
.contact-info {
    backface-visibility: hidden;
    transform-style: preserve-3d;
}


/* =========================================================
   38. ФИНАЛЬНЫЙ МИКРО-ЭФФЕКТ ДЛЯ ИКОНОК
   ========================================================= */

.service-icon,
.advantage-icon,
.contact-item-icon,
.product-image-icon,
.price-table-icon,
.working-hours-icon {
    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.service-card:hover .service-icon,
.advantage-card:hover .advantage-icon,
.product-card:hover .product-image-icon {
    transform: translateY(-3px) scale(1.05);
}


/* =========================================================
   39. ФИНАЛЬНЫЙ ЭФФЕКТ ДЛЯ СОЦИАЛЬНЫХ ИКОНОК
   ========================================================= */

.contact-social:hover,
.footer-social:hover {
    transform: translateY(-3px);
}


/* =========================================================
   40. ЗАВЕРШЕНИЕ
   ========================================================= */

/*
============================================================
 CSS KROVLYA.CSS — ПОЛНАЯ ВЕРСИЯ ЗАВЕРШЕНА
============================================================

 Части:
 1. База + Header + Hero
 2. Sections + Services
 3. Products + Профнастил
 4. About + Advantages + Stats + CTA
 5. Pricing
 6. FAQ + Testimonials + Blog
 7. Contacts + Footer
 8. Финальная полировка + Responsive + Accessibility

============================================================
*/
   
   
   
   
   
   
   
   
   
   