/* ===== FEATURES SECTION ===== */
.features-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(44,62,80,0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.feature-item {
    background: white;
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid #f0f0f0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,215,0,0.08) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.feature-item:hover::before {
    top: -30%;
    right: -30%;
}

.feature-item:hover {
    background: white;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    transform: translateY(-8px);
    border-color: rgba(255,215,0,0.5);
}

.feature-icon-large {
    font-size: 75px;
    margin-bottom: 25px;
    transition: transform 0.4s ease;
    position: relative;
    z-index: 1;
}

.feature-item:hover .feature-icon-large {
    transform: scale(1.15) rotateY(15deg);
}

.feature-item h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 18px;
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.feature-item p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    font-weight: 500;
    position: relative;
    z-index: 1;
}
