.service-card {
    height: 100%;
    background: #fff;
    border-radius: 20px;
    padding: 2rem 1.5rem 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.35s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: rgba(108, 59, 255, 0.1);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* İkon */
.service-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(108, 59, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    transition: all 0.35s ease;
    flex-shrink: 0;
}

.service-card:hover .service-card-icon {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.05) rotate(-3deg);
}

/* Badge */
.service-card-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(108, 59, 255, 0.08);
    color: var(--primary-color);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
    align-self: flex-start;
}

/* Başlık */
.service-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

/* Açıklama */
.service-card-description,
.service-card-description p{
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

/* Footer / Link */
.service-card-footer {
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.25s ease;
    letter-spacing: 0.3px;
}

.service-card-link i {
    transition: transform 0.25s ease;
    font-size: 0.75rem;
}

.service-card-link:hover {
    color: var(--primary-color);
}

.service-card-link:hover i {
    transform: translateX(4px);
}

/* Öne Çıkan kart için özel vurgu */
.service-card.featured {
    border-color: rgba(108, 59, 255, 0.15);
    background: linear-gradient(145deg, #ffffff 0%, #faf8ff 100%);
}

.service-card.featured .service-card-icon {
    background: var(--primary-color);
    color: #fff;
}

/* Filigran - Sağ üst köşe */
.service-card-watermark {
    position: absolute;
    top: 0px;
    right: 20px;
    font-size: 4rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #f5f8fd;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    font-family: var(--font-primary);
    z-index: 1;
}
.service-card.featured .service-card-watermark {
    color: rgba(108, 59, 255, 0.06);
}


/* Responsive */
@media (max-width: 576px) {
    .service-card {
        padding: 1.5rem 1rem 1rem;
        border-radius: 16px;
    }
    .service-card-icon {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
        border-radius: 12px;
    }
    .service-card-title {
        font-size: 1rem;
    }
    .service-card-description {
        font-size: 0.85rem;
        -webkit-line-clamp: 2;
    }
    .service-card-link {
        font-size: 0.8rem;
    }
    .service-card-watermark {
        font-size: 0.4rem;
        top: 8px;
        right: 8px;
        letter-spacing: 1px;
    }
}