/* ============================================================
   KEUNGGULAN KAMI - CSS KUSTOM
   ============================================================ */

/* Hero Section */
.keunggulan-hero {
    background: linear-gradient(135deg, #0F1A2E 0%, #1a2a4a 100%);
    padding: 60px 20px;
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
}
.keunggulan-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
}
.keunggulan-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 24px;
    line-height: 1.7;
}
.keunggulan-hero .btn-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.keunggulan-hero .btn-primary {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    background: #2563eb;
    color: #fff;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}
.keunggulan-hero .btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}
.keunggulan-hero .btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}
.keunggulan-hero .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Konten Utama */
.keunggulan-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px 40px;
}
.keunggulan-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #0F1A2E;
    text-align: center;
}
.keunggulan-content .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: -8px auto 30px;
    line-height: 1.7;
}

/* Grid Keunggulan (5 item) */
.keunggulan-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}
.keunggulan-grid .item {
    background: #fff;
    padding: 28px 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #eef2f6;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.keunggulan-grid .item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.keunggulan-grid .item .icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 12px;
}
.keunggulan-grid .item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0F1A2E;
    margin: 0 0 8px;
}
.keunggulan-grid .item p {
    font-size: 0.98rem;
    line-height: 1.7;
    color: #444;
    margin: 0;
}

/* Statistik */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    margin: 30px 0 40px;
}
.stat-grid .stat-item {
    background: #f8fafc;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
}
.stat-grid .stat-number {
    font-size: 2rem;
    font-weight: 800;
}
.stat-grid .stat-number.blue { color: #2563eb; }
.stat-grid .stat-number.green { color: #10b981; }
.stat-grid .stat-number.gold { color: #f59e0b; }
.stat-grid .stat-number.red { color: #ef4444; }
.stat-grid .stat-number.purple { color: #8b5cf6; }
.stat-grid .stat-label {
    font-size: 0.9rem;
    color: #555;
}

/* Testimoni */
.testimoni-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0 40px;
}
.testimoni-grid .testi {
    background: #f8fafc;
    padding: 20px 24px;
    border-radius: 12px;
}
.testimoni-grid .testi.blue-border {
    border-left: 4px solid #2563eb;
}
.testimoni-grid .testi.green-border {
    border-left: 4px solid #10b981;
}
.testimoni-grid .testi.gold-border {
    border-left: 4px solid #f59e0b;
}
.testimoni-grid .testi p {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    margin: 0 0 8px;
}
.testimoni-grid .testi .author {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* CTA Footer */
.cta-footer {
    background: linear-gradient(135deg, #0F1A2E 0%, #1a2a4a 100%);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    color: #fff;
    margin-top: 30px;
}
.cta-footer h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 12px;
    color: #fff;
}
.cta-footer p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 24px;
    line-height: 1.7;
    color: #fff;
}
.cta-footer .btn-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-footer .btn-primary {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    background: #2563eb;
    color: #fff;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}
.cta-footer .btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}
.cta-footer .btn-secondary {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}
.cta-footer .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}
.cta-footer .note {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 16px;
    color: #fff;
}

/* Responsif */
@media (max-width: 768px) {
    .keunggulan-hero h1 {
        font-size: 2rem;
    }
    .keunggulan-hero p {
        font-size: 1rem;
    }
    .keunggulan-grid {
        grid-template-columns: 1fr;
    }
    .testimoni-grid {
        grid-template-columns: 1fr;
    }
    .stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cta-footer h3 {
        font-size: 1.5rem;
    }
}