/* landingpage-hero – c-hero */

.c-hero {
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.c-hero--dark {
    background-color: #0f172a;
    color: #f8fafc;
}

.c-hero--light {
    background-color: #f8fafc;
    color: #0f172a;
}

.c-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.c-hero__bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.c-hero__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
}

.c-hero__content {
    max-width: 760px;
}

.c-hero__eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #93c5fd;
    margin-bottom: 0.75rem;
}

.c-hero--light .c-hero__eyebrow {
    color: #2563eb;
}

.c-hero__headline {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 1rem;
}

.c-hero__subheadline {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.75;
    margin: 0 0 1rem;
    opacity: 0.85;
}

.c-hero__trust {
    font-size: 0.875rem;
    opacity: 0.6;
    margin: 0 0 2rem;
}

.c-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.c-hero__badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    padding: 0.25rem 0.875rem;
    font-size: 0.8rem;
}

.c-hero--light .c-hero__badge {
    background: rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.15);
}

.c-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.c-hero__cta {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.15s ease;
}

.c-hero__cta:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

.c-hero__cta--primary {
    background: #2563eb;
    color: #fff;
}

.c-hero__cta--secondary {
    background: transparent;
    border: 2px solid currentColor;
    opacity: 0.85;
}

@media (max-width: 640px) {
    .c-hero__actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .c-hero__cta {
        width: 100%;
        text-align: center;
    }
}
