/* ========== PREMIUM HERO BLOCK ========== */
.hero {
    padding: calc(var(--spacing-xxl) + 80px) 0 var(--spacing-xxl);
    background: 
        linear-gradient(135deg, rgba(17, 18, 20, 0.93) 0%, rgba(30, 32, 35, 0.88) 100%),
        url('../images/pc.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 188, 212, 0.18) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 229, 255, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero__background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.hero__shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
}

.hero__shape--1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #00BCD4, #00E5FF);
    top: -15%;
    right: 5%;
    animation: float 25s ease-in-out infinite;
}

.hero__shape--2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #0097A7, #00BCD4);
    bottom: -10%;
    left: -5%;
    animation: float 30s ease-in-out infinite reverse;
}

.hero__shape--3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #0288D1, #00BCD4);
    top: 40%;
    left: 40%;
    animation: float 35s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(40px, -40px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

.hero__content {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: var(--spacing-xxl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero__left {
    text-align: left;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-md);
    background: rgba(0, 188, 212, 0.15);
    border: 1px solid rgba(0, 188, 212, 0.3);
    color: #00E5FF;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: var(--spacing-lg);
    backdrop-filter: blur(10px);
}

.hero__badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #00E5FF;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.hero__title {
    font-size: 72px;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    line-height: 1.05;
    font-family: var(--font-family-headings);
    letter-spacing: -0.04em;
}

.hero__title-main {
    display: block;
    color: var(--color-white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero__title-accent {
    display: block;
    background: linear-gradient(135deg, #00BCD4 0%, #00E5FF 50%, #0288D1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero__title-accent::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #00BCD4, #00E5FF);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(0, 188, 212, 0.5);
}

.hero__description {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--spacing-xl);
    line-height: 1.7;
    max-width: 580px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero__stats {
    display: flex;
    gap: var(--spacing-xxl);
    margin-bottom: 0;
    padding: var(--spacing-xl) 0;
    justify-content: flex-start;
}

.hero__stat {
    text-align: left;
    position: relative;
}

.hero__stat::before {
    content: '';
    position: absolute;
    left: -16px;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #00BCD4, #0097A7);
    border-radius: 2px;
}

.hero__stat-number {
    font-size: 42px;
    font-weight: 700;
    background: linear-gradient(135deg, #00BCD4, #00E5FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-family-headings);
    line-height: 1;
    margin-bottom: var(--spacing-xs);
}

.hero__stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.hero__form {
    background: rgba(255, 255, 255, 0.98);
    padding: var(--spacing-xl);
    border-radius: 20px;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.hero__form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00BCD4, #00E5FF, #00BCD4);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.hero__form-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: var(--spacing-xs);
    font-family: var(--font-family-headings);
}

.hero__form-subtitle {
    font-size: 14px;
    color: var(--color-gray);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}


/* ========== HERO ANIMATIONS ========== */
.hero__badge {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.hero__title {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.hero__description {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.hero__stats {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
}

.hero__form {
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInRight 0.8s ease-out 1s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========== SCROLL ANIMATIONS ========== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.fade-in-left {
    transform: translateX(-40px);
}

.animate-on-scroll.fade-in-left.animated {
    transform: translateX(0);
}

.animate-on-scroll.fade-in-right {
    transform: translateX(40px);
}

.animate-on-scroll.fade-in-right.animated {
    transform: translateX(0);
}

.animate-on-scroll.scale-in {
    transform: scale(0.9);
}

.animate-on-scroll.scale-in.animated {
    transform: scale(1);
}
