:root {
    --color-primary: #0d9488;
    --color-primary-hover: #0f766e;
    --color-secondary: #e0f2fe;
    --color-text-dark: #0f172a;
    --color-text-muted: #64748b;
    --color-bg-light: #f8fafc;
    --color-white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --transition: all 0.3s ease;
    --font-main: 'Outfit', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-main); background-color: var(--color-white); color: var(--color-text-dark); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.navbar { position: fixed; top: 0; left: 0; width: 100%; background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px); z-index: 1000; padding: 15px 0; transition: var(--transition); border-bottom: 1px solid transparent; }
.navbar.scrolled { padding: 10px 0; box-shadow: var(--shadow-sm); border-bottom: 1px solid #e2e8f0; background: rgba(255, 255, 255, 0.98); }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.nav-brand { font-size: 1.5rem; font-weight: 600; color: var(--color-text-dark); display: flex; align-items: center; gap: 8px; }
.icon-brand { color: var(--color-primary); }
.nav-brand strong { color: var(--color-primary); }
.nav-menu { display: flex; list-style: none; gap: 30px; align-items: center; }
.nav-menu li a { font-weight: 500; color: var(--color-text-muted); transition: var(--transition); }
.nav-menu li a:hover, .nav-menu li a.active { color: var(--color-primary); }
.btn-nav-lapor { background: var(--color-primary); color: var(--color-white) !important; padding: 10px 20px; border-radius: 50px; font-weight: 600; display: flex; align-items: center; gap: 8px; transition: var(--transition); }
.btn-nav-lapor:hover { background: var(--color-primary-hover); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.mobile-menu-btn { display: none; background: none; border: none; font-size: 1.8rem; color: var(--color-text-dark); cursor: pointer; }

.hero { padding: 150px 0 100px 0; background: linear-gradient(135deg, var(--color-bg-light) 0%, #e0f2fe 100%); min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-container { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.hero-content { flex: 1; max-width: 600px; }
.badge-hero { display: inline-flex; align-items: center; gap: 8px; background: var(--color-white); padding: 8px 16px; border-radius: 50px; font-size: 0.85rem; font-weight: 600; color: var(--color-primary); box-shadow: var(--shadow-sm); margin-bottom: 25px; }
.hero-content h1 { font-size: 1.7rem; line-height: 1.1; font-weight: 800; margin-bottom: 20px; }
.hero-content h1 span {font-size: 1.8rem; color: var(--color-primary); }
.hero-content p { font-size: 1.1rem; color: var(--color-text-muted); margin-bottom: 35px; }
.hero-actions { display: flex; gap: 15px; margin-bottom: 40px; }
.btn-primary { background: var(--color-primary); color: var(--color-white); padding: 14px 28px; border-radius: 50px; font-weight: 600; display: inline-flex; align-items: center; gap: 10px; transition: var(--transition); }
.btn-primary:hover { background: var(--color-primary-hover); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(13, 148, 136, 0.3); }
.btn-secondary { background: var(--color-white); color: var(--color-text-dark); padding: 14px 28px; border-radius: 50px; font-weight: 600; display: inline-flex; align-items: center; gap: 10px; transition: var(--transition); border: 1px solid #e2e8f0; }
.btn-secondary:hover { border-color: var(--color-primary); color: var(--color-primary); transform: translateY(-3px); }
.hero-stats { display: flex; gap: 30px; }
.stat-item { display: flex; align-items: center; gap: 12px; }
.stat-icon { width: 40px; height: 40px; background: var(--color-white); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #f59e0b; font-size: 1.2rem; box-shadow: var(--shadow-sm); }
.stat-item:nth-child(2) .stat-icon { color: #10b981; }
.stat-text { font-size: 0.85rem; color: var(--color-text-muted); line-height: 1.3; }
.stat-text strong { display: block; color: var(--color-text-dark); font-size: 1rem; }
.hero-image-wrapper { flex: 1; position: relative; display: flex; justify-content: center; align-items: center; }
.blob-bg { position: absolute; width: 450px; height: 450px; background: #0ea5e9; opacity: 0.1; border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; animation: morph 8s ease-in-out infinite; z-index: 0; }
@keyframes morph { 0%, 100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; } 34% { border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%; } 67% { border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%; } }
.hero-image { position: relative; z-index: 1; max-width: 100%; height: auto; filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15)); animation: float 6s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
.float-icon { position: absolute; width: 60px; height: 60px; background: var(--color-white); border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; box-shadow: var(--shadow-lg); z-index: 2; }
.icon-1 { top: 10%; left: 5%; color: #db2777; animation: float 5s ease-in-out infinite 0.5s; transform: rotate(-10deg); }
.icon-2 { bottom: 0%; left: 20%; color: #0ea5e9; animation: float 7s ease-in-out infinite 1s; transform: rotate(15deg); }
.icon-3 { top: 40%; right: 5%; color: #10b981; animation: float 6s ease-in-out infinite 1.5s; transform: rotate(5deg); }

.layanan { padding: 100px 0; background: var(--color-white); }
.section-header { text-align: center; max-width: 600px; margin: 0 auto 50px auto; }
.section-header h2 { font-size: 2.2rem; color: var(--color-text-dark); margin-bottom: 15px; }
.section-header p { color: var(--color-text-muted); }
.layanan-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.layanan-card { background: var(--color-bg-light); padding: 35px 25px; border-radius: 20px; text-align: center; transition: var(--transition); border: 1px solid transparent; }
.layanan-card:hover { background: var(--color-white); box-shadow: var(--shadow-lg); border-color: #e2e8f0; transform: translateY(-5px); }
.card-icon { width: 70px; height: 70px; margin: 0 auto 20px auto; border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 2rem; }
.layanan-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.layanan-card p { font-size: 0.95rem; color: var(--color-text-muted); }

.alur { padding: 100px 0; background: #f8fafc; }
.alur-container { display: flex; justify-content: space-between; align-items: flex-start; margin-top: 50px; }
.alur-step { flex: 1; text-align: center; position: relative; padding: 0 20px; }
.step-number { width: 30px; height: 30px; background: var(--color-primary); color: var(--color-white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; margin: 0 auto 15px auto; }
.step-icon { width: 80px; height: 80px; background: var(--color-white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2.2rem; color: var(--color-primary); margin: 0 auto 20px auto; box-shadow: var(--shadow-md); position: relative; z-index: 2; }
.alur-step h3 { font-size: 1.2rem; margin-bottom: 10px; }
.alur-step p { font-size: 0.9rem; color: var(--color-text-muted); }
.alur-line { flex: 0 0 100px; height: 2px; background: dashed 2px #cbd5e1; margin-top: 55px; }

footer { background: #6db38d; color: #fff; padding: 40px 0; text-align: center; }
.footer-brand { font-size: 1.5rem; font-weight: 700; color: var(--color-white); margin-bottom: 15px; display: flex; align-items: center; justify-content: center; gap: 10px; }



@media screen and (max-width: 992px) {
    .hero-content h1 { font-size: 2rem; }
    .blob-bg { width: 350px; height: 350px; }
    .alur-line { display: none; }
}

@media screen and (max-width: 768px) {
    .mobile-menu-btn { display: block; }
    .nav-menu { position: absolute; top: 100%; left: 0; width: 100%; background: var(--color-white); flex-direction: column; padding: 20px; gap: 20px; box-shadow: var(--shadow-md); clip-path: polygon(0 0, 100% 0, 100% 0, 0 0); transition: clip-path 0.3s ease-in-out; }
    .nav-menu.active { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
    .nav-menu li { width: 100%; text-align: center; }
    .btn-nav-lapor { justify-content: center; }
    
    .hero { padding: 120px 0 60px 0; text-align: center; }
    .hero-container { flex-direction: column-reverse; }
    .hero-actions {
        display: flex; 
        flex-direction: column;
        align-items: center; 
        }
        
        @media (max-width: 768px) {
  .hero-desc {
    font-size: 11px !important;
    
  }
}
    .hero-stats { justify-content: center; }
    .blob-bg { width: 280px; height: 280px; }
    .float-icon { width: 45px; height: 45px; font-size: 1.2rem; }

    .section-header h2 { font-size: 1.8rem; }
    .layanan { padding: 60px 0; }
    .alur { padding: 60px 0; }

    .layanan-grid, .alur-container {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        gap: 20px; 
        padding-bottom: 20px;
        scrollbar-width: none; 
        -ms-overflow-style: none;
    }
    .layanan-grid::-webkit-scrollbar, .alur-container::-webkit-scrollbar {
        display: none;
    }

    .layanan-card, .alur-step {
        flex: 0 0 100%; 
        max-width: 100%;
        scroll-snap-align: center;
        text-align: center; 
        padding: 35px 20px;
        border-radius: 20px;
    }

    .alur-step {
        background: var(--color-white);
        box-shadow: var(--shadow-sm);
    }

    .card-icon, .step-icon { 
        width: 60px; height: 60px; font-size: 1.8rem; 
        margin: 0 auto 15px auto; 
    }
    .step-icon { box-shadow: none; background: #f1f5f9; }
    
    .step-number { 
        width: 28px; height: 28px; font-size: 0.9rem; 
        margin: 0 auto 15px auto; 
    }
    
    .layanan-card h3, .alur-step h3 { font-size: 1.25rem; font-weight: 500; margin-bottom: 10px; }
    .layanan-card p, .alur-step p { font-size: 0.95rem; }
}