:root {
    --primary-white: #ffffff;
    --accent-cyan: #00C6FF; /* Warna lebih cerah */
    --accent-blue: #0072FF;
    --dark-bg: #0F2027;
    --dark-text: #2C3E50;
    --light-bg: #F8F9FA;
    --tech-gradient: linear-gradient(90deg, var(--accent-cyan) 0%, var(--accent-blue) 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Public Sans', sans-serif;
    background-color: var(--primary-white);
    color: var(--dark-text);
    line-height: 1.8; /* Jarak antar baris diperlebar biar ga numpuk */
    overflow-x: hidden;
}

.container { width: 90%; max-width: 1100px; margin: 0 auto; }
a { text-decoration: none; }
img { max-width: 100%; }

/* --- TYPOGRAPHY --- */
.text-gradient {
    background: var(--tech-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}
.section-title { font-size: 2.5rem; font-weight: 800; line-height: 1.2; margin-bottom: 15px; }
.section-subtitle { font-size: 1.1rem; color: #666; max-width: 600px; margin: 0 auto; }
.text-center { text-align: center; }
.section-padding { padding: 100px 0; } /* Padding diperbesar */
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mb-50 { margin-bottom: 50px; }

/* --- BUTTONS --- */
.btn-primary {
    display: inline-block;
    padding: 16px 32px;
    background: var(--tech-gradient);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 114, 255, 0.3); /* Glow effect */
    transition: all 0.3s ease;
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 114, 255, 0.5);
}

.btn-outline {
    display: inline-block;
    padding: 15px 32px;
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: white; }

.btn-secondary {
    padding: 12px 30px;
    border: 2px solid var(--accent-blue);
    color: var(--accent-blue);
    background: transparent;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 40px;
    transition: 0.3s;
}
.btn-secondary:hover { background: var(--accent-blue); color: white; }

/* --- NAVBAR --- */
.navbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 25px 0; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    z-index: 100; width: 90%;
}
.brand-logo { height: 60px; width: auto; } /* Ukuran logo disesuaikan */
.nav-links { list-style: none; display: flex; gap: 30px; }
.nav-links a { color: rgba(255,255,255,0.9); font-weight: 600; font-size: 0.95rem; }
.nav-links a:hover { color: white; }
.btn-contact {
    padding: 10px 25px; border: 1px solid rgba(255,255,255,0.4);
    border-radius: 30px; transition: 0.3s;
}
.btn-contact:hover { background: white; color: var(--accent-blue) !important; }

/* --- HERO SECTION --- */
.hero-section {
    position: relative; height: 100vh; display: flex; align-items: center;
    background: #0F2027; /* Fallback color */
    overflow: hidden;
}
.hero-section::before {
    content: ''; position: absolute; inset: 0;
    background: url('hero-bg.png') center/cover no-repeat;
    opacity: 0.4; z-index: 1;
}
.hero-content { position: relative; z-index: 10; max-width: 700px; }
.badge-new {
    background: rgba(255, 255, 255, 0.15); border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px; border-radius: 30px; color: #00C6FF; font-weight: 700; font-size: 0.85rem;
    display: inline-block; margin-bottom: 0px;
}
.main-slogan {
    font-size: 3.5rem; color: white; margin-bottom: 20px; letter-spacing: -1px;
}
.sub-slogan { font-size: 1.25rem; color: rgba(255,255,255,0.8); margin-bottom: 40px; }
.hero-buttons { display: flex; gap: 15px; }

/* Pulse Animation untuk tombol */
@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(0, 198, 255, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(0, 198, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 198, 255, 0); }
}
.pulse-effect { animation: pulse-glow 2s infinite; }

/* --- SERVICES --- */
.services-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px;
}
.service-card {
    background: white; padding: 40px; border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); border: 1px solid #eee;
    transition: 0.3s;
}
.service-card:hover { transform: translateY(-10px); border-color: var(--accent-cyan); }
.service-icon {
    height: 80px; width: 80px; background: var(--light-bg); border-radius: 20px;
    display: flex; align-items: center; justify-content: center; margin-bottom: 25px;
}
.service-icon img { width: 40px; }
.service-icon.multi-icon { width: auto; justify-content: start; background: transparent; gap: 10px; padding: 0; }
.service-icon.multi-icon img { width: 40px; height: 40px; background: var(--light-bg); padding: 8px; border-radius: 12px; }

.service-card h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 10px; color: var(--dark-text); }
.service-card p { font-size: 1rem; color: #666; line-height: 1.6; }

/* --- WHY US (PREMIUM GLASSMORPHISM) --- */
.why-us-section {
    padding: 100px 0; background: linear-gradient(135deg, #0F2027 0%, #203A43 50%, #2C5364 100%);
    color: white; position: relative; overflow: hidden;
}
.why-us-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.badge-glass {
    padding: 5px 15px; background: rgba(255,255,255,0.1); border-radius: 5px;
    font-size: 0.8rem; letter-spacing: 2px; font-weight: 700; color: var(--accent-cyan);
}
.text-white { color: white; }
.text-white-opacity { color: rgba(255,255,255,0.7); margin-bottom: 40px; }

.cta-box-premium {
    background: rgba(255,255,255,0.1); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 30px; border-radius: 20px;
}
.cta-box-premium p { margin-bottom: 15px; font-weight: 600; color: white; }
.disclaimer { display: block; margin-top: 10px; font-size: 0.8rem; color: rgba(255,255,255,0.5); font-style: italic; }

.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stat-card {
    background: rgba(255,255,255,0.05); padding: 25px; border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05); transition: 0.3s;
}
.stat-card:hover { background: rgba(255,255,255,0.1); }
.stat-card.highlight { background: var(--tech-gradient); border: none; }
.stat-card.highlight .stat-number, .stat-card.highlight .stat-desc { color: white; }
.stat-number { font-size: 2.5rem; font-weight: 800; color: var(--accent-cyan); line-height: 1; margin-bottom: 5px; }
.stat-desc { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.4; }

/* --- CLIENTS --- */
.bg-light { background: var(--light-bg); }
.client-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 15px; margin-top: 40px;
}
.client-logo-slot {
    background: white; height: 100px; display: flex; align-items: center; justify-content: center;
    border-radius: 12px; border: 1px solid rgba(0,0,0,0.05); padding: 15px;
}
.client-logo-slot img { max-height: 60%; filter: grayscale(1); opacity: 0.6; transition: 0.3s; }
.client-logo-slot:hover img { filter: grayscale(0); opacity: 1; transform: scale(1.1); }

/* --- TESTIMONIALS --- */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; }
.testimonial-card {
    background: white; border-radius: 24px; overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08); border: 1px solid #eee;
    display: flex; flex-direction: column;
}
.chat-screenshot {
    background: var(--light-bg); padding: 30px; display: flex; justify-content: center;
    border-bottom: 1px solid #eee;
}
.chat-screenshot img { width: 200px; border-radius: 12px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.testi-content { padding: 30px; flex-grow: 1; display: flex; flex-direction: column; }
.quote { font-size: 1rem; color: #444; font-style: italic; margin-bottom: 20px; flex-grow: 1; }
.client-info strong { display: block; color: var(--accent-blue); }
.client-info span { font-size: 0.9rem; color: #888; }

/* --- FOOTER --- */
.footer-section { background: #0F2027; color: white; padding: 80px 0 30px; }
.copyright { margin-top: 50px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; color: rgba(255,255,255,0.4); font-size: 0.9rem; }

/* --- FLOATING WA --- */
.float-wa {
    position: fixed; width: 60px; height: 60px; bottom: 30px; right: 30px;
    background-color: #25d366; color: #FFF; border-radius: 50px; text-align: center;
    font-size: 30px; box-shadow: 2px 2px 10px rgba(0,0,0,0.2); z-index: 100;
    display: flex; align-items: center; justify-content: center; transition: 0.3s;
}
.float-wa:hover { transform: scale(1.1); }

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .navbar { flex-direction: column; gap: 20px; }
    .nav-links { gap: 15px; flex-wrap: wrap; justify-content: center; }
    .hero-content { text-align: center; padding-top: 150px; }
    .main-slogan { font-size: 2.5rem; }
    .hero-buttons { flex-direction: column; }
    .why-us-wrapper { grid-template-columns: 1fr; text-align: center; }
    .stats-grid { grid-template-columns: 1fr; }
    .section-padding { padding: 60px 0; }
}

/* --- ABOUT & VISI MISI --- */
.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.vm-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #eee;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: 0.3s;
}

.vm-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-blue);
    box-shadow: 0 15px 40px rgba(0, 114, 255, 0.1);
}

.vm-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    background: var(--light-bg);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}

.vm-card h3 {
    font-size: 1.5rem;
    color: var(--accent-blue);
    margin-bottom: 15px;
    font-weight: 800;
}

.vm-card p {
    color: #555;
    font-size: 1rem;
}

/* --- VISI MISI CLEAN --- */
.vm-card {
    /* Reset style lama yg mungkin ada icon-nya */
    padding: 40px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    text-align: center;
}
.vm-card h3 {
    color: var(--accent-blue);
    margin-bottom: 15px;
    font-size: 1.5rem;
}
/* Hapus VM Icon style yg lama kalau masih ada */

/* --- PRICING SECTION --- */
.promo-banner {
    background: #e3f2fd;
    color: var(--accent-blue);
    padding: 10px 20px;
    border-radius: 8px;
    display: inline-block;
    border: 1px solid rgba(0, 114, 255, 0.2);
    font-size: 0.95rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    align-items: start; /* Supaya tinggi kartu menyesuaikan isi */
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    transition: 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-blue);
}

/* Style Khusus Best Seller */
.pricing-card.popular {
    border: 2px solid var(--accent-blue);
    box-shadow: 0 15px 40px rgba(0, 114, 255, 0.15);
    transform: scale(1.05); /* Sedikit lebih besar */
    z-index: 2;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-blue);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.card-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.target-badge {
    display: inline-block;
    background: #f1f3f5;
    color: #666;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.price-box {
    margin-bottom: 5px;
    color: var(--dark-text);
}

.currency {
    font-size: 1.2rem;
    font-weight: 600;
    vertical-align: top;
}

.amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-blue);
}

.period {
    font-size: 0.9rem;
    color: #888;
    font-weight: 400;
}

.renewal-price {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.feature-list {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.feature-list li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #444;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.feature-list li i {
    color: #25d366; /* Warna centang hijau */
    margin-top: 4px;
}

.full-width {
    width: 100%;
    text-align: center;
}

.text-dark {
    color: var(--dark-text) !important;
    border-color: var(--dark-text) !important;
}

.text-dark:hover {
    background: var(--dark-text);
    color: white !important;
}

.pricing-note {
    font-size: 0.9rem;
    color: #888;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
}

@media (max-width: 768px) {
    .pricing-card.popular {
        transform: scale(1);
        margin: 20px 0;
    }
    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
}

/* --- FIX WARNA PRICING --- */

/* 1. Mengatur baris fitur yang tidak tersedia (Disabled) */
.feature-list li.disabled-feature {
    color: #b0b0b0 !important; /* Warna Teks Abu-abu */
    text-decoration: line-through; /* Coret teks biar makin jelas (Opsional, kalau gak mau hapus aja baris ini) */
}

/* 2. Mengatur ikon silang (X) di dalam baris disabled */
.feature-list li.disabled-feature i {
    color: #ff4d4d !important; /* Warna Ikon MERAH (Paksa) */
    opacity: 1 !important;
}

/* 3. Memastikan ikon check (V) tetap hijau */
.feature-list li i {
    /* Ini aturan default untuk checkmark */
    color: #25d366; 
    min-width: 25px; /* Supaya ikon rapi lurus ke bawah */
}

/* --- LANGUAGE SWITCHER --- */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 20px;
    border: 1px solid rgba(0, 114, 255, 0.3);
    padding: 5px 15px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
}

.lang-btn {
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    color: #FFFFFFE6;
    transition: 0.3s;
}

.lang-btn:hover {
    color: var(--accent-blue);
}

.lang-btn.active {
    color: var(--accent-blue);
    font-weight: 800;
    text-decoration: underline;
}

/* Di Mobile, taruh switch di tengah */
@media (max-width: 768px) {
    .lang-switch {
        margin: 15px auto;
        justify-content: center;
        width: fit-content;
    }
}

