.services-section .service-card {
    height: 100%;
    padding: 1.5rem;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.system-card {
    display: flex;
    min-height: 320px;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

.system-card-media,
.system-card-content {
    width: 50%;
}

.system-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.system-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.system-card-content h3 {
    margin: 0;
    font-weight: 700;
}

.system-card-content p {
    margin: 0;
    color: #475569;
    line-height: 1.55;
}

.system-card-actions {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    width: 100%;
    max-width: 220px;
}

.plans-modal-body {
    max-height: 72vh;
    overflow-y: auto;
}

.feature-preview-card {
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.feature-preview-card.is-fading-out {
    opacity: 0;
    transform: translateY(8px);
}

.feature-preview-card.is-fading-in {
    opacity: 1;
    transform: translateY(0);
}

.feature-preview-card img {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    background: #f8fafc;
    display: block;
}

.feature-preview-content {
    padding: 1rem 1.25rem;
}

.feature-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.feature-nav .pagination {
    flex-wrap: wrap;
    justify-content: center;
}

.pricing-card {
    background: #fff;
    border-radius: 16px;
    border: 2px solid transparent;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: #0d6efd;
}

.btn-plan-action {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-plan-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(13, 110, 253, 0.28);
}

.plan-title {
    font-weight: 700;
    margin-bottom: 10px;
}

.plan-price {
    font-size: 2rem;
    font-weight: 700;
    color: #0d6efd;
}

.plan-price span {
    font-size: 0.9rem;
    color: #6c757d;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    text-align: left;
}

.plan-features li {
    margin-bottom: 8px;
}

.featured {
    position: relative;
}

.badge-popular {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #0d6efd;
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
}

@media (max-width: 991.98px) {
    .system-card {
        flex-direction: column;
    }

    .system-card-media,
    .system-card-content {
        width: 100%;
    }

    .system-card-media img {
        height: 260px;
    }
}

@media (max-width: 575.98px) {
    .feature-preview-card img {
        max-height: 55vh;
    }
}
