/* Стили для hero-секции */
.hero {
    padding: 30px 40px 50px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    color: #fff;
    align-items: center;
    justify-content: center;
    height: calc(90vh - 68px);
    min-height: 700px;
}

@media (max-width: 992px) {
    .hero {
        min-height: 452px;
        height: fit-content;
        text-align: left;
        padding: 30px 25px 30px 20px;
    }
}

.hero .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

@media (max-width: 992px) {
    .hero .content {
        flex-direction: column;
        padding-bottom: 40px;
    }
}

.hero .title {
    font-size: 70px;
    margin-bottom: 20px;
    font-weight: 500;
    color: #fff;
    line-height: 1.1;
}

@media (max-width: 992px) {
    .hero .title {
        font-size: 42px;
        margin-bottom: 16px;
        line-height: 1.2;
    }
}

.hero .subtitle {
    font-size: 24px;
    margin-bottom: 50px;
    font-weight: 300;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 992px) {
    .hero .subtitle {
        font-size: 18px;
        line-height: 1.5;
        margin-bottom: 30px;
    }
}

.hero .wrapper {
    padding: 0;
    flex: 1;
    max-width: 50%;
    position: relative;
    z-index: 2;
}

@media (max-width: 992px) {
    .hero .wrapper {
        max-width: 100%;
        margin-top: 90px;
    }
}

.hero .hero-graphic {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    overflow: visible;
}

.hero-graphic .shield {
    position: absolute;
    width: 518px;
    height: 566px;
    right: -100px;
    top: -50px;
    z-index: 1;
}

.hero-graphic .star {
    position: absolute;
    width: 454px;
    height: 447px;
    right: 50px;
    bottom: -50px;
    z-index: 1;
}

@media (max-width: 992px) {
    .hero .hero-graphic {
        margin-top: 40px;
        width: 100%;
        display: none;
    }
}

.social-block {
    background-color: #2d4470;
    border-radius: 12px;
    padding: 30px;
    margin-top: 30px;
    max-width: 400px;
}

.social-block h3 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 500;
}

.social-block p {
    font-size: 18px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.social-icon {
    display: inline-block;
    width: 36px;
    height: 36px;
    background-size: 24px;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.blue-shape {
    position: absolute;
    width: 350px;
    height: 350px;
    background-color: #3072E1;
    opacity: 0.2;
    border-radius: 50%;
    filter: blur(100px);
    transform: translate(20%, -20%);
    z-index: 1;
}

.blue-shape:after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background-color: #3072E1;
    opacity: 0.3;
    border-radius: 50%;
    filter: blur(70px);
    transform: translate(-50%, 50%);
}

@media (max-width: 768px) {
    .social-block {
        padding: 20px;
        max-width: 100%;
    }

    .social-block h3 {
        font-size: 24px;
    }

    .social-block p {
        font-size: 16px;
    }

    .social-icons {
        gap: 12px;
    }

    .social-icon {
        width: 32px;
        height: 32px;
        background-size: 20px;
    }
}

.button_gradient {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 30px;
    background: linear-gradient(90deg, #3072E1 0%, #6B92E5 100%);
    color: white;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.33;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.button_gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.button_gradient.inverse {
    background: white;
    color: #3072E1;
}

.button_gradient.inverse:hover {
    background: linear-gradient(90deg, #3072E1 0%, #6B92E5 100%);
    color: white;
}

@media (max-width: 992px) {
    .button_gradient {
        font-size: 16px;
        padding: 12px 24px;
    }
}
