.homepageContactBand {
    margin: clamp(24px, 3.4vw, 46px) 0 0;
    color: #f7f9ff;
    width: 100%;
    min-width: 0;
    overflow: hidden;
}

.homepageContactBandGrid {
    display: grid;
    width: 100%;
    min-width: 0;
    grid-template-columns: minmax(0, 2.08fr) minmax(220px, 1fr) minmax(220px, 1fr);
    gap: clamp(12px, 1.15vw, 18px);
    align-items: stretch;
}

.homepageContactCard {
    position: relative;
    min-width: 0;
    min-height: 136px;
    border-radius: 23px;
    overflow: hidden;
    isolation: isolate;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
        #191b20;
    border: 1px solid rgba(255, 255, 255, 0.045);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.055),
        0 20px 52px rgba(0, 0, 0, 0.22);
}

.homepageContactCard::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.86;
    background:
        radial-gradient(circle at 42% 78%, rgba(0, 117, 255, 0.42), transparent 30%),
        radial-gradient(circle at 70% 20%, rgba(64, 143, 255, 0.22), transparent 28%);
    z-index: -2;
}

.homepageContactSupport {
    display: grid;
    grid-template-columns: minmax(158px, 0.88fr) minmax(136px, 0.68fr) minmax(210px, 0.9fr);
    align-items: center;
    gap: 8px;
    padding: 18px 24px 18px 26px;
}

.homepageContactCopy {
    position: relative;
    z-index: 2;
    min-width: 0;
}

.homepageContactEyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 8px;
    color: rgba(248, 251, 255, 0.96);
    font-size: clamp(18px, 1.32vw, 22px);
    font-weight: 850;
    line-height: 1;
    letter-spacing: 0;
}

.homepageContactBadge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, #0c89ff 0%, #0966f2 100%);
    box-shadow: 0 10px 24px rgba(5, 113, 245, 0.38);
}

.homepageContactText {
    max-width: 220px;
    margin: 0;
    color: rgba(211, 217, 230, 0.76);
    font-size: clamp(14px, 1.05vw, 18px);
    font-weight: 600;
    line-height: 1.28;
    letter-spacing: 0;
}

.homepageContactSupportMail {
    display: inline-flex;
    margin-top: 7px;
    color: rgba(248, 251, 255, 0.94);
    text-decoration: none;
    font-size: clamp(13px, 0.92vw, 15px);
    font-weight: 780;
    line-height: 1.15;
    letter-spacing: 0;
    overflow-wrap: anywhere;
}

.homepageContactSupportMail:hover,
.homepageContactSupportMail:focus-visible {
    color: #ffffff;
    text-decoration: none;
}

.homepageContactVisual {
    position: relative;
    align-self: stretch;
    min-height: 104px;
    z-index: 1;
}

.homepageContactVisual::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -31px;
    width: min(236px, 126%);
    height: 122px;
    transform: translateX(-50%);
    border-radius: 999px;
    background:
        radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.18), transparent 18%),
        radial-gradient(ellipse at 50% 58%, rgba(15, 111, 255, 0.68), rgba(4, 44, 120, 0.38) 48%, transparent 72%);
    box-shadow:
        0 -28px 76px rgba(21, 113, 255, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.homepageContactAgent {
    position: absolute;
    left: 50%;
    bottom: -59px;
    width: auto;
    height: clamp(148px, 10.7vw, 168px);
    max-width: 168%;
    transform: translateX(-50%);
    object-fit: contain;
    object-position: center bottom;
    filter:
        drop-shadow(0 18px 34px rgba(0, 0, 0, 0.28))
        drop-shadow(0 -8px 22px rgba(20, 111, 255, 0.22));
    z-index: 1;
}

.homepageContactHalo {
    position: absolute;
    left: 50%;
    bottom: -17px;
    width: min(260px, 100%);
    height: 96px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: radial-gradient(ellipse at center, rgba(0, 126, 255, 0.42), transparent 68%);
    filter: blur(4px);
    z-index: -1;
}

.homepageContactCta {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 68px;
    width: 100%;
    padding: 0 24px;
    border-radius: 18px;
    color: #ffffff;
    text-decoration: none;
    font-size: clamp(17px, 1.22vw, 21px);
    font-weight: 850;
    line-height: 1.1;
    letter-spacing: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent),
        linear-gradient(135deg, #0c86ff 0%, #076cf4 100%);
    box-shadow:
        0 18px 34px rgba(5, 106, 241, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.homepageContactCta:hover,
.homepageContactCta:focus-visible {
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow:
        0 22px 42px rgba(5, 106, 241, 0.36),
        inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.homepageContactMail {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px 26px;
    text-decoration: none;
}

.homepageContactMail::before {
    background:
        radial-gradient(circle at 88% 18%, rgba(72, 129, 255, 0.14), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
}

.homepageContactMailLabel {
    margin: 0 0 8px;
    color: rgba(174, 181, 198, 0.86);
    font-size: clamp(15px, 0.98vw, 18px);
    font-weight: 650;
    line-height: 1.15;
    letter-spacing: 0;
}

.homepageContactMailAddress {
    color: rgba(249, 251, 255, 0.94);
    font-size: clamp(18px, 1.28vw, 22px);
    font-weight: 720;
    line-height: 1.15;
    letter-spacing: 0;
    overflow-wrap: anywhere;
}

.homepageContactMail:hover,
.homepageContactMail:focus-visible {
    text-decoration: none;
    border-color: rgba(70, 136, 255, 0.25);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.07),
        0 24px 56px rgba(0, 0, 0, 0.28);
}

@media (max-width: 1100px) {
    .homepageContactBandGrid {
        grid-template-columns: 1fr 1fr;
    }

    .homepageContactSupport {
        grid-column: 1 / -1;
    }
}

@media (min-width: 761px) and (max-width: 1199px) {
    body.gelirse-menu-variant-2 .homepageContactBand {
        width: calc(100% - 56px);
        margin-left: 56px;
    }
}

@media (max-width: 760px) {
    .homepageContactBand {
        margin-top: 30px;
    }

    .homepageContactBandGrid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .homepageContactSupport {
        grid-template-columns: 1fr;
        min-height: 0;
        padding: 18px 22px 22px;
    }

    .homepageContactText {
        max-width: none;
    }

    .homepageContactVisual {
        min-height: 112px;
        order: 2;
    }

    .homepageContactAgent {
        bottom: -64px;
        height: 174px;
    }

    .homepageContactAction {
        order: 3;
    }

    .homepageContactCta {
        min-height: 58px;
    }

    .homepageContactMail {
        min-height: 112px;
        padding: 22px 24px;
        border-radius: 22px;
    }
}

@media (max-width: 420px) {
    .homepageContactEyebrow {
        flex-wrap: wrap;
    }

    .homepageContactVisual::before {
        width: 220px;
    }

    .homepageContactAgent {
        height: 166px;
    }
}
