.contact-hero {
    width: min(1000px, calc(100% - 40px));
    margin: 0 auto;
    padding: 96px 0 72px;
    text-align: center;
}

.contact-hero__eyebrow,
.contact-guidance__eyebrow,
.contact-response__eyebrow,
.contact-cta__eyebrow {
    margin: 0 0 12px;
    color: var(--blue);
    font-size: 17px;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: -0.035em;
}

.contact-hero h1 {
    max-width: 920px;
    margin: 0 auto;
    color: var(--black);
    font-size: clamp(44px, 6vw, 72px);
    line-height: 1.01;
    font-weight: 600;
    letter-spacing: -0.055em;
}

.contact-hero__lead {
    max-width: 760px;
    margin: 28px auto 0;
    color: var(--gray);
    font-size: clamp(20px, 2.2vw, 25px);
    line-height: 1.35;
    letter-spacing: -0.04em;
}

.contact-cta__actions {
    margin-top: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.contact-channels {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto 18px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.contact-channel {
    position: relative;
    min-width: 0;
    min-height: 320px;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.055);
    border-radius: 32px;
    color: var(--black);
    background: var(--white);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.035);
    display: flex;
    flex-direction: column;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

a.contact-channel:hover,
a.contact-channel:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.08);
    outline: none;
}

.contact-channel--primary {
    color: var(--white);
    border-color: transparent;
    background:
        radial-gradient(circle at 100% 110%, rgba(0, 113, 227, 0.55), transparent 48%),
        linear-gradient(150deg, #242426 0%, #070708 100%);
}

.contact-channel__content {
    display: block;
}

.contact-channel__label {
    margin-bottom: 10px;
    color: var(--blue);
    display: block;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: -0.025em;
}

.contact-channel--primary .contact-channel__label {
    color: #68adff;
}

.contact-channel__content strong {
    color: inherit;
    display: block;
    overflow-wrap: anywhere;
    font-size: clamp(23px, 2vw, 30px);
    line-height: 1.08;
    font-weight: 600;
    letter-spacing: -0.045em;
}

.contact-channel__content > span:last-child {
    margin-top: 14px;
    color: var(--gray);
    display: block;
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: -0.025em;
}

.contact-channel--primary .contact-channel__content > span:last-child {
    color: rgba(255, 255, 255, 0.66);
}

.contact-guidance {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto 18px;
    padding: clamp(34px, 5vw, 62px);
    border-radius: 34px;
    background: var(--white);
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: clamp(38px, 6vw, 86px);
}

.contact-guidance__heading h2,
.contact-response h2,
.contact-cta h2 {
    margin: 0;
    color: var(--black);
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.05;
    font-weight: 600;
    letter-spacing: -0.05em;
}

.contact-guidance__heading > p:last-child {
    margin: 24px 0 0;
    color: var(--gray);
    font-size: 17px;
    line-height: 1.5;
    letter-spacing: -0.03em;
}

.contact-guidance__list article {
    padding: 27px 0;
    border-bottom: 1px solid var(--gray-light);
}

.contact-guidance__list article:first-child {
    padding-top: 0;
}

.contact-guidance__list article:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.contact-guidance__list article > span {
    color: var(--blue);
    font-size: 13px;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.contact-guidance__list h3 {
    margin: 8px 0 10px;
    color: var(--black);
    font-size: 25px;
    line-height: 1.12;
    font-weight: 600;
    letter-spacing: -0.04em;
}

.contact-guidance__list p {
    margin: 0;
    color: var(--gray);
    font-size: 16px;
    line-height: 1.48;
    letter-spacing: -0.025em;
}

.contact-guidance__list a {
    margin-top: 14px;
    color: var(--blue);
    display: inline-block;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 600;
    letter-spacing: -0.025em;
}

.contact-guidance__list a::after {
    content: ' ›';
}

.contact-guidance__list a:hover,
.contact-guidance__list a:focus-visible {
    text-decoration: underline;
    outline: none;
}

.contact-response {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto 18px;
    padding: clamp(38px, 5vw, 62px);
    border-radius: 34px;
    color: var(--white);
    background:
        radial-gradient(circle at 12% 130%, rgba(0, 113, 227, 0.42), transparent 42%),
        linear-gradient(145deg, #1d1d1f 0%, #050506 100%);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(36px, 7vw, 100px);
    align-items: end;
}

.contact-response h2 {
    color: var(--white);
}

.contact-response__eyebrow {
    color: #68adff;
}

.contact-response__text p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    line-height: 1.55;
    letter-spacing: -0.03em;
}

.contact-response__text p + p {
    margin-top: 18px;
}

.contact-response__text a {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.contact-response__text a:hover,
.contact-response__text a:focus-visible {
    color: #c7e0ff;
    outline: none;
}

.contact-cta {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto 96px;
    padding: clamp(48px, 7vw, 84px) 30px;
    border-radius: 34px;
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, #f9f9fb 100%);
}

.contact-cta h2 {
    max-width: 760px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .contact-channels {
        grid-template-columns: 1fr;
    }

    .contact-channel {
        min-height: 250px;
    }

    .contact-guidance,
    .contact-response {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .contact-hero {
        width: min(100% - 28px, 1000px);
        padding: 68px 0 52px;
        text-align: left;
    }

    .contact-hero h1 {
        font-size: 43px;
    }

    .contact-hero__lead {
        margin-left: 0;
        font-size: 20px;
    }

    .contact-cta__actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .contact-channels,
    .contact-guidance,
    .contact-response,
    .contact-cta {
        width: min(100% - 28px, 1180px);
    }

    .contact-channel {
        min-height: 240px;
        padding: 25px;
        border-radius: 26px;
    }

    .contact-guidance,
    .contact-response {
        padding: 30px 23px;
        border-radius: 27px;
    }

    .contact-guidance__heading h2,
    .contact-response h2,
    .contact-cta h2 {
        font-size: 34px;
    }

    .contact-cta {
        margin-bottom: 64px;
        padding: 48px 22px;
        border-radius: 27px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .contact-channel {
        transition: none;
    }
}
