/* --- Konfigurasi Dasar & Variabel --- */
:root {
    --white: #fdfdfd;
    --blue: #0044f1;
    --green: #adff00;
    --dark-text: #1a1a1a;
    --light-bg: #f8f9fa; /* Warna latar belakang alternatif */
    --font-primary: 'Bricolage Grotesque', sans-serif;
}

/* --- Reset & Gaya Global --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--white);
    color: var(--dark-text);
    line-height: 1.6;
}

/* --- Animasi --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Header & Navigasi --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(253, 253, 253, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 40px;
    width: auto;
}

.desktop-nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem; /* Sedikit lebih renggang */
}

.desktop-nav a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--blue);
    transition: width 0.3s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active { /* Gaya untuk link aktif */
    color: var(--blue);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after { /* Garis bawah untuk link aktif */
    width: 100%;
}

/* --- Hamburger & Navigasi Mobile (Default Tersembunyi di Desktop) --- */
.hamburger-menu, .mobile-nav {
    display: none;
}

/* --- Section Styling --- */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
    background-image: url('assets/bg.png');
    background-size: cover;
    background-position: center;
    background-color: var(--white);
    overflow: hidden; /* Mencegah elemen animasi keluar */
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--dark-text);
    margin-bottom: 1rem;
    /* Animasi */
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-content p {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
    /* Animasi */
    opacity: 0;
    animation: fadeInUp 0.8s 0.2s ease-out forwards;
}

.hero-content .cta-button {
    /* Animasi */
    opacity: 0;
    animation: fadeInUp 0.8s 0.4s ease-out forwards, cta-pulse-glow 2.5s infinite ease-in-out;
}

.content-section {
    padding: 6rem 2rem;
}

.alternate-bg {
    background-color: var(--light-bg);
}

.section-container {
    max-width: 1100px; /* Sedikit lebih lebar */
    margin: 0 auto;
    text-align: center;
}

.content-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--blue);
}

.section-subheadline {
    max-width: 800px;
    margin: 0 auto 3rem auto; 
    color: #555;
    line-height: 1.7;
}

/* Program Cards */
.program-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    text-align: left;
    align-items: stretch;
}

.card {
    background-color: #fff;
    padding: 0;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.07);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.card.card-highlight h3 {
    color: var(--blue);
}

/* --- Tombol (Call to Action) --- */
.cta-button {
    display: inline-block;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s ease, background-color 0.3s ease;
    background-color: var(--blue);
    color: var(--white);
    border: 2px solid #0038c8;
    cursor: pointer;
    /* Animasi glow telah dipindahkan ke .hero-content .cta-button untuk spesifisitas */
}

.cta-button:hover {
    transform: scale(1.05);
    background-color: #0038c8;
}

/* --- Styling untuk kotak 'Mengapa Fluent Voices?' --- */
.why-fluentvoices-box {
    background-color: #f0f6ff;
    border: 1px solid #d9e7ff;
    border-radius: 12px;
    padding: 2.5rem;
    margin-top: 2rem;
}

.why-fluentvoices-title {
    text-align: center;
    font-weight: 700;
    font-size: 1.6rem;
    margin-bottom: 2rem;
    color: var(--blue);
}

/* --- Section Testimoni --- */
.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.testimonial-card {
    padding: 2.5rem; 
    display: flex;
    flex-direction: column;
    align-items: center; 
    text-align: center;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 1rem;
    flex-grow: 1; 
}

.testimonial-name {
    font-weight: 600;
    color: var(--dark-text);
}


/* --- Formulir Pendaftaran --- */
.registration-form {
    max-width: 700px;
    margin: 3rem auto 0 auto;
    text-align: left;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group.full-width {
    grid-column: 1 / 3;
}

.registration-form input,
.registration-form select {
    width: 100%;
    padding: 1rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--dark-text);
    background-color: #f0f2f5;
    border: 1px solid transparent;
    border-radius: 8px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.registration-form select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23333' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.registration-form input:focus,
.registration-form select:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0, 68, 241, 0.2);
}

.registration-form select:required:invalid {
    color: #888;
}

.form-notes {
    text-align: left;
    margin: 1.5rem 0;
    font-size: 0.85rem;
    color: #666;
}

#form-status {
    text-align: center;
    margin-top: 1.5rem;
    font-weight: 500;
}

/* --- Footer --- */
.main-footer {
    text-align: center;
    padding: 2.5rem 2rem;
    background-color: #1a1a1a;
    color: #a0a0a0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    margin-top: 0.5rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--blue);
}


/* --- TAMPILAN MOBILE (Responsive) --- */
@media (max-width: 768px) {
    .header-container {
        padding: 0.75rem 1.5rem;
        position: relative; 
        justify-content: center; 
    }

    .desktop-nav {
        display: none;
    }

    .hamburger-menu {
        display: flex; 
        flex-direction: column;
        justify-content: space-around;
        width: 28px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 10;
        position: absolute;
        top: 50%;
        left: 1.5rem;
        transform: translateY(-50%);
    }

    .hamburger-menu .line {
        display: block;
        width: 100%;
        height: 3px;
        background-color: var(--dark-text);
        border-radius: 3px;
        transition: all 0.3s ease-in-out;
    }

    .hero-section {
        background-image: url('assets/bg_mobile.png');
    }
    
    .mobile-nav {
        display: block;
        position: fixed;
        top: 0;
        left: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--white);
        z-index: 999;
        padding-top: 5rem;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        transition: left 0.4s ease-in-out;
    }
    
    .mobile-nav.active {
        left: 0;
    }

    .mobile-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-nav li a {
        display: block;
        padding: 1rem 2rem;
        text-decoration: none;
        color: var(--dark-text);
        font-size: 1.2rem;
        font-weight: 500;
        transition: background-color 0.2s;
    }
    
    .mobile-nav li a:hover {
        background-color: var(--light-bg);
        color: var(--blue);
    }

    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-group.full-width {
        grid-column: auto;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}

/* --- Tambahan untuk Footer Contact --- */
.footer-contact {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #333;
}

.footer-contact h3 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.contact-list {
    display: flex;
    justify-content: center;
    gap: 1.5rem 2.5rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-item a,
.contact-item span {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--blue);
}
.contact-item a:hover svg {
    fill: var(--blue);
}


.contact-item svg {
    width: 22px;
    height: 22px;
    fill: #a0a0a0;
    transition: fill 0.3s ease;
}

.footer-bottom {
    padding-top: 1.5rem;
}

/* --- Tombol WhatsApp Mengambang --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.25);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

/* Styling untuk gambar di dalam kartu program */
.card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content p {
    flex-grow: 1;
}

/* --- Gaya untuk Bagian 'Why Fluent Voices' --- */
.why-us-headline {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-text);
}
.why-us-headline::after {
    display: none;
}

.why-us-subheadline {
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto 3.5rem auto;
    color: #555;
}

.comparison-container {
    display: grid;
    grid-template-columns: 1fr; 
    gap: 2rem;
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-title {
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.problem-title {
    color: #c53030;
}

.solution-title {
    color: var(--blue);
}


.problem-column,
.solution-column {
    padding: 2.5rem;
    border-radius: 12px;
}

.problem-column {
    background-color: #fff1f1;
    border: 1px solid #ffdede;
}

.solution-column {
    background-color: #f0f6ff;
    border: 1px solid #d9e7ff;
}

.comparison-container .problem-column h3,
.comparison-container .solution-column h3 {
    display: none;
}

.comparison-container .icon-wrapper {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.comparison-container .icon-wrapper svg {
    width: 100%;
    height: 100%;
}

.icon-wrapper.cross svg {
    fill: #e53e3e;
}

.icon-wrapper.check svg {
    fill: var(--blue);
}

.comparison-container p {
    margin: 0;
    line-height: 1.6;
    color: #333;
}

.point-list {
    list-style: none;
    padding: 0;
}

.point-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.point-list li:last-child {
    margin-bottom: 0;
}

.solution-column .solution-intro {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #444;
}

.solution-column .target-audience {
    background-color: rgba(255, 255, 255, 0.5);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border: 1px solid #d9e7ff;
}

.solution-column .target-audience p {
    font-weight: 600;
    margin-bottom: 1rem;
}

.solution-column .target-audience .point-list li p {
    font-weight: normal; 
    margin-bottom: 0;
}

.icon-wrapper.bullet svg {
    fill: var(--blue);
}

.core-message-box {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-top: 2.5rem;
    padding: 2rem;
    background-color: #e3ebf7;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--blue);
}

.core-message-box p {
    margin: 0;
}


/* ### GAYA BARU UNTUK BAGIAN PROFIL 'TENTANG' ### */
.profile-container {
    display: flex;
    align-items: center;
    gap: 3rem;
    text-align: left;
    max-width: 950px;
    margin: 0 auto;
}

.profile-photo {
    flex-shrink: 0;
    flex-basis: 300px;
}

.profile-photo img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.profile-text p {
    margin-bottom: 1rem;
}

.about-details {
    max-width: 950px; /* Lebarkan agar grid lebih leluasa */
    margin: 4rem auto 0 auto;
    text-align: left;
}

.about-details h3 {
    text-align: center; /* Tengahkan subjudul */
    font-size: 1.8rem;
    color: var(--dark-text);
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

/* ### GAYA BARU UNTUK KARTU PEMBEDA ### */
.differentiator-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

.differentiator-item {
    background-color: var(--light-bg);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.differentiator-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 68, 241, 0.08);
}

.differentiator-item svg {
    width: 48px;
    height: 48px;
    fill: var(--blue);
    margin-bottom: 1.5rem;
}

.differentiator-item h4 {
    font-size: 1.25rem;
    color: var(--dark-text);
    margin-bottom: 0.75rem;
}

.differentiator-item p {
    color: #555;
    font-size: 0.95rem;
}

.final-motto {
    margin-top: 4rem;
    padding: 2rem;
    background-color: #f0f6ff;
    border-left: 5px solid var(--blue);
    font-style: italic;
    font-size: 1.1rem;
    text-align: center;
    line-height: 1.8;
}

/* --- BAGIAN HARGA (KODE FINAL) --- */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    align-items: stretch; 
    margin-top: 3rem;
}

.price-card {
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative; 
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 68, 241, 0.1);
}

.price-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 0.5rem;
}

.price-card > p { 
    color: #555;
    margin-bottom: 1.5rem;
    min-height: 50px; 
}

/* PERBAIKAN #1: Memberi ruang ekstra di kartu populer agar judul tidak menabrak badge */
.price-card.popular {
    border-color: var(--blue);
    border-width: 2px;
    overflow: hidden;
    padding-top: 3.5rem; /* Padding atas dibuat lebih besar dari kartu biasa */
}

.popular-badge {
    position: absolute;
    width: 200px; 
    padding: 8px 0; 
    background-color: var(--blue);
    color: var(--white);
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 68, 241, 0.2);
    top: 30px;
    right: -60px;
    transform: rotate(45deg);
}

/* PERBAIKAN #2 & #3: Membuat alignment nama paket dan harga menjadi simetris */
.price-option {
    display: flex;
    justify-content: space-between; /* Mendorong item ke sisi berlawanan */
    align-items: center;            /* Menyelaraskan item di tengah secara vertikal */
    padding: 1.25rem 0;
    border-bottom: 1px solid #f0f2f5;
}
.price-option:first-of-type {
    border-top: 1px solid #f0f2f5;
}

.option-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark-text);
    flex-basis: 30%;   /* Diubah dari 40% untuk memberi ruang lebih pada harga */
    flex-shrink: 0;
    margin-right: 1rem;
}

.option-price {
    font-weight: 700;
    font-size: 1.2rem; /* Ukuran final, lebih kecil */
    color: var(--dark-text);
    text-align: right;
    white-space: nowrap; 
}

.option-price small {
    font-size: 0.75rem; /* Ukuran teks '/bulan' juga diperkecil */
    font-weight: 400;
    color: #666;
    margin-left: 0.25rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    flex-grow: 1; 
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #333;
}

.features-list li svg {
    width: 20px;
    height: 20px;
    fill: var(--blue);
    flex-shrink: 0;
}

.price-card .cta-button {
    margin-top: auto; 
    text-align: center;
    width: 100%;
}

/* --- Media Query untuk Responsivitas --- */
@media (max-width: 992px) {
    /* Aturan ini tidak lagi dibutuhkan karena layout sudah 1 kolom */
}

@media (max-width: 768px) {
    .why-us-headline {
        font-size: 1.8rem;
    }
    .why-us-subheadline {
        font-size: 1rem;
    }
    .problem-column,
    .solution-column {
        padding: 1.5rem;
    }
    /* Membuat bagian profil menjadi 1 kolom di mobile */
    .profile-container {
        flex-direction: column;
        gap: 2rem;
    }
    .profile-photo {
        flex-basis: auto;
        width: 60%;
        max-width: 250px;
    }
    .profile-text, .about-details {
        text-align: center;
    }
    /* ### GAYA GRID MENJADI 1 KOLOM DI MOBILE ### */
    .differentiator-grid {
        grid-template-columns: 1fr;
    }
    .about-details h3 {
        font-size: 1.5rem;
    }
}

/* --- GAYA UNTUK DROPDOWN DI BAGIAN HARGA --- */
.dropdown-container {
    position: relative;
    width: 100%;
    margin-top: auto;
}

.dropdown-container .cta-button {
    width: 100%;
}

.dropdown-menu {
    display: none; 
    position: absolute;
    top: 100%;      /* GANTI DARI 'bottom' KE 'top' agar muncul di bawah */
    margin-top: 8px; /* Tambahkan sedikit jarak dari tombol */
    left: 0;
    width: 100%;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    z-index: 10;
    overflow: hidden;
    border: 1px solid #eee;
}

.dropdown-menu.show {
    display: block; /* Tampilkan saat class 'show' ditambahkan oleh JS */
}

.dropdown-item {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--dark-text);
    text-decoration: none;
    text-align: left;
    transition: background-color 0.2s ease;
}

.dropdown-item:hover {
    background-color: var(--light-bg);
    color: var(--blue);
}

/* Menambahkan z-index pada kartu yang aktif agar tidak tertutup */
.price-card.active-z {
    z-index: 20;
}

/* SOLUSI: Sembunyikan pita "Populer" saat dropdown menu aktif */
.price-card.dropdown-active .popular-badge {
    display: none;
}

/* Style untuk highlight fitur yang berbeda di kartu harga */
.features-list .feature-highlight {
    background-color: #f0f6ff;
    padding: 0.75rem;
    margin: 0.5rem -0.75rem;
    border-radius: 8px;
    border: 1px solid #d9e7ff;
}

.features-list .feature-highlight span {
    line-height: 1.5;
}

.features-list .feature-highlight strong {
    color: var(--blue);
}

/* --- Hero Countdown (FINAL & Mobile-Friendly) --- */
@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 5px rgba(173, 255, 0, 0.4);
    }
    50% {
        box-shadow: 0 0 18px rgba(173, 255, 0, 0.9);
    }
    100% {
        box-shadow: 0 0 5px rgba(173, 255, 0, 0.4);
    }
}

/* PERUBAHAN: Animasi baru untuk tombol CTA */
@keyframes cta-pulse-glow {
    0% {
        box-shadow: 0 0 8px rgba(0, 68, 241, 0.6);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 68, 241, 0.9);
    }
    100% {
        box-shadow: 0 0 8px rgba(0, 68, 241, 0.6);
    }
}

#hero-countdown {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    background-color: var(--blue);
    color: var(--white);
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    animation: pulse-glow 3s infinite ease-in-out;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

#hero-countdown p {
    margin: 0;
    line-height: 1.5;
    color: var(--white); 
}

.badge-promo {
    background-color: var(--green);
    color: #0029a3; 
    padding: 0.25rem 0.6rem;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.8rem;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.countdown-text {
    vertical-align: middle;
    margin-right: 0.5rem;
    font-size: 1 rem; /* FONT DIKECILKAN */
}

#countdown-timer {
    font-weight: 700;
    color: var(--green);
    vertical-align: middle;
}

#promo-expired-text {
    font-weight: 700;
    color: #ffc2c2;
}

/* === PERUBAHAN UTAMA UNTUK MOBILE === */
@media (max-width: 768px) {
    #hero-countdown {
        padding: 0.75rem;
        font-size: 0.9rem;
        /* Hapus 'animation: none;' untuk mengaktifkan kembali efek glow */
        border-radius: 12px;      /* 1. Bentuk tidak lagi lonjong */
        margin-bottom: 2.5rem;    /* 2. Posisikan lebih ke atas */
        border: 2px solid var(--green); /* 3. Tambahkan border hijau cerah */
    }

    .badge-promo {
        margin-right: 0;
        margin-bottom: 0.5rem;
        display: inline-block;
    }

    .countdown-text {
        display: block;
        margin-right: 0;
        margin-bottom: 0.5rem;
        font-size: 0.8rem; /* FONT DIKECILKAN UNTUK MOBILE */
    }

    #countdown-timer {
        display: block;
        font-size: 1.5rem;
    }
}

/* --- Penyesuaian Tampilan Harga di Mobile --- */
@media (max-width: 768px) {
    /* Mengurangi jarak vertikal antar kartu di tampilan mobile */
    .pricing-cards {
        gap: 2rem;
    }

    /* Menyesuaikan padding di dalam kartu agar tidak terlalu sempit */
    .price-card {
        padding: 2rem 1.5rem;
    }

    /* Menyesuaikan ukuran font judul dan harga agar tidak terlalu besar */
    .price-card h3 {
        font-size: 1.5rem;
    }

    .option-price {
        font-size: 1.5rem;
    }
    
    .option-name {
        font-size: 1rem;
    }
    
    /* Mengatur ulang posisi badge 'Populer' agar pas di layar mobile */
    .popular-badge {
        width: 160px;
        font-size: 0.8rem;
        top: 22px;
        right: -45px;
    }
    
    /* Memastikan teks fitur lebih mudah dibaca */
    .features-list li {
        gap: 0.5rem; /* Mengurangi jarak antara ikon dan teks */
        font-size: 0.95rem;
    }
}

/* FIX: Mengatasi dropdown yang terpotong pada kartu populer */
.price-card.dropdown-active {
    overflow: visible;
    z-index: 20; /* Pastikan kartu aktif ada di lapisan paling atas */
}