:root {
    --primary: #0f172a; 
    --accent: #2e6fa8; /* Адаптирано към синьото от логото ви */
    --light-bg: #f8fafc;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--light-bg);
    padding-top: 76px; 
}

.text-accent { color: var(--accent) !important; }
.border-accent { border-color: var(--accent) !important; }
.fw-black { font-weight: 900 !important; }
.tracking-wider { letter-spacing: 0.05em; }

/* Навигация */
.btn-lang-switcher {
    border: 1px solid #ccc;
    border-radius: 50px;
    padding: 5px 15px !important;
}

/* Hero Section */
.hero {
    min-height: 90vh;
}

.btn-premium {
    background-color: var(--accent);
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 40px;
    border-radius: 50px;
    border: none;
    transition: 0.4s;
}

.btn-premium:hover {
    background-color: #1a4a75;
    color: white;
    transform: translateY(-3px);
}

.divider {
    height: 3px;
    width: 60px;
    background-color: var(--accent);
    border-radius: 3px;
}

.card-premium {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
}

.icon-box {
    width: 80px;
    height: 80px;
    background: rgba(46, 111, 168, 0.1);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 20px;
}

/* Изключени секции */
.disabled-section {
    opacity: 0.6;
    pointer-events: none;
    user-select: none;
    filter: grayscale(80%);
}

/* Оцветяване на логото в продуктовите кутии */
.logo-tint-blue {
    /* Оригиналното лого вече е синьо, но подсигуряваме нюанса */
    filter: invert(33%) sepia(87%) saturate(632%) hue-rotate(174deg) brightness(91%) contrast(93%);
}
.logo-tint-green {
    filter: invert(48%) sepia(79%) saturate(2476%) hue-rotate(86deg) brightness(118%) contrast(119%);
}
.logo-tint-yellow {
    filter: invert(85%) sepia(54%) saturate(705%) hue-rotate(359deg) brightness(105%) contrast(106%);
}
.logo-tint-red {
    filter: invert(20%) sepia(90%) saturate(3000%) hue-rotate(350deg) brightness(100%) contrast(100%);
}

/* Плаващ WhatsApp бутон */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}
/* --- МОДЕРНО МЕНЮ (Заменя старите стилове за навигация) --- */
.navbar {
    padding: 15px 0;
    transition: all 0.4s ease;
}

.navbar .nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--primary) !important;
    padding: 10px 15px;
    margin: 0 5px;
    position: relative;
    transition: color 0.3s ease;
}

/* Ефект на подчертаване при посочване */
.navbar .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    width: 70%; /* Подчертава плавно само част от думата за по-елегантен вид */
}

/* --- РЕСПОНСИВ ТЕКСТ ЗА B2B --- */
.hero-title-b2b {
    /* clamp(минимум, идеално скалиране, максимум) */
    font-size: clamp(2.5rem, 6vw + 1rem, 5.5rem); 
    text-transform: uppercase;
    line-height: 1.1;
}

/* Стил за новия видео бутон */
.btn-video {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-video:hover {
    background-color: var(--primary);
    color: white !important;
}