.logo {
    width: 210px;
}
.color-blue {
    color: #2f55d4;
}

.p-14 {
    font-size: 14px;
}

.single-promo-hover .circle-icon span {
    color: #ffffff !important;
}

#btn-send-form .solid-white-btn:hover {
    background: transparent;
    color: #2f55d4 !important;
    border: 1px solid #2f55d4 !important;
}

.packet-install {
    color: #2f55d4 !important;
    border: 1px solid #2f55d4 !important;
}

.create-btn {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    -webkit-transform: translate(50%, -50%) !important;
    transform: translate(50%, -50%) !important;
}

.description-lic {
    font-size: 12px;
}

.pricing-header .price-base {
    font-size: 15px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    color: gray;
    text-decoration: line-through;
}

.pricing-header .price-base span {
    font-size: 14px;
    margin-left: 4px;
    font-weight: 500;
}

.enter-block .default-bg {
    background: #2f55d4;
    border: 1px solid #2f55d4;
    color: #ffffff;
}

.why-block .green-bg {
    background: #232c40db;
    border: 1px solid #232c40db;
    color: #ffffff;
}

.img-sr {
    border-radius: 10px;
    border: 3px solid #2f55d42e;
}

.img_png {
    filter: drop-shadow(1px 2px 3px rgba(0, 0, 0, 0.75));
}

.enterprise-section .on-sale {
    color: gray;
    text-decoration: line-through;
}

.pricing-header .quantity {
    font-size: 24px;
    font-family: 'Poppins', sans-serif;
    color: #444444;
}

.single-blog-card .date-badge {
    z-index: 2;
    top: 10px;
    left: 10px;
    background: #3d4a62;
}

.single-blog-card .category-badge {
    z-index: 2;
    top: 10px;
    right: 10px;
}

:root {
    --primary-color: #4361ee;
    --secondary-color: #3f37c9;
    --accent-color: #4895ef;
    --text-color: #333333;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-lighter: #ffffff;
    --border-radius: 12px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

/* Карточки новостей и статей */
.news-card {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #ffffff;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.news-image-wrapper {
    overflow: hidden;
    position: relative;
}

.news-card .card-img-top {
    transition: all 0.3s ease;
    height: 220px;
    object-fit: cover;
}

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

.news-category-badge .badge {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 30px;
    background: #4361ee;
}

.news-meta {
    font-size: 0.85rem;
    display: flex !important;
    justify-content: space-between;
}

.news-title a {
    color: #333333;
    text-decoration: none;
    transition: all 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-title a:hover {
    color: #4361ee;
}

.news-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 20px;
}

.btn-outline-primary {
    border-color: #4361ee;
    color: #4361ee;
    border-radius: 30px;
    padding: 8px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: #4361ee;
    color: white;
    transform: translateY(-2px);
}

/* Стили для отзывов */
.client-review-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
}

.single-testimonial {
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
}

.single-testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}



/* Ссылка "Все статьи/новости" */
.support-cta a {
    color: #4361ee;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 30px;
    border: 2px solid transparent;
}

.support-cta a:hover {
    color: #3f37c9;
    border-color: #4361ee;
    padding: 10px 30px;
}

/* Анимации */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.news-card, .single-testimonial {
    animation: fadeIn 0.5s ease-out;
}

/* Адаптивность */
@media (max-width: 768px) {
    .news-card {
        margin-bottom: 25px;
    }
}



/* Центрируем меню в шапке */
.main-header-menu-wrap .navbar-nav {
    align-items: center;
}

/* Подправим высоту и отступы, чтобы три зоны были по одной линии */
.main-header-menu-wrap .navbar {
    min-height: 64px;
}
.main-header-menu-wrap .navbar-brand img.logo {
    max-height: 40px;
}

/* Кнопки-иконки справа — аккуратные кликабельные зоны */
.header-actions .btn.btn-link {
    line-height: 1;
    font-size: 18px;
}

/* Бейдж на корзине */
.header-actions .badge {
    font-size: 10px;
    padding: 2px 5px;
}

/* Мобильная адаптация: справа блок прячем, всё уходит под бургер */
@media (max-width: 767.98px) {
    .header-actions { display: none !important; }
    /* Центровка меню при раскрытии */
    #navBar .navbar-nav { margin-left: 0 !important; margin-right: 0 !important; }
}

/* ===== Базовая сетка и отступы */
.header-grid { display:grid; grid-template-columns:auto 1fr auto; align-items:center; gap:20px; }
.main-header-menu-wrap .navbar { min-height:72px; padding:0; }
#header-top-bar .container-fluid,
#logoAndNav .container-fluid { padding-left:24px; padding-right:24px; }


/* Три точки «больше» */
.main-navbar-nav .more-dots { letter-spacing: .3em; font-weight:700; opacity:.6; }
.main-navbar-nav .more-dots:hover { opacity: 1; }

/* ===== Логотип */
.main-header-menu-wrap .navbar-brand img.logo { max-height:42px; }

/* ===== Правая зона: телефон, действия */
.header-actions { gap:14px; }
.header-actions .phone-block a.tel {
    display:block; font-weight:700; color:#1f2937; line-height:1.1;
}
.header-actions .phone-block a.tel .fas { color:#6b7280; }
.header-actions .phone-block a.call-small {
    display:inline-block; margin-top:4px; font-size:11px; text-transform:uppercase;
    letter-spacing:.06em; color:#6b7280;
}
.header-actions .phone-block a.call-small:hover { color:#1f2937; text-decoration:underline; }

/* Круглые иконки справа */
.icon-btn, .header-actions .btn.btn-link {
    width:36px; height:36px; border-radius:50%;
    display:inline-flex; align-items:center; justify-content:center;
    color:#6b7280; transition:background .2s ease, color .2s ease;
}
.icon-btn:hover, .header-actions .btn.btn-link:hover { background:#f3f4f6; color:#111827; }

/* Корзина — бейдж как на примере */
.header-actions .cart-btn { position:relative; }
.header-actions .cart-badge {
    position:absolute; top:-4px; right:-4px;
    min-width:18px; height:18px; padding:0 4px;
    border-radius:9px; background:#2563eb; color:#fff;
    font-size:11px; font-weight:700; line-height:18px; text-align:center;
    box-shadow:0 0 0 2px #fff;    /* белая окантовка как у «чипа» */
}

/* ===== Тонкая нижняя линия шапки */
.main-header-menu-wrap { box-shadow: inset 0 -1px 0 0 #f1f5f9; }

/* ===== Мобилка */
@media (max-width: 991.98px) {
    .main-navbar-nav > .nav-item { margin:0 12px; }
}
@media (max-width: 767.98px) {
    .header-grid { grid-template-columns:auto 1fr; }
    .header-actions { display:none !important; }
    #navBar.collapse { grid-column:1/-1; }
    .main-navbar-nav > .nav-item > .nav-link { padding:10px 0; }
}

.cases-filter {
    display:flex;
    gap:12px;
    overflow:auto;
    white-space:nowrap;
    padding-bottom:6px;
}

.cases-filter a {
    position:relative;
    display:inline-block;
    padding:12px 18px;
    background:#f6f8fb;
    border:1px solid #e9eef5;
    color:#6c757d;
    text-decoration:none;
    font-size:12px;
    letter-spacing:.04em;
    text-transform:uppercase;
    transition:background .2s, border-color .2s, color .2s, box-shadow .2s;
}

.cases-filter a:hover {
    background:#fff;
    color:#1f2d3d;
    box-shadow:0 1px 2px rgba(0,0,0,.05);
}

.cases-filter a.active {
    background:#fff;
    color:#111;
    border-color:#dbe4f0;
    box-shadow:0 1px 2px rgba(0,0,0,.06);
}

.cases-filter a.active::before{
    content:"";
    position:absolute;
    left:-1px;
    right:-1px;
    top:-1px;
    height:3px;
    background:#2e6eff;
    border-top-left-radius:12px;
    border-top-right-radius:12px;
}