/* ====== HERO ====== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-content h1 {
    font-size: 2.1rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(to right, #FFFFFF, #1A86FA, #6C1BE8);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    color: #d1d1e0;
    margin-bottom: 32px;
}

.btn-primary-custom {
    background: var(--gradient-1);
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 700;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    display: inline-block;
    color: white;
    text-decoration: none;
}

.btn-primary-custom:hover {
    background: var(--gradient-hover);
    transform: scale(1.02);
    box-shadow: 0 10px 25px -5px rgba(26,134,250,0.5);
    color: white;
}

.btn-secondary-custom {
    background: transparent;
    border: 1.5px solid var(--secondary);
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 700;
    transition: all 0.3s;
    color: white;
    text-decoration: none;
}

.btn-secondary-custom:hover {
    background: rgba(108, 27, 232, 0.2);
    border-color: var(--primary);
    color: white;
}

.hero-stats .stat-item h3 {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1A86FA, #6C1BE8);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.hero-image {
    position: relative;
    animation: float 5s ease-in-out infinite;
}

.hero-image-inner {
    background: linear-gradient(145deg, #1A86FA15, #6C1BE815);
    border-radius: 32px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.badge-tech {
    position: absolute;
    bottom: -20px;
    right: -10px;
    background: #0a0a0fcc;
    backdrop-filter: blur(8px);
    padding: 12px 20px;
    border-radius: 60px;
    border-left: 3px solid var(--primary);
    font-weight: 600;
    font-family: 'Share Tech Mono', monospace;
}