/* ========== HERO ========== */
.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 156px;
    padding-bottom: 48px;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg::before {
    content: '';
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(43, 92, 135, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-bg::after {
    content: '';
    position: absolute;
    top: 10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(58, 123, 200, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.hero .container { position: relative; z-index: 1; }
.hero-content { max-width: 800px; margin: 0 auto; text-align: center; }
.hero h1 { margin-bottom: 24px; }
.hero-subtitle {
    font-size: 1.25rem;
    color: #9ba3b9;
    max-width: 600px;
    margin: 0 auto 0;
    line-height: 1.8;
}

/* ========== CONTACT CARD ========== */
.contact-section {
    padding: 48px 0;
    position: relative;
    z-index: 1;
}
.contact-card {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 40px 48px;
    text-align: center;
}
.contact-card h2 {
    font-size: 2rem;
    margin-bottom: 32px;
    color: #fff;
}
.contact-description {
    font-size: 1rem;
    color: #9ba3b9;
    margin-bottom: 40px;
    line-height: 1.8;
}
.email-box {
    background: rgba(43, 92, 135, 0.08);
    border: 1px solid rgba(43, 92, 135, 0.15);
    border-radius: 14px;
    padding: 28px;
    margin-bottom: 40px;
}
.email-label {
    font-size: 0.9rem;
    color: #8b92a8;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: block;
}
.email-link {
    font-size: 1.4rem;
    font-weight: 600;
    color: #6bb8ff;
    transition: color 0.2s;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.email-link:hover { color: #93ccff; }
.contact-response {
    font-size: 0.95rem;
    color: #8b92a8;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .hero { min-height: auto; padding-top: 100px; }
    .hero h1 { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .contact-card { padding: 40px 28px; }
    .contact-card h2 { font-size: 1.5rem; }
    .email-link { font-size: 1.2rem; }
}
