/* ------------------------------------------------ */
/* FEATURE BOX – иконки */
/* ------------------------------------------------ */

.sppb-addon-feature .sppb-img-container {
    margin-bottom: 10px;
    text-align: center;
}

.sppb-addon-feature .sppb-img-container img {
    width: 40px;
    height: 40px;
    display: inline-block;
    object-fit: contain;
}


/* ------------------------------------------------ */
/* FEATURE BOX – заглавия */
/* ------------------------------------------------ */

.sppb-addon-feature .sppb-addon-title {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}


/* ------------------------------------------------ */
/* SECTION SPACING */
/* ------------------------------------------------ */

.sppb-page-content .sppb-section {
    padding-top: 90px;
    padding-bottom: 90px;
}


/* ------------------------------------------------ */
/* H2 ЗАГЛАВИЯ */
/* ------------------------------------------------ */

h2 {
    font-weight: 600;
    letter-spacing: 0.3px;
}


/* ------------------------------------------------ */
/* FEATURE BOX HOVER ЕФЕКТ */
/* ------------------------------------------------ */

.sppb-addon-feature {
    transition: all 0.2s ease;
    text-align: center;
}

.sppb-addon-feature:hover {
    transform: translateY(-4px);
}


/* ------------------------------------------------ */
/* MOBILE HEADER FIX */
/* ------------------------------------------------ */

@media (max-width: 575px) {
    #sp-header {
        min-height: 60px;
        height: auto;
    }

    #sp-header .row {
        align-items: center;
    }
}


/* ------------------------------------------------ */
/* MOBILE BURGER MENU POSITION */
/* ------------------------------------------------ */

@media (max-width: 575px) {
    #sp-header .burger-icon {
        margin-top: 6px;
    }
}


/* ------------------------------------------------ */
/* ПОДМЕНЮТА – МОБИЛНА ВЕРСИЯ */
/* ------------------------------------------------ */

.mod-menu__sub {
    text-align: left !important;
}

.mod-menu__sub li a {
    text-align: left !important;
    text-align-last: left !important;
    display: block;
    white-space: normal !important;
    line-height: 1.35;
}

.mod-menu__sub li {
    margin-bottom: 4px;
}


/* ------------------------------------------------ */
/* HERO – червени точки */
/* ------------------------------------------------ */

.hero-words {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
}

.hero-words br {
    display: none;
}

.dot {
    width: 9px;
    height: 9px;
    background-color: #e30613;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}


/* ------------------------------------------------ */
/* HERO – mobile */
/* ------------------------------------------------ */

@media (max-width: 575px) {
    .hero-words {
        display: block;
        text-align: center;
    }

    .hero-words .dot {
        display: none;
    }

    .hero-words br {
        display: block;
        margin-bottom: 6px;
    }
}


/* ------------------------------------------------ */
/* SERVICE CARDS – Услуги */
/* ------------------------------------------------ */

.service-card {
    height: 100%;
    text-align: center;
    padding: 30px 20px;
}

.service-card > p:first-child {
    margin: 0 0 14px;
}

.service-card .service-icon {
    display: block;
    width: 44px;
    height: 44px;
    margin: 0 auto;
    object-fit: contain;
}

.service-card .service-label {
    margin: 0 0 8px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #666;
}

.service-card h3 {
    margin: 0 0 14px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: #111;
}

.service-card p {
    margin: 0 0 8px;
    font-size: 15.5px;
    line-height: 1.7;
    color: #444;
}


/* ------------------------------------------------ */
/* SERVICE CARDS – mobile */
/* ------------------------------------------------ */

@media (max-width: 575px) {
    .service-card {
        padding: 24px 16px;
    }

    .service-card .service-icon {
        width: 40px;
        height: 40px;
    }

    .service-card .service-label {
        font-size: 13px;
    }

    .service-card h3 {
        font-size: 22px;
    }

    .service-card p {
        font-size: 15px;
        line-height: 1.65;
    }
}


/* ------------------------------------------------ */
/* TEST / ВРЕМЕНЕН НАДПИС */
/* ------------------------------------------------ */

html::before {
    content: "САЙТЪТ Е В ПРОЦЕС НА ОБНОВЯВАНЕ!!!";
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: red;
    color: #fff;
    font-size: 18px;
    line-height: 1.2;
    padding: 6px 12px;
    z-index: 99999;
    white-space: nowrap;
}