/* General Resets & Typography */
:root {
    /* -- Warna Primer & Sekunder -- */
    --primary-color: #007bff; /* Biru konsisten untuk action */
    --accent-color: #28a745; /* Hijau segar untuk highlight & success */
    --secondary-color: #6c757d; /* Abu-abu untuk teks sekunder */

    /* -- Warna Latar Belakang -- */
    --light-bg: #f8f9fa; /* Latar belakang paling terang */
    --medium-bg: #e9ecef; /* Latar belakang sedikit lebih gelap */
    --dark-section-bg: #dee2e6; /* Latar belakang bagian yang sedikit kontras */
    --card-bg: #ffffff; /* Latar belakang kartu putih bersih */
    --header-bg: rgba(255, 255, 255, 0.95); /* Header transparan putih */
    --hover-bg: #e0f2f7; /* Background on hover for some elements */


    /* -- Warna Teks & Border -- */
    --text-color: #343a40; /* Teks utama, abu-abu gelap */
    --light-text: #ffffff; /* Teks di atas background gelap (misal tombol) */
    --dark-text-on-light: #212529; /* Teks gelap di atas background terang */
    --border-color-light: #ced4da; /* Border tipis */
    --card-shadow: rgba(0, 0, 0, 0.08); /* Shadow lebih lembut */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif; /* Mengubah font body */
    background-color: var(--light-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

h1, h2, h3 {
    font-family: 'Poppins', sans-serif; /* Judul tetap pakai Poppins agar menonjol */
    color: var(--dark-text-on-light);
    margin-bottom: 20px;
    font-weight: 700; /* Lebih bold */
}

h1 { font-size: 3.8em; line-height: 1.2; } /* Lebih besar dari sebelumnya */
h2 { font-size: 2.8em; }
h3 { font-size: 2em; }

p {
    margin-bottom: 15px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color); /* Warna hover juga berubah ke hijau */
}

.btn-secondary {
    display: inline-block;
    padding: 12px 28px; /* Padding sedikit lebih besar */
    border-radius: 8px; /* Radius sedikit lebih membulat */
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1.05em; /* Ukuran font tombol */
}
.btn-primary {
    display: inline-block;
    padding: 5px 10px; /* Padding sedikit lebih besar */
    border-radius: 8px; /* Radius sedikit lebih membulat */
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 15px; /* Ukuran font tombol */
    
}
.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-text);
    box-shadow: 0 6px 18px rgba(0, 123, 255, 0.35); /* Shadow lebih kuat */
}

.btn-primary:hover {
    background-color: #0056b3; /* Sedikit lebih gelap */
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.45);
    transform: translateY(-3px); /* Efek sedikit lebih naik */
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
    transform: translateY(-3px);
}

.btn-text { /* Tombol gaya teks baru */
    background: none;
    border: none;
    padding: 0;
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.btn-text i {
    margin-left: 8px;
    font-size: 0.9em;
    transition: transform 0.2s ease;
}

.btn-text:hover i {
    transform: translateX(5px);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.2em;
}

.highlight {
    color: var(--primary-color); /* Perubahan nama kelas dari .tech-highlight */
}

.section-description {
    font-size: 1.15em; /* Sedikit lebih besar */
    max-width: 800px;
    margin: 0 auto 60px auto; /* Margin bawah lebih besar */
    text-align: center;
    color: var(--text-color);
    line-height: 1.7;
}

/* --- Header / Navbar --- */
.main-header {
    background-color: var(--header-bg);
    padding: 18px 0; /* Padding sedikit diubah */
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(8px); /* Blur sedikit dikurangi */
    border-bottom: 1px solid var(--border-color-light);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- LOGO Styles (Integrated and Corrected) --- */
.main-header .logo a {
    display: flex; /* Menggunakan flexbox untuk menyelaraskan gambar dan teks */
    align-items: center; /* Menyelaraskan secara vertikal di tengah */
    font-size: 2.2em; /* Ukuran font keseluruhan logo jika ada teks */
    font-weight: 700;
    color: var(--dark-text-on-light);
    text-decoration: none; /* Pastikan tidak ada garis bawah pada link logo */
}

.main-header .logo img {
    height: auto; /* Tinggi gambar logo yang konsisten */
    width: 100px; /* Lebar akan menyesuaikan secara proporsional */
    margin-right: 10px; /* Beri jarak antara gambar dan teks */
    transition: transform 0.3s ease;
    border: none;
}

.main-header .logo a:hover img {
    transform: scale(1.05); /* Efek membesar sedikit saat hover */
}

.main-header .logo .highlight {
    color: var(--primary-color); /* Memastikan warna highlight aktif */
}
/* --- END LOGO Styles --- */

.main-nav ul {
    list-style: none;
    display: flex;
}

.main-nav ul li {
    margin-left: 35px; /* Spasi antar menu */
}

.main-nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px; /* Garis bawah lebih tebal */
    bottom: -2px; /* Lebih ke bawah */
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Kurva animasi halus */
}

.main-nav ul li a:hover::after,
.main-nav ul li a.active::after { /* Tambahkan kelas active untuk menu yang sedang aktif */
    width: 100%;
}




/* CSS untuk membuat tombol-tombol berjajar horizontal */
.auth-buttons {
   margin-right: 5px;
    display: flex;       /* Mengaktifkan Flexbox untuk menata item-item anak */
    gap: 15px;           /* Memberikan jarak (gap) sebesar 15px di antara setiap tombol */
    align-items: center; /* Menyelaraskan tombol secara vertikal di tengah jika tingginya berbeda */

    /* Opsional: Untuk mendorong grup tombol ini ke kanan di dalam parent-nya */
    /* Jika .auth-buttons ini adalah bagian dari header dan Anda ingin dia di pojok kanan */
    /* Anda mungkin perlu mengatur parent dari .auth-buttons (misalnya .container di header)
       untuk menggunakan display: flex dan justify-content: space-between; */
    /* Contoh:
    .main-header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    */
}

/* Anda juga bisa menambahkan beberapa penyesuaian untuk tombol-tombol di dalamnya jika diperlukan */
.auth-buttons .btn {
    /* Contoh: Jika Anda ingin tombol-tombol ini memiliki padding yang sedikit berbeda */
    /* padding: 10px 20px; */
    /* font-size: 0.9em; */
}

/* Jika Anda ingin tombol "Daftar" memiliki gaya primary (biru solid) seperti yang kita diskusikan sebelumnya,
   Anda harus mengubah kelasnya di HTML menjadi `btn btn-primary` dan bukan `btn btn-secondary`.
   Jika tetap `btn-secondary` dan Anda ingin tampilannya seperti `btn-primary`, Anda bisa menimpa gayanya: */
/*
.auth-buttons .btn-secondary:nth-child(3) { // Menargetkan tombol kedua dengan kelas btn-secondary (yang adalah "Daftar")
    background-color: var(--primary-color);
    color: var(--light-text);
    border: 1px solid var(--primary-color);
    box-shadow: 0 6px 18px rgba(0, 123, 255, 0.35);
}
.auth-buttons .btn-secondary:nth-child(3):hover {
    background-color: #0056b3;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.45);
}
*/
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8em;
    color: var(--primary-color);
    cursor: pointer;
}

/* --- Hero Section --- */
.hero-section {
    background: linear-gradient(135deg, var(--medium-bg) 0%, var(--light-bg) 100%);
    padding: 120px 0; /* Padding lebih besar */
    display: flex;
    align-items: center;
    min-height: 90vh; /* Tinggi lebih besar */
    position: relative;
    overflow: hidden;
}

/* Latar belakang abstrak dengan pola grid */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Pola grid halus SVG yang sudah di-encode URL */
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.1'%3E%3Cpath d='M36 34h-2v-4h4v4zm-20 0H14v-4h4v4zm16 0h-2v-4h4v4zM24 24h-4v4h4v-4zm20 0h-4v4h4v-4zm-20 0h-4v4h4v-4zm-8 0h-4v4h4v-4zm-24 0H0v4h4v-4zM24 34h-4v4h4v-4zm20 0h-4v4h4v4zm-24 0h-4v4h4v-4zm-8 0h-4v4h4v-4zm-24 0H0v4h4v-4zM36 44h-2v-4h4v4zm-20 0H14v-4h4v4zm16 0h-2v-4h4v4zM24 14h-4v4h4v-4zm20 0h-4v4h4v-4zm-20 0h-4v4h4v-4zm-8 0h-4v4h4v-4zm-24 0H0v4h4v-4zM24 4h-4v4h4v-4zm20 0h-4v4h4v-4zm-20 0h-4v4h4v-4zm-8 0h-4v4h4v-4zm-24 0H0v4h4v-4zM36 14h-2v-4h4v4zm-20 0H14v-4h4v4zm16 0h-2v-4h4v4zM36 4h-2v-4h4v4zm-20 0H14v-4h4v4zm16 0h-2v-4h4v4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    background-size: 60px 60px; /* Ukuran pola */
    opacity: 0.1; /* Opacity lebih lembut */
    z-index: 1;
}

.hero-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px; /* Jarak lebih besar */
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 650px; /* Lebar konten lebih besar */
    text-align: left; /* Teks kiri untuk kesan modern */
}

.hero-content h1 {
    font-size: 4.5em; /* Judul hero lebih besar */
    margin-bottom: 25px;
    line-height: 1.1;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content .tagline {
    font-size: 1.4em; /* Tagline lebih besar */
    color: var(--text-color);
    margin-bottom: 50px;
}

.hero-actions .btn {
    margin-right: 25px;
    width: 300px;
    padding-bottom: 5px;
    padding-top: 5px;
    padding-left: 10px;
    padding-right: 10px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    animation: float 3s ease-in-out infinite alternate;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* --- Sections Umum --- */
section {
    padding: 100px 0; /* Padding antar section lebih besar */
    text-align: center;
    position: relative;
}

/* --- Solusi Section --- */
.solutions-section {
    background-color: var(--light-bg);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px; /* Gap lebih besar */
    margin-top: 60px;
}

.solution-card {
    background-color: var(--card-bg);
    padding: 35px; /* Padding lebih besar */
    border-radius: 12px; /* Radius lebih membulat */
    box-shadow: 0 10px 30px var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color-light);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center; /* Konten di tengah */
    text-align: center;
}

.solution-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 35px rgba(0, 123, 255, 0.12);
}

.solution-card i {
    font-size: 3.5em; /* Ikon lebih besar */
    color: var(--primary-color);
    margin-bottom: 25px;
}

.solution-card h3 {
    font-size: 1.8em; /* Judul kartu solusi lebih besar */
    margin-bottom: 15px;
    color: var(--dark-text-on-light);
}

.solution-card p {
    font-size: 1.05em;
    color: var(--text-color);
    flex-grow: 1;
    margin-bottom: 20px;
}


/* --- Fitur Utama Section --- */
.biaya-section {
    background-color: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.features-section {
    background-color: var(--medium-bg);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* Ukuran kartu lebih fleksibel */
    gap: 35px; /* Gap lebih besar */
    margin-top: 60px;
}

.feature-item {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 20px var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    border: 1px solid var(--border-color-light);
    text-align: left; /* Teks di kiri untuk detail fitur */
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 123, 255, 0.1);
    background-color: var(--hover-bg); /* Background saat hover */
}

.feature-item i {
    font-size: 2.8em; /* Ikon fitur sedikit lebih kecil dari solusi, tapi tetap menonjol */
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block; /* Agar ikon di baris sendiri */
}

.feature-item h3 {
    font-size: 1.6em;
    margin-bottom: 10px;
    color: var(--dark-text-on-light);
}

.feature-item p {
    font-size: 0.98em;
    color: var(--text-color);
}

/* --- Testimonial Section --- */
.testimonial-section {
    background-color: var(--medium-bg);
    padding: 100px 0;
    position: relative;
}

.testimonial-slider {
    display: flex;
    overflow-x: hidden; /* Sembunyikan overflow untuk slider */
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    margin-top: 60px;
    position: relative;
    max-width: 900px; /* Lebar maksimal slider */
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card {
    flex: 0 0 100%; /* Setiap kartu mengambil 100% lebar slider */
    scroll-snap-align: center;
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--card-shadow);
    text-align: center;
    border: 1px solid var(--border-color-light);
    margin: 0 15px; /* Spasi antar kartu saat di slider */
}

.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid var(--primary-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.testimonial-card .quote {
    font-size: 1.25em;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 25px;
    line-height: 1.8;
}

.testimonial-card .name {
    font-weight: 600;
    color: var(--dark-text-on-light);
    font-size: 1.1em;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 123, 255, 0.8);
    color: var(--light-text);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5em;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
    z-index: 10;
}

.slider-nav:hover {
    background-color: var(--primary-color);
    transform: translateY(-50%) scale(1.05);
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}


/* --- Call to Action Section (Jadwalkan Demo) --- */
.cta-demo-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%); /* Gradasi warna primer-aksen */
    color: var(--light-text);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-demo-section::before { /* Pola latar belakang untuk CTA */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Pola noise SVG yang sudah di-encode URL */
    background: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><defs><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.6" numOctaves="3" stitchTiles="stitch"/></filter></defs><rect width="100%" height="100%" filter="url(%23noiseFilter)" opacity="0.1" fill="white"/></svg>') no-repeat center center / cover;
    opacity: 0.15;
    z-index: 1;
}

.cta-demo-section .container {
    position: relative;
    z-index: 2;
}

.cta-demo-section h2 {
    font-size: 3.2em; /* Judul lebih besar */
    color: var(--light-text);
    margin-bottom: 25px;
}

.cta-demo-section p {
    font-size: 1.3em; /* Paragraf lebih besar */
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 45px;
}

.cta-form {
    display: flex;
    justify-content: center;
    gap: 20px; /* Gap lebih besar */
    max-width: 800px; /* Form lebih lebar */
    margin: 0 auto;
}

.cta-form input[type="text"],
.cta-form input[type="email"] {
    flex-grow: 1;
    padding: 18px 25px; /* Padding lebih besar */
    border-radius: 8px; /* Radius lebih membulat */
    border: none; /* Tanpa border */
    background-color: rgba(255, 255, 255, 0.9); /* Background putih transparan */
    color: var(--dark-text-on-light);
    font-size: 1.1em;
}

.cta-form input::placeholder {
    color: var(--secondary-color);
}

.cta-form button {
    background-color: var(--accent-color); /* Tombol dengan warna aksen */
    box-shadow: 0 6px 18px rgba(40, 167, 69, 0.4);
}

.cta-form button:hover {
    background-color: #218838; /* Lebih gelap saat hover */
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.5);
}

.cta-demo-section .small-text {
    margin-top: 30px;
    font-size: 0.95em;
    color: rgba(255, 255, 255, 0.8);
}

.cta-demo-section .small-text a {
    color: var(--light-text);
    font-weight: 600;
    text-decoration: underline;
}

/* --- Tentang Kami Section --- */
.about-section {
    background-color: var(--medium-bg); /* Menggunakan medium-bg */
}

.about-section .container {
    display: flex;
    align-items: center;
    gap: 60px; /* Jarak lebih besar */
    text-align: left;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    text-align: left; /* Judul tentang kami di kiri */
    margin-bottom: 30px;
    color: var(--dark-text-on-light);
}

.about-content p {
    font-size: 1.15em; /* Paragraf lebih besar */
    color: var(--text-color);
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px; /* Radius lebih membulat */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15); /* Shadow lebih lembut */
}


/* --- Hubungi Kami Section --- */
.contact-section {
    background-color: var(--light-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); /* Ukuran kolom lebih besar */
    gap: 60px; /* Gap lebih besar */
    margin-top: 60px;
    text-align: left;
}

.contact-info {
    background-color: var(--card-bg);
    padding: 40px; /* Padding lebih besar */
    border-radius: 12px; /* Radius lebih membulat */
    box-shadow: 0 10px 30px var(--card-shadow);
    border: 1px solid var(--border-color-light);
}

.contact-info h3 {
    margin-bottom: 30px;
    color: var(--primary-color);
}

.contact-info p {
    margin-bottom: 18px; /* Margin bawah lebih besar */
    font-size: 1.1em;
    color: var(--text-color);
}

.contact-info p i {
    margin-right: 12px; /* Spasi ikon lebih besar */
    color: var(--accent-color);
    font-size: 1.2em; /* Ikon lebih besar */
}

.social-links {
    margin-top: 35px; /* Margin atas lebih besar */
}

.social-links a {
    font-size: 2em; /* Ikon sosial lebih besar */
    margin-right: 25px; /* Spasi ikon sosial lebih besar */
    color: var(--secondary-color); /* Warna abu-abu untuk ikon sosial */
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

.contact-form-container {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px var(--card-shadow);
    border: 1px solid var(--border-color-light);
}

.contact-form-container h3 {
    margin-bottom: 30px;
    color: var(--primary-color);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px; /* Padding lebih besar */
    margin-bottom: 22px; /* Margin bawah lebih besar */
    border-radius: 8px; /* Radius lebih membulat */
    border: 1px solid var(--border-color-light); /* Border lebih halus */
    background-color: var(--medium-bg);
    color: var(--dark-text-on-light);
    font-size: 1.05em;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--secondary-color);
}

.contact-form button.btn {
    width: auto;
    margin-top: 15px;
}


/* --- Footer --- */
.main-footer {
    background-color: var(--dark-section-bg);
    color: var(--text-color);
    padding: 40px 0; /* Padding lebih besar */
    text-align: center;
    border-top: 1px solid var(--border-color-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom p {
    margin: 8px 0;
    font-size: 0.95em;
    color: var(--text-color);
}

.footer-links a {
    color: var(--text-color);
    margin-left: 25px; /* Spasi antar link footer lebih besar */
    font-size: 0.95em;
}

.footer-links a:hover {
    color: var(--primary-color);
}


/* --- Responsive Design (Penyesuaian untuk ukuran layar lebih kecil) --- */
@media (max-width: 1024px) {
    h1 { font-size: 3.5em; }
    h2 { font-size: 2.3em; }
    .hero-section .container {
        gap: 40px;
    }
    .about-section .container {
        gap: 40px;
    }
    .cta-form {
        flex-direction: column;
        max-width: 500px;
    }
    .cta-form input, .cta-form button {
        width: 100%;
    }
}

@media (max-width: 992px) {
    /* Penyesuaian Logo untuk tablet/mobile */
    .main-header .logo a {
        font-size: 1.8em; /* Ukuran font logo lebih kecil */
    }
    .main-header .logo img {
        height: auto; /* Tinggi gambar logo lebih kecil */
    }

    .main-nav {
        display: none;
    }
    .auth-buttons {
        display: none;
    }
    .mobile-menu-toggle {
        display: block;
    }

    .hero-section .container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        margin-top: 60px;
    }

    .hero-content h1 {
        font-size: 2.8em;
    }

    .hero-content .tagline {
        font-size: 1.2em;
    }

    .hero-image img {
        max-width: 70%; /* Ilustrasi hero lebih kecil di mobile */
    }

    .about-section .container {
        flex-direction: column;
        text-align: center;
    }

    .about-content h2 {
        text-align: center;
    }

    .testimonial-slider {
        margin: 60px 0; /* Hilangkan margin auto yang membatasi */
        padding: 0 20px; /* Tambah padding agar ada ruang di tepi */
    }
    .slider-nav.prev { left: 5px; }
    .slider-nav.next { right: 5px; }
}

@media (max-width: 768px) {
    /* Penyesuaian Logo untuk mobile yang lebih kecil */
    .main-header .logo a {
        font-size: 1.6em; /* Lebih kecil lagi di mobile kecil */
    }
    .main-header .logo img {
        height: auto; /* Tinggi gambar logo lebih kecil lagi */
    }

    h1 { font-size: 2.2em; }
    h2 { font-size: 1.8em; }
    h3 { font-size: 1.4em; }

    section {
        padding: 60px 0;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .hero-actions .btn {
        margin-right: 0;
        width: 100%;
    }

    .solution-grid, .feature-grid, .contact-grid {
        grid-template-columns: 1fr; /* Satu kolom untuk mobile */
        gap: 30px;
    }

    .solution-card, .feature-item, .contact-info, .contact-form-container, .testimonial-card {
        padding: 25px;
    }

    .testimonial-card .quote {
        font-size: 1.1em;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }

    .footer-links {
        margin-top: 10px;
    }
    .footer-links a {
        margin: 0 10px;
    }
}


.tombol-container {
    display: flex; /* Mengaktifkan Flexbox */
    justify-content: center; /* Memposisikan konten di tengah secara horizontal */
    align-items: center; /* Memposisikan konten di tengah secara vertikal */
    
    /* Untuk contoh ini, saya atur tinggi div agar Anda bisa melihat efeknya */
    height: 100vh; /* Mengisi seluruh tinggi viewport */
  }
  
  /* Ini adalah CSS untuk tombol Anda yang sudah kita buat sebelumnya */
  .tombol-berlangganan {
    background-color: var(--primary-color);
    color: var(--light-text);
    box-shadow: 0 6px 18px rgba(0, 123, 255, 0.35);
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
   
  }
  
  .tombol-berlangganan:hover {
    background-color: #3b7ad6;
    transform: translateY(-2px);
  }
  
  .tombol-berlangganan:active {
    background-color: #2e62b0;
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }


  @media (max-width: 992px) {
  .main-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    right: 10px;
    background-color: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .main-nav.active {
    display: flex;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 15px;
  }

  .auth-buttons {
    display: none;
  }

  .auth-buttons.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 240px; /* sesuaikan tinggi */
    right: 10px;
    background-color: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #007bff;
    z-index: 1001;
  }
}

/* Desktop view */
@media (min-width: 993px) {
  .main-nav {
    display: flex !important;
  }

  .auth-buttons {
    display: flex !important;
  }

  .mobile-menu-toggle {
    display: none;
  }
}


/* Tombol login & daftar di dalam nav */
.auth-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .auth-buttons {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 20px;
    }

    .auth-buttons .btn {
        width: 100%;
        text-align: left;
    }
}


.btn-subscribe {
  display: inline-block;
  padding: 12px 24px;
  background-color: #007bff; /* Biru elegan */
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
}

.btn-subscribe:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

.btn-subscribe:active {
  background-color: #004b9c;
  transform: translateY(0);
}


.formspree-form {
    max-width: 500px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
    font-family: 'Poppins', sans-serif;
}

.formspree-form input[type="text"],
.formspree-form input[type="email"],
.formspree-form textarea {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.formspree-form input[type="text"]:focus,
.formspree-form input[type="email"]:focus,
.formspree-form textarea:focus {
    border-color: #007bff;
    outline: none;
}

.formspree-form textarea {
    resize: vertical;
    min-height: 120px;
}

.formspree-form button[type="submit"] {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.formspree-form button[type="submit"]:hover {
    background-color: #0056b3;
}
/* Tampilan default (desktop) */
.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Mobile - sembunyikan menu dulu */
@media (max-width: 768px) {
  .main-nav {
    display: none;
    flex-direction: column;
    background-color: #fff;
    position: absolute;
    top: 80px; /* Atur sesuai header kamu */
    right: 0;
    left: 0;
    z-index: 1000;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .main-nav.active {
    display: flex;
  }

  .mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
  }

  .auth-buttons {
    margin-top: 10px;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 10px;
  }
}

