﻿/* Hero Section Styles */
.hero-bg-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: 0;
}

.hero-bg-blob {
    position: absolute;
    border-radius: 50%;
    mix-blend-mode: multiply;
    filter: blur(60px);
    animation: blob 12s ease-in-out infinite;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    animation: fadeInUp 0.8s ease-out both;
}

.highlight-text {
    position: relative;
    z-index: 1;
}

    .highlight-text::after {
        content: '';
        position: absolute;
        bottom: 0.1em;
        left: 0;
        width: 100%;
        height: 0.35em;
        background: linear-gradient(90deg, #c4b5fd, #a5b4fc);
        z-index: -1;
        border-radius: 3px;
        opacity: 0.7;
    }

.hero-divider {
    height: 4px;
    width: 100px;
    background: linear-gradient(90deg, #7e5bef, #5b86e5);
    border-radius: 2px;
    margin: 24px 0;
    animation: growWidth 1.2s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.hero-image-frame {
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 8px solid white;
    transform: perspective(1000px) rotateY(0deg);
    transition: transform 0.5s, box-shadow 0.5s;
}

    .hero-image-frame:hover {
        transform: perspective(1000px) rotateY(-5deg);
        box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.3);
    }

/* Мобильные адаптации для Hero */
@media (max-width: 768px) {
    .hero-image-frame {
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .hero-image-frame {
        max-width: 240px;
    }

    .hero-divider {
        width: 70px;
        margin: 18px 0;
    }
}
