.features-section {
    position: relative;
    z-index: 1;
    padding: 40px 20px 80px 20px;
    background: #13131e;
    overflow-x: hidden;
}

@media (min-width: 1024px) {
    .features-section {
        padding: 60px 40px 120px 40px;
    }
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Decorative Gradient Orbs */
.features-gradient-orb {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

.features-gradient-orb-left {
    top: 20%;
    left: -10%;
    background-color: #a78bfa;
}

.features-gradient-orb-right {
    bottom: 20%;
    right: -10%;
    background-color: #422ad5;
}

@media (min-width: 768px) {
    .features-gradient-orb {
        width: 400px;
        height: 400px;
        filter: blur(70px);
    }
}

@media (min-width: 1024px) {
    .features-gradient-orb {
        width: 500px;
        height: 500px;
        filter: blur(80px);
    }
}

/* Section Header */
.features-header {
    text-align: center;
    margin-bottom: 48px;
}

@media (min-width: 1024px) {
    .features-header {
        margin-bottom: 64px;
    }
}

.features-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 16px 0;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

@media (min-width: 1024px) {
    .features-title {
        font-size: 3.5rem;
        margin-bottom: 20px;
    }
}

.features-subtitle {
    font-size: 1.125rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .features-subtitle {
        font-size: 1.25rem;
    }
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}

/* Feature Card */
.feature-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(4px);
    padding: 32px 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .feature-card {
        padding: 40px 32px;
    }
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(167, 139, 250, 0.08), transparent 70%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    border-radius: 20px;
}

.feature-card:hover {
    border-color: rgba(167, 139, 250, 0.4);
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    box-shadow: 
        0 8px 32px rgba(167, 139, 250, 0.2),
        0 0 0 1px rgba(167, 139, 250, 0.1) inset;
}

.feature-card:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Feature Icon */
.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.2), rgba(66, 42, 213, 0.2));
    border: 2px solid rgba(167, 139, 250, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.3), rgba(66, 42, 213, 0.3));
    border-color: rgba(167, 139, 250, 0.5);
    transform: scale(1.05);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: #a78bfa;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon svg {
    color: #c4b5fd;
    transform: scale(1.1);
}

/* Feature Content */
.feature-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px 0;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .feature-title {
        font-size: 1.5rem;
        margin-bottom: 16px;
    }
}

.feature-description {
    font-size: 0.9375rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

@media (min-width: 768px) {
    .feature-description {
        font-size: 1rem;
    }
}

