/* ─── Lead Capture Pro — Front-end Form ──────────────────────────────── */
/*@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');*/

.lcp-form-wrap {
    /*font-family: 'Plus Jakarta Sans', system-ui, sans-serif;*/
    max-width: 680px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,.08);
    overflow: hidden;
}

/* Header */
.lcp-form-header {
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
    padding: 32px 36px 28px;
    color: #fff;
}
.lcp-form-header h2 {
    margin: 0 0 6px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -.3px;
    color: #fff;
}
.lcp-form-header p {
    margin: 0;
    font-size: 14px;
    color: rgba(255,255,255,.7);
}

/* Form body */
.lcp-form { padding: 32px 36px; }

.lcp-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.lcp-row-full { grid-template-columns: 1fr; }

/* Field */
.lcp-field { display: flex; flex-direction: column; gap: 6px; }
.lcp-field label {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    letter-spacing: .1px;
}
.lcp-field label span { color: #e53935; }
.lcp-field input,
.lcp-field select {
    width: 100%;
    padding: 11px 14px;
    font-size: 14px;
    font-family: inherit;
    color: #1a1a2e;
    background: #f9fafb;
    border: 1.5px solid #e5e7eb;
    border-radius: 9px;
    outline: none;
    transition: border-color .15s, box-shadow .15s, background .15s;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
}
.lcp-field input::placeholder { color: #9ca3af; }
.lcp-field input:focus,
.lcp-field select:focus {
    border-color: #4f5bd5;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(79,91,213,.12);
}
.lcp-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

/* Submit */
.lcp-submit-wrap { margin-top: 8px; }
.lcp-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
    padding: 13px 24px;
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: transform .15s, box-shadow .15s, opacity .15s;
    letter-spacing: .2px;
}
.lcp-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(15,52,96,.3);
}
.lcp-submit:active { transform: translateY(0); }

/* Alert */
.lcp-alert {
    margin: 0 36px 16px;
    padding: 12px 16px;
    background: #fff3f3;
    border: 1px solid #fca5a5;
    border-radius: 8px;
    font-size: 13px;
    color: #b91c1c;
}
.lcp-alert p { margin: 2px 0; }

/* Success */
.lcp-success {
    padding: 56px 36px;
    text-align: center;
    background: #fff;
}
.lcp-success-icon { font-size: 52px; display: block; margin-bottom: 16px; }
.lcp-success h3 { font-size: 20px; font-weight: 700; color: #16213e; margin: 0 0 8px; }
.lcp-success p { font-size: 14px; color: #6b7280; margin: 0; }

/* Responsive */
@media (max-width: 560px) {
    .lcp-form-header { padding: 24px 20px 20px; }
    .lcp-form { padding: 24px 20px; }
    .lcp-row { grid-template-columns: 1fr; }
    .lcp-alert { margin: 0 20px 16px; }
}
