.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top right, rgba(79, 70, 229, 0.05), transparent 40%),
        radial-gradient(circle at bottom left, rgba(99, 102, 241, 0.05), transparent 40%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 650px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--primary-text);
}

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.75rem;
    color: var(--secondary-text);
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-family: var(--font-primary);
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--secondary-text);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-blob {
    position: absolute;
    width: 120%;
    height: 120%;
    background: var(--soft-glow);
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.6;
}

.hero-img-wrapper {
    width: 380px;
    height: 480px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1),
        -20px -20px 60px rgba(255, 255, 255, 0.8);
    position: relative;
    transform: rotate(-3deg);
    transition: transform 0.5s ease;
}

.hero-img-wrapper:hover {
    transform: rotate(0deg) scale(1.02);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Floating badge decoration - Minimal Icon Style */
.hero-badge {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--accent-gradient);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(56, 189, 248, 0.3);
    border: 3px solid rgba(15, 23, 42, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    animation: float-badge 4s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.hero-badge:hover {
    transform: scale(1.1);
}

.badge-icon {
    color: white;
    font-size: 1.2rem;
}

.hero-badge span {
    display: none;
    /* Hide text, show only icon */
}

.badge-1 {
    top: 8%;
    right: -10px;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 12%;
    left: -10px;
    animation-delay: 2s;
}

@keyframes float-badge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-content {
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-img-wrapper {
        width: 320px;
        height: 400px;
        transform: rotate(0);
        margin: 0 auto;
    }

    .hero-title {
        font-size: 2.5rem;
    }
}