/* Hero Section Styles - Стили героя ТРОН */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--tron-light-blue), white);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%230066CC" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--tron-blue), #00CCFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 102, 204, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--tron-dark-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--tron-text);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-btn {
    padding: 16px 32px;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-btn-primary {
    background: linear-gradient(135deg, var(--tron-blue), #00CCFF);
    color: white;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 102, 204, 0.4);
    color: white;
}

.hero-btn-secondary {
    background: white;
    color: var(--tron-blue);
    border: 2px solid var(--tron-blue);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-btn-secondary:hover {
    background: var(--tron-blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--tron-blue);
    display: block;
    margin-bottom: 0.5rem;
}

.hero-stat-label {
    font-size: 1rem;
    color: var(--tron-dark-gray);
    font-weight: 500;
}

/* Floating Elements */
.hero-floating {
    position: absolute;
    z-index: 1;
    opacity: 0.1;
    animation: float 8s ease-in-out infinite;
}

.hero-floating:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.hero-floating:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.hero-floating:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.hero-floating:nth-child(4) {
    top: 40%;
    right: 5%;
    animation-delay: 6s;
}

/* Parallax Hero */
.hero-parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.hero-parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 102, 204, 0.7);
    z-index: 1;
}

.hero-parallax .hero-content {
    position: relative;
    z-index: 2;
}

.hero-parallax .hero-title {
    color: white;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-parallax .hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.hero-parallax .hero-description {
    color: rgba(255, 255, 255, 0.8);
}

/* Video Hero */
.hero-video {
    position: relative;
    overflow: hidden;
}

.hero-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.hero-video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-video .hero-content {
    position: relative;
    z-index: 3;
}

/* Split Hero */
.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 80vh;
}

.hero-split .hero-content {
    padding: 0;
}

.hero-split .hero-image {
    text-align: center;
}

/* Centered Hero */
.hero-centered {
    text-align: center;
}

.hero-centered .hero-title {
    margin: 0 auto 1.5rem;
    max-width: 800px;
}

.hero-centered .hero-subtitle {
    margin: 0 auto 2rem;
    max-width: 600px;
}

.hero-centered .hero-description {
    margin: 0 auto 2.5rem;
    max-width: 700px;
}

.hero-centered .hero-buttons {
    justify-content: center;
}

.hero-centered .hero-stats {
    justify-content: center;
}

/* Minimal Hero */
.hero-minimal {
    min-height: 60vh;
    background: white;
}

.hero-minimal .hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-minimal .hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.hero-minimal .hero-description {
    font-size: 1rem;
    margin-bottom: 2rem;
}

/* Hero Features */
.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 4rem;
}

.hero-feature {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.hero-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.hero-feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--tron-blue), #00CCFF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.hero-feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--tron-text);
    margin-bottom: 10px;
}

.hero-feature-description {
    font-size: 0.875rem;
    color: var(--tron-dark-gray);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-split {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .hero-stat-number {
        font-size: 2rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-btn {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
}