.contact-section { padding: 80px 24px; background: var(--lfr-bg); }
.contact-section__inner {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.contact-section__heading { text-align: center; display: flex; flex-direction: column; gap: 12px; }
.contact-section__title {
    font-family: var(--lfr-font-display);
    font-weight: 700;
    font-size: clamp(24px, 3vw, 36px);
    color: #fff;
}
.contact-section__desc { color: var(--lfr-muted); font-size: 16px; line-height: 1.5; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form__row--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form__field { display: flex; flex-direction: column; gap: 6px; }
.contact-form__field label {
    font-family: var(--lfr-font-body);
    font-size: 13px;
    font-weight: 500;
    color: #fff;
}
.contact-form__field input,
.contact-form__field textarea {
    background: #fff;
    border: 1px solid #d6d8e3;
    border-radius: 10px;
    padding: 12px 14px;
    font-family: var(--lfr-font-body);
    font-size: 15px;
    color: #131420;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form__field input:focus,
.contact-form__field textarea:focus {
    outline: none;
    border-color: var(--lfr-pink);
    box-shadow: 0 0 0 3px rgba(255, 79, 216, 0.18);
}
.contact-form__field textarea { resize: vertical; min-height: 130px; }
.contact-form__field.is-invalid input,
.contact-form__field.is-invalid textarea { border-color: #ff4f4f; }

.contact-form__check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--lfr-muted);
    font-size: 13px;
    line-height: 1.4;
    cursor: pointer;
}
.contact-form__check input { width: 16px; height: 16px; accent-color: var(--lfr-pink); margin-top: 3px; }

.contact-form__submit { align-self: center; margin-top: 8px; min-width: 240px; }

.contact-form__thanks {
    background: var(--lfr-card);
    border: 1px solid rgba(255, 79, 216, 0.4);
    border-radius: 16px;
    padding: 36px 24px;
    text-align: center;
    color: #fff;
    font-family: var(--lfr-font-display);
    font-size: 18px;
}

@media (max-width: 600px) {
    .contact-section { padding: 56px 16px; }
    .contact-form__row--2 { grid-template-columns: 1fr; }
}
