.hero-section {
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 50%, #f8f9fa 100%);
    padding: 3rem 1rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(251, 146, 60, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

@media (min-width: 1024px) {
    .hero-section {
        padding: 6rem 1rem;
    }
}

.hero-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 80rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .hero-container {
        flex-direction: row;
        align-items: center;
        gap: 5rem;
    }
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
}

@media (min-width: 1024px) {
    .hero-content {
        gap: 2rem;
    }
}

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

.hero-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.15;
    color: #111827;
    margin: 0;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #111827 0%, #374151 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 1.7rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }
}

.hero-description {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.7;
    color: #4b5563;
    margin: 0;
    max-width: 36rem;
}

@media (min-width: 1024px) {
    .hero-description {
        font-size: 0.875rem;
        line-height: 1.75;
    }
}

.hero-image-container {
    flex: 1;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

@media (min-width: 1024px) {
    .hero-image-container {
        width: auto;
    }
}

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

.hero-image {
    width: 100%;
    max-width: 22rem;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(249, 250, 251, 0.9) 100%);
    padding: 1.5rem;
}

.hero-image:hover {
    transform: translateY(-5px) scale(1.02);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15)) drop-shadow(0 8px 12px rgba(0, 0, 0, 0.1));
}

@media (min-width: 640px) {
    .hero-image {
        max-width: 26rem;
        padding: 2rem;
    }
}

@media (min-width: 1024px) {
    .hero-image {
        max-width: 32rem;
        padding: 2.5rem;
    }
}
