.cara-kerja-steps {
    padding-bottom: 3rem;
}

/* Style untuk feature highlights */
.feature-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 2rem;
    border-radius: 1.2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-10px);
}

.highlight-card i {
    font-size: 3rem !important;
    color: #FFD700;
    margin-bottom: 1.5rem;
}

/* Style untuk how it works section */
.how-it-works {
    padding: 2rem 0;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

/* Style untuk benefits section */
.benefits {
    padding: 2rem 0;
    background: #f8f9fa;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem;
    border-radius: 1.2rem;
    color: #fff;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-card i {
    font-size: 2.5rem !important;
    color: #764ba2;
    margin-bottom: 1.5rem;
}

/* Style untuk CTA section */
.cta {
    text-align: center;
    padding: 3rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 1.2rem;
    margin: 1rem 0;
}

.cta-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 0.8rem;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: #ffffff;
    color: #333;
}

.btn-secondary {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}
.step-card {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: #fff;
            border-radius: 1.2rem;
            box-shadow: 0 4px 24px rgba(102,126,234,0.12);
            padding: 2.2rem 1.5rem 1.7rem 1.5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            min-height: 260px;
            transition: transform 0.18s, box-shadow 0.18s;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        .step-card:hover {
            transform: translateY(-8px) scale(1.04);
            box-shadow: 0 8px 32px rgba(102,126,234,0.18);
            z-index: 2;
        }

        
        .step-card:hover i {
            transform: scale(1.1);
            background: rgba(255, 255, 255, 0.2);
        }
        
        /* Icon untuk floating card di hero section */
        .floating-card i {
            font-size: 3rem;
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: #FFD700;
            transition: all 0.3s ease;
        }
        
        .floating-card:hover i {
            transform: rotate(15deg) scale(1.1);
            background: rgba(255, 255, 255, 0.2);
        }
        
        
        /* Style untuk Testimonials */
        .testimonials {
            padding: 2rem 0;
            background: #f8f9fa;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .testimonial-card {
            background: #fff;
            padding: 2rem;
            border-radius: 1.2rem;
            box-shadow: 0 4px 24px rgba(0,0,0,0.1);
        }

        .testimonial-card p {
            font-size: 1.1rem;
            color: #555;
            font-style: italic;
            margin-bottom: 1.5rem;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .testimonial-author img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
        }

        .testimonial-author h4 {
            margin: 0;
            color: #333;
            font-weight: 600;
        }

        .testimonial-author span {
            color: #666;
            font-size: 0.9rem;
        }

        @media (max-width: 768px) {
            .floating-card i {
                width: 70px !important;
                height: 70px !important;
                font-size: 2.5rem !important;
            }
            
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
            
            .step-card i.fas {
                width: 80px !important;
                height: 80px !important;
                font-size: 2.5rem !important;
            }
        }
.step-card h4 {
    font-size: 1.18rem;
    font-weight: 700 !important; /* Using !important to ensure boldness */
    margin-bottom: 0.7rem;
    text-align: center;
}
        .step-card p {
            font-size: 1rem;
            color: #f3f3f3;
            text-align: center;
            margin-bottom: 0;
        }
        @media (max-width: 700px) {
            .steps-grid {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }
            .step-card {
                min-height: 180px;
                padding: 1.2rem 0.7rem 1rem 0.7rem;
            }
            .step-card i {
                font-size: 2rem;
                margin-bottom: 0.7rem;
            }
        }

/* Style untuk Feature Comparison Table */
.feature-comparison {
    padding: 4rem 0;
    background: #fff;
}

.table-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0,0,0,0.1);
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem;
    text-align: center;
    border: 1px solid #ddd;
}

.comparison-table thead th {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
}

.comparison-table th.feature-name {
    text-align: left;
    width: 25%;
}

.comparison-table th.role {
    display: table-cell;
    vertical-align: middle;
}

.comparison-table th.role i {
    display: block;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.comparison-table th.role span {
    display: block;
    font-size: 1rem;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: #444;
}

.comparison-table tbody tr:hover {
    background-color: #f8f9fa;
}

.feature-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: transform 0.2s;
}

.feature-badge:hover {
    transform: scale(1.05);
}

.feature-badge.full {
    background: #E3F2FD;
    color: #1976D2;
}

.feature-badge.limited {
    background: #FFF3E0;
    color: #F57C00;
}

.feature-badge.personal {
    background: #E8F5E9;
    color: #388E3C;
}

.feature-badge.none {
    background: #FFEBEE;
    color: #D32F2F;
}

@media (max-width: 768px) {
    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 1rem;
    }

    .comparison-table th.role i {
        font-size: 1.5rem;
    }

    .feature-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    .table-wrapper {
        margin: 0 -1rem;
        padding: 0;
        border-radius: 0;
    }

    .comparison-table {
        border-radius: 0;
    }
}

/* Style untuk Detailed Features Section */
.detailed-features {
    padding: 4rem 0;
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-detail-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.feature-detail-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-detail-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-detail-card ul {
    list-style: none;
    padding: 0;
}

.feature-detail-card ul li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: #555;
}

.feature-detail-card ul li i {
    color: #4CAF50;
    margin-right: 0.5rem;
}

/* Style untuk Tech Stack Section */
.tech-stack {
    padding: 4rem 0;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tech-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-5px);
}

.tech-card i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.tech-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

.tech-card p {
    color: #666;
    line-height: 1.6;
}

/* Additional Responsive Styles */
@media (max-width: 768px) {
    .features-grid,
    .tech-grid {
        grid-template-columns: 1fr;
    }

    .feature-detail-card,
    .tech-card {
        padding: 1.5rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

    .feature-icon i {
        font-size: 1.2rem;
    }

    .tech-card i {
        font-size: 2rem;
    }
}