/* ============================================
   DockSync — Hero Section
   ============================================ */

.hero {
    position: relative;
    padding-top: 72px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

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

.hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
}

/* ---------- Content ---------- */
.hero__badge {
    display: inline-block;
    font-size: var(--fs-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--orange-400);
    background-color: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.25);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.hero__title {
    font-size: var(--fs-4xl);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--color-text);
    margin-bottom: 20px;
}

.hero__description {
    font-size: var(--fs-md);
    color: var(--color-text-muted);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 36px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

/* ---------- Trust / Logos ---------- */
.hero__trust-text {
    display: block;
    font-size: var(--fs-xs);
    color: var(--color-text-muted);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero__logos {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.hero__logo {
    height: 28px;
    opacity: 0.4;
    transition: opacity var(--transition-fast);
}

.hero__logo:hover {
    opacity: 0.7;
}

/* ---------- Visual ---------- */
.hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__illustration {
    max-width: 100%;
    width: 500px;
    height: auto;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__trust-text {
        text-align: center;
    }

    .hero__logos {
        justify-content: center;
    }

    .hero__visual {
        order: -1;
    }

    .hero__illustration {
        width: 320px;
    }
}
