/* Hero Section */

.hero {
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #121212 50%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(47, 128, 237, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.logo-text {
    font-size: 3.7rem;
    font-weight: 700;
    background: linear-gradient(135deg, #2F80ED 0%, #8E44FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-title {
    font-size: 2.4rem;
    font-weight: 500;
    color: rgb(255, 255, 255);
    margin-bottom: 24px; 
    letter-spacing: -0.04em;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.15rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 48px; 
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}