/* Основен фон с модерен градиент */
.hero-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 80px 0 100px 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

/* Текстова част */
.hero-text h1 {
    font-weight: 800;
    color: #2c3e50;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-text p {
    color: #5a6b7c;
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Специален текст за AI */
.ai-highlight {
    background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

/* Бутони */
.btn-primary-custom {
    background-color: #0d6efd;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
    position: relative;
    overflow: hidden;
    color: white;
    text-decoration: none;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.4);
    background-color: #0b5ed7;
    color: white;
}

.btn-primary-custom::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.5s;
}

.btn-primary-custom:hover::after {
    left: 100%;
}

.btn-outline-custom {
    border: 2px solid #2c3e50;
    color: #2c3e50;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-outline-custom:hover {
    background-color: #2c3e50;
    color: white;
}

/* 3D Dashboard Container */
.dashboard-preview-container {
    position: relative;
    perspective: 1500px;
}

.dashboard-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    transform: rotateY(-12deg) rotateX(5deg);
    transition: transform 0.5s ease;
    border: 8px solid rgba(255, 255, 255, 0.8);
}

.dashboard-preview-container:hover .dashboard-image {
    transform: rotateY(0) rotateX(0);
}

/* Плаващи елементи */
.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float 6s ease-in-out infinite;
    z-index: 10;
}

.badge-1 { top: 10%; right: -20px; animation-delay: 0s; }
.badge-2 { bottom: 15%; left: -30px; animation-delay: 3s; }
.badge-ai {
    top: 45%;
    right: -40px;
    animation-delay: 1.5s;
    background: linear-gradient(135deg, #fff 0%, #f0f4ff 100%);
    border: 1px solid #dbeafe;
}

.icon-box {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@media (max-width: 991px) {
    .hero-section { text-align: center; padding-top: 40px; }
    .dashboard-preview-container { margin-top: 50px; perspective: none; }
    .dashboard-image { transform: none; }
    .badge-1, .badge-2, .badge-ai { display: none; }
}

