.header-usps {
    position: relative;
    width: calc(100% - 5rem);
    margin: 0 auto;
    height: 27rem; /* 432px */
    overflow: hidden;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.header-usps__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

.header-usps__container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--container-max-width);
    height: 100%;
    margin: 0 auto;
}

.header-usps__content {
    position: absolute;
    top: 8rem; /* 128px */
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.header-usps__title {
    font-size: var(--font-size-h1); /* 56px */
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    line-height: 1;
    margin: 0;
}

.header-usps__subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: var(--font-size-h4); /* 20px */
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
}

/* ── USP Card ── */
.header-usps__card {
    position: absolute;
    top: 3.75rem; /* 60px */
    right: 0;
    width: 23.0625rem; /* 369px */
    background-color: var(--color-bg-darkest);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    padding: 2rem 2rem 8rem; /* extra bottom padding zodat blauw ruim achter golf wegloopt */
    display: flex;
    flex-direction: column;
    gap: 1rem; /* 16px */
}

.header-usps__usp {
    display: flex;
    align-items: center;
    gap: 0.9375rem; /* 15px */
}

.header-usps__usp-icon {
    width: 2.625rem; /* 42px */
    height: 2.625rem;
    border-radius: 50%;
    background-color: var(--color-bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-white);
    font-size: 1rem;
}

.header-usps__usp-text {
    font-size: 0.9375rem; /* 15px */
    font-weight: var(--font-weight-medium);
    color: var(--color-white);
    line-height: 1.6;
}

/* ── Breadcrumbs ── */
.header-usps__breadcrumbs {
    position: absolute;
    bottom: 3.5rem; /* op de golf-overgang */
    left: calc((100% - var(--container-max-width)) / 2); /* uitlijnen met container linkerkant */
    z-index: 3; /* boven de golf */
    display: flex;
    align-items: center;
    gap: 0.75rem; /* 12px */
    background-color: #ebecf4;
    border-radius: var(--radius-md);
    padding: 1rem; /* 16px */
    font-size: var(--font-size-sm); /* 14px */
    color: var(--color-text-heading);
}

.header-usps__breadcrumb-link {
    color: var(--color-text-heading);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.header-usps__breadcrumb-sep {
    font-size: 0.625rem;
    opacity: 0.6;
}

.header-usps__breadcrumb-current {
    opacity: 0.6;
}

/* ── Wave ── */
.header-usps__wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 2;
}

.header-usps__wave svg {
    display: block;
    width: 100%;
    height: auto;
}
