.comph-contact-page {
    padding-bottom: 64px;
}
.comph-contact-page .page-intro {
    max-width: 720px;
    margin: 36px auto 32px;
    text-align: center;
    padding: 0;
    color: var(--navy-soft);
    font-size: 1.05rem;
    line-height: 1.7;
}
.comph-trust-bar {
    background: var(--surface);
    border: 2px solid var(--border-soft);
    border-radius: 14px;
    padding: 24px 28px;
    margin-bottom: 28px;
}
.comph-trust-bar h2 {
    font-size: 1.4rem;
    margin: 0 0 8px;
    color: var(--navy);
}
.comph-trust-bar p {
    color: var(--navy-soft);
    margin: 0 0 14px;
    line-height: 1.65;
}
.comph-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.comph-trust-grid li {
    background: var(--bg);
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    padding: 14px;
    color: var(--navy-soft);
    line-height: 1.5;
}
.comph-trust-grid li strong {
    color: var(--navy);
}
.comph-section { padding: 0; }
.comph-section .row { row-gap: 24px; }
.comph-card {
    background: var(--surface);
    border: 2px solid var(--border-soft);
    border-radius: 14px;
    padding: 28px;
    height: 100%;
}
.comph-card h2 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--navy);
}
.comph-muted { color: var(--navy-soft); }
.comph-list {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}
.comph-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-soft);
    color: var(--navy-soft);
}
.comph-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.comph-kicker {
    font-weight: 600;
    color: var(--navy);
    min-width: 110px;
}
.comph-alerts { margin-bottom: 16px; }
.comph-alert {
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 10px;
    border: 1px solid transparent;
    font-weight: 500;
}
.comph-alert-success {
    background: #ecfdf5;
    border-color: #6ee7b7;
    color: #065f46;
}
.comph-alert-error, .comph-alert-danger {
    background: #fef2f2;
    border-color: #fca5a5;
    color: #991b1b;
}
.comph-form { margin-top: 12px; }
.comph-field { margin-bottom: 16px; }
.comph-label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--navy);
}
.comph-hint {
    display: block;
    margin-top: 6px;
    color: var(--navy-soft);
    font-size: 0.92rem;
}
.comph-card .form-control,
.comph-card input[type="text"],
.comph-card input[type="email"],
.comph-card select,
.comph-card textarea {
    width: 100%;
    border: 2px solid var(--border-soft) !important;
    border-bottom-color: var(--border-soft) !important;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 1rem;
    background: var(--surface) !important;
    color: var(--navy) !important;
}
.comph-card .form-control:focus,
.comph-card input:focus,
.comph-card select:focus,
.comph-card textarea:focus {
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 3px rgba(137,104,49,0.15);
    outline: none;
}
.comph-card textarea { min-height: 140px; resize: vertical; }
.comph-error { margin-top: 6px; color: #dc2626; font-weight: 600; }
.comph-captcha-wrap img {
    display: block;
    margin-bottom: 8px;
    max-width: 100%;
    height: auto;
}
.comph-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 8px;
}
.comph-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    padding: 12px 24px;
    font-weight: 700;
    cursor: pointer;
}
.comph-btn-primary {
    background: var(--accent-strong);
    color: #fff;
}
.comph-btn-primary:hover { background: var(--navy); color: #fff; }
.comph-footnote { color: var(--navy-soft); font-size: 0.92rem; }
.comph-contact-page a[href^="mailto:"] {
    color: var(--accent) !important;
    font-weight: 600;
    text-decoration: underline;
}
@media (max-width: 991.98px) {
    .comph-card { padding: 24px; }
    .comph-trust-bar { padding: 20px; }
    .comph-trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575.98px) {
    .comph-card { padding: 18px; border-radius: 12px; }
    .comph-trust-bar { padding: 16px; border-radius: 12px; }
    .comph-trust-grid { grid-template-columns: 1fr; }
}
