/* Hero Section */
.hero {
    margin-top: 80px;
    height: 80vh;
    display: flex;
    align-items: stretch;
    --section-shared-bg:
        radial-gradient(circle at 12% 0%, rgba(56, 189, 248, 0.12), transparent 42%),
        radial-gradient(circle at 90% 8%, rgba(99, 102, 241, 0.14), transparent 38%),
        linear-gradient(180deg, #0b1226 0%, #060c1c 100%);
    background: var(--section-shared-bg);
}

.hero .container {
    display: grid;
    grid-template-columns: 2fr 1fr;  
    gap: 0;
    align-items: stretch;
    height: 80vh;
    width: 100%;
    max-width: none;
    padding: 0;
}

.hero-content {
    background: var(--section-shared-bg);
    color: white;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.hero-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.hero-tech-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.45);
    background: rgba(15, 23, 42, 0.72);
    color: #dbeafe;
    font-size: 0.86rem;
    letter-spacing: 0.01em;
}

.hero-cta-space {
    margin-top: 1.7rem;
}

.cta-button {
    display: inline-block;
    background: #fff;
    color: #667eea;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: transform 0.3s ease;
    align-self: flex-start;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
    background: var(--section-shared-bg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

@media (max-width: 768px) {
    
    .hero {
        height: auto;
        min-height: 60vh;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        height: auto;
    }
    
    .hero-content {
        padding: 3rem 2rem;
    }

    .hero-tech-tags {
        justify-content: center;
    }

    .hero-cta-space {
        margin-top: 1.3rem;
    }

    .cta-button {
        align-self: center;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-image {
        min-height: 50vh;
    }
    
    .hero-image img {
        width: 85%;
        height: 75%;
        object-fit: cover;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content h2 {
        font-size: 1.2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
}