/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding-right: 2rem;
    max-width: 650px;
}

.hero-title {
    font-size: clamp(3.5rem, 7vw, 6.5rem);
    letter-spacing: -0.04em;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #E0F2F1 0%, #2DD4BF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 10px 30px rgba(20, 184, 166, 0.4);
    padding-bottom: 0.2em;
}

.hero-subtitle {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--text-secondary);
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--text-dim);
    opacity: 0.8;
    max-width: 500px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-metrics {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.metric {
    display: flex;
    flex-direction: column;
}

.metric-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--bright-teal);
    text-shadow: 0 0 20px rgba(94, 234, 212, 0.4);
}

.metric-label {
    font-size: 0.875rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-split {
        grid-template-columns: 55% 45%;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-content {
        text-align: center;
    }

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

/* Header Wrapper & Logo Crest */
.hero-header-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
    /* Push title down to make room for logo crest */
}

.hero-header-wrapper .hero-title {
    margin-bottom: 0 !important;
    /* Override original margin */
}

.hero-logo-crest {
    position: absolute;
    /* Position relative to the wrapper */
    top: -30px;
    /* Lowered from -42px to prevent clipping */
    left: -12px;
    /* Moved right from -22px to align with C */
    height: 65px;
    /* Slightly smaller for better proportion */
    width: auto;
    z-index: 10;
    pointer-events: none;
    transform: rotate(-5deg);
    /* Slight rotation to match curve */
}

@media (max-width: 1024px) {
    .hero-logo-crest {
        height: 52px;
        top: -24px;
        left: -10px;
    }
}

@media (max-width: 768px) {
    .hero-logo-crest {
        height: 42px;
        top: -20px;
        left: -8px;
    }
}