.lff-section { padding: 60px 20px; background: #fffaf5; }
.lff-wrap {
    max-width: 780px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 40px rgba(107,62,31,0.1);
    overflow: hidden;
}
.lff-header {
    background: #8c451b;
    padding: 32px 40px;
    text-align: center;
}
.lff-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: #f5dfc0;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}
.lff-title {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px;
}
.lff-subtitle {
    font-size: 17px;
    color: #e8c9a0;
    margin: 0 0 12px;
}
.lff-intro-text {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    margin: 0;
}
.lff-form { padding: 32px 40px 40px; }
.lff-fieldset { margin-bottom: 32px; }
.lff-fieldset-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    color: #8c451b;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    border-bottom: 2px solid #f0dece;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.lff-fieldset-num {
    background: #8c451b;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.lff-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.lff-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.lff-field label {
    font-size: 13px;
    font-weight: 600;
    color: #3d2010;
}
.req { color: #c0392b; }
.lff-field input[type="text"],
.lff-field input[type="email"],
.lff-field input[type="tel"],
.lff-field input[type="number"],
.lff-field select {
    border: 1.5px solid #e0cfc0;
    border-radius: 8px;
    padding: 11px 14px;
    font-size: 14px;
    color: #333;
    background: #fffaf5;
    outline: none;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: auto;
}
.lff-field input:focus,
.lff-field select:focus {
    border-color: #8c451b;
    box-shadow: 0 0 0 3px rgba(107,62,31,0.1);
}
.lff-field input.err,
.lff-field select.err {
    border-color: #c0392b;
    background: #fff8f8;
}
.lff-err {
    font-size: 12px;
    color: #c0392b;
    min-height: 16px;
    display: block;
}
.lff-upload-note {
    font-size: 12px;
    color: #9b7050;
    margin: -12px 0 16px;
}
.lff-upload {
    position: relative;
    border: 2px dashed #e0cfc0;
    border-radius: 10px;
    background: #faf4ef;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    min-height: 90px;
}
.lff-upload:hover { border-color: #8c451b; }
.lff-upload.has-file {
    border-color: #8c451b;
    border-style: solid;
    background: #f5ede4;
}
.lff-upload input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 0;
    margin: 0;
}
.lff-upload-ui {
    padding: 16px 12px;
    text-align: center;
    pointer-events: none;
    color: #8c451b;
}
.lff-upload-cta {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-top: 6px;
}
.lff-upload-fname {
    display: block;
    font-size: 11px;
    color: #9b7050;
    margin-top: 3px;
    word-break: break-all;
}
.lff-declaration {
    background: #faf4ef;
    border-radius: 10px;
    padding: 18px 20px;
    margin: 8px 0 24px;
    font-size: 13px;
    color: #555;
    line-height: 1.7;
}
.lff-declaration p { margin: 0 0 14px; }
.lff-check-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: #3d2010;
}
.lff-check-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #8c451b;
    flex-shrink: 0;
    cursor: pointer;
}
.lff-global-error {
    padding: 12px 16px;
    background: #fff5f5;
    border-left: 3px solid #c0392b;
    border-radius: 0 6px 6px 0;
    font-size: 13px;
    color: #c0392b;
    margin-bottom: 16px;
}
.lff-submit-row { text-align: center; }
.lff-submit-btn {
    background: #8c451b;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 15px 52px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    letter-spacing: 0.01em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.lff-submit-btn:hover { background: #5a3318; }
.lff-submit-btn:active { transform: scale(0.98); }
.lff-submit-btn:disabled { background: #b09070; cursor: not-allowed; }
@keyframes lff-rotate { to { transform: rotate(360deg); } }
.lff-spin { animation: lff-rotate 0.8s linear infinite; }
.lff-success {
    padding: 52px 40px;
    text-align: center;
}
.lff-success-icon {
    width: 64px;
    height: 64px;
    background: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.lff-success h3 { font-size: 22px; color: #3d2010; margin: 0 0 10px; }
.lff-success p  { font-size: 14px; color: #777; line-height: 1.7; max-width: 420px; margin: 0 auto; }
@media (max-width: 640px) {
    .lff-header { padding: 24px 20px; }
    .lff-form   { padding: 20px 20px 32px; }
    .lff-row    { grid-template-columns: 1fr; }
    .lff-submit-btn { width: 100%; justify-content: center; }
}