* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #1a1f2c; /* Warna gelap elegan */
    color: #fff;
    line-height: 1.6;
    padding: 0;
    margin: 0;
    font-size: 15px; /* Sedikit lebih kecil dari desktop */
}

/* Smooth scrolling fallback */
html {
    scroll-behavior: smooth;
}

/* Navigation */
header {
    padding: 2rem 5%;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    letter-spacing: 2px;
}

.logo span {
    font-weight: 300;
    color: #d35400;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
}

.nav-link.active {
    color: #e67e22;
    font-weight: 700;
}

/* Hero Section */
.hero {
    padding: 2rem 5% 5rem 5%;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 30px;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-text h1 span {
    color: #ffffff;
    opacity: 0.9;
}

.tagline {
    color: #f39c12;
    margin-bottom: 2rem;
}

/* Tablet Mockup */
.hero-mockup .tablet {
    background: #333;
    padding: 10px;
    border-radius: 20px;
    border: 4px solid #444;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.hero-mockup img {
    width: 100%;
    border-radius: 10px;
    display: block;
    max-width: 100%;
    height: auto; /* Memastikan rasio aspek gambar terjaga */
    margin: 0 auto; /* Tengah-kan gambar jika ukurannya lebih kecil dari 100% */
}

/* Call to Action Area */
.hero-cta h3 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    background: #e67e22;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(230, 126, 34, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: #d35400;
}

/* WhatsApp Button */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    margin-left: 10px;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    background: #1fc65d;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp span {
    font-size: 1.2rem;
}

/* WhatsApp Button Small (di pricing card) */
.btn-whatsapp-small {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: 0.3s;
    margin-bottom: 10px;
    font-size: 0.85rem;
}

.btn-whatsapp-small:hover {
    background: #1fc65d;
    transform: translateY(-2px);
}

/* Trial Button */
.btn-trial {
    display: inline-block;
    background: #2196F3;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: 0.3s;
    margin-bottom: 10px;
    font-size: 0.85rem;
}

.btn-trial:hover {
    background: #1976D2;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.4);
}

/* WhatsApp Link di Footer */
.whatsapp-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 50%;
    font-size: 0.8rem;
    transition: 0.3s;
}

.testimonial {
    margin-top: 2rem;
    border-top: 1px solid #444;
    padding-top: 1rem;
    font-size: 0.9rem;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #d35400 0%, #e67e22 100%);
    padding: 40px 5%;
    width: 100%;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}

.footer-section {
    text-align: center;
}

.footer-logo {
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-section h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.contact-link {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    margin-bottom: 8px;
}

.contact-link:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-contact p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
    border-radius: 50%;
    font-size: 1.3rem;
    transition: 0.3s;
}

.social-icons a:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

.whatsapp-icon {
    background: #25D366 !important;
    font-size: 1.2rem;
}

.whatsapp-icon:hover {
    background: #1fc65d !important;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* CTA Buttons Container */
.cta-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}


/* Section Umum */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #fff;
}

/* Pricing Section */
.pricing {
    padding: 80px 5%;
    background: #1e2433;
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.price-card {
    background: #262d3d;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid #333;
    position: relative;
}

.price-card.featured {
    border: 2px solid #e67e22;
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #e67e22;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    margin: 20px 0;
    color: #e67e22;
}

.price span {
    font-size: 1rem;
    color: #aaa;
}

.price-card ul {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.price-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid #333;
    font-size: 0.9rem;
}

.btn-outline {
    display: inline-block;
    padding: 12px 25px;
    border: 2px solid #e67e22;
    color: #e67e22;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #e67e22;
    color: #fff;
}

/* Contact Section */
.contact-section {
    padding: 100px 5%;
    background: #1a1f2c;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.form-group {
    margin-bottom: 20px;
}

input, select, textarea {
    width: 100%;
    padding: 15px;
    background: #262d3d;
    border: 1px solid #444;
    border-radius: 8px;
    color: #fff;
    outline: none;
}

input:focus, textarea:focus {
    border-color: #e67e22;
}

.contact-form button {
    width: 100%;
    border: none;
    cursor: pointer;
}

.form-success {
    background: rgba(46, 204, 113, 0.12);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.2);
    padding: 10px 12px;
    border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    footer {
        padding: 30px 5%;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .price-card.featured {
        transform: scale(1);
    }
    
    .cta-buttons {
        justify-content: center;
        gap: 8px;
    }
    
    .btn-whatsapp {
        margin-left: 0;
        font-size: 0.9rem;
        padding: 12px 20px;
    }

    /* --- Perbaikan Responsive untuk Tampilan Ponsel (Lanjutan) --- */

    /* Menghilangkan padding dan margin pada body untuk memastikan konten mencapai tepi layar */
    body {
        padding: 0;
        margin: 0;
        /* Menyesuaikan ukuran font dasar untuk perangkat kecil */
        font-size: 15px; /* Sedikit lebih kecil dari desktop */
    }

    /* Memastikan semua section mengambil lebar penuh dan memiliki padding horizontal */
    section {
        width: 100%;
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
        padding-top: 40px; /* Menambah padding vertikal antar section */
        padding-bottom: 40px;
    }

    /* Memastikan container spesifik juga mengambil lebar penuh */
    .pricing-container,
    .contact-section {
        width: 100%;
        max-width: 100%;
        /* Pastikan padding sudah diatur oleh elemen `section` induk atau `container` umum */
    }

    /* Jika ada kelas .container umum yang digunakan untuk membatasi lebar di desktop,
       pastikan juga disesuaikan untuk mobile */
    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
    }

    /* Penyesuaian ukuran font untuk heading */
    h1 {
        font-size: 2.5rem; /* Lebih kecil dari desktop */
        line-height: 1.2;
    }

    h2 {
        font-size: 2rem;
        line-height: 1.3;
    }

    h3 {
        font-size: 1.5rem;
    }

    h4 {
        font-size: 1.2rem;
    }

    p {
        font-size: 1rem;
        line-height: 1.6;
    }

    /* Membuat gambar responsif */
    img {
        max-width: 100%;
        height: auto; /* Memastikan rasio aspek gambar terjaga */
        display: block; /* Menghilangkan spasi ekstra di bawah gambar */
        margin: 0 auto; /* Tengah-kan gambar jika ukurannya lebih kecil dari 100% */
    }

    /* Penyesuaian umum untuk elemen flexbox/grid agar menumpuk secara vertikal */
    /* Tambahkan kelas spesifik Anda di sini jika ada tata letak yang menggunakan flex/grid */
    .flex-group, .grid-layout { /* Contoh: ganti dengan kelas yang Anda gunakan */
        flex-direction: column;
        gap: 20px; /* Menambah jarak antar item saat menumpuk */
    }

    /* Penyesuaian untuk tombol atau elemen interaktif lain */
    .btn { /* Contoh: jika ada kelas .btn umum untuk tombol */
        padding: 12px 25px; /* Sedikit lebih kecil atau disesuaikan */
        font-size: 1rem;
        width: 100%; /* Tombol mungkin lebih baik mengambil lebar penuh pada mobile */
        max-width: 250px; /* Batasi lebar maksimal agar tidak terlalu besar */
        box-sizing: border-box;
    }

    /* Mengurangi margin vertikal antar elemen untuk tampilan yang lebih ringkas */
    h1, h2, h3, h4, p, ul, ol, .section-description {
        margin-bottom: 15px; /* Jarak bawah yang lebih ringkas */
    }

    /* Pastikan header dan navigasi juga responsif dengan baik */
    .header .nav-menu {
        /* ...pastikan menu burger atau navigasi mobile sudah berfungsi dengan baik... */
        /* Contoh: jika menu berubah menjadi tumpukan */
        flex-direction: column;
        align-items: center;
    }
    .header .nav-item {
        margin: 10px 0; /* Jarak antar item navigasi */
    }

    /* Contoh: jika ada elemen card (misal: untuk pricing atau fitur) */
    .card {
        margin-bottom: 25px; /* Jarak antar card */
    }

    /* Pastikan padding untuk cta-buttons di media query sebelumnya sudah cukup */
    .cta-buttons {
        flex-direction: column;
        gap: 15px; /* Jarak antar tombol CTA saat menumpuk */
        align-items: center;
    }
}