.contact-form {
    margin-top: 28px !important;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--line, #ececf3);
    border-radius: 16px;
}
.contact-form[hidden] { display: none; }
.contact-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0 16px;
}
.contact-field {
    min-width: 0;
    margin-bottom: 18px;
}
.contact-field label {
    display: block;
    margin-bottom: 6px;
    font-family: 'Mona Sans', 'Roboto', sans-serif;
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--ink, #0c0c14);
}
.contact-input {
    display: block;
    width: 100%;
    padding: 10px 12px;
    font-family: inherit;
    font-size: 16px;
    line-height: 1.4;
    color: var(--ink, #0c0c14);
    background-color: #fff;
    border: 1px solid #d6d6e1;
    border-radius: 10px;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.contact-input:focus {
    outline: none;
    border-color: var(--brand, #1f1280);
    box-shadow: 0 0 0 3px rgba(31, 18, 128, 0.12);
}
.contact-input[aria-invalid="true"] {
    border-color: #c62828;
    box-shadow: 0 0 0 3px rgba(198, 40, 40, 0.1);
}
textarea.contact-input {
    min-height: 150px;
    resize: vertical;
    line-height: 1.55;
}
.contact-hint {
    margin-top: 6px;
    font-size: 13.5px;
    line-height: 1.45;
    color: var(--muted, #6a6a82);
}
.contact-hp {
    position: absolute !important;
    left: -9999px !important;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}
.contact-turnstile { margin-bottom: 14px; }
.contact-send {
    padding: 11px 26px;
    border: 0;
    border-radius: 999px;
    background: var(--brand, #1f1280);
    color: #fff;
    font-family: 'Mona Sans', 'Roboto', sans-serif;
    font-size: 15.5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease, opacity 0.15s ease;
}
.contact-send:hover { background: var(--brand-deep, #14094f); }
.contact-send:disabled { opacity: 0.6; cursor: default; }
.contact-status {
    min-height: 1.3em;
    margin-top: 10px;
    font-size: 14.5px;
    line-height: 1.45;
    color: var(--muted, #6a6a82);
}
.contact-status.is-error { color: #c62828; }
.contact-privacy {
    margin-top: 8px;
    font-size: 13.5px;
    line-height: 1.45;
    color: var(--muted, #6a6a82);
}
.contact-done {
    margin-top: 28px !important;
    padding: 22px 24px;
    background: var(--pale, #f5f9ff);
    border: 1px solid var(--line, #ececf3);
    border-radius: 16px;
}
.contact-done:focus { outline: none; }
.contact-done-title {
    font-family: 'Mona Sans', 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--ink, #0c0c14);
}
.contact-alt { margin-top: 22px !important; }
.contact-ads {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px 32px;
    margin-top: 40px !important;
    padding: 26px 28px;
    background: var(--pale, #f5f9ff);
    border: 1px solid var(--line, #ececf3);
    border-radius: 16px;
}
.contact-ads-text {
    min-width: 0;
    max-width: 580px;
}
.contact-ads-eyebrow {
    font-family: 'Geist Mono', monospace;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand, #1f1280);
}
.prose-body .contact-ads-title {
    margin: 6px 0 0 !important;
    font-size: 20px !important;
    line-height: 1.25;
}
.contact-ads-copy {
    margin-top: 8px;
    font-size: 15.5px;
    line-height: 1.6;
}
.contact-ads-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 10px 20px;
    border-radius: 999px;
    background: var(--brand, #1f1280);
    font-family: 'Mona Sans', 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    transition: background 0.15s ease;
}
.contact-ads-btn i { font-size: 12px; }
.prose-body a.contact-ads-btn,
.prose-body a.contact-ads-btn:hover {
    color: #fff;
    text-decoration: none;
}
.prose-body a.contact-ads-btn:hover { background: var(--brand-deep, #14094f); }
.prose-body a.contact-ads-badge {
    display: block;
    flex-shrink: 0;
    line-height: 0;
    text-decoration: none;
}
.contact-ads-badge img {
    display: block;
    width: 180px;
    height: auto;
}
@media (max-width: 575.98px) {
    .contact-form { padding: 18px 16px; }
    .contact-row { grid-template-columns: minmax(0, 1fr); }
    .contact-send { width: 100%; }
    .contact-ads {
        flex-direction: column;
        align-items: flex-start;
        padding: 22px 18px;
    }
    .contact-ads-badge img { width: 150px; }
}
@media (prefers-reduced-motion: reduce) {
    .contact-input,
    .contact-send { transition: none; }
}
