.dns-page {
    background: #d9d5bf;
}

.dns-card {
    width: min(980px, 100%);
    margin: 0 auto;
}

.dns-title {
    font-size: clamp(44px, 6vw, 78px);
    line-height: 1.04;
    margin: 0 0 16px;
    color: #1b1b1f;
    text-transform: uppercase;
}

.dns-lead {
    margin: 0 0 26px;
    color: #3a3a3f;
}

.dns-form .dns-field {
    margin-bottom: 18px;
}

.dns-form label {
    display: block;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #2d2d30;
    margin-bottom: 8px;
}

.dns-form label span {
    opacity: 0.75;
}

.dns-form input,
.dns-form textarea,
.dns-form select {
    width: 100%;
    border: 1px solid #bdb9a4;
    background: #c8c4b1;
    color: #1d1d20;
    border-radius: 6px;
    padding: 12px 14px;
    font-size: 16px;
    line-height: 1.4;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.dns-form textarea {
    min-height: 160px;
    resize: vertical;
}

.dns-form input:focus,
.dns-form textarea:focus,
.dns-form select:focus {
    outline: none;
    border-color: #ff5f1f;
    box-shadow: 0 0 0 3px rgba(255, 95, 31, 0.18);
    background: #d0ccb8;
}

.dns-honeypot {
    position: absolute;
    left: -99999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.dns-submit {
    display: flex;
    justify-content: flex-end;
}

#formFeedback.cpm-form-feedback {
    display: none;
    border-radius: 8px;
    padding: 10px 12px;
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.4;
    border: 1px solid transparent;
}

#formFeedback.cpm-form-feedback.is-success {
    display: block;
    background: #ecfdf3;
    color: #14532d;
    border-color: #86efac;
}

#formFeedback.cpm-form-feedback.is-error {
    display: block;
    background: #fef2f2;
    color: #991b1b;
    border-color: #fca5a5;
}

@media (max-width: 991px) {
    .dns-title {
        font-size: clamp(34px, 8vw, 52px);
    }

    .dns-submit {
        justify-content: flex-start;
    }
}
