/* ══════════════════════════════════════════════════════════════
   FEATURES SECTION - Clean & Premium
   ══════════════════════════════════════════════════════════════ */

.features-section {
    position: relative;
    padding: 120px 48px;
    background: var(--bg);
}

.features-header {
    text-align: center;
    margin-bottom: 80px;
}

.features-header .section-title {
    margin-top: 16px;
}

/* ══════════════════════════════════════════════════════════════
   GRID
   ══════════════════════════════════════════════════════════════ */

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ══════════════════════════════════════════════════════════════
   CARD
   ══════════════════════════════════════════════════════════════ */

.feature-card {
    position: relative;
    padding: 40px 32px;
    background: linear-gradient(
        180deg,
        rgba(0, 255, 136, 0.02) 0%,
        rgba(5, 5, 5, 0.8) 100%
    );
    border: 1px solid rgba(0, 255, 136, 0.08);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

/* Gradient border on hover */
.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(
        180deg,
        rgba(0, 255, 136, 0.2) 0%,
        transparent 50%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 255, 136, 0.15);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
    opacity: 1;
}

/* ══════════════════════════════════════════════════════════════
   ICON
   ══════════════════════════════════════════════════════════════ */

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 136, 0.08);
    border: 1px solid rgba(0, 255, 136, 0.15);
    border-radius: 16px;
    margin-bottom: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-icon svg {
    width: 26px;
    height: 26px;
    color: var(--accent);
    transition: all 0.4s;
}

.feature-card:hover .feature-icon {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.4);
}

.feature-card:hover .feature-icon svg {
    color: var(--bg);
}

/* ══════════════════════════════════════════════════════════════
   CONTENT
   ══════════════════════════════════════════════════════════════ */

.feature-title {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    transition: color 0.3s;
}

.feature-card:hover .feature-title {
    color: var(--accent);
}

.feature-desc {
    font-size: 15px;
    color: var(--gray-300);
    line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════════
   SECTION BADGE
   ══════════════════════════════════════════════════════════════ */

.section-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: rgba(0, 255, 136, 0.08);
    border: 1px solid rgba(0, 255, 136, 0.15);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.section-title {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 800;
    letter-spacing: -2px;
    color: var(--white);
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */

@media (max-width: 1100px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .features-section {
        padding: 60px 20px;
    }

    .features-header {
        margin-bottom: 40px;
    }

    .features-header .section-title {
        font-size: clamp(26px, 7vw, 34px);
        letter-spacing: -0.5px;
        margin-bottom: 8px;
    }

    .section-badge {
        padding: 8px 16px;
        font-size: 11px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card {
        padding: 28px 22px;
        border-radius: 20px;
    }

    .feature-card::before {
        border-radius: 20px;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        margin-bottom: 18px;
    }

    .feature-icon svg {
        width: 22px;
        height: 22px;
    }

    .feature-title {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .feature-desc {
        font-size: 14px;
        line-height: 1.6;
    }
}
