/* Service Advantages Cards - b01eccbc */

.sac-b01eccbc-wrapper {
    font-family: 'Inter', sans-serif;
    border-radius: 20px;
    overflow: hidden;
}

.sac-b01eccbc-header {
    text-align: center;
    margin-bottom: 48px;
}

.sac-b01eccbc-heading {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
}

.sac-b01eccbc-service-name {
    display: block;
    font-weight: 800;
    margin-top: 4px;
}

.sac-b01eccbc-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 560px;
    opacity: 0.85;
}

/* Grid */
.sac-b01eccbc-grid {
    display: grid;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.sac-b01eccbc-cols-2 { grid-template-columns: repeat(2, 1fr); }
.sac-b01eccbc-cols-3 { grid-template-columns: repeat(3, 1fr); }
.sac-b01eccbc-cols-4 { grid-template-columns: repeat(4, 1fr); }
.sac-b01eccbc-cols-5 { grid-template-columns: repeat(5, 1fr); }

/* Card */
.sac-b01eccbc-card {
    border: 1px solid rgba(255,119,18,0.2);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.sac-b01eccbc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF7712, #FF9A4D);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.sac-b01eccbc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(255, 119, 18, 0.15);
}

.sac-b01eccbc-card:hover::before {
    transform: scaleX(1);
}

/* Card Top Row */
.sac-b01eccbc-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

/* Number Badge */
.sac-b01eccbc-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
}

/* Icon */
.sac-b01eccbc-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.sac-b01eccbc-icon i {
    line-height: 1;
}

/* Card Title */
.sac-b01eccbc-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
    margin: 0 0 10px 0;
}

/* Card Description */
.sac-b01eccbc-card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.65;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .sac-b01eccbc-cols-4,
    .sac-b01eccbc-cols-5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .sac-b01eccbc-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }

    .sac-b01eccbc-heading {
        font-size: 26px;
    }

    .sac-b01eccbc-header {
        margin-bottom: 32px;
    }
}
