.pcp-scf-wrap {
    background: #fff;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 18px 50px rgba(0,0,0,.08);
    max-width: 920px;
    margin: 0 auto;
}
.pcp-scf-head h3 {
    margin: 0 0 8px;
    font-size: 28px;
    line-height: 1.2;
}
.pcp-scf-head p {
    margin: 0 0 22px;
    color: #555;
}
.pcp-scf-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.pcp-scf-form label {
    display: block;
    margin-bottom: 16px;
    font-weight: 600;
    color: #222;
}
.pcp-scf-form label span {
    display: block;
    margin-bottom: 7px;
}
.pcp-scf-form input[type="text"],
.pcp-scf-form input[type="email"],
.pcp-scf-form input[type="tel"],
.pcp-scf-form select,
.pcp-scf-form textarea {
    width: 100%;
    border: 1px solid #e5e2d9;
    border-radius: 10px;
    padding: 13px 14px;
    background: #fafafa;
    color: #111;
    font-weight: 400;
    outline: none;
    box-sizing: border-box;
}
.pcp-scf-form input:focus,
.pcp-scf-form select:focus,
.pcp-scf-form textarea:focus {
    border-color: #cfb46b;
    background: #fff;
}
.pcp-scf-consent {
    display: flex !important;
    gap: 10px;
    align-items: flex-start;
    font-weight: 400 !important;
}
.pcp-scf-consent input {
    margin-top: 4px;
}
.pcp-scf-consent span {
    margin: 0 !important;
}
.pcp-scf-submit {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 48px;
    padding: 13px 26px;
    border: 0;
    border-radius: 10px;
    background: #cdb56c;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}
.pcp-scf-submit:hover {
    opacity: .92;
}
.pcp-scf-alert {
    padding: 12px 14px;
    border-radius: 10px;
    margin: 0 0 18px;
}
.pcp-scf-success {
    background: #ecf9ef;
    color: #156b2d;
}
.pcp-scf-error {
    background: #fff0f0;
    color: #8a1f1f;
}
.pcp-scf-hp {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
@media (max-width: 720px) {
    .pcp-scf-wrap {
        padding: 20px;
    }
    .pcp-scf-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
}
.pcp-scf-field-error {
    border-color: #c0392b !important;
    background: #fff7f7 !important;
}
.pcp-scf-submit:disabled {
    opacity: .65;
    cursor: not-allowed;
}
