/* KKI Leads — Form styles (matches KORKAIIDEA brand) */
.kki-leads-wrap {
    max-width: 560px;
    margin: 40px auto;
    font-family: inherit;
}
.kki-leads-form {
    background: #ffffff;
    padding: 40px 36px;
    border: 1px solid rgba(184, 169, 125, 0.3);
    box-shadow: 0 8px 32px rgba(19, 26, 36, 0.08);
}
.kki-leads-title {
    font-size: 24px;
    font-weight: 400;
    color: #131a24;
    margin: 0 0 6px;
    line-height: 1.3;
}
.kki-leads-subtitle {
    font-size: 14px;
    color: #8a7a4e;
    margin: 0 0 28px;
    line-height: 1.5;
}
.kki-leads-row { margin-bottom: 16px; }
.kki-leads-row--2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.kki-leads-form label {
    display: block;
}
.kki-leads-form label span {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 6px;
}
.kki-leads-form input,
.kki-leads-form select,
.kki-leads-form textarea {
    width: 100%;
    padding: 10px 12px;
    font-size: 14px;
    border: 1px solid #dcd8cd;
    background: #fafaf8;
    color: #131a24;
    border-radius: 0;
    transition: border-color 0.15s, background 0.15s;
    box-sizing: border-box;
    font-family: inherit;
}
.kki-leads-form input:focus,
.kki-leads-form select:focus,
.kki-leads-form textarea:focus {
    outline: none;
    border-color: #b8a97d;
    background: #ffffff;
}
.kki-leads-actions {
    margin-top: 24px;
}
.kki-leads-submit {
    display: block;
    width: 100%;
    background: #131a24;
    color: #f0eee9;
    padding: 16px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}
.kki-leads-submit:hover:not(:disabled) {
    background: #b8a97d;
    color: #131a24;
}
.kki-leads-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.kki-leads-msg {
    margin-top: 16px;
    padding: 0;
    font-size: 14px;
    line-height: 1.5;
    min-height: 0;
    overflow: hidden;
    transition: all 0.3s;
}
.kki-leads-msg.kki-leads-msg--success {
    padding: 14px;
    background: #d1e7dd;
    color: #0f5132;
    border-left: 3px solid #0f5132;
}
.kki-leads-msg.kki-leads-msg--error {
    padding: 14px;
    background: #f8d7da;
    color: #842029;
    border-left: 3px solid #842029;
}
@media (max-width: 540px) {
    .kki-leads-wrap { margin: 20px 10px; }
    .kki-leads-form { padding: 24px 20px; }
    .kki-leads-row--2col { grid-template-columns: 1fr; }
    .kki-leads-title { font-size: 20px; }
}
