/* ── Палитра — совпадает с формой заказа ── */
:root {
    --pcf-bg:        #1e1e1e;
    
    --pcf-surface2:  #2e2e2e;
    --pcf-border:    #3a3a3a;
    --pcf-border-h:  #555;
    --pcf-orange:    #f5a623;
    --pcf-orange-d:  #d4901c;
    --pcf-text:      #f0f0f0;
    --pcf-muted:     #999;
    --pcf-hint:      #666;
}

.pcf-wrapper {
    width: 100%;
    margin: 0;
    padding: 1rem 0 2rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.pcf-card {
    width: 100%;
}

.pcf-card {
   background: transparent;
    border: 1px solid var(--pcf-border);
    border-radius: 12px;
    padding: 2rem 2rem 1.75rem;
}

.pcf-title {
    font-size: 22px;
    font-weight: 500;
    margin: 0 0 6px;
    color: var(--pcf-text);
}

.pcf-subtitle {
    font-size: 14px;
    color: var(--pcf-muted);
    margin: 0 0 1.75rem;
    line-height: 1.5;
}

.pcf-field {
    margin-bottom: 18px;
}

.pcf-field > label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--pcf-muted);
    margin-bottom: 7px;
}

.pcf-req { color: var(--pcf-orange); margin-left: 1px; }

.pcf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

@media (max-width: 520px) {
    .pcf-row  { grid-template-columns: 1fr; }
    .pcf-card { padding: 1.25rem; }
}

.pcf-wrapper input[type="text"],
.pcf-wrapper input[type="tel"],
.pcf-wrapper input[type="email"],
.pcf-wrapper textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid var(--pcf-border);
    border-radius: 8px;
    padding: 9px 12px;
    font-size: 14px;
    color: var(--pcf-text);
    background: var(--pcf-bg);
    transition: border-color 0.15s, box-shadow 0.15s;
    outline: none;
}

.pcf-wrapper input::placeholder,
.pcf-wrapper textarea::placeholder { color: var(--pcf-hint); }

.pcf-wrapper input:focus,
.pcf-wrapper textarea:focus {
    border-color: var(--pcf-orange);
    box-shadow: 0 0 0 3px rgba(245,166,35,0.15);
}

.pcf-wrapper textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.pcf-consent-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 13px;
    color: var(--pcf-muted);
    line-height: 1.5;
}

.pcf-consent-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--pcf-orange);
    cursor: pointer;
    border: 1px solid var(--pcf-border-h);
    border-radius: 4px;
    background: var(--pcf-bg);
}

.pcf-consent-label a {
    color: var(--pcf-orange);
    text-decoration: none;
}

.pcf-consent-label a:hover {
    text-decoration: underline;
}

.pcf-errors {
    background: rgba(220,50,50,0.1);
    border: 1px solid rgba(220,50,50,0.35);
    border-radius: 8px;
    padding: 10px 14px;
    color: #f08080;
    font-size: 14px;
}

.pcf-submit {
    width: auto;
    min-width: 200px;
    padding: 12px 32px;
    background: var(--pcf-orange);
    color: #1a1a1a;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-top: 6px;
    letter-spacing: 0.05em;
    display: block;
}

.pcf-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245,166,35,0.35);
}

.pcf-submit:hover    { background: var(--pcf-orange-d); }
.pcf-submit:active   { transform: scale(0.99); }
.pcf-submit:disabled { background: var(--pcf-hint); color: #888; cursor: not-allowed; }

.pcf-success {
    margin-top: 14px;
    background: rgba(245,166,35,0.1);
    border: 1px solid rgba(245,166,35,0.4);
    border-radius: 8px;
    padding: 14px 16px;
    color: var(--pcf-orange);
    font-size: 14px;
    line-height: 1.6;
}
