.pol-contact {
    background: var(--pol-bg);
    padding: 80px 0;
}

.pol-contact__head {
    text-align: center;
    margin-bottom: 40px;
}

.pol-contact__title {
    font-size: clamp(32px, 4vw, 48px);
    margin: 0 0 12px;
    color: #fff;
}

.pol-contact__subtitle {
    color: var(--pol-text-soft);
    font-size: 16px;
    margin: 0;
}

.pol-contact__form {
    max-width: 560px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.pol-contact__form[hidden] {
    display: none;
}

.pol-contact__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.pol-contact__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pol-contact__field label {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

.pol-contact__field input,
.pol-contact__field textarea {
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 12px 14px;
    font-size: 14px;
    color: #1B1B1B;
    font-family: inherit;
    width: 100%;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pol-contact__field input:focus,
.pol-contact__field textarea:focus {
    outline: 0;
    border-color: var(--pol-orange);
    box-shadow: 0 0 0 3px rgba(255, 191, 0, 0.2);
}

.pol-contact__field.is-error input,
.pol-contact__field.is-error textarea {
    border-color: #ff5252;
    box-shadow: 0 0 0 3px rgba(255, 82, 82, 0.2);
}

.pol-contact__field textarea {
    resize: vertical;
    min-height: 120px;
}

.pol-contact__consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--pol-text-soft);
    font-size: 13px;
    cursor: pointer;
}

.pol-contact__consent input {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid var(--pol-orange);
    border-radius: 3px;
    background: transparent;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.pol-contact__consent input:checked {
    background: var(--pol-orange);
}

.pol-contact__consent input:checked::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 0px;
    width: 5px;
    height: 10px;
    border: solid #1B1B1B;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.pol-contact__consent.is-error span {
    color: #ff5252;
}

.pol-contact__submit {
    margin-top: 8px;
    width: 100%;
}

.pol-contact__thanks {
    max-width: 560px;
    margin: 0 auto;
    background: var(--pol-card-bg);
    border-radius: 14px;
    padding: 40px;
    text-align: center;
}

.pol-contact__thanks h3 {
    color: var(--pol-orange);
    font-size: 26px;
    margin: 0 0 12px;
}

.pol-contact__thanks p {
    color: var(--pol-text-muted);
    margin: 0;
}

@media (max-width: 480px) {
    .pol-contact__row {
        grid-template-columns: 1fr;
    }
    .pol-contact {
        padding: 56px 0;
    }
}
