/* Odstúpenie od zmluvy - moderný formulár (wf- prefix, žiadny build) */
.wf-wrap {
    max-width: 760px;
    margin: 24px auto 48px;
}
.wf-title {
    text-align: center;
}
.wf-intro {
    color: #4a5468;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 20px;
}
.wf-card {
    background: #fff;
    border: 1px solid #e5e9ed;
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(21, 30, 51, 0.07);
    overflow: hidden;
}
.wf-card__head {
    background: #151e33;
    color: #fff;
    padding: 18px 28px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    font-size: 14px;
}
.wf-card__head span { color: #ffd215; }
.wf-card__body { padding: 28px; }

.wf-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 24px;
}
.wf-field { display: flex; flex-direction: column; }
.wf-field--full { grid-column: 1 / -1; }

.wf-field label {
    font-size: 13px;
    font-weight: 600;
    color: #243555;
    margin-bottom: 6px;
}
.wf-field label .wf-req { color: #e23b3b; margin-left: 2px; }

.wf-field input[type="text"],
.wf-field textarea {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 14px;
    color: #151e33;
    background: #f7f9fb;
    border: 1px solid #cbd3db;
    border-radius: 8px;
    padding: 11px 13px;
    width: 100%;
    box-sizing: border-box;
    transition: border-color .15s, box-shadow .15s, background .15s;
}
.wf-field textarea { resize: vertical; min-height: 92px; }
.wf-field input[type="text"]:focus,
.wf-field textarea:focus {
    outline: none;
    background: #fff;
    border-color: #243555;
    box-shadow: 0 0 0 3px rgba(36, 53, 85, 0.12);
}
.wf-hint { font-size: 12px; color: #8a94a6; margin-top: 5px; }

.wf-actions {
    margin-top: 26px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.wf-btn {
    display: inline-block;
    border: 0;
    cursor: pointer;
    font-family: 'Open Sans', Arial, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em;
    font-size: 14px;
    color: #151e33;
    background: #ffd215;
    padding: 13px 28px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(255, 210, 21, 0.4);
    transition: transform .08s, box-shadow .15s, background .15s;
}
.wf-btn:hover { background: #ffdb3d; box-shadow: 0 6px 16px rgba(255, 210, 21, 0.5); }
.wf-btn:active { transform: translateY(1px); }
.wf-btn[disabled] { opacity: .6; cursor: default; }
.wf-note { font-size: 12px; color: #8a94a6; }

/* honeypot - skryté pred ľuďmi */
.wf-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* stavová karta (úspech / potvrdenie) */
.wf-state {
    text-align: center;
    padding: 40px 28px;
}
.wf-state__icon {
    width: 64px; height: 64px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #eafaf0;
    color: #1f9d57;
    font-size: 34px;
    line-height: 64px;
    font-weight: 700;
}
.wf-state__icon--err { background: #fdecec; color: #e23b3b; }
.wf-state h3 { margin: 0 0 10px; color: #151e33; font-size: 19px; }
.wf-state p { margin: 0 auto; max-width: 520px; color: #4a5468; line-height: 1.6; }

@media (max-width: 600px) {
    .wf-grid { grid-template-columns: 1fr; }
    .wf-card__body { padding: 20px; }
}