/* ═══════════════════════════════════════════════════
   Static Page Styles — About, Contact, Legal pages
   ═══════════════════════════════════════════════════ */

/* ── Hero Banner ── */
.fxd-static-hero {
    background: var(--fx-bg-panel-alt);
    padding: 28px 24px;
    text-align: center;
    border-bottom: 1px solid var(--fx-border-dark);
}

.fxd-static-hero-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    margin-bottom: 12px;
    color: #fff;
}

.fxd-static-hero h1 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px;
}

.fxd-static-hero p {
    font-size: var(--fx-font-sm);
    color: rgba(255,255,255,0.75);
    margin: 0;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.fxd-static-hero .fxd-static-meta {
    font-size: var(--fx-font-xs);
    color: rgba(255,255,255,0.5);
    margin-top: 10px;
}

/* ── Section Cards ── */
.fxd-static-sections {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fxd-static-section {
    border: 1px solid var(--fx-border);
    border-radius: 6px;
    overflow: hidden;
}

.fxd-static-section-head {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: var(--fx-bg-panel);
    border-bottom: 1px solid var(--fx-border);
    font-size: var(--fx-font-sm);
    font-weight: 700;
    color: var(--fx-text-heading);
}

.fxd-static-section-head svg {
    flex-shrink: 0;
    color: var(--fx-primary-dark);
}

.fxd-static-section-body {
    padding: 14px;
    font-size: var(--fx-font-sm);
    line-height: 1.65;
    color: var(--fx-text);
}

.fxd-static-section-body p {
    margin: 0 0 10px;
}

.fxd-static-section-body p:last-child {
    margin-bottom: 0;
}

.fxd-static-section-body ul {
    margin: 6px 0 10px;
    padding-left: 20px;
}

.fxd-static-section-body li {
    margin-bottom: 6px;
    line-height: 1.5;
}

.fxd-static-section-body strong {
    color: var(--fx-text-heading);
}

/* ── Feature Grid (About page) ── */
.fxd-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.fxd-feature-card {
    display: flex;
    gap: 10px;
    padding: 12px;
    border: 1px solid var(--fx-border);
    border-radius: 6px;
    background: var(--fx-bg-panel);
}

.fxd-feature-card svg {
    flex-shrink: 0;
    color: var(--fx-primary-dark);
    margin-top: 2px;
}

.fxd-feature-card strong {
    display: block;
    font-size: var(--fx-font-sm);
    color: var(--fx-text-heading);
    margin-bottom: 2px;
}

.fxd-feature-card span {
    font-size: var(--fx-font-xs);
    color: var(--fx-text-secondary);
    line-height: 1.4;
}

/* ── Contact Cards ── */
.fxd-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.fxd-contact-card {
    padding: 14px;
    border: 1px solid var(--fx-border);
    border-radius: 6px;
    text-align: center;
    background: var(--fx-bg-panel);
}

.fxd-contact-card svg {
    color: var(--fx-primary-dark);
    margin-bottom: 8px;
}

.fxd-contact-card h4 {
    font-size: var(--fx-font-sm);
    font-weight: 700;
    color: var(--fx-text-heading);
    margin: 0 0 4px;
}

.fxd-contact-card p {
    font-size: var(--fx-font-xs);
    color: var(--fx-text-secondary);
    margin: 0;
    line-height: 1.4;
}

.fxd-contact-card a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

.fxd-contact-card a:hover {
    text-decoration: underline;
}

/* ── Info Banner ── */
.fxd-info-banner {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 6px;
    font-size: var(--fx-font-xs);
    line-height: 1.5;
}

.fxd-info-banner--warning {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #9a3412;
}

.fxd-info-banner--info {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #1e40af;
}

.fxd-info-banner--success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
}

.fxd-info-banner svg {
    flex-shrink: 0;
    margin-top: 1px;
}

/* ── Legal Numbered Sections ── */
.fxd-legal-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--fx-primary-dark);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .fxd-feature-grid,
    .fxd-contact-grid {
        grid-template-columns: 1fr;
    }

    .fxd-static-hero {
        padding: 20px 16px;
    }
}

/* ── Contact Form ── */
.fxd-contact-form-wrap {
    padding: 32px 0 8px;
    border-top: 2px solid var(--fx-accent);
    margin-top: 32px;
}
.fxd-contact-form-wrap h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--fx-text);
}
.fxd-form-row {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 16px;
}
.fxd-form-row label {
    font-size: .85rem;
    font-weight: 600;
    color: var(--fx-text-muted);
    text-transform: uppercase;
    letter-spacing: .04em;
}
.fxd-form-row input,
.fxd-form-row textarea {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid var(--fx-border);
    border-radius: 4px;
    background: var(--fx-bg);
    color: var(--fx-text);
    font-family: inherit;
    font-size: .9rem;
    transition: border-color .2s;
}
.fxd-form-row input:focus,
.fxd-form-row textarea:focus {
    outline: none;
    border-color: var(--fx-accent);
}
.fxd-form-row textarea { resize: vertical; }
.fxd-form-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 8px;
}
.fxd-form-status {
    font-size: .85rem;
    font-weight: 500;
}
.fxd-form-success { color: #16a34a; }
.fxd-form-error   { color: #dc2626; }
