.web-contact-page {
    display: grid;
    gap: 1.5rem;
}

.web-contact-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(280px, 0.95fr);
    gap: 1.25rem;
    padding: 1.5rem;
    border: 1px solid rgba(126, 166, 212, 0.18);
    border-radius: 1.25rem;
    background:
        radial-gradient(circle at top left, rgba(120, 177, 148, 0.24), transparent 42%),
        linear-gradient(160deg, rgba(12, 24, 44, 0.96), rgba(8, 16, 31, 0.98));
    box-shadow: 0 24px 60px rgba(5, 13, 25, 0.22);
}

.web-contact-hero__eyebrow,
.web-contact-panel__eyebrow {
    display: inline-flex;
    margin-bottom: 0.7rem;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #8fd8bf;
}

.web-contact-hero__copy h1,
.web-contact-panel__header h2 {
    margin: 0;
    color: #f5f8fc;
}

.web-contact-hero__copy h1 {
    margin-bottom: 0.75rem;
    font-size: clamp(2rem, 4vw, 2.85rem);
    line-height: 1.05;
}

.web-contact-hero__copy p,
.web-contact-panel__header p,
.web-contact-info-card p,
.web-contact-captcha-question {
    margin: 0;
    color: rgba(228, 237, 248, 0.82);
    line-height: 1.65;
}

.web-contact-hero__metrics {
    display: grid;
    gap: 0.9rem;
    align-content: start;
}

.web-contact-hero__metric,
.web-contact-info-card,
.web-contact-action,
.web-contact-panel {
    border: 1px solid rgba(126, 166, 212, 0.16);
    border-radius: 1rem;
}

.web-contact-hero__metric {
    padding: 1rem 1.1rem;
    background: rgba(9, 18, 34, 0.72);
}

.web-contact-hero__metric span,
.web-contact-info-card span,
.web-contact-action span {
    display: block;
    margin-bottom: 0.3rem;
    color: rgba(183, 205, 232, 0.78);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.web-contact-hero__metric strong,
.web-contact-info-card strong,
.web-contact-action strong {
    color: #f5f8fc;
    font-size: 1.2rem;
}

.web-contact-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.15fr);
    gap: 1.25rem;
    align-items: start;
}

.web-contact-panel {
    padding: 1.35rem;
    background: linear-gradient(180deg, rgba(13, 25, 46, 0.96), rgba(10, 20, 38, 0.98));
    box-shadow: 0 18px 40px rgba(6, 12, 24, 0.16);
}

.web-contact-panel__header {
    margin-bottom: 1rem;
}

.web-contact-panel__header h2 {
    margin-bottom: 0.4rem;
    font-size: 1.55rem;
}

.web-contact-actions,
.web-contact-info-grid,
.web-contact-form {
    display: grid;
    gap: 0.9rem;
}

.web-contact-action {
    display: block;
    padding: 1rem 1.1rem;
    text-decoration: none;
    background: rgba(7, 14, 27, 0.65);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.web-contact-action:hover,
.web-contact-action:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(143, 216, 191, 0.42);
    background: rgba(10, 20, 37, 0.82);
}

.web-contact-action--primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    width: fit-content;
    min-height: 38px;
    padding: 0 12px;
    border-color: rgba(57, 181, 74, 0.48);
    background: linear-gradient(180deg, #4aa84f 0%, #38973d 100%);
    box-shadow: 0 0.8rem 1.8rem rgba(56, 151, 61, 0.22);
}

.web-contact-action--primary span,
.web-contact-action--primary strong {
    display: inline;
    margin-bottom: 0;
    color: #111111;
}

.web-contact-action--primary:hover,
.web-contact-action--primary:focus-visible {
    border-color: rgba(57, 181, 74, 0.48);
    background: linear-gradient(180deg, #72cb73 0%, #39B54A 100%);
    box-shadow: 0 1rem 2.2rem rgba(57, 181, 74, 0.28);
}

.web-contact-info-grid {
    margin-top: 1.1rem;
}

.web-contact-info-card {
    padding: 1rem 1.1rem;
    background: rgba(7, 14, 27, 0.56);
}

.web-contact-field {
    display: grid;
    gap: 0.45rem;
}

.web-contact-field span,
.web-contact-field label span {
    color: #dbe8f8;
    font-size: 1.2rem;
    font-weight: 600;
}

.web-contact-field input,
.web-contact-field textarea {
    width: 100%;
    min-height: 3rem;
    padding: 0.8rem 0.95rem;
    border: 1px solid rgba(129, 163, 205, 0.2);
    border-radius: 0.85rem;
    background: rgba(6, 13, 25, 0.74);
    color: #f7fbff;
    font-size: 1rem;
    box-sizing: border-box;
}

.web-contact-field textarea {
    min-height: 10rem;
    resize: vertical;
}

.web-contact-field input:focus,
.web-contact-field textarea:focus {
    outline: none;
    border-color: rgba(144, 197, 255, 0.58);
    box-shadow: 0 0 0 3px rgba(98, 155, 219, 0.18);
}

.web-contact-field--captcha {
    padding: 1rem 1rem 1.1rem;
    border-radius: 0.95rem;
    background: rgba(7, 14, 27, 0.56);
    border: 1px solid rgba(126, 166, 212, 0.16);
}

.web-contact-captcha-header {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    align-items: center;
    margin-bottom: 0.45rem;
}

.web-contact-captcha-refresh {
    min-height: 2.4rem;
    padding: 0.55rem 0.85rem;
    border: 1px solid rgba(128, 171, 221, 0.22);
    border-radius: 0.75rem;
    background: rgba(17, 32, 56, 0.92);
    color: #eff6ff;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
}

.web-contact-captcha-refresh:hover,
.web-contact-captcha-refresh:focus-visible {
    outline: none;
    border-color: rgba(143, 216, 191, 0.42);
    background: rgba(23, 43, 72, 0.94);
}

.web-contact-captcha-question {
    margin-bottom: 0.8rem;
}

.web-contact-captcha-help {
    margin: 0.7rem 0 0;
    color: rgba(183, 205, 232, 0.78);
    font-size: 0.88rem;
}

.web-contact-turnstile-shell {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    min-height: 66px;
    padding: 0.2rem 0;
}

.web-contact-turnstile-shell .cf-turnstile {
    width: 100%;
}

.web-contact-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.web-contact-error-message {
    min-height: 1.25rem;
    color: #ffb2b2;
    font-weight: 600;
}

.web-contact-actions-row {
    display: flex;
    justify-content: flex-start;
}

.web-contact-submit {
    min-height: 38px;
    padding: 0 12px;
    border: 1px solid rgba(57, 181, 74, 0.48);
    border-radius: 10px;
    background: linear-gradient(180deg, #4aa84f 0%, #38973d 100%);
    color: #111111;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    box-shadow: 0 0.8rem 1.8rem rgba(56, 151, 61, 0.22);
}

.web-contact-submit:hover,
.web-contact-submit:focus-visible {
    background: linear-gradient(180deg, #72cb73 0%, #39B54A 100%);
    color: #111111;
    box-shadow: 0 1rem 2.2rem rgba(57, 181, 74, 0.28);
    outline: none;
}

.web-contact-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (max-width: 1120px) {
    .web-contact-hero,
    .web-contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .web-contact-hero,
    .web-contact-panel {
        padding: 1.1rem;
    }

    .web-contact-captcha-header {
        align-items: stretch;
        flex-direction: column;
    }

    .web-contact-actions-row,
    .web-contact-submit {
        width: 100%;
    }
}