/* =========================
   Future features
   ========================= */

.future-features {
    background: var(--white);
}

.future-grid {
    grid-template-columns: repeat(3, minmax(280px, 1fr));
    gap: 24px;
}

/* Responsive: 1 column on extra small screens */
@media (max-width: 767px) {
    .future-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive: 2 column on small screens */
@media (min-width: 768px) and (max-width: 1024px) {
    .future-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.future-item {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.05), rgba(6, 182, 212, 0.05));
    padding: 36px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(20, 184, 166, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.future-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.1), transparent);
    transition: left 0.5s ease;
}

.future-item:hover::before {
    left: 100%;
}

.future-item:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 12px 32px rgba(20, 184, 166, 0.15);
}

.future-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
}

.future-item h4,
.future-title {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 12px;
    font-weight: 800;
}

.future-item p,
.future-description {
    font-size: 15px;
    color: var(--gray);
}

.future-note {
    text-align: center;
    margin-top: 64px;
    font-size: 22px;
    color: var(--primary);
    font-weight: 800;
}
