/* GEXYRAL contact page — scoped single-page stylesheet */
body.gx-contact-page {
    background: #eef4fb;
}

body.gx-contact-page .gx-contact {
    color: #0f172a;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 4%, rgba(37, 99, 235, .14), transparent 30%),
        radial-gradient(circle at 88% 10%, rgba(20, 184, 166, .13), transparent 28%),
        linear-gradient(180deg, #eef4fb 0%, #f8fbff 42%, #ffffff 100%);
}

body.gx-contact-page .gx-contact h1,
body.gx-contact-page .gx-contact h2,
body.gx-contact-page .gx-contact h3,
body.gx-contact-page .gx-contact p {
    margin-top: 0;
}

body.gx-contact-page .gx-contact h1 {
    font-size: clamp(2.45rem, 5.3vw, 5.45rem) !important;
    line-height: .96 !important;
    letter-spacing: -.08em !important;
    color: #0f172a !important;
    max-width: 880px;
    margin-bottom: 24px;
}

body.gx-contact-page .gx-contact h2 {
    font-size: clamp(1.72rem, 3vw, 2.95rem) !important;
    line-height: 1.08 !important;
    letter-spacing: -.055em !important;
    color: #0f172a !important;
    margin-bottom: 14px;
}

body.gx-contact-page .gx-contact h3 {
    font-size: 1.06rem !important;
    line-height: 1.35 !important;
    letter-spacing: -.025em !important;
    color: #0f172a !important;
    margin-bottom: 10px;
}

body.gx-contact-page .gx-contact p,
body.gx-contact-page .gx-contact li {
    color: #475569;
    line-height: 1.86;
    font-size: 1rem;
}

.gx-contact-hero {
    padding: 86px 0 52px;
}

.gx-contact-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .58fr);
    gap: 34px;
    align-items: stretch;
}

.gx-contact-hero__copy {
    min-height: 540px;
    border-radius: 40px;
    padding: clamp(34px, 5vw, 64px);
    background: rgba(255,255,255,.74);
    border: 1px solid rgba(148,163,184,.24);
    box-shadow: 0 24px 80px rgba(15, 23, 42, .09);
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.gx-contact-hero__copy:before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: linear-gradient(90deg, #2563eb, #14b8a6, #0f172a);
    z-index: -1;
}

.gx-contact-eyebrow,
.gx-contact-section__head span,
.gx-contact-cta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #2563eb;
}

.gx-contact-eyebrow:before,
.gx-contact-section__head span:before,
.gx-contact-cta span:before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #14b8a6;
    box-shadow: 0 0 0 7px rgba(20,184,166,.12);
}

.gx-contact-hero__copy > p {
    max-width: 780px;
    font-size: 1.08rem;
    line-height: 1.9;
    margin-bottom: 28px;
}

.gx-contact-hero__actions,
.gx-contact-cta__actions,
.gx-contact-ticket-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin: 30px 0 24px;
}

.gx-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    font-weight: 850;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.gx-contact-btn:hover {
    transform: translateY(-2px);
}

.gx-contact-btn--primary {
    color: #fff !important;
    background: linear-gradient(135deg, #2563eb, #0f172a);
    box-shadow: 0 18px 36px rgba(37, 99, 235, .25);
}

.gx-contact-btn--light {
    color: #0f172a !important;
    background: #fff;
    border-color: rgba(148,163,184,.35);
    box-shadow: 0 12px 32px rgba(15, 23, 42, .08);
}

.gx-contact-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.gx-contact-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 13px;
    border-radius: 999px;
    background: #f1f5f9;
    border: 1px solid rgba(148,163,184,.26);
    color: #334155;
    font-size: .86rem;
    font-weight: 800;
}

.gx-contact-hero__card,
.gx-contact-panel,
.gx-contact-scope-card,
.gx-contact-flow article,
.gx-contact-boundary,
.gx-contact-cta {
    border: 1px solid rgba(148,163,184,.24);
    background: rgba(255,255,255,.84);
    box-shadow: 0 24px 70px rgba(15, 23, 42, .08);
}

.gx-contact-hero__card {
    border-radius: 36px;
    padding: 34px;
    min-height: 540px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gx-contact-card-label {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 16px;
    color: #2563eb;
    background: rgba(37, 99, 235, .08);
    border: 1px solid rgba(37, 99, 235, .12);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: .82rem;
    font-weight: 900;
}

.gx-contact-hero__card ul {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    display: grid;
    gap: 14px;
}

.gx-contact-hero__card li {
    position: relative;
    padding-left: 30px;
}

.gx-contact-hero__card li:before,
.gx-contact-flow article p:before {
    content: "";
    position: absolute;
    left: 0;
    top: .68em;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #14b8a6;
    box-shadow: 0 0 0 6px rgba(20,184,166,.12);
}

.gx-contact-section {
    padding: 70px 0;
}

.gx-contact-section--support {
    padding-top: 36px;
}

.gx-contact-section--soft {
    background: linear-gradient(180deg, rgba(241, 245, 249, .72), rgba(255,255,255,.82));
}

.gx-contact-section__head {
    max-width: 820px;
    margin-bottom: 32px;
}

.gx-contact-section__head--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.gx-contact-section__head--center span {
    justify-content: center;
}

.gx-contact-scope-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.gx-contact-scope-card {
    border-radius: 28px;
    padding: 26px;
    min-height: 270px;
    position: relative;
    overflow: hidden;
}

.gx-contact-scope-card:before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #14b8a6);
}

.gx-contact-scope-card b {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 18px;
    margin-bottom: 24px;
    color: #2563eb;
    background: #eff6ff;
    font-size: .9rem;
}

.gx-contact-two-col {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    gap: 22px;
}

.gx-contact-two-col--support {
    align-items: stretch;
}

.gx-contact-panel {
    border-radius: 32px;
    padding: clamp(26px, 4vw, 42px);
}

.gx-contact-panel--dark {
    color: #fff !important;
    background:
        radial-gradient(circle at 100% 0%, rgba(20,184,166,.28), transparent 36%),
        linear-gradient(135deg, #0f172a, #13283a 64%, #0f3f45);
    overflow: hidden;
}

body.gx-contact-page .gx-contact .gx-contact-panel--dark h2,
body.gx-contact-page .gx-contact .gx-contact-panel--dark h3,
body.gx-contact-page .gx-contact .gx-contact-panel--dark p,
body.gx-contact-page .gx-contact .gx-contact-panel--dark li,
body.gx-contact-page .gx-contact .gx-contact-panel--dark .gx-contact-note {
    color: rgba(248,250,252,.94) !important;
}

body.gx-contact-page .gx-contact .gx-contact-panel--dark h2 {
    color: #ffffff !important;
    text-shadow: 0 2px 18px rgba(0,0,0,.16);
}

body.gx-contact-page .gx-contact .gx-contact-panel--dark .gx-contact-card-label {
    color: #93c5fd !important;
    background: rgba(37,99,235,.20);
    border-color: rgba(147,197,253,.24);
}

.gx-contact-ticket-panel {
    min-height: 460px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gx-contact-ticket-link {
    color: #dbeafe !important;
    font-weight: 850;
    text-decoration: none;
    border-bottom: 1px solid rgba(219,234,254,.48);
}

.gx-contact-note {
    border-top: 1px solid rgba(226,232,240,.18);
    margin-top: 22px;
    padding-top: 18px;
    line-height: 1.85;
}

.gx-contact-channel-panel {
    min-height: 460px;
}

.gx-contact-mail-table {
    margin-top: 22px;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(148,163,184,.22);
    background: #fff;
}

.gx-contact-mail-row {
    display: grid;
    grid-template-columns: minmax(120px, .62fr) minmax(0, 1.38fr);
    gap: 18px;
    align-items: center;
    padding: 15px 18px;
    color: #0f172a;
    text-decoration: none;
    border-bottom: 1px solid rgba(148,163,184,.18);
    transition: background .16s ease, transform .16s ease;
}

.gx-contact-mail-row:last-child {
    border-bottom: 0;
}

.gx-contact-mail-row:not(.gx-contact-mail-row--head):hover {
    background: #f8fafc;
}

.gx-contact-mail-row--head {
    background: #f1f5f9;
    color: #64748b;
    font-size: .86rem;
    font-weight: 900;
}

.gx-contact-mail-row span {
    color: #0f172a;
    font-weight: 760;
}

.gx-contact-mail-row strong {
    color: #0f172a;
    font-size: 1rem;
    font-weight: 800;
    word-break: break-word;
}

.gx-contact-flow {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.gx-contact-flow article {
    border-radius: 28px;
    padding: 26px;
    background: #fff;
}

.gx-contact-flow article span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    margin-bottom: 20px;
    color: #fff;
    background: linear-gradient(135deg, #2563eb, #14b8a6);
    font-weight: 900;
}

.gx-contact-flow article p {
    position: relative;
    padding-left: 0;
    margin-bottom: 0;
}

.gx-contact-flow article p:before {
    display: none;
}

.gx-contact-section--boundary {
    padding-top: 48px;
}

.gx-contact-boundary {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    gap: 28px;
    align-items: center;
    border-radius: 34px;
    padding: clamp(28px, 4vw, 46px);
    background: #fff7ed;
    border-color: rgba(251, 146, 60, .22);
}

.gx-contact-boundary p {
    margin-bottom: 0;
}

.gx-contact-section--cta {
    padding-top: 40px;
    padding-bottom: 88px;
}

.gx-contact-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 30px;
    align-items: center;
    border-radius: 38px;
    padding: clamp(30px, 5vw, 56px);
    background: linear-gradient(135deg, #ffffff, #eff6ff);
}

.gx-contact-cta p {
    max-width: 760px;
    margin-bottom: 0;
}

@media (max-width: 1100px) {
    .gx-contact-hero__grid,
    .gx-contact-two-col,
    .gx-contact-boundary,
    .gx-contact-cta {
        grid-template-columns: 1fr;
    }

    .gx-contact-hero__copy,
    .gx-contact-hero__card,
    .gx-contact-ticket-panel,
    .gx-contact-channel-panel {
        min-height: auto;
    }

    .gx-contact-scope-grid,
    .gx-contact-flow {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gx-contact-cta__actions {
        margin-bottom: 0;
    }
}

@media (max-width: 680px) {
    .gx-contact-hero {
        padding: 44px 0 34px;
    }

    body.gx-contact-page .gx-contact h1 {
        font-size: clamp(2.18rem, 11vw, 3.5rem) !important;
        letter-spacing: -.07em !important;
    }

    body.gx-contact-page .gx-contact h2 {
        font-size: clamp(1.55rem, 8vw, 2.25rem) !important;
    }

    .gx-contact-hero__copy,
    .gx-contact-hero__card,
    .gx-contact-panel,
    .gx-contact-boundary,
    .gx-contact-cta {
        border-radius: 26px;
        padding: 24px;
    }

    .gx-contact-scope-grid,
    .gx-contact-flow {
        grid-template-columns: 1fr;
    }

    .gx-contact-section {
        padding: 48px 0;
    }

    .gx-contact-hero__actions,
    .gx-contact-cta__actions,
    .gx-contact-ticket-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .gx-contact-btn {
        width: 100%;
    }

    .gx-contact-mail-row {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 14px 16px;
    }

    .gx-contact-mail-row--head {
        display: none;
    }
}
