.features {
    padding: 6rem 0;
    background-color: #050505;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    font-weight: 700;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.card {
    background: #111;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid #222;
    transition: transform 0.2s, background 0.2s;
}

.card:hover {
    transform: translateY(-5px);
    background: #161616;
    border-color: #333;
}

.iconBox {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.cardTitle {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.cardDesc {
    color: #999;
    line-height: 1.5;
    font-size: 0.95rem;
}