.aq-fl-hero {
    position: relative;
    background: var(--aq-grad);
    color: #fff;
    text-align: center;
    padding: 64px 20px 130px;
    overflow: hidden;
}
.aq-fl-hero-inner { position: relative; z-index: 3; max-width: 620px; margin: 0 auto; }
.aq-fl-hero-title { font-size: clamp(28px, 4.6vw, 42px); color: #fff; text-shadow: 2px 2px 6px rgba(0,0,0,.22); margin-bottom: 12px; }
.aq-fl-hero-sub { font-size: 16px; opacity: .92; }

.aq-fl-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 56px 0 64px;
    padding: 72px 32px;
    background: var(--aq-card);
    border: 1px dashed rgba(39, 174, 96, .3);
    border-radius: var(--aq-radius-lg);
}
.aq-fl-empty > i {
    font-size: 40px;
    color: var(--aq-green);
    background: rgba(39, 174, 96, .08);
    width: 84px;
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 22px;
}
.aq-fl-empty h3 { font-size: 20px; color: var(--aq-ink); margin-bottom: 10px; }
.aq-fl-empty p { font-size: 15px; color: var(--aq-ink-2); margin-bottom: 26px; max-width: 36ch; }

.aq-fl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--aq-gap); margin: 44px 0 56px; }
.aq-fl-item {
    display: flex;
    flex-direction: column;
    background: var(--aq-card);
    border: var(--aq-border);
    border-radius: var(--aq-radius);
    box-shadow: var(--aq-shadow);
    padding: 22px;
    transition: transform .3s var(--aq-ease), box-shadow .3s var(--aq-ease);
}
.aq-fl-item:hover { transform: translateY(-5px); box-shadow: var(--aq-shadow-hover); }
.aq-fl-item-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.aq-fl-item-logo {
    width: 46px; height: 46px;
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    border-radius: 12px;
    background: var(--aq-soft);
    overflow: hidden;
}
.aq-fl-item-logo img { width: 100%; height: 100%; object-fit: cover; }
.aq-fl-item-logo-fb { font-size: 20px; font-weight: 700; color: #fff; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: var(--aq-grad); }
.aq-fl-item-name { flex: 1; font-size: 18px; }
.aq-fl-item:hover .aq-fl-item-name { color: var(--aq-green); }
.aq-fl-item-arrow { font-size: 18px; color: var(--aq-ink-3); transition: all .25s var(--aq-ease); }
.aq-fl-item:hover .aq-fl-item-arrow { color: var(--aq-green); transform: translate(3px, -3px); }
.aq-fl-item-desc {
    font-size: 14px; color: var(--aq-ink-2); line-height: 1.65; flex: 1;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

.aq-fl-apply-wrap { position: relative; max-width: 820px; margin: 0 auto; }
.aq-fl-apply-form { background: var(--aq-card); border: 1px solid var(--aq-line); border-radius: var(--aq-radius-lg); box-shadow: var(--aq-shadow); padding: 32px; }
.aq-fl-apply-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.aq-fl-field { display: flex; flex-direction: column; }
.aq-fl-field.full { grid-column: 1 / -1; }
.aq-fl-field label { font-size: 14px; font-weight: 600; margin-bottom: 8px; }
.aq-fl-field .req { color: #e74c3c; }
.aq-fl-logo-upload { position: relative; align-self: flex-start; width: 120px; }
.aq-fl-logo-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 120px;
    height: 120px;
    padding: 10px;
    text-align: center;
    border: 2px dashed var(--aq-line);
    border-radius: var(--aq-radius);
    background: var(--aq-soft);
    cursor: pointer;
    overflow: hidden;
    transition: border-color .25s;
}
.aq-fl-logo-preview:hover { border-color: rgba(39, 174, 96, .4); }
.aq-fl-logo-preview .ph { font-size: 12px; line-height: 1.4; color: var(--aq-ink-3); display: flex; flex-direction: column; align-items: center; gap: 6px; }
.aq-fl-logo-preview .ph i { font-size: 24px; color: var(--aq-green); }
.aq-fl-logo-preview img { display: none; width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }
.aq-fl-logo-upload.has-logo .aq-fl-logo-preview img { display: block; }
.aq-fl-logo-upload.has-logo .aq-fl-logo-preview .ph { display: none; }
.aq-fl-logo-upload.has-logo .aq-fl-logo-preview { padding: 0; border-style: solid; border-color: var(--aq-green); }
.aq-fl-logo-upload.is-loading .aq-fl-logo-preview { opacity: .5; }
.aq-fl-logo-remove { position: absolute; top: -8px; right: -8px; width: 26px; height: 26px; color: #fff; background: var(--aq-vip-1); border: 2px solid #fff; border-radius: 50%; box-shadow: var(--aq-shadow); display: none; align-items: center; justify-content: center; font-size: 13px; line-height: 1; }
.aq-fl-logo-upload.has-logo .aq-fl-logo-remove { display: flex; }
.aq-fl-apply-actions { display: flex; gap: 12px; margin-top: 24px; }
.aq-fl-apply-hint { margin-top: 14px; font-size: 13px; color: var(--aq-ink-3); }

.aq-fl-apply-wrap.is-locked .aq-fl-apply-form { filter: blur(3px) grayscale(.3); pointer-events: none; user-select: none; }
.aq-fl-apply-lock {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    background: rgba(255, 255, 255, .85);
    border-radius: var(--aq-radius-lg);
}
.aq-fl-apply-lock i { font-size: 38px; color: var(--aq-green); }
.aq-fl-apply-lock .lock-title { font-size: 19px; font-weight: 600; }
.aq-fl-apply-lock .lock-desc { font-size: 14px; color: var(--aq-ink-2); margin-bottom: 10px; }

@media (max-width: 1024px) { .aq-fl-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) {
    .aq-fl-hero { padding: 50px 20px 110px; }
    .aq-fl-grid { grid-template-columns: 1fr; }
    .aq-fl-apply-grid { grid-template-columns: 1fr; }
    .aq-fl-apply-form { padding: 22px; }
}