.fxe-section {
    background: linear-gradient(180deg, #fafaf8 0%, #fff 100%);
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.fxe-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--fxe-accent, #e8347a);
    padding: 6px 14px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--fxe-accent, #e8347a) 10%, white);
    border: 1px solid color-mix(in srgb, var(--fxe-accent, #e8347a) 25%, transparent);
    margin-bottom: 18px;
}
.fxe-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.08;
    color: #0a0a0a;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}
.fxe-sub {
    font-size: clamp(15px, 1.4vw, 18px);
    color: rgba(15, 23, 42, 0.6);
    font-weight: 400;
    line-height: 1.5;
}
.fxe-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
@media (max-width: 760px) { .fxe-grid { grid-template-columns: 1fr; } }
.fxe-card {
    position: relative;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.07);
    border-radius: 18px;
    padding: 26px 26px 22px;
    box-shadow: 0 10px 22px -16px rgba(15, 23, 42, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.fxe-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px -18px rgba(15, 23, 42, 0.18);
    border-color: color-mix(in srgb, var(--fxe-accent, #e8347a) 30%, rgba(15, 23, 42, 0.07));
}
.fxe-num {
    position: absolute;
    top: 22px; right: 26px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    color: rgba(15, 23, 42, 0.3);
    font-family: ui-monospace, SFMono-Regular, monospace;
}
.fxe-card-title {
    font-size: 18px;
    font-weight: 800;
    color: #0a0a0a;
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin: 0 60px 10px 0;
}
.fxe-card-text {
    font-size: 14.5px;
    line-height: 1.6;
    color: rgba(15, 23, 42, 0.72);
    font-weight: 400;
    margin: 0;
}
.fxe-trust {
    margin-top: 36px;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    flex-wrap: wrap;
    text-align: center;
    padding: 14px 22px;
    border-radius: 999px;
    background: rgba(31, 140, 70, 0.06);
    border: 1px solid rgba(31, 140, 70, 0.22);
    font-size: 13px;
    font-weight: 600;
    color: #1f8c46;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
.fxe-trust-dot {
    width: 8px; height: 8px;
    border-radius: 999px;
    background: #1f8c46;
    box-shadow: 0 0 0 3px rgba(31, 140, 70, 0.18);
    animation: fxe-pulse 1.6s ease-in-out infinite;
}
@keyframes fxe-pulse {
    0%, 100% { transform: scale(1);   opacity: 0.85; }
    50%      { transform: scale(1.2); opacity: 1; }
}
