.features-hero {
    padding: 110px 0 70px;
    text-align: center;
    background: radial-gradient(circle at 50% 0%, rgba(34,211,238,.14), transparent 35%), radial-gradient(circle at 80% 20%, rgba(212,166,75,.10), transparent 25%), linear-gradient(180deg, #071019 0%, #05070b 100%);
}

.features-hero-badge {
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid rgba(34,211,238,.28);
    border-radius: 999px;
    color: #7dd3fc;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    margin-bottom: 18px;
}

.features-hero h1 {
    font-size: 58px;
    margin-bottom: 14px;
    font-family: 'Orbitron', sans-serif;
    color: #22d3ee;
}

.features-hero p {
    max-width: 760px;
    margin: 0 auto;
    color: #94a3b8;
    font-size: 18px;
    line-height: 1.7;
}

.features-page {
    padding: 50px 0 100px;
}

.features-tabs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.feature-tab {
    border: none;
    background: #111827;
    color: #cbd5e1;
    border: 1px solid #1f2937;
    padding: 12px 18px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 700;
    transition: .2s;
}

    .feature-tab:hover {
        color: #22d3ee;
        border-color: #334155;
        transform: translateY(-1px);
    }

    .feature-tab.active {
        background: #22d3ee;
        color: #031018;
        border-color: #22d3ee;
    }

.feature-panel {
    display: none;
}

    .feature-panel.active {
        display: block;
    }

.feature-section-head {
    margin-bottom: 20px;
}

    .feature-section-head h2 {
        font-size: 34px;
        color: #fff;
        margin-bottom: 8px;
    }

    .feature-section-head p {
        color: #94a3b8;
        line-height: 1.6;
    }

.feature-card-grid {
    display: grid;
    gap: 22px;
}

.feature-card-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
    background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 22px;
    padding: 26px;
    box-shadow: 0 18px 40px rgba(0,0,0,.22);
}

    .feature-card h3 {
        color: #fff;
        margin-bottom: 16px;
        font-size: 24px;
    }

    .feature-card p {
        color: #cbd5e1;
        line-height: 1.7;
    }

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

    .feature-list li {
        color: #dbe5f3;
        background: rgba(255,255,255,.03);
        border: 1px solid rgba(255,255,255,.04);
        border-radius: 14px;
        padding: 12px 14px;
    }

.feature-table-wrap {
    overflow: auto;
    border-radius: 18px;
}

.feature-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
}

    .feature-table th,
    .feature-table td {
        padding: 14px 16px;
        border-bottom: 1px solid rgba(255,255,255,.06);
        text-align: left;
        color: #e2e8f0;
        vertical-align: top;
    }

    .feature-table th {
        color: #7dd3fc;
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: .08em;
        background: rgba(255,255,255,.03);
    }

.feature-table-center th,
.feature-table-center td {
    text-align: center;
}

    .feature-table-center td:first-child,
    .feature-table-center th:first-child {
        text-align: left;
    }

.feature-badge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

    .feature-badge-list span {
        background: rgba(34,211,238,.08);
        color: #cfe9f2;
        border: 1px solid rgba(34,211,238,.18);
        border-radius: 999px;
        padding: 10px 14px;
        font-weight: 600;
    }

@media (max-width: 1100px) {
    .feature-card-grid-3,
    .feature-card-grid-2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .features-hero h1 {
        font-size: 42px;
    }

    .features-hero p {
        font-size: 16px;
    }

    .feature-section-head h2 {
        font-size: 28px;
    }
}
