﻿.hero {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top right, #F4F1FF 0%, #FFFFFF 45%);
    padding: 90px 0 120px;
}
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.menu {
    margin-left: auto;
    margin-right: 60px;
}
.hero-left {
    flex: 1;
    max-width: 650px;
}
.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
}

    .hero-image img {
        width: 100%;
        border-radius: 24px;
        box-shadow: var(--shadow-large);
    }

.hero-tag {
    display: inline-flex;
    padding: 10px 18px;
    background: #F3F0FF;
    color: var(--primary);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: 78px;
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -3px;
    margin: 22px 0;
}

.hero p {
    font-size: 22px;
    line-height: 1.7;
    color: #667085;
    margin-bottom: 40px;
}
.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
}
.hero-buttons {
    display: flex;
    gap: 18px;
    margin-bottom: 22px;
}
.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    min-height: 820px;
}
.hero p {
    width: 620px;
    font-size: 22px;
    line-height: 1.7;
    color: #667085;
}
.hero-badge {
    display: inline-flex;
    padding: 10px 18px;
    border-radius: 999px;
    background: #F4F0FF;
    color: #5B21B6;
    font-weight: 700;
    letter-spacing: .1em;
}
.hero-preview {
    background: #FFF;
    border-radius: 22px;
    border: 1px solid #ECECEC;
    padding: 14px;
    transition: .35s;
}
    .hero-preview:hover {
        transform: perspective(1800px) rotateY(0deg);
        transform: translateY(-8px);
    }
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(124,58,237,.03) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: .5;
}
    .hero-preview img {
        border-radius: 18px;
    }
.hero {
    background: radial-gradient(circle at top right, #F5F3FF, white 45%);
}
.hero {
    padding: 110px 0;
}
.header {
    position: sticky;
    top: 0;
    background: rgba(255,255,255,.82);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid #ECECEC;
    z-index: 999;
}
.hero::after {
    content: "";
    position: absolute;
    right: -250px;
    top: -150px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124,58,237,.10), transparent 70%);
}
