/* ── For Everyone / Tabs section ── */
.fe {
    position: relative;
    background: #fff;
    overflow: hidden;
    padding: clamp(4rem, 8vw, 6rem) 0;
}

.fe__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 60% 45% at 50% 0%, rgba(25, 38, 102, 0.04) 0%, transparent 70%),
        radial-gradient(ellipse 35% 35% at 90% 90%, rgba(201, 138, 46, 0.05) 0%, transparent 60%);
}

.fe__inner {
    position: relative;
    z-index: 1;
}

.fe__head {
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.fe__title {
    color: #2d3764;
    margin: 0;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    line-height: 1.2;
    font-weight: 700;
    font-family: 'Source Sans 3', sans-serif !important;
}

/* ── Tab nav — segmented control track ── */
.fe__tab-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    list-style: none;
    padding: 5px;
    margin: 0 auto 2.5rem;
    max-width: fit-content;
    background: rgba(25, 38, 102, 0.07);
    border-radius: 999px;
    border: 1px solid rgba(25, 38, 102, 0.1);
}

.fe__tab-btn {
    padding: 0.65rem 2rem;
    border-radius: 999px;
    border: none;
    background: transparent;
    color: rgba(25, 38, 102, 0.55);
    font-family: var(--textFamily), 'Source Sans 3', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
    white-space: nowrap;
}

.fe__tab-btn:hover:not(.active) {
    background: rgba(25, 38, 102, 0.08);
    color: #192666;
}

.fe__tab-btn.active {
    background: #c98a2e;
    color: #fff;
    box-shadow: 0 3px 14px rgba(201, 138, 46, 0.4);
}

/* ── Tab content panel ── */
.fe__tab-content {
    max-width: 720px;
    margin-inline: auto;
}

/* ── List items — card style with gold left accent ── */
.fe__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.fe__list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.35rem;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(25, 38, 102, 0.12);
    border-left: 4px solid #c98a2e;
    color: #192666;
    font-family: var(--textFamily), 'Source Sans 3', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.55;
    box-shadow: 0 2px 8px rgba(25, 38, 102, 0.06);
    transition: box-shadow 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
}

.fe__list li:hover {
    box-shadow: 0 6px 20px rgba(25, 38, 102, 0.1);
    transform: translateX(4px);
}

.fe__list li::before {
    content: '';
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(201, 138, 46, 0.12);
    border: 2px solid #c98a2e;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c98a2e' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 13px 13px;
    background-repeat: no-repeat;
    background-position: center;
}

/* ── Tab fade animation ── */
.fe__tab-content .tab-pane {
    animation: fe-fade-in 0.28s ease forwards;
}

@keyframes fe-fade-in {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ── */
@media (max-width: 600px) {
    .fe__tab-nav {
        max-width: calc(100% - 2rem);
        flex-wrap: wrap;
        border-radius: 20px;
        padding: 6px;
        flex-direction: column;
    }
    .fe__tab-nav li {
        width: 100%;
    }
    .fe__tab-btn {
        padding: 0.55rem 1.4rem;
        font-size: 0.88rem;
        width: 100%;
    }

    .fe__list li {
        font-size: 0.93rem;
        padding: 0.85rem 1rem;
    }
}
