.site-chat { display: none; }

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.contact-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    background: #fff;
}
.contact-card:first-child {
    background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
}

.contact-card__title {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--text);
    margin-bottom: 14px;
}

.contact-row {
    display: flex;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--text);
}
.contact-row:last-child { border-bottom: none; }
.contact-row b { min-width: 100px; color: var(--text); flex-shrink: 0; }
.contact-row a { color: var(--accent); text-decoration: none; font-weight: 600; }
.contact-row a:hover { text-decoration: underline; }

.contact-card__note {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--text-secondary);
}

.hp-field { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

#contactForm .field { margin-bottom: 16px; }
#contactForm .field label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
}
#contactForm input:not([type="checkbox"]),
#contactForm textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 14px;
    font-family: inherit;
    color: var(--text);
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
#contactForm textarea { resize: vertical; line-height: 1.55; }
#contactForm input:not([type="checkbox"]):focus,
#contactForm textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.contact-consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 0 0 18px;
    font-size: 13px;
    color: var(--text-secondary);
    cursor: pointer;
}
.contact-consent input[type="checkbox"] {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--accent);
}
.contact-consent a { color: var(--accent); text-decoration: underline; }
.contact-consent a:hover { text-decoration: none; }

.captcha-box { margin: 0 0 16px; }
.captcha-box.is-hidden { display: none; }
.captcha-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90px;
    margin: 0 0 12px;
    padding: 6px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #f8fafc;
}
.captcha-image img { display: block; width: 220px; height: 78px; max-width: 100%; }
.captcha-answer-field { margin-bottom: 10px; }

#contactStatus.status { min-height: 20px; margin: 12px 0 0; font-size: 14px; display: block; }
#contactStatus.status.error { color: #dc2626; }
#contactStatus.status.success { color: #047857; }

.contact-submit,
.contact-captcha-refresh {
    width: 100%;
    justify-content: center;
    text-align: center;
    border: none;
    cursor: pointer;
    font-family: inherit;
}
.contact-captcha-refresh { border: 1px solid var(--border); }
.contact-submit.is-loading { opacity: 0.75; cursor: wait; }

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