/* Кастомна ширина контейнера за макетом */
.va-container {
    max-width: 1160px;
}

/* Специфічні кольори бренду */
.va-text-green { color: #16a34a !important; }
.va-text-dark { color: #111827 !important; }
.va-text-blue { color: #1e3a8a !important; }

.va-bg-green { background-color: #22c55e !important; }
.va-icon-blue { color: #3b82f6 !important; }

/* Кастомна кнопка */
.va-btn-primary {
    background-color: #3b82f6;
    color: #fff;
    font-weight: 500;
    transition: all 0.2s;
}
.va-btn-primary:hover {
    background-color: #2563eb;
    color: #fff;
}

/* Градієнт для правої картки */
.va-card-gradient {
    background: linear-gradient(110deg, #ffffff 0%, #f0f6ff 45%, #e1efff 100%);
}

/* Контейнер для іконок переваг */
.va-feature-icon {
    width: 42px;
    height: 42px;
    background-color: #e5efff;
    color: #3b82f6;
}

/* --- CSS Заглушка (Ілюстрація ноутбука та телефону) --- */
.va-illustration {
    position: relative;
    min-height: 280px;
    width: 100%;
}

.va-mock-leaves {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    pointer-events: none;
    z-index: 0;
}
.va-leaf-1 {
    position: absolute;
    width: 70px; height: 140px;
    background-color: #dbeafe;
    border-radius: 70px 0 70px 0;
    top: 20px; right: 10px;
    transform: rotate(25deg);
}
.va-leaf-2 {
    position: absolute;
    width: 60px; height: 120px;
    background-color: #bfdbfe;
    border-radius: 60px 0 60px 0;
    top: 70px; right: -20px;
    transform: rotate(65deg);
}

.va-laptop {
    position: absolute;
    width: 85%; height: 180px;
    background-color: #334155;
    border-radius: 10px 10px 0 0;
    top: 50%; right: 10%;
    transform: translateY(-50%);
    z-index: 1;
    padding: 8px;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}
.va-laptop-screen {
    width: 100%; height: 100%;
    background-color: #ffffff;
    border-radius: 4px;
}
.va-laptop-base {
    position: absolute;
    bottom: -12px; left: -5%;
    width: 110%; height: 12px;
    background-color: #475569;
    border-radius: 2px 2px 10px 10px;
}

.va-phone {
    position: absolute;
    width: 80px; height: 160px;
    background-color: #ffffff;
    border: 5px solid #334155;
    border-radius: 14px;
    bottom: 30px; left: 5%;
    z-index: 2;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.15);
}

.va-shield {
    width: 36px; height: 36px;
    background-color: #22c55e;
    border-radius: 50%;
}

@media (max-width: 991.98px) {
    .va-illustration { min-height: 220px; margin-top: 2rem; }
    .va-laptop { right: 5%; width: 90%; }
}
