/* --- PORTAL & SERVICE CARDS --- */
.service-card {
    background: #ffffff;
    border: 2px solid #f1f5f9;
    padding: 30px 20px;
    border-radius: 2.5rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: #ef4444;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.service-icon {
    width: 55px;
    height: 55px;
    border-radius: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.service-card:hover .service-icon {
    transform: rotate(10deg) scale(1.1);
}

.service-title {
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.service-desc {
    font-size: 10px;
    color: #94a3b8;
    font-weight: 700;
    text-transform: uppercase;
}

/* --- PREMIUM UI ELEMENTS --- */
.btn-unlock-inline {
    animation: gentle-pulse 2s infinite;
}

@keyframes gentle-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

#interpretationTeaserArea .bg-white:hover {
    box-shadow: 0 30px 60px rgba(239, 68, 68, 0.08);
}