.anonymous-report-banner {
    position: relative;
    padding: 30px 0 34px;
    background: linear-gradient(180deg, #2e63b8 0%, #2553a2 100%);
    overflow: hidden;
}

.anonymous-report-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.16), transparent 18%),
        radial-gradient(circle at 85% 22%, rgba(255, 255, 255, 0.10), transparent 16%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.10) 0%, transparent 42%);
}

.anonymous-report-banner > .site-wrap {
    position: relative;
    z-index: 1;
}

.anonymous-report-banner__inner {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    min-height: 150px;
}

.anonymous-report-banner__brand {
    display: flex;
    align-items: center;
    justify-content: center;
}

.anonymous-report-banner__logo {
    max-width: 95px;
    max-height: 95px;
    object-fit: contain;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.18));
}

.anonymous-report-banner__logo-fallback {
    width: 84px;
    height: 84px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    font-size: 34px;
    font-weight: 800;
}

.anonymous-report-banner__content {
    min-width: 0;
}

.anonymous-report-banner__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    margin-bottom: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #d8f4ff;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.anonymous-report-banner__content h2 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.04;
    text-transform: uppercase;
}

.anonymous-report-banner__content p {
    margin: 0;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    line-height: 1.7;
}

.anonymous-report-banner__phone-wrap {
    text-align: right;
    display: grid;
    gap: 8px;
}

.anonymous-report-banner__phone-label {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.anonymous-report-banner__phone {
    color: #7fe0ff;
    text-decoration: none;
    font-size: clamp(26px, 3.8vw, 42px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.anonymous-report-banner__phone:hover {
    color: #b2efff;
}

@media (max-width: 1024px) {
    .anonymous-report-banner__inner {
        grid-template-columns: 100px 1fr;
    }

    .anonymous-report-banner__phone-wrap {
        grid-column: 1 / -1;
        text-align: left;
        padding-left: 124px;
    }
}

@media (max-width: 768px) {
    .anonymous-report-banner {
        padding: 26px 0 30px;
    }

    .anonymous-report-banner__inner {
        grid-template-columns: 1fr;
        gap: 18px;
        text-align: center;
    }

    .anonymous-report-banner__phone-wrap {
        grid-column: auto;
        text-align: center;
        padding-left: 0;
    }

    .anonymous-report-banner__brand {
        justify-content: center;
    }

    .anonymous-report-banner__content p {
        font-size: 15px;
    }
}