/* ========================================
   Section: Hero
   ======================================== */

.bioalign-landing .hero-section {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    margin-top: 0 !important;
    width: 100vw;
}

.hero-section {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
    top: 0 !important;
    transform: translateY(0) !important;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    max-width: 480px;
    margin: 40px 80px 40px 0;
    padding: 48px 40px;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.08) 100%);
    backdrop-filter: blur(30px) saturate(180%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow:
        0 32px 64px rgba(0,0,0,0.4),
        0 8px 32px rgba(0,0,0,0.2),
        inset 0 1px 0 rgba(255,255,255,0.4);
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
    text-align: center;
}

.hero-title {
    font-size: 2.1rem;
    font-weight: 700;
    font-family: var(--font-heading);
    line-height: 1.1;
    margin-bottom: 20px;
    color: #ffffff;
    letter-spacing: -0.04em;
    animation: fadeInUp 0.8s ease-out;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.text-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    font-family: var(--font-primary);
    line-height: 1.6;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: -0.01em;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
    text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-primary);
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-shadow: none;
    letter-spacing: -0.01em;
}

.btn-primary {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(255,255,255,0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.4);
    background: #ffffff;
}

.btn-secondary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #ffffff;
    border: 2px solid transparent;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(56,118,183,0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(56,118,183,0.4);
}

.btn-large { padding: 20px 48px; font-size: 1.125rem; }

/* Responsive */
@media (max-width: 1200px) {
    .hero-content { margin: 40px 40px 40px 0; max-width: 440px; padding: 40px 36px; }
}

@media (max-width: 968px) {
    .hero-section { justify-content: center; height: 500px; }
    .hero-content { margin: 0 auto; max-width: 90%; }
    .hero-title { font-size: 1.8rem; }
    .hero-cta { justify-content: center; flex-wrap: wrap; }
}

@media (max-width: 768px) {
    .hero-content { margin: 40px 30px 40px 0; max-width: 400px; padding: 36px 32px; border-radius: 20px; }
    .hero-title { font-size: 2rem; }
}

@media (max-width: 576px) {
    .hero-section { height: 400px; }
    .hero-content { margin: 20px; padding: 30px 24px; }
    .hero-title { font-size: 1.6rem; }
    .hero-subtitle { font-size: 1rem; }
    .btn { padding: 14px 28px; font-size: 0.9rem; }
}
