:root {
    --brand-red: #FF002B;
}

.cards-section {
    background: #0e0e0e;
    padding: 80px 0;
}
.cards-section h2 {
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
}

.info-overlay {
    transform: translateY(calc(100% - 160px));
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 20;
}

.service-card:hover .info-overlay {
    transform: translateY(0);
}

.initial-content-gradient {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    z-index: 10;
}

.feature-item::before {
    content: "→";
    color: var(--brand-red);
    font-weight: bold;
    margin-right: 8px;
}

.service-card {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background-color: #161616;
}

.image-container {
    padding: 2.5rem;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.service-card img {
    transition: transform 0.8s ease, filter 0.4s ease;
    width: 100%;
    height: auto;
    max-height: 240px;
    object-fit: contain;
    border-radius: 1rem;
}

.service-card:hover img {
    transform: scale(1.08);
}

.text-balance {
    text-wrap: balance;
}
