.card {
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
}

.card:hover {
    background: var(--primary-white);
    border-color: var(--magenta);
    transform: translateY(-8px) !important;
    box-shadow: var(--shadow-magenta);
}

.card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: var(--gradient-magenta);
    border-radius: 0 16px 0 80px;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card:hover::before {
    opacity: 0.08;
}

/* Card Icon */
.card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-magenta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-on-magenta);
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.2);
    transition: transform 0.3s ease;
    margin-bottom: 0.5rem;
}

.card:hover .card-icon {
    transform: scale(1.1);
}

/* Card Typography */
.card-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    text-align: center;
    width: 100%;
}

.card:hover .card-title {
    color: var(--magenta);
}

.card-description {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.3px;
    margin-bottom: 0;
    text-align: center;
    width: 100%;
}

/* RESPONSIVE */
@media (max-width: 1300px) {
    .card {
        padding: 2rem 1.5rem;
    }

    .card-icon {
        width: 75px;
        height: 75px;
        font-size: 1.8rem;
    }

    .card-title {
        font-size: 1.4rem;
    }

    .card-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .card {
        padding: 2rem 1.5rem;
    }

    .card-icon {
        width: 70px;
        height: 70px;
        font-size: 1.7rem;
    }

    .card-title {
        font-size: 1.3rem;
    }

    .card-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .card {
        padding: 1.8rem 1.5rem;
    }

    .card-icon {
        width: 65px;
        height: 65px;
        font-size: 1.6rem;
    }

    .card-title {
        font-size: 1.2rem;
    }

    .card-description {
        font-size: 0.9rem;
    }
}