.contact-public-card {
    max-width: 920px;
    margin: 34px auto 0;
    padding: 30px;
    border: 1px solid rgba(0, 245, 160, 0.22);
    border-radius: 22px;
    background:
        linear-gradient(
            145deg,
            rgba(8, 24, 29, 0.96),
            rgba(3, 11, 15, 0.96)
        );
    box-shadow:
        0 22px 60px rgba(0, 0, 0, 0.28);
}

.contact-public-form {
    display: grid;
    gap: 20px;
}

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

.contact-field {
    display: grid;
    gap: 8px;
}

.contact-field.is-full {
    grid-column: 1 / -1;
}

.contact-field label {
    color: #dffcf2;
    font-weight: 700;
    font-size: 0.92rem;
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 11px;
    padding: 13px 14px;
    color: #ffffff;
    background: rgba(1, 8, 11, 0.8);
    font: inherit;
    outline: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.contact-field textarea {
    min-height: 160px;
    resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
    border-color: #00f5a0;
    box-shadow: 0 0 0 3px rgba(0, 245, 160, 0.12);
}

.contact-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #b9cbc6;
    font-size: 0.88rem;
    line-height: 1.5;
}

.contact-consent input {
    margin-top: 4px;
}

.contact-consent a {
    color: #00f5a0;
}

.contact-submit {
    min-height: 48px;
    border: 0;
    border-radius: 11px;
    padding: 13px 22px;
    color: #00170f;
    background:
        linear-gradient(
            90deg,
            #00f5a0,
            #58efbd
        );
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.contact-submit:hover {
    filter: brightness(1.07);
}

.contact-submit:disabled {
    cursor: wait;
    opacity: 0.7;
}

.contact-status {
    display: none;
    border-radius: 10px;
    padding: 13px 15px;
    line-height: 1.45;
}

.contact-status.is-success,
.contact-status.is-error {
    display: block;
}

.contact-status.is-success {
    color: #bfffe9;
    border: 1px solid rgba(0, 245, 160, 0.35);
    background: rgba(0, 245, 160, 0.09);
}

.contact-status.is-error {
    color: #ffd5d5;
    border: 1px solid rgba(255, 90, 90, 0.35);
    background: rgba(255, 90, 90, 0.09);
}

.contact-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

@media (max-width: 720px) {
    .contact-public-card {
        padding: 20px;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
    }
}
