:root {
    --primary-color: #0075df;
    --primary-hover: #005bb5;
    --text-dark: #222222;
    --text-muted: #555555;
    --header-bg: #ffffff;
    --header-height: 80px;
    --header-height-sticky: 65px;
    --transition-smooth: cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==========================================
   Основна структура Хедера та Анімація Появи
   ========================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--header-bg);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    transition: transform 0.4s var(--transition-smooth),
                height 0.3s var(--transition-smooth),
                box-shadow 0.3s var(--transition-smooth),
                background-color 0.3s var(--transition-smooth);
    
    /* Анімація появи при завантаженні сторінки */
    animation: headerSlideDown 0.8s var(--transition-smooth) forwards;
}

@keyframes headerSlideDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Стан Хедера при Гортанні (Sticky) */
.site-header.is-sticky {
    height: var(--header-height-sticky);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
}

.header-container {
    max-width: 1320px;
    height: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ==========================================
   Логотип
   ========================================== */
.header-logo img,
.header-logo svg {
    max-height: 48px;
    width: auto;
    display: block;
    transition: transform 0.3s var(--transition-smooth);
}

.site-header.is-sticky .header-logo img {
    transform: scale(0.92);
}

/* ==========================================
   Навігаційне Меню та Анімації Посилання
   ========================================== */
.header-navigation .nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-navigation .nav-menu a {
    position: relative;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 700;
    
    letter-spacing: 0.5px;
    padding: 8px 0;
    transition: color 0.3s ease;
}

/* Анімація плавного підкреслення при наведенні */
.header-navigation .nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s var(--transition-smooth), left 0.3s var(--transition-smooth);
    border-radius: 2px;
}

.header-navigation .nav-menu a:hover {
    color: var(--primary-color);
}

.header-navigation .nav-menu a:hover::after,
.header-navigation .nav-menu .current-menu-item > a::after {
    width: 100%;
    left: 0;
}

/* ==========================================
   Права частина: Телефон та Кнопка CTA
   ========================================== */
.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 14px;
    transition: color 0.3s ease;
}

.phone-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(0, 117, 223, 0.1);
    color: var(--primary-color);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.header-phone:hover {
    color: var(--primary-color);
}

.header-phone:hover .phone-icon-wrap {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: rotate(12deg) scale(1.05);
}

/* Кнопка */
.btn-primary-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 117, 223, 0.25);
    transition: all 0.3s var(--transition-smooth);
    border: none;
}

.btn-primary-cta:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 6px 18px rgba(0, 117, 223, 0.4);
    transform: translateY(-2px);
}

.btn-primary-cta:active {
    transform: translateY(0);
}

/* ==========================================
   Адаптивність (Burger Toggle)
   ========================================== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

@media (max-width: 1024px) {
    .header-navigation,
    .header-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }
}


/* ==========================================
   Флекс-контейнер для іконки та тексту
   ========================================== */
.header-logo .logo-link {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px !important;
    text-decoration: none !important;
}

.logo-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Розміри іконки або зображення */
.logo-icon-wrap img,
.logo-icon-wrap svg {
    width: 65px;
    height: 65px;
    display: block;
   
}



/* Блок з текстом */
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    text-transform: uppercase;
    user-select: none;
}

.brand-title {
    font-size: 14px;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: 0.5px;
}

.brand-subtitle,
.brand-subtext {
    font-size: 9.5px;
    font-weight: 700;
    color: #333333;
    letter-spacing: 0.3px;
}


/* ==========================================
   Перемикач мов
   ========================================== */
.header-lang-switcher {
    display: flex;
    align-items: center;
    margin-right: 8px;
}

.lang-list {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.lang-item a {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted, #777777);
    text-decoration: none;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.lang-item.active a {
    color: #ffffff;
    background-color: var(--primary-color, #0075df);
}

.lang-item:not(.active) a:hover {
    color: var(--primary-color, #0075df);
    background-color: rgba(0, 117, 223, 0.08);
}


/* ==========================================
   Баннер / Героїчний слайдер
   ========================================== */
.hero-slider-section {
    position: relative;
    width: 100%;
    background-color: #060e1a;
    overflow: hidden;
}

.hero-slider-container {
    position: relative;
    width: 100%;
    min-height: 520px;
}

/* Окремий слайд */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    z-index: 2;
}

/* Фон слайду та оверлей */
.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.35) contrast(1.1);
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6,14,26,0.92) 0%, rgba(6,14,26,0.7) 50%, rgba(6,14,26,0.4) 100%);
}

/* Контейнер вмісту */
.hero-content-wrapper {
    position: relative;
    z-index: 3;
    max-width: 1320px;
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    min-height: 520px;
}

.hero-text-block {
    flex: 1;
    max-width: 620px;
}

.hero-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.hero-title-accent {
    color: #0075df;
}

.hero-description {
    font-size: 16px;
    line-height: 1.6;
    color: #c0cedf;
    margin-bottom: 32px;
}

/* Кнопка */
.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background-color: #0075df;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 117, 223, 0.3);
}

.hero-btn:hover {
    background-color: #005bb5;
    box-shadow: 0 6px 20px rgba(0, 117, 223, 0.5);
    transform: translateY(-2px);
}

.hero-btn svg {
    transition: transform 0.3s ease;
}

.hero-btn:hover svg {
    transform: translateX(4px);
}

/* Медіа блок (Права частина) */
.hero-media-block {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
    max-height: 380px;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5));
}

/* Пагінація (Крапки) */
.hero-pagination {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    background-color: #0075df;
    transform: scale(1.25);
    box-shadow: 0 0 10px rgba(0, 117, 223, 0.8);
}

/* Адаптивність */
@media (max-width: 992px) {
    .hero-content-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px 60px;
    }

    .hero-text-block {
        max-width: 100%;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-media-block {
        justify-content: center;
    }

    .hero-img {
        max-height: 260px;
    }
}


/* ==========================================
   Секція "Про компанію"
   ========================================== */
.about-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* Лівий блок з текстом */
.about-content {
    flex: 1;
    max-width: 580px;
}

.about-subtitle {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #0075df;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 12px;
}

.about-title {
    font-size: 30px;
    font-weight: 800;
    color: #111827;
    text-transform: uppercase;
    line-height: 1.25;
    margin-bottom: 24px;
    letter-spacing: 0.3px;
}

.about-text {
    font-size: 15px;
    line-height: 1.65;
    color: #4b5563;
    margin-bottom: 18px;
}

/* Кнопка з контуром */
.about-outline-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    padding: 10px 22px;
    background-color: transparent;
    color: #0075df;
    border: 1.5px solid #0075df;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-outline-btn:hover {
    background-color: #0075df;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 117, 223, 0.25);
    transform: translateY(-2px);
}

.about-outline-btn svg {
    transition: transform 0.3s ease;
}

.about-outline-btn:hover svg {
    transform: translateX(4px);
}

/* Права колонка - Картинка */
.about-media {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.about-img {
    width: 100%;
    max-width: 620px;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    object-fit: cover;
}

/* Адаптивність для планшетів та телефонів */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        gap: 40px;
    }

    .about-content {
        max-width: 100%;
    }

    .about-media {
        width: 100%;
        justify-content: center;
    }

    .about-title {
        font-size: 24px;
    }
}


/* ==========================================
   Секція "Принципи нашої роботи"
   ========================================== */
.principles-section {
    background-color: #061224;
    padding: 60px 0;
    color: #ffffff;
}

.principles-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.principles-title {
    text-align: center;
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 50px;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: flex-start;
}

.principle-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.principle-icon {
    flex-shrink: 0;
    color: #2b82d9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.principle-icon svg {
    width: 44px;
    height: 44px;
    stroke-width: 1.5;
}

.principle-text {
    font-size: 13.5px;
    line-height: 1.5;
    color: #d1dbe8;
    margin: 0;
}

/* Адаптивність для планшетів і мобільних пристроїв */
@media (max-width: 1024px) {
    .principles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px 25px;
    }
}

@media (max-width: 576px) {
    .principles-section {
        padding: 40px 0;
    }

    .principles-title {
        font-size: 18px;
        margin-bottom: 35px;
    }

    .principles-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}


/* ==========================================
   Секція "Наші партнери" (Безкінечне гортання)
   ========================================== */
.partners-section {
    background-color: #f7f9fc;
    padding: 55px 0;
    border-top: 1px solid #eaf0f6;
    border-bottom: 1px solid #eaf0f6;
    overflow: hidden;
    width: 100%;
}

.partners-container {
    width: 100%;
    margin: 0 auto;
}

.partners-title {
    text-align: center;
    font-size: 22px;
    font-weight: 800;
    color: #0b1f3a;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 40px;
    padding: 0 20px;
}

.partners-ticker {
    width: 100%;
    overflow: hidden;
    display: flex;
    position: relative;
    /* Плавне розмиття логотипів по краях екрана */
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.partners-track {
    display: flex;
    align-items: center;
    gap: 65px; /* Відстань між логотипами */
    width: max-content;
    white-space: nowrap;
    will-change: transform;
    animation: marqueeScroll 50s linear infinite; /* Регулювання швидкості (35 секунд) */
}

/* Зупинка анімації при наведенні миші */
.partners-ticker:hover .partners-track {
    animation-play-state: paused;
}

.partner-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo {
    max-height: 55px;
    max-width: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(10%) opacity(0.95);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.partner-item:hover .partner-logo {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.08);
}

.partner-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* Точне безшовне циклювання */
@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Адаптивність */
@media (max-width: 768px) {
    .partners-section {
        padding: 40px 0;
    }

    .partners-title {
        font-size: 18px;
        margin-bottom: 28px;
    }

    .partners-track {
        gap: 40px;
        animation-duration: 22s;
    }

    .partner-logo {
        max-height: 42px;
        max-width: 130px;
    }
}



/* ==========================================
   ОНОВЛЕНА СТОРІНКА АРХІВУ "РІШЕННЯ"
   ========================================== */
.solutions-archive-wrapper {
    background-color: #f4f7fb;
}

.solutions-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Hero Банер --- */
.solutions-hero-banner {
    background: linear-gradient(135deg, #07172e 0%, #0d274c 60%, #12386a 100%);
    color: #ffffff;
    padding: 60px 0 70px 0;
    position: relative;
    border-bottom: 3px solid #2563eb;
}

.solutions-breadcrumbs {
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 20px;
}

.solutions-breadcrumbs a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s;
}

.solutions-breadcrumbs a:hover {
    color: #ffffff;
}

.solutions-breadcrumbs .sep {
    margin: 0 8px;
    opacity: 0.5;
}

.solutions-breadcrumbs .current {
    color: #60a5fa;
    font-weight: 500;
}

.solutions-hero-title {
    font-size: 34px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.5px;
    margin: 0 0 16px 0;
    text-transform: uppercase;
}

.solutions-hero-subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: #cbd5e1;
    max-width: 760px;
    margin: 0;
}

/* --- Основна Секція з Картками --- */
.solutions-main-grid-section {
    padding: 60px 0;
}

.solutions-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* --- Стиль Картки --- */
.solution-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 16px rgba(11, 31, 58, 0.04);
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease, border-color 0.35s ease;
    display: flex;
    flex-direction: column;
}

.solution-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 32px rgba(11, 31, 58, 0.12);
    border-color: #bfdbfe;
}

/* Медіа блок картки */
.solution-card-header {
    position: relative;
    height: 210px;
    overflow: hidden;
    background-color: #0b1f3a;
}

.solution-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.solution-card:hover .solution-card-img {
    transform: scale(1.08);
}

.solution-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(11,31,58,0.4) 100%);
}

.solution-card-placeholder {
    width: 100%;
    height: 100%;
    background: #1e293b;
}

/* Кругла Іконка */
.solution-card-badge {
    position: absolute;
    bottom: -22px;
    left: 24px;
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.14);
    z-index: 3;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #ffffff;
}

.solution-card:hover .solution-card-badge {
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

.solution-card-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

/* Текстовий Блок Картки */
.solution-card-body {
    padding: 36px 24px 24px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.solution-card-title {
    font-size: 19px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 10px 0;
    transition: color 0.25s ease;
}

.solution-card:hover .solution-card-title {
    color: #1d4ed8;
}

.solution-card-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

/* Кнопка "Детальніше" у картці */
.solution-card-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #2563eb;
    margin-top: auto;
}

.action-arrow {
    transition: transform 0.3s ease;
}

.solution-card:hover .action-arrow {
    transform: translateX(6px);
}

/* --- CTA Блок Внизу --- */
.solutions-cta-section {
    padding: 0 0 70px 0;
}

.solutions-cta-box {
    background: linear-gradient(135deg, #0b1f3a 0%, #1e3a8a 100%);
    border-radius: 16px;
    padding: 40px 48px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.15);
}

.cta-title {
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 8px 0;
    color: #ffffff;
}

.cta-desc {
    font-size: 15px;
    color: #cbd5e1;
    margin: 0;
    max-width: 650px;
    line-height: 1.5;
}

.cta-btn {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.cta-btn:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.4);
}

/* --- Адаптивність --- */
@media (max-width: 1024px) {
    .solutions-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .solutions-cta-box {
        flex-direction: column;
        text-align: center;
        padding: 32px;
    }

    .cta-desc {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .solutions-hero-banner {
        padding: 40px 0;
    }

    .solutions-hero-title {
        font-size: 24px;
    }

    .solutions-cards-grid {
        grid-template-columns: 1fr;
    }

    .solution-card-header {
        height: 180px;
    }

    .solutions-cta-box {
        padding: 24px;
    }

    .cta-title {
        font-size: 20px;
    }
}


/* ==========================================
   Секція "Рішення для вашого бізнесу"
   ========================================== */
.solutions-section {
    background-color: #ffffff;
    padding: 60px 0;
}

.solutions-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.solutions-header {
    text-align: center;
    margin-bottom: 45px;
}

.solutions-title {
    font-size: 24px;
    font-weight: 800;
    color: #0b1f3a;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 0 0 10px 0;
}

.solutions-subtitle {
    font-size: 15px;
    color: #55687d;
    margin: 0;
}

/* Сітка 3 колонки */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px 30px;
}

.solution-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Блок фотографії картки */
.solution-card-media {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 4px;
    overflow: hidden;
    background-color: #eaf0f6;
}

.solution-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.solution-card-placeholder {
    width: 100%;
    height: 100%;
    background-color: #1e293b;
}

/* Кругла біла іконка поверх зображення */
.solution-card-badge {
    position: absolute;
    bottom: 12px;
    left: 18px;
    width: 62px;
    height: 62px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
    z-index: 2;
    transition: transform 0.3s ease;
}

.solution-card-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

/* Заголовок під карткою */
.solution-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #0b1f3a;
    margin: 18px 0 0 0;
    transition: color 0.3s ease;
}

/* Ховер ефекти */
.solution-card-link:hover .solution-card-img {
    transform: scale(1.06);
}

.solution-card-link:hover .solution-card-badge {
    transform: translateY(-2px) scale(1.04);
}

.solution-card-link:hover .solution-card-title {
    color: #2b82d9;
}

/* ==========================================
   Стилі для Single & Archive сторінок
   ========================================== */
.single-solution-header {
    padding: 80px 0 60px 0;
    background-size: cover;
    background-position: center;
    color: #ffffff;
}

.back-link {
    color: #a8c7ed;
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 20px;
    transition: color 0.2s;
}

.back-link:hover {
    color: #ffffff;
}

.single-solution-title-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
}

.single-solution-badge {
    width: 70px;
    height: 70px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.single-solution-badge img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.single-solution-title {
    font-size: 32px;
    color: #ffffff;
    margin: 0;
    font-weight: 800;
}

.single-solution-body {
    padding: 50px 0;
    background-color: #ffffff;
}

.single-solution-content {
    font-size: 16px;
    line-height: 1.7;
    color: #334155;
    max-width: 900px;
}

.single-solution-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

/* Адаптивність */
@media (max-width: 992px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 576px) {
    .solutions-section {
        padding: 40px 0;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .solution-card-media {
        height: 190px;
    }

    .single-solution-title {
        font-size: 22px;
    }
}


/* Додаткові налаштування для секції на головній сторінці */
.front-solutions-section {
    background-color: #f8fafc;
    padding: 70px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.front-solutions-section .solutions-title {
    font-size: 26px;
    font-weight: 800;
    color: #0b1f3a;
    letter-spacing: 0.5px;
}

.front-solutions-section .solutions-subtitle {
    font-size: 15px;
    color: #64748b;
    margin-top: 8px;
}

/* Кнопка "Усі рішення" внизу секції */
.solutions-footer-action {
    text-align: center;
    margin-top: 45px;
}

.solutions-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #ffffff;
    color: #0b1f3a;
    border: 2px solid #cbd5e1;
    font-size: 15px;
    font-weight: 700;
    padding: 13px 30px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.solutions-more-btn svg {
    transition: transform 0.3s ease;
}

.solutions-more-btn:hover {
    background-color: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.25);
    transform: translateY(-2px);
}

.solutions-more-btn:hover svg {
    transform: translateX(4px);
}

@media (max-width: 640px) {
    .front-solutions-section {
        padding: 45px 0;
    }
    
    .solutions-footer-action {
        margin-top: 30px;
    }
}


/* ==========================================
   СЕКЦІЯ "ЧОМУ ОБИРАЮТЬ НАС"
   ========================================== */
.why-us-section {
    background-color: #f8fafc;
    padding: 60px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.why-us-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.why-us-title {
    text-align: center;
    font-size: 22px;
    font-weight: 800;
    color: #0b1f3a;
    letter-spacing: 0.6px;
    margin: 0 0 45px 0;
    text-transform: uppercase;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.why-us-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-us-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.why-us-item:hover .why-us-icon {
    transform: translateY(-4px);
}

.why-us-item-title {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.why-us-item-desc {
    font-size: 14px;
    line-height: 1.55;
    color: #64748b;
    margin: 0;
    max-width: 250px;
}

/* Адаптивність */
@media (max-width: 992px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 24px;
    }
}

@media (max-width: 576px) {
    .why-us-section {
        padding: 40px 0;
    }

    .why-us-title {
        font-size: 19px;
        margin-bottom: 30px;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}


/* ==========================================
   СЕКЦІЯ "ГОТОВІ ОБГОВОРИТИ ВАШ ПРОЄКТ"
   ========================================== */
.ready-cta-section {
    background-color: #07172e;
    position: relative;
    overflow: hidden;
    padding: 60px 0;
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ready-cta-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 200px;
}

.ready-cta-content {
    max-width: 600px;
    z-index: 4;
}

.ready-cta-title {
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0 0 12px 0;
    letter-spacing: 0.6px;
    line-height: 1.25;
}

.ready-cta-desc {
    font-size: 15px;
    color: #cbd5e1;
    margin: 0 0 28px 0;
    line-height: 1.5;
    font-weight: 400;
}

.ready-cta-btn {
    display: inline-block;
    background-color: #1d70b8; /* Синя кнопка з макета */
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    padding: 13px 32px;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.ready-cta-btn:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35);
}

/* Декоративне інженерне креслення (графіка праворуч) */
.ready-cta-bg-graphic {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    opacity: 0.45;
    mix-blend-mode: screen;
    pointer-events: none;
    z-index: 1;
}

/* М'яке градієнтне затемнення зліва направо, щоб текст завжди чітко читався */
.ready-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #07172e 35%, rgba(7, 23, 46, 0.75) 65%, rgba(7, 23, 46, 0.1) 100%);
    z-index: 2;
    pointer-events: none;
}

/* --- Адаптивність під мобільні пристрої --- */
@media (max-width: 768px) {
    .ready-cta-section {
        padding: 45px 0;
    }

    .ready-cta-container {
        flex-direction: column;
        text-align: center;
    }

    .ready-cta-content {
        max-width: 100%;
    }

    .ready-cta-title {
        font-size: 22px;
    }

    .ready-cta-bg-graphic {
        width: 100%;
        opacity: 0.2;
    }

    .ready-cta-section::before {
        background: rgba(7, 23, 46, 0.85);
    }
}

.ready-cta-bg-graphic {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 520px;
    height: 420px;
    pointer-events: none;
    z-index: 1;
}

.ready-cta-bg-graphic svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}



/* ==========================================
   СИНІЙ ТЕМНИЙ FOOTER
   ========================================== */
.site-footer {
    background-color: #07172e;
    color: #cbd5e1;
    padding: 60px 0 0 0;
    font-size: 14px;
    line-height: 1.5;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
}

/* Опис та Логотип */
.footer-logo {
    display: inline-block;
    margin-bottom: 18px;
}

.footer-logo-img {
    max-width: 210px;
    height: auto;
    display: block;
}

.footer-about-text {
    color: #94a3b8;
    font-size: 13px;
    line-height: 1.6;
    margin: 0 0 22px 0;
    max-width: 290px;
}

/* Іконки соцмереж */
.footer-socials {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #0f2b52;
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.25s ease, transform 0.2s ease;
}

.social-icon:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
}

/* Заголовки колонок */
.footer-col-title {
    font-size: 14px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.8px;
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

/* Списки меню */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: inline-block;
}

.footer-menu a:hover {
    color: #ffffff;
    padding-left: 4px;
}

/* Контакти */
.footer-contacts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contacts-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: #cbd5e1;
}

.contact-icon {
    color: #60a5fa;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contacts-list a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contacts-list a:hover {
    color: #ffffff;
}

/* Нижня смуга */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: #94a3b8;
}

.footer-privacy a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-privacy a:hover {
    color: #ffffff;
}

/* --- Адаптивність --- */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px;
    }
}

@media (max-width: 576px) {
    .site-footer {
        padding-top: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* Якщо логотип ще не встановлено в адмінці, показуємо стилізовану назву сайту */
.footer-logo-text {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
}


/* ==========================================
   ОНОВЛЕНІ СТИЛІ ФУТЕРА (Синій фон)
   ========================================== */
.site-footer {
    background-color: #07172e; /* Темно-синій інженерний фон */
    color: #cbd5e1; /* Світло-сірий контрастний текст */
    padding: 60px 0 0 0;
    font-size: 14px;
    line-height: 1.5;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
}

/* --- КОМПЛЕКСНЕ ЛОГОТИП (як у хедері) --- */
.footer-logo-complex {
    margin-bottom: 25px;
}

.footer-logo-link {
    display: flex;
    align-items: center;
    gap: 15px; /* Відступ між іконкою та текстом */
    text-decoration: none;
    color: inherit;
}

.footer-logo-icon-wrap {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-img {
    max-height: 70px;
    width: auto;
    display: block;
}

/* Стилізація тексту логотипа */
.footer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    text-transform: uppercase;
    color: #ffffff; /* Повністю білий текст лого */
}

.footer-brand-title {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 1px;
}

.footer-brand-subtitle {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #cbd5e1; /* Трохи тьмяніший середній рядок */
}

.footer-brand-subtext {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3.5px; /* Широкий відступ для "ГРУП" */
    margin-top: 1px;
}

/* --- Опис та Соцмережі --- */
.footer-about-text {
    color: #94a3b8;
    font-size: 13px;
    line-height: 1.6;
    margin: 0 0 22px 0;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.05); /* Ледь помітний фон */
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.25s ease;
}

.social-icon:hover {
    background-color: #0075df; /* Синє світіння при наведенні */
    transform: translateY(-2px);
}

/* --- Заголовки та Меню --- */
.footer-col-title {
    font-size: 14px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.8px;
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-block;
}

.footer-menu a:hover {
    color: #ffffff;
    transform: translateX(3px); /* Легкий зсув при наведенні */
}

/* --- Контакти --- */
.footer-contacts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contacts-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: #cbd5e1;
}

.contact-icon {
    color: #60a5fa; /* Яскраво-блакитний для іконок контактів */
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contacts-list a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contacts-list a:hover {
    color: #ffffff;
}

/* --- Нижня смуга --- */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: #94a3b8;
}

.footer-privacy a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-privacy a:hover {
    color: #ffffff;
}

/* --- Адаптивність --- */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px;
    }
}

@media (max-width: 640px) {
    .site-footer {
        padding-top: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-logo-link {
        gap: 10px;
    }

    .footer-brand-title { font-size: 18px; }
    
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}


/* ==========================================
   СТОРОНА "ПРО КОМПАНІЮ" (About Page)
   ========================================== */

.about-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* 1. Hero Банер */
.about-hero {
    margin-top: 50px;
    background-color: #07172e;
    color: #ffffff;
    padding: 70px 0 60px 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.about-hero-title {
    font-size: 36px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 16px 0;
    color: #ffffff;
}

.about-hero-subtitle {
    font-size: 16px;
    color: #cbd5e1;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.5;
}

/* 2. Основна секція */
.about-main-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 70px;
}

.about-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #1d70b8;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.about-title {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.3;
    margin: 0 0 20px 0;
}

.about-text {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 16px;
}

.about-img-frame {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(7, 23, 46, 0.12);
}

.about-featured-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Статистика / Цифри */
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    background-color: #f8fafc;
    padding: 40px 30px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.stat-card {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 38px;
    font-weight: 800;
    color: #07172e;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* 3. Місія, Візія, Цінності */
.about-values-section {
    background-color: #07172e;
    color: #ffffff;
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.value-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 30px;
    border-radius: 6px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: rgba(96, 165, 250, 0.4);
}

.value-icon {
    margin-bottom: 20px;
}

.value-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px 0;
}

.value-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #cbd5e1;
    margin: 0;
}

/* 4. Напрямки діяльності */
.about-directions-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

.section-heading {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: 0.8px;
    margin-bottom: 50px;
}

.section-heading.center {
    text-align: center;
}

.directions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.direction-item {
    background: #ffffff;
    padding: 36px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    position: relative;
}

.direction-num {
    font-size: 14px;
    font-weight: 800;
    color: #1d70b8;
    background: #eff6ff;
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 16px;
}

.direction-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 10px 0;
}

.direction-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

/* Адаптивність */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .about-hero-title {
        font-size: 26px;
    }

    .about-title {
        font-size: 22px;
    }

    .about-stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .directions-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   ПРОДУКТИ: Каталог (Archive) та Товар (Single)
   ========================================== */
   
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Hero сторінки */
.page-hero {
    background-color: #07172e;
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.page-hero-title {
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0 0 10px 0;
}

.page-hero-subtitle {
    font-size: 16px;
    color: #cbd5e1;
    margin: 0;
}

/* Сітка каталогу */
.products-list-section {
    padding: 60px 0;
    background-color: #f8fafc;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.product-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(7, 23, 46, 0.08);
}

.product-card-img {
    display: block;
    height: 220px;
    overflow: hidden;
    background: #f1f5f9;
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-card-img img {
    transform: scale(1.05);
}

.product-card-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-category-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #1d70b8;
    background: #eff6ff;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 12px;
}

.product-card-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 12px 0;
}

.product-card-title a {
    color: #0f172a;
    text-decoration: none;
    transition: color 0.2s;
}

.product-card-title a:hover {
    color: #1d70b8;
}

.product-card-excerpt {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-btn-outline {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid #1d70b8;
    color: #1d70b8;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.product-btn-outline:hover {
    background: #1d70b8;
    color: #ffffff;
}

/* Пагінація */
.pagination-wrapper {
    text-align: center;
    margin-top: 40px;
}
.pagination-wrapper .page-numbers {
    display: inline-block;
    padding: 8px 16px;
    margin: 0 4px;
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #0f172a;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
}
.pagination-wrapper .page-numbers.current,
.pagination-wrapper .page-numbers:hover {
    background: #1d70b8;
    color: #fff;
    border-color: #1d70b8;
}

/* ==========================================
   ОДИН ПРОДУКТ (Single Page)
   ========================================== */
.single-product-page {
    padding: 40px 0 80px 0;
    background-color: #ffffff;
}

.product-breadcrumbs {
    margin-top: 50px;
    margin-bottom: 30px;
}

.product-breadcrumbs a {
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.product-breadcrumbs a:hover {
    color: #1d70b8;
}

.single-product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.product-gallery .main-product-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.no-image-box {
    background: #f1f5f9;
    padding: 100px 20px;
    text-align: center;
    color: #94a3b8;
    border-radius: 8px;
}

.product-category-tag.single-tag {
    font-size: 13px;
}

.single-product-title {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    margin: 10px 0 24px 0;
    line-height: 1.2;
}

.single-product-description {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
}

.single-product-description h2, 
.single-product-description h3 {
    color: #0f172a;
    margin-top: 24px;
}

.single-product-description ul {
    margin-bottom: 24px;
    padding-left: 20px;
}

.single-product-description li {
    margin-bottom: 8px;
}

.product-actions {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

.product-btn-primary {
    display: inline-block;
    padding: 14px 28px;
    background-color: #1d70b8;
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.product-btn-primary:hover {
    background-color: #0f4a82;
}

/* Адаптивність */
@media (max-width: 992px) {
    .single-product-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    .single-product-title {
        font-size: 28px;
    }
}



/* ==========================================================================
   Архів продуктів (soften_product)
   ========================================================================== */

.products-archive-page {
    padding: 50px 0 80px;
    background-color: #f8fafc;
}

.archive-title {
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 35px;
}

/* Сітка карточок */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

/* Карточка товару */
.product-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

/* Скинути стандартні стилі посилань */
.product-card-link,
.product-card-link:visited,
.product-card-link:hover,
.product-card-link:active {
    text-decoration: none !important;
    color: inherit !important;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Блок з фото (Фіксований розмір та пропорції) */
.product-card-image {
    width: 100%;
    height: 220px; /* Фіксована висота зображення */
    background-color: #f1f5f9;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Картинка всередині блоку */
.product-card-image img,
.product-card-image .product-thumb {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important; /* Запобігає розтягуванню та зберігає пропорції */
    object-position: center;
    transition: transform 0.3s ease;
}

.product-card:hover .product-card-image img {
    transform: scale(1.04);
}

/* Блок без фото */
.product-card-image .no-image-box {
    color: #94a3b8;
    font-size: 14px;
    font-weight: 500;
}

/* Контентний блок */
.product-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category-tag {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #0284c7;
    margin-bottom: 8px;
}

.product-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.product-card-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 20px;
}

.product-card-excerpt p {
    margin: 0;
}

/* Кнопка "Детальніше" притиснута до низу */
.product-card-btn {
    margin-top: auto;
    font-size: 14px;
    font-weight: 600;
    color: #0284c7;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s ease;
}

.product-card:hover .product-card-btn {
    color: #0369a1;
}

/* Пагінація */
.products-pagination {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}


/* ==========================================================================
   СТИЛІ ДЛЯ АРХІВУ ПРОДУКТІВ (Стилізація під Рішення)
   ========================================================================== */

/* Темний Hero-банер */
.solutions-hero-banner {
    margin-top: 50px;
    background-color: #0b1e36;
    padding: 40px 0 50px;
    color: #ffffff;
}

.hero-breadcrumbs {
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 20px;
}

.hero-breadcrumbs a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.hero-breadcrumbs a:hover {
    color: #ffffff;
}

.hero-breadcrumbs .sep {
    margin: 0 8px;
    opacity: 0.6;
}

.hero-breadcrumbs .current {
    color: #cbd5e1;
}

.hero-main-title {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 12px 0;
}

.hero-description {
    font-size: 15px;
    color: #94a3b8;
    margin: 0;
    max-width: 800px;
    line-height: 1.5;
}

/* Основна секція продуктів */
.products-main-section {
    padding: 50px 0 70px;
    background-color: #f8fafc;
}

.solutions-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

/* Картка товару */
.sol-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sol-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.sol-card-inner,
.sol-card-inner:visited,
.sol-card-inner:hover {
    text-decoration: none !important;
    color: inherit !important;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Зображення картки з плаваючою іконкою */
.sol-card-image {
    position: relative;
    width: 100%;
    height: 200px;
    background-color: #f1f5f9;
}

.sol-card-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
}

/* Кругла біла іконка по центру на межі зображення */
.sol-card-badge {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* Текстовий блок картки */
.sol-card-body {
    padding: 34px 20px 20px; /* верхній відступ з урахуванням іконки */
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.sol-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.sol-card-text {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.sol-card-text p {
    margin: 0;
}

.sol-card-action {
    margin-top: auto;
    font-size: 13px;
    font-weight: 600;
    color: #0284c7;
}

.sol-card:hover .sol-card-action {
    color: #0369a1;
}

/* Блок заклику до дії (CTA) знизу */
.solutions-bottom-cta {
    margin-top: 60px;
    background: #0b1e36;
    border-radius: 12px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #ffffff;
}

.cta-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 6px 0;
    color: #ffffff;
}

.cta-info p {
    font-size: 14px;
    color: #94a3b8;
    margin: 0;
}

.cta-blue-btn {
    background-color: #2563eb;
    color: #ffffff !important;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    white-space: nowrap;
    display: inline-block;
    transition: background-color 0.2s ease;
}

.cta-blue-btn:hover {
    background-color: #1d4ed8;
}

/* Адаптивність */
@media (max-width: 768px) {
    .solutions-bottom-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
    }
}


/* ==========================================================================
   СТИЛІ ДЛЯ СТОРІНКИ КОНТАКТІВ
   ========================================================================== */

.contacts-page-section {
    padding: 60px 0 80px;
    background-color: #f8fafc;
}

/* Сітка 4-х карт контактів */
.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}

.contact-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
}

/* Уточнений селектор ТІЛЬКИ для карток на сторінці контактів */
.contact-card .contact-icon {
    width: 50px;
    height: 50px;
    background-color: #eff6ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

/* Відновлення та захист іконок у футері */
.footer-contacts-list .contact-icon,
.footer-contacts-list svg {
    width: 18px !important;
    height: 18px !important;
    background: transparent !important;
    border-radius: 0 !important;
    display: inline-block;
}

.contact-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px 0;
}

.contact-card p,
.contact-card a {
    font-size: 14px;
    color: #475569;
    text-decoration: none;
    margin: 0;
    line-height: 1.4;
}

.contact-card a:hover {
    color: #2563eb;
}

/* Основний блок (Форма + Карта) */
.contacts-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
}

.contact-form-wrapper h2 {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 24px 0;
}

.custom-contact-form .form-group {
    margin-bottom: 20px;
}

.custom-contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.custom-contact-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 6px;
}

.custom-contact-form input,
.custom-contact-form textarea {
    width: 100%;
    padding: 12px 5px;
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 14px;
    color: #0f172a;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}

.custom-contact-form input:focus,
.custom-contact-form textarea:focus {
    border-color: #2563eb;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.custom-contact-form .submit-btn {
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    width: 100%;
}

.custom-contact-form .submit-btn:hover {
    background-color: #1d4ed8;
}

.contact-map-wrapper {
    width: 100%;
    height: 100%;
    min-height: 380px;
}

/* Адаптивність для мобільних пристроїв */
@media (max-width: 992px) {
    .contacts-main-grid {
        grid-template-columns: 1fr;
        padding: 24px;
    }
}

@media (max-width: 576px) {
    .custom-contact-form .form-row {
        grid-template-columns: 1fr;
    }
}


/* ==========================================================================
   СТИЛІ ДЛЯ ПОСЛУГ (ARCHIVE & SINGLE)
   ========================================================================== */

.services-main-section,
.single-service-section {
    padding: 60px 0 80px;
    background-color: #f8fafc;
}

/* Сітка послуг */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.service-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.service-card-image {
    height: 200px;
    background-color: #f1f5f9;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-thumb {
    transform: scale(1.04);
}

.service-no-img {
    width: 64px;
    height: 64px;
    background: #eff6ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 12px 0;
    line-height: 1.35;
}

.service-card-excerpt {
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-card-action {
    font-size: 14px;
    font-weight: 600;
    color: #2563eb;
}

/* Окрема сторінка послуги (Single) */
.single-service-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
}

.single-service-content {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 36px;
}

.single-service-featured-img {
    margin-bottom: 24px;
    border-radius: 8px;
    overflow: hidden;
}

.single-service-featured-img img {
    width: 100%;
    height: auto;
    display: block;
}

.single-service-content .entry-content {
    font-size: 16px;
    line-height: 1.7;
    color: #334155;
}

.single-service-content .entry-content h2,
.single-service-content .entry-content h3 {
    color: #0f172a;
    margin-top: 24px;
    margin-bottom: 12px;
}

.service-navigation-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.back-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

/* Сайдбар */
.service-sidebar-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 28px;
    position: sticky;
    top: 100px;
}

.service-sidebar-card h3 {
    font-size: 20px;
    color: #0f172a;
    margin: 0 0 12px 0;
}

.service-sidebar-card p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.5;
}

.cta-blue-btn.full-width {
    display: block;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 992px) {
    .single-service-layout {
        grid-template-columns: 1fr;
    }
}


/* ==========================================================================
   СТИЛІ ДЛЯ БЛОГУ (ARCHIVE & SINGLE)
   ========================================================================== */

.blog-main-section,
.single-blog-section {
    padding: 60px 0 80px;
    background-color: #f8fafc;
}

/* Фільтр категорій */
.blog-categories-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.cat-pill {
    padding: 8px 18px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #475569;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.cat-pill:hover,
.cat-pill.active {
    background: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
}

/* Сітка карт Блогу */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.blog-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.blog-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.blog-card-image {
    height: 200px;
    background-color: #f1f5f9;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-thumb {
    transform: scale(1.04);
}

.blog-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: #64748b;
    margin-bottom: 10px;
}

.blog-cat-name {
    background: #eff6ff;
    color: #2563eb;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.blog-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.blog-card-excerpt {
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-card-action {
    font-size: 14px;
    font-weight: 600;
    color: #2563eb;
}

/* Single Post */
.single-post-meta-hero {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.post-cat-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 10px;
    border-radius: 4px;
    color: #ffffff;
}

.single-blog-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
}

.single-blog-content {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 36px;
}

.single-blog-featured-img {
    margin-bottom: 28px;
    border-radius: 8px;
    overflow: hidden;
}

.single-blog-featured-img img {
    width: 100%;
    height: auto;
    display: block;
}

.single-blog-content .entry-content {
    font-size: 16px;
    line-height: 1.75;
    color: #334155;
}

.blog-navigation-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

/* Віджет свіжих статей у сайдбарі */
.recent-posts-widget {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    margin-top: 24px;
}

.recent-posts-widget h3 {
    font-size: 18px;
    color: #0f172a;
    margin: 0 0 16px 0;
}

.recent-post-item {
    display: block;
    text-decoration: none;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
}

.recent-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.recent-date {
    font-size: 12px;
    color: #94a3b8;
}

.recent-title {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin: 4px 0 0 0;
    line-height: 1.35;
    transition: color 0.2s ease;
}

.recent-post-item:hover .recent-title {
    color: #2563eb;
}

@media (max-width: 992px) {
    .single-blog-layout {
        grid-template-columns: 1fr;
    }
}



/* ==========================================
   МОДАЛЬНЕ ВІКНО (MODAL STYLES)
   ========================================== */
body.modal-open,
body.menu-open {
    overflow: hidden;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

.modal-window {
    background: #ffffff;
    width: 100%;
    max-width: 500px;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    position: relative;
    padding: 36px 32px;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.is-visible .modal-window {
    transform: translateY(0) scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 16px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 28px;
    color: #64748b;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
}

.modal-close-btn:hover {
    color: #0f172a;
}

.modal-header {
    margin-bottom: 24px;
}

.modal-title {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px 0;
}

.modal-subtitle {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* Форма в модальному вікні */
.modal-form .form-group {
    margin-bottom: 16px;
}

.modal-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 6px;
}

.modal-form input,
.modal-form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 14px;
    color: #0f172a;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.modal-form input:focus,
.modal-form textarea:focus {
    border-color: #0075df;
    box-shadow: 0 0 0 3px rgba(0, 117, 223, 0.15);
}

.modal-submit-btn {
    width: 100%;
    margin-top: 8px;
    justify-content: center;
}

/* ==========================================
   АДАПТИВНІСТЬ ТА МОБІЛЬНЕ МЕНЮ
   ========================================== */
@media (max-width: 991px) {
    .header-navigation {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        max-width: 360px;
        height: calc(100vh - 70px);
        background: #ffffff;
        box-shadow: -10px 0 25px rgba(0, 0, 0, 0.08);
        padding: 24px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }

    .header-navigation.is-active {
        right: 0;
    }

    .nav-menu {
        display: flex;
        flex-direction: column;
        gap: 16px;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-menu-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 50px;
        padding-top: 20px;
        border-top: 1px solid #e2e8f0;
    }

    .mobile-phone-link {
        font-size: 16px;
        font-weight: 600;
        color: #0075df;
        text-align: center;
        text-decoration: none;
    }

    .header-actions .btn-primary-cta {
        display: none; /* Ховаємо десктопну кнопку, використовуємо з мобільного меню */
    }
    .hero-slider-section {
    margin-top: 40px;
    }
}

@media (min-width: 992px) {
    .mobile-menu-actions {
        display: none;
    }
}


/* --- Compliance / Legal Page --- */
.compliance-page {
    padding: 60px 0 100px;
}

.compliance-page .wrap {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.compliance-header {
    margin-bottom: 36px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.compliance-header .page-title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.compliance-content {
    font-size: 16px;
    line-height: 1.75;
    color: #334155;
}

.compliance-content h2 {
    font-size: 1.35rem;
    font-weight: 600;
    color: #0f172a;
    margin: 40px 0 16px;
}

.compliance-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #0f172a;
    margin: 32px 0 12px;
}

.compliance-content p {
    margin-bottom: 20px;
}

.compliance-content ul, 
.compliance-content ol {
    margin: 0 0 24px 20px;
    padding: 0;
}

.compliance-content li {
    margin-bottom: 8px;
}

.compliance-content a {
    color: #0075df;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.compliance-content a:hover {
    text-decoration: none;
}


/* Основна картка */
.blog-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #e5e7eb;
}

.blog-card-body {
    display: flex;
    flex-direction: column;
    padding: 24px;
    flex-grow: 1;
}

.blog-card-action {
    margin-top: auto;
    padding-top: 16px;
}

/* Спеціальний дизайн для карток без зображення */
.blog-card.no-thumb .blog-card-inner {
    border-top: 4px solid #0056b3; /* Синій акцент зверху замість картинки */
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.blog-card.no-thumb .blog-card-body {
    padding: 28px 24px 24px 24px;
}

.blog-card.no-thumb .blog-card-title {
    font-size: 1.15rem;
    line-height: 1.4;
    color: #0f172a;
}

/* Базова сітка та висота карток продуктів */
.solutions-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.sol-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.sol-card-inner:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

.sol-card-body {
    display: flex;
    flex-direction: column;
    padding: 24px;
    flex-grow: 1;
}

.sol-card-action {
    margin-top: auto;
    padding-top: 16px;
    font-weight: 600;
    color: #2563eb;
}

/* Спеціальний вигляд для продуктів без фото */
.sol-card.no-thumb .sol-card-inner {
    border-top: 4px solid #2563eb; /* Акцентна синя смужка зверху */
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 40%);
}

.sol-card.no-thumb .sol-card-body {
    padding: 28px 24px 24px 24px;
}

.sol-card.no-thumb .sol-card-title {
    font-size: 1.2rem;
    color: #0f172a;
    margin-bottom: 12px;
}


/* Сітка карток */
.solutions-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

/* Зовнішня обгортка картки */
.sol-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.25s ease;
}

.sol-card-inner:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

/* Контентна частина */
.sol-card-body {
    display: flex;
    flex-direction: column;
    padding: 24px;
    flex-grow: 1;
}

.sol-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.sol-card-text p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    margin: 0 0 16px 0;
}

.sol-card-action {
    margin-top: auto;
    font-weight: 600;
    font-size: 14px;
    color: #2563eb;
}

/* Стиль для карток БЕЗ зображення */
.sol-card.no-thumb .sol-card-inner {
    border-top: 4px solid #2563eb;
    background: #ffffff;
}

/* Адаптивність для планшетів та телефонів */
@media (max-width: 992px) {
    .solutions-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .solutions-products-grid {
        grid-template-columns: 1fr;
    }
}

/* Сторінка одного продукту */
.single-product-page {
    padding-bottom: 60px;
    background-color: #f8fafc;
    min-height: 85vh;
}

.product-hero-header {
    padding: 24px 0 16px 0;
}

.product-breadcrumbs a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.2s ease;
}

.product-breadcrumbs a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* Карточка продукту */
.single-product-grid {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

/* Верстка для продукту З фото (2 колонки) */
.single-product-grid.has-image {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 40px;
    align-items: start;
}

/* Верстка для продукту БЕЗ фото (1 колонка по центру) */
.single-product-grid.no-image {
    display: block;
    max-width: 920px;
    margin: 0 auto;
    border-top: 5px solid #2563eb;
}

/* Галерея зображення */
.product-gallery-inner {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.main-product-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: contain;
}

/* Категорія та Заголовок */
.product-category-tag {
    display: inline-block;
    padding: 4px 12px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.single-product-title {
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 24px 0;
    line-height: 1.25;
}

/* Форматування контенту списків та абзаців */
.single-product-description {
    color: #334155;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.single-product-description p {
    margin-bottom: 16px;
}

.single-product-description ul, 
.single-product-description ol {
    margin: 16px 0 24px 0;
    padding-left: 20px;
}

.single-product-description li {
    margin-bottom: 8px;
    color: #475569;
}

/* Кнопка дії */
.product-actions {
    padding-top: 24px;
    border-top: 1px solid #f1f5f9;
}

.product-btn-primary {
    display: inline-block;
    padding: 14px 28px;
    background-color: #2563eb;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.product-btn-primary:hover {
    background-color: #1d4ed8;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Адаптивність */
@media (max-width: 992px) {
    .single-product-grid.has-image {
        grid-template-columns: 1fr;
    }
    
    .single-product-grid {
        padding: 24px;
    }
}

/* Сторінка продукту */
.single-product-page {
    padding: 30px 0 60px;
    background-color: #f8fafc;
}

.product-breadcrumbs {
    margin-bottom: 20px;
}

.product-breadcrumbs a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

/* Загальна картка */
.single-product-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

/* 1. КОЛИ Є ФОТО: Двоколонкова сітка */
.single-product-card.with-image {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 40px;
    align-items: start;
}

/* 2. КОЛИ ФОТО НЕМАЄ: Повноширинна картка з акцентом зверху */
.single-product-card.no-image {
    display: block;
    max-width: 900px;
    margin: 0 auto;
    border-top: 4px solid #2563eb;
}

.product-gallery {
    background: #f8fafc;
    border-radius: 12px;
    padding: 16px;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.main-product-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: contain;
}

/* Оформлення заголовка та тексту */
.product-category-tag {
    display: inline-block;
    padding: 4px 12px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.single-product-title {
    font-size: 30px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.single-product-description {
    color: #334155;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.single-product-description p {
    margin-bottom: 16px;
}

.single-product-description ul,
.single-product-description ol {
    margin: 16px 0;
    padding-left: 24px;
}

.single-product-description li {
    margin-bottom: 8px;
}

/* Кнопка дії */
.product-actions {
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.product-btn-primary {
    display: inline-block;
    padding: 12px 28px;
    background-color: #2563eb;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.product-btn-primary:hover {
    background-color: #1d4ed8;
}

@media (max-width: 992px) {
    .single-product-card.with-image {
        grid-template-columns: 1fr;
    }
}


/* --- СТОРІНКА АРХІВУ ВІДГУКІВ --- */
.reviews-hero-banner {
    padding: 40px 0 20px;
    background-color: #f8fafc;
}

.reviews-main-section {
    padding: 40px 0 60px;
    background-color: #f8fafc;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.review-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-card-inner:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.review-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.review-avatar .avatar-img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #cbd5e1;
}

.review-author {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 4px 0;
}

.review-date {
    font-size: 13px;
    color: #94a3b8;
}

.review-card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.review-text p {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin: 0 0 16px 0;
}

.review-action {
    margin-top: auto;
    font-size: 14px;
    font-weight: 600;
    color: #2563eb;
}

/* Спеціальний вигляд картки відгуку без аватарки */
.review-card.no-avatar .review-card-inner {
    border-top: 4px solid #2563eb;
}

/* --- ОПРЕМA СТОРІНКА ВІДГУКУ --- */
.single-review-page {
    padding: 30px 0 60px;
    background-color: #f8fafc;
    min-height: 80vh;
}

.review-breadcrumbs {
    margin-bottom: 20px;
}

.review-breadcrumbs a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.single-review-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.single-review-card.no-avatar {
    border-top: 4px solid #2563eb;
}

.review-header-block {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
}

.single-avatar-img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
}

.review-single-title {
    font-size: 26px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 4px 0;
}

.review-single-date {
    font-size: 14px;
    color: #64748b;
}

.review-single-content {
    font-size: 16px;
    color: #334155;
    line-height: 1.7;
}

@media (max-width: 600px) {
    .single-review-card {
        padding: 20px;
    }
    .review-header-block {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Вся сторінка відгуків */
.reviews-page-wrapper {
    background-color: #f8fafc;
    padding-bottom: 80px;
    min-height: 85vh;
}

.reviews-hero {
    padding: 60px 0 20px;
}

.reviews-breadcrumbs {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 12px;
}

.reviews-breadcrumbs a {
    color: #2563eb;
    text-decoration: none;
}

.reviews-breadcrumbs .sep {
    margin: 0 6px;
    color: #cbd5e1;
}

.reviews-hero-title {
    font-size: 30px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 6px 0;
}

.reviews-hero-desc {
    font-size: 15px;
    color: #64748b;
    margin: 0;
}

/* Сітка карток */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 48px; /* Захисний відступ від карт до пагінації */
}

.review-item {
    display: flex;
}

.review-item-link {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    text-decoration: none !important;
    color: inherit !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.review-item-link:hover {
    transform: translateY(-4px);
    border-color: #cbd5e1;
    box-shadow: 0 12px 20px -4px rgba(0, 0, 0, 0.08);
}

/* Шапка всередині картки */
.review-item-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f1f5f9;
}

.review-item-avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #e2e8f0;
}

.review-item-quote-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background-color: #eff6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-item-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.review-item-title {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    line-height: 1.35;
}

.review-item-date {
    font-size: 13px;
    color: #94a3b8;
}

/* Текстовий блок */
.review-item-body {
    flex-grow: 1;
    margin-bottom: 20px;
}

.review-item-body p {
    font-size: 14px;
    line-height: 1.6;
    color: #475569;
    margin: 0;
}

/* Кнопка "Читати повністю" строго знизу */
.review-item-footer {
    margin-top: auto;
}

.review-read-more {
    font-size: 14px;
    font-weight: 600;
    color: #2563eb;
    transition: color 0.2s ease;
}

.review-item-link:hover .review-read-more {
    color: #1d4ed8;
    text-decoration: underline;
}

/* Виправлення пагінації */
.reviews-pagination-container {
    display: flex;
    justify-content: center;
    clear: both;
    padding-top: 10px;
}

.reviews-pagination-container .nav-links {
    display: flex;
    gap: 8px;
    align-items: center;
}

.reviews-pagination-container .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #334155;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.reviews-pagination-container .page-numbers.current,
.reviews-pagination-container .page-numbers:hover {
    background: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
}

@media (max-width: 640px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}


/* Стилізація пагінації для Новин та Продуктів */
.products-pagination,
.navigation.pagination {
    width: 100%;
    margin-top: 48px;
    margin-bottom: 24px;
    clear: both;
}

.products-pagination .nav-links,
.navigation.pagination .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

/* Кнопки з номерами сторінок */
.products-pagination .page-numbers,
.navigation.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background-color: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    color: #334155;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Активна сторінка та hover */
.products-pagination .page-numbers:hover,
.products-pagination .page-numbers.current,
.navigation.pagination .page-numbers:hover,
.navigation.pagination .page-numbers.current {
    background-color: #2563eb;
    color: #ffffff !important;
    border-color: #2563eb;
}

/* Трапецієподібні крапки (...) */
.products-pagination .page-numbers.dots,
.navigation.pagination .page-numbers.dots {
    background: transparent;
    border: none;
    box-shadow: none;
    color: #94a3b8;
    min-width: auto;
    padding: 0 4px;
}

/* Приховуємо службовий текст для скрінрідерів */
.navigation.pagination .screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.radio-group-block {
    margin-top: 20px;
    margin-bottom: 20px;
}

.radio-group-title {
    font-weight: 700;
    font-size: 16px;
    color: #0f172a;
    display: block;
    margin-bottom: 12px;
}

.radio-options-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.radio-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 15px;
    color: #334155;
    user-select: none;
}

.radio-option input[type="radio"] {
    accent-color: #2563eb;
    width: 18px;
    height: 18px;
    margin-right: 10px;
    cursor: pointer;
}

.radio-text {
    line-height: 1.4;
}


/* Компактна обгортка форми */
.custom-contact-form {
    max-width: 100%;
    margin: 0 auto;
}

/* Сітка в 2 колонки для зменшення висоти */
.form-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 15px;
    margin-bottom: 10px;
}

/* Компактні поля ввода */
.form-group {
    margin-bottom: 10px;
}

.form-group label,
.radio-group-title {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 4px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 8px 12px;
    font-size: 14px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #2563eb;
}

.form-group textarea {
    height: 70px;
    resize: vertical;
}

/* Компактні радіо-кнопки у 2-3 колонки */
.radio-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 6px 12px;
    margin-top: 4px;
    margin-bottom: 10px;
}

.radio-option {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #475569;
    cursor: pointer;
}

.radio-option input[type="radio"] {
    margin-right: 6px;
    accent-color: #2563eb;
    width: 15px;
    height: 15px;
    cursor: pointer;
}

/* Кнопка */
.submit-btn {
    width: 100%;
    padding: 10px 18px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background-color: #2563eb;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.submit-btn:hover {
    background-color: #1d4ed8;
}

/* Мобільна адаптивність */
@media (max-width: 600px) {
    .form-grid-2col {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .radio-options-grid {
        grid-template-columns: 1fr;
    }
}