/* ===============================
   GLOBAL
=============================== */

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background: #ffffff;
    color: #333;
}

h1, h2, h3 {
    margin: 0;
    font-weight: 700;
}

.section {
    padding: 80px 40px;
    max-width: 1200px;
    margin: auto;
}

.purple { color: #7b2fff; }

/* FIX deprecated H1 size warning */
h1 {
    font-size: 42px;
}

h2 {
    font-size: 32px;
}

h3 {
    font-size: 22px;
}

/* ===============================
   NAVBAR
=============================== */

.navbar {
    width: 93.5%;
    background: #ffffff;
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: anchor;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.gradient-logo {
    font-size: 22px;
    font-weight: 800;
    background: linear-gradient(90deg, #7b2fff, #bdbdbd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.no-underline {
    text-decoration: none;
    font-size: 22px;
}

/* ========== DESKTOP NAVBAR ========== */
.navbar {
    width: 100%;
    padding: 30px 0;
    background: #f6f6f6;
    border-bottom: 1px solid #e5e5e5;
    margin: 0 auto;
    max-width: 1200px;
}

/* center menu */
.nav-menu {
    display: flex;
    justify-content: center;
    gap: 18px;
    align-items: center;
}

.nav-menu li:last-child {
    margin-left: auto;
}

/* main menu text */
.nav-menu a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: #7c5cff;
    transition: 0.2s ease;
}

.nav-menu a:hover {
    color: #000;
}

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

/* dropdown container */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    line-height: 1;
}

.arrow {
    font-size: 15px;
}

/* dropdown menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    gap: 10px;
    background: #fff;
    padding: 10px 0;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    min-width: 180px;
    display: none;
    flex-direction: column;
}

.dropdown-menu a {
    font-size: 16px;
    padding: 10px 20px;
    color: #7c5cff;
}

.dropdown-menu a:hover {
    background: #f2f2f2;
}

/* show dropdown on hover */
.dropdown:hover .dropdown-menu {
    display: flex;
}

/* CTA BUTTON NAVBAR */
.btn-daftar {
    background: linear-gradient(135deg, #7b2fff, #5b21b6);
    color: #ffffff !important;
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 6px 18px rgba(123, 47, 255, 0.25);
}

/* HOVER BIAR KELIATAN HIDUP */
.btn-daftar:hover {
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(123, 47, 255, 0.35);
    background: linear-gradient(135deg, #6d28d9, #4c1d95);
}

/* ===== HAMBURGER (DESKTOP = HILANG) ===== */
.hamburger {
    width: 28px;
    height: 22px;
    display: none; /* ini kunci */
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    height: 3px;
    width: 100%;
    background: #7b3fe4;
    border-radius: 5px;
    transition: all 0.3s ease;
}

/* ANIMASI X */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ICON */
.nav-icon {
    display: none;
}

/* USER MENU */

.user-area {
    display: flex;
    align-items: center;
    gap: 14px;
}

.profile-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-link img {
    width: 20px;
    height: 20px;
    opacity: 0.8;
    transition: 0.2s;
}

.profile-link img:hover {
    opacity: 1;
}

/* ===== MOBILE ONLY ===== */
@media (max-width: 992px) {

    /* hamburger muncul di mobile */
    .hamburger {
        display: flex;
    }

    /* menu disembunyiin dulu */
    .nav-menu {
        position: absolute;
        top: 70px;
        right: 40px;
        width: 260px;
        background: #ffffff;
        flex-direction: column;
        padding: 20px;
        border-radius: 14px;
        box-shadow: 0 15px 30px rgba(0,0,0,0.08);

        display: none; /* HANYA mobile */
    }

    /* pas klik hamburger */
    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        margin-bottom: 15px;
    }

    .nav-menu li:last-child {
        margin-bottom: 0;
    }

    .nav-icon {
        display: inline-block;
        width: auto;
        height: 18px;
    }

    .btn-daftar {
        display: none;
    }
}


/* ===============================
   HERO
=============================== */

.hero {
    text-align: center;
    padding: 140px 20px 100px;
    background: linear-gradient(180deg, #f5eeff, #ffffff);
}

.hero h1 {
    font-size: 48px;
    color: #1d1b21;
}

.hero p {
    font-size: 20px;
    margin-top: 10px;
    color: #555;
}

.hero-btn {
    margin-top: 30px;
    padding: 14px 28px;
    background: #7b2fff;
    color: white;
    border-radius: 10px;
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
}

.why-image {
    width: 80px;
    height: 80px;
    color: #7b2fff;
}

/* ===============================
   FEATURES
=============================== */

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 45px;
}

.ft {
    background: #ffffff;
    border: 1px solid #eee;
    padding: 25px;
    border-radius: 12px;
    transition: .3s;
}

.ft:hover {
    box-shadow: 0 7px 22px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.ft h3 {
    color: #7b2fff;
}

/* ===============================
   PRICING
=============================== */

.pricing-container {
    max-width: 1200px;
    margin: auto;
    padding: 80px 40px;
}

.pricing-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 15px;
    color: #7b2fff;
}

.pricing-sub {
    text-align: center;
    font-size: 18px;
    color: #555;
    margin-bottom: 60px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.pricing-card {
    background: #ffffff;
    border: 1px solid #eee;
    padding: 35px;
    border-radius: 18px;
    text-align: center;
    transition: .3s;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
}

.pricing-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.10);
}

.pricing-card.popular {
    border: 2px solid #7b2fff;
    background: #f7f0ff;
}

.pricing-price {
    font-size: 32px;
    font-weight: 800;
    margin: 20px 0;
}

.pricing-btn-card {
    margin-top: 25px;
    display: inline-block;
    padding: 12px 25px;
    background: #7b2fff;
    color: white;
    text-decoration: none;
    border-radius: 10px;
}

/* ===============================
   DOWNLOADER
=============================== */

.downloader-section {
    padding: 90px 20px 70px;
    text-align: center;
}

.downloader-box {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 35px;
    border-radius: 16px;
    background: #f5f0fa;
    box-shadow: 0 6px 25px rgba(106, 13, 173, 0.15);
}

#videoUrl {
    width: 95.7%;
    padding: 14px;
    border: 2px solid #d4b8f6;
    border-radius: 10px;
    margin-bottom: 20px;
}

.download-btn {
    width: 100%;
    padding: 14px;
    background: #6a0dad;
    color: #fff;
    font-weight: 600;
    border-radius: 10px;
    border: none;
}

/* ===============================
   CONTACT
=============================== */

.contact-container {
    max-width: 500px;
    margin: 80px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(128, 0, 128, 0.2);
    text-align: center;
}

.contact-container button {
    background: #7b2fff;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
}

/* WRAPPER */
.contact-wrapper {
    max-width: 600px;
    margin: 80px auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(123, 63, 228, 0.15);
}

/* TITLE */
.contact-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 700;
    color: #5b2be0;
}

/* INPUT GROUP */
.input-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.input-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

/* INPUT & TEXTAREA */
.input-group input,
.input-group textarea {
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(123, 63, 228, 0.05);
    outline: none;
}

/* FOCUS EFFECT */
.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: #7b3fe4;
    box-shadow: 0 8px 20px rgba(123, 63, 228, 0.4);
    border: 2px solid #7b3fe4;   /* Outline ungu */
    box-shadow: 0 0 0 4px rgba(123, 63, 228, 0.15); /* Glow ungu */
}

/* BUTTON */
.btn-contact {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #7b3fe4, #9d5cff);
    color: white;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 10px 25px rgba(123, 63, 228, 0.3);
}

/* BUTTON HOVER */
.btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(123, 63, 228, 0.4);
}



/* ===============================
   FOOTER
=============================== */

.main-footer {
    background: linear-gradient(135deg, #4c1d95, #4c1d95);
    color: #fff;
    padding: 60px 80px 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    flex-wrap: wrap;
}

/* KIRI */
.footer-left {
    max-width: 320px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

/* TENGAH */
.footer-middle {
    display: flex;
    gap: 60px;
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.9;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* KANAN SOSMED */
.footer-right {
    text-align: right;
    min-width: 180px;
}

.social-icons {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background: #a855f7;
    transform: translateY(-4px);
}

/* BOTTOM */
.footer-bottom {
    margin-top: 40px;
    text-align: center;
    font-size: 13px;
    opacity: 0.8;
}


/* ===============================
   RESPONSIVE
=============================== */

@media (max-width: 900px) {

    .features-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .navbar ul {
        position: absolute;
        top: 70px;
        right: 0;
        background: #ffffff;
        width: 220px;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        display: none;
    }

    .navbar ul.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}

/* ===============================
   ERROR & RESULT BOX
=============================== */

.error-box {
    max-width: 700px;
    margin: 30px auto;
    padding: 20px;
    background: #ffe5e5;
    color: #b30000;
    border-left: 5px solid red;
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
}

.result-box {
    max-width: 700px;
    margin: 30px auto;
    padding: 30px;
    background: #f5f0fa;
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(106, 13, 173, 0.15);
    text-align: center;
}

.result-box img {
    border-radius: 10px;
    margin-bottom: 15px;
}

.result-box h3 {
    margin-bottom: 15px;
    color: #6a0dad;
}

.result-box h4 {
    margin-top: 20px;
    color: #7b2fff;
}

/* ===============================
   HOW IT WORKS
=============================== */

.features-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.feature-item {
    padding: 25px;
    background: #faf7ff;
    border-left: 4px solid #7b2fff;
    border-radius: 10px;
}

.feature-item h3 {
    color: #7b2fff;
    margin-bottom: 10px;
}

/* ===============================
   KOL SECTION
=============================== */

#kol {
    background: #ffffff;
    border-radius: 18px;
    padding: 60px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.06);
}

#kol h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #7b2fff;
}

#kol p {
    text-align: center;
    margin-bottom: 30px;
    color: #555;
}

.kol-list {
    padding: 0;
    list-style: none;
    display: grid;
    gap: 15px;
}

.kol-list li {
    background: #f7f2ff;
    padding: 15px 20px;
    border-radius: 10px;
    font-weight: 600;
    border-left: 4px solid #7b2fff;
    transition: .3s;
}

.kol-list li:hover {
    background: #ece0ff;
    transform: translateX(5px);
}

/* ===============================
   FAQ SECTION
=============================== */

.faq {
    background: #fafafa;
    padding: 18px 22px;
    border-radius: 10px;
    margin-bottom: 15px;
    border-left: 4px solid #7b2fff;
}

.faq h3 {
    font-size: 18px;
    color: #7b2fff;
    margin-bottom: 5px;
}

/* ===============================
   RESPONSIVE LANDING
=============================== */

@media (max-width: 900px) {
    .features-box {
        grid-template-columns: 1fr;
    }

    #kol {
        padding: 40px 25px;
    }
}

/* ===============================
   PRICING PREVIEW SECTION
=============================== */

.pricing-preview {
    padding: 100px 20px;
    background: linear-gradient(180deg, #f6f0ff, #ffffff);
    text-align: center;
}

.pricing-preview h2 {
    font-size: 34px;
    font-weight: 700;
    color: #6a0dad;
    margin-bottom: 15px;
}

.pricing-preview p {
    max-width: 600px;
    margin: 0 auto 30px auto;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* Button */
.pricing-btn {
    display: inline-block;
    padding: 14px 30px;
    background: #6a0dad;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 10px;
    transition: 0.3s ease;
    box-shadow: 0 8px 25px rgba(106, 13, 173, 0.25);
}

.pricing-btn:hover {
    background: #520a9b;
    transform: translateY(-3px);
}

/* ===============================
   PRICING PAGE - FAQ SECTION
=============================== */

.faq-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #6a0dad;
    margin-top: 100px;
    margin-bottom: 40px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto 100px auto;
}

.faq-item {
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 14px;
    margin-bottom: 20px;
    border-left: 5px solid #6a0dad;
    box-shadow: 0 6px 20px rgba(106, 13, 173, 0.08);
    transition: 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(106, 13, 173, 0.15);
}

.faq-item h3 {
    margin-bottom: 8px;
    font-size: 18px;
    color: #6a0dad;
}

.faq-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.hero {
    padding: 100px 8%;
    background: #f9f7ff;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-left {
    flex: 1;
}

.hero-left h1 {
    font-size: 42px;
    color: #2d1457;
    margin-bottom: 20px;
}

.hero-left p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background: #7b2fff;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
}

.btn-secondary {
    border: 2px solid #7b2fff;
    color: #7b2fff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
}

.hero-right img {
    width: 100%;
    max-width: 500px;
}

.why {
    padding: 80px 8%;
    text-align: center;
}

.why-grid {
    display: flex;
    gap: 25px;
    margin-top: 40px;
}

.why-card {
    flex: 1;
    padding: 30px;
    border-radius: 15px;
    text-align: left;
}

.green { background: #e8f9f0; }
.purple { background: #f3eaff; }
.yellow { background: #fff7e3; }


.services {
    padding: 80px 0;
    overflow: hidden;
}

.services-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.services-slider {
    width: 100%;
}

.service-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    margin: 0 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    height: 100%;
    text-align: center;
    height: auto;
    justify-content: center;
}

.service-card img {
    width: 70%;
    height: 180px;
    object-fit: cover;
    border-radius: 50px;
    margin-bottom: 15px;
    margin: 0 auto;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: #666;
}

.slick-slide {
    height: auto !important;
}



@media(max-width: 992px) {

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .why-grid {
        flex-direction: column;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* HERO */
.about-hero {
    padding: 100px 8%;
    background: linear-gradient(135deg,#f6f0ff,#ffffff);
}

.about-hero h1 {
    font-size: 42px;
    color: #2d1457;
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    gap: 60px;
    margin-top: 30px;
}

.about-stats h2 {
    color: #6a0dad;
    font-size: 36px;
}

/* IMAGE ROW */
.about-images {
    display: flex;
    gap: 20px;
    padding: 40px 8%;
}

.about-images img {
    width: 33%;
    border-radius: 12px;
    object-fit: cover;
}

/* VALUES */
.about-values {
    text-align: center;
    padding: 80px 8%;
}

.values-list {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
}

.values-list span {
    font-weight: 600;
    color: #6a0dad;
}

/* STRATEGY */
.about-strategy {
    display: flex;
    justify-content: space-between;
    padding: 80px 8%;
    align-items: center;
}

.mock-card {
    background: #f3e8ff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

.mock-card h1 {
    font-size: 40px;
    color: #6a0dad;
}

/* TEAM */
.about-team {
    background: #f0ffe9;
    padding: 100px 8%;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 40px;
    margin-top: 50px;
}

.team-card img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin-bottom: 15px;
}

/* FAQ */
.about-faq {
    display: flex;
    justify-content: space-between;
    padding: 100px 8%;
}

.faq-item {
    margin-bottom: 20px;
}

.btn-contact-about {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    background: #6a0dad;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-contact-about:hover {
    background: #4b0082;
    transform: translateY(-3px);
}

@media (max-width: 768px) {

    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 0;
        background: white;
        width: 230px;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: flex;
    }
}

.btn-purple {
    background: #6f42c1;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 6px 14px;
    transition: 0.3s ease;
}

.btn-purple:hover {
    background: #5a34a0;
    transform: translateY(-2px);
}

.blog-card {
    border-radius: 16px;
    transition: 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.nav-link.active {
    color: #6f42c1 !important;
    font-weight: 600;
}


/* ================= BLOG ================= */

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.btn-add-blog {
    background: #7b2fff;
    color: white;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    box-shadow: 0 4px 12px rgba(123,47,255,0.3);
}

.btn-add-blog:hover {
    background: #6925d6;
    transform: translateY(-2px);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.blog-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
}

.blog-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
}

.blog-category {
  display: inline-block;
  background: #ffe3e3;
  color: #ff4d4d;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 10px;
}

.blog-content h2 {
  font-size: 20px;
  margin: 10px 0;
}

.blog-content h2 a {
  text-decoration: none;
  color: #111;
}

.blog-meta {
  font-size: 14px;
  color: #777;
  display: flex;
  gap: 10px;
}

/* =========================
   BLOG DETAIL
========================= */

.blog-detail h1 {
    font-size: 32px;
    color: #2d2d2d;
}

.blog-detail .detail-image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.blog-content p {
    margin-bottom: 18px;
    font-size: 16px;
    color: #555;
}

.blog-content h2,
.blog-content h3 {
    margin-top: 28px;
    margin-bottom: 14px;
    font-weight: 600;
}

.blog-container {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.blog-main {
    flex: 3;
}

.blog-sidebar {
    flex: 1;
}

.btn-back {
    display: inline-block;
    margin-bottom: 20px;
    color: #6a0dad;
    text-decoration: none;
    font-weight: 600;
}

.btn-back:hover {
    text-decoration: none;
}

.blog-title {
    font-size: 32px;
    margin-bottom: 10px;
    color: #4b0082;
}

.blog-meta {
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
}

.blog-image img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 20px;
}

.blog-content {
    line-height: 1.8;
    font-size: 16px;
}

.share-section {
    margin-top: 40px;
    display: flex;
    gap: 12px;
}

.share-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    transition: 0.25s ease;
}

/* hover effect */
.share-icon:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

/* warna masing-masing */
.share-icon.wa {
    background: #25D366;
}

.share-icon.fb {
    background: #1877F2;
}

.share-icon.x {
    background: #000000;
}

.share-icon.ig {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.share-icon.copy {
    background: #6a0dad; /* ungu brand lu */
}


.blog-sidebar {
    background: #f5f0ff;
    padding: 20px;
    border-radius: 12px;
}

.sidebar-title {
    margin-bottom: 15px;
    color: #4b0082;
}

.sidebar-item {
    display: block;
    margin-bottom: 15px;
    text-decoration: none;
    padding: 10px;
    border-radius: 8px;
    transition: 0.2s;
}

.sidebar-item:hover {
    background: #e6dbff;
}

.sidebar-item-title {
    font-weight: 600;
    color: #333;
}

.sidebar-item-date {
    font-size: 12px;
    color: #777;
}

.fb-section {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

/* ===== COMMENT SECTION - THEME UNGU ===== */
.comment-section {
    margin-top: 40px;
    padding: 25px;
    background: #f5f0ff;
    border-radius: 12px;
    border: 1px solid #e0d4ff;
}

.comment-section h3 {
    color: #5b21b6; /* ungu utama */
    font-weight: 600;
    margin-bottom: 20px;
}

.comment-form textarea {
    width: 97%;
    min-height: 120px;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #d6c7ff;
    outline: none;
    resize: vertical;
    font-size: 14px;
}

.comment-form textarea:focus {
    border-color: #7c3aed;
    box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.15);
}

.comment-form input {
    width: 97%;
    padding: 10px 12px;
    margin-bottom: 10px;
    border-radius: 10px;
    border: 1px solid #d6c7ff;
    outline: none;
}

.comment-form input:focus {
    border-color: #7c3aed;
    box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.15);
}

.comment-button {
    background: #7c3aed; /* ungu solid */
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.2s ease;
}

.comment-button:hover {
    background: #6d28d9;
    transform: translateY(-1px);
}

/* LIST KOMENTAR */
.comments-list {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px; /* jarak antar komentar */
}

/* BOX KOMENTAR */
.comment-box {
    background: #ffffff;
    border: 2px solid #7c5cff; /* ungu theme */
    border-radius: 14px;
    padding: 16px 18px;
    box-shadow: 0 4px 12px rgba(124, 92, 255, 0.08);
    transition: all 0.2s ease;
}

/* HOVER BIAR KELIATAN HIDUP */
.comment-box:hover {
    border-color: #6a4df0;
    transform: translateY(-2px);
}

/* HEADER (NAMA + WAKTU) */
.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

/* NAMA */
.comment-name {
    font-weight: 600;
    color: #2d2d2d;
}

/* WAKTU */
.comment-time {
    font-size: 12px;
    color: #9ca3af;
}

/* ISI KOMENTAR */
.comment-text {
    color: #4b5563;
    line-height: 1.6;
    word-wrap: break-word;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-btn {
    padding: 8px 14px;
    border: 1px solid #6C4DF6;
    color: #6C4DF6;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.2s;
}

.page-btn:hover {
    background: #6C4DF6;
    color: white;
}

.page-btn.active {
    background: #6C4DF6;
    color: white;
}

.er-home {
    max-width: 800px;
    margin: 50px auto;
}

.platform-wrapper {
    display: flex;
    gap: 30px;
}

.platform-card {
    flex: 1;
    padding: 25px;
    border: 1px solid #ddd;
    border-radius: 16px;
}

.btn-er {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: #6a0dad;
    color: white;
    border-radius: 10px;
    text-decoration: none;
}

.er-result {
    margin-top: 25px;
    padding: 15px;
    border: 2px solid #6a0dad;
    border-radius: 12px;
}

.cer {
    text-align: center;
}

.er-container {
    max-width: 700px;
    margin: 40px auto;
    padding: 20px;
    outline: 2px solid #af80ff;
    box-shadow: #9b61ff 0px 5px 12px;
}

.er-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
}

.er-desc {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.er-form {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.er-input {
    flex: 1;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ccc;
}

.er-button {
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    background: #6a0dad;
    color: white;
    cursor: pointer;
}

.er-result-box {
    padding: 20px;
    border-radius: 14px;
    border: 2px solid #6a0dad;
    margin-bottom: 30px;
    background: #faf7ff;
}

.er-history {
    margin-top: 20px;
}

.er-history-item {
    padding: 12px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.er-history-title {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 20px;
}

.er-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
    background: #f8f9fb;
    border-radius: 20px;
    font-family: Arial, sans-serif;
    color: #333;
}

.er-desc {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}

h2 {
    font-size: 22px;
    margin-top: 35px;
    margin-bottom: 10px;
}

.sub-text {
    margin-bottom: 20px;
    color: #666;
}

.er-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.er-box {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    font-size: 14px;
    line-height: 1.6;
}

.er-list {
    margin-left: 20px;
    margin-bottom: 20px;
}

.er-list li {
    margin-bottom: 10px;
    line-height: 1.6;
}   

.ratecard-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 60px 20px;
}

.hero-left h1 {
    font-size: 36px;
    color: #2d1b69;
}

.hero-left p {
    color: #555;
    max-width: 500px;
}

.badge {
    background: #eee7ff;
    color: #6b46ff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
}

.features {
    margin-top: 20px;
    color: #666;
}

.card-form {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(107, 70, 255, 0.1);
    width: 320px;
}

.card-form input {
    width: 91%;
    padding: 12px;
    margin-top: 10px;
    border: 2px solid #eee;
    border-radius: 10px;
}

.card-form button {
    width: 100%;
    margin-top: 15px;
    padding: 12px;
    background: #6b46ff;
    border: none;
    color: white;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
}

.ratecard-container {
    padding: 40px 20px;
}

.ratecard-box {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(107, 70, 255, 0.08);
}

.profile-section {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #eee7ff;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.metric {
    background: #f6f3ff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.price-section {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.price-box {
    flex: 1;
    background: #f6f3ff;
    padding: 20px;
    border-radius: 12px;
}

.ratecard-page {
    padding: 40px 20px;
    background: #f6f6fb;
    font-family: 'Inter', sans-serif;
}

/* FAKTOR */
.factor-section {
    margin-bottom: 60px;
}

.factor-container {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.label {
    font-size: 12px;
    letter-spacing: 2px;
    color: #8b8b8b;
    margin-bottom: 10px;
}

.factor-left h2 {
    font-size: 28px;
    font-weight: 700;
}

.factor-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.factor-card {
    background: #f9f9ff;
    padding: 18px;
    border-radius: 12px;
}

.factor-card h4 {
    font-size: 15px;
    margin-bottom: 6px;
}

.factor-card p {
    font-size: 13px;
    color: #666;
}

/* WHY SECTION */
.why-section {
    text-align: center;
    margin-bottom: 60px;
}

.why-title {
    font-size: 28px;
    margin-bottom: 30px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.why-card {
    background: #ffffff;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.04);
}

.why-card h4 {
    margin-bottom: 10px;
}

.why-card p {
    font-size: 14px;
    color: #666;
}

.why-card-green {
    background: #e8f9f0;
    color: #2d8a6c;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
}

.why-card-purple {
    background: #f3eaff;
    color: #7b2fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
}

.why-card-yellow {
    background: #fff7e3;
    color: #d97706;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
}

/* STEP SECTION (UNGU) */
.step-section {
    margin-bottom: 60px;
}

.step-container {
    background: linear-gradient(135deg, #6a5cff, #8b7bff);
    border-radius: 20px;
    padding: 40px;
    color: white;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.step-label {
    font-size: 12px;
    letter-spacing: 2px;
    opacity: 0.8;
}

.step-left h3 {
    font-size: 26px;
    margin: 10px 0;
}

.step-desc {
    font-size: 14px;
    opacity: 0.9;
}

.step-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.step-card {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 14px;
    backdrop-filter: blur(10px);
}

.step-number {
    width: 32px;
    height: 32px;
    background: white;
    color: #6a5cff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 10px;
}

/* FAQ */
.faq-section {
    margin-bottom: 40px;
}

.faq-container {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.faq-container h3 {
    margin-bottom: 5px;
}

.faq-sub {
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
}

.faq-item {
    padding: 18px;
    border-top: 1px solid #eee;
    font-size: 15px;
    cursor: pointer;
}

.faq-item:first-of-type {
    border-top: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}

.faq-icon {
    font-size: 22px;
    font-weight: bold;
    color: #6a5cff; /* ungu theme */
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    font-size: 14px;
    color: #666;
    margin-top: 0;
    transition: all 0.3s ease;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    margin-top: 10px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg); /* + jadi X biar keliatan ni kebuka */
}  

/* ===== BENCHMARK / DASAR PERHITUNGAN ===== */
.benchmark-section {
    margin-top: 40px;
}

.benchmark-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.benchmark-label {
    font-size: 12px;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 8px;
}

.benchmark-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.benchmark-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 24px;
}

.benchmark-list {
    border-top: 1px solid #eee;
}

.benchmark-item {
    border-bottom: 1px solid #eee;
    padding: 18px 0;
}

.benchmark-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.benchmark-header h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.benchmark-header span {
    font-size: 11px;
    letter-spacing: 2px;
    color: #aaa;
}

.benchmark-plus {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f3f0ff;
    color: #6a5cff; /* ungu theme */
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: all 0.3s ease;
}

.benchmark-content {
    max-height: 0;
    overflow: hidden;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    transition: all 0.3s ease;
    margin-top: 0;
}

/* saat dibuka */
.benchmark-item.active .benchmark-content {
    max-height: 200px;
    margin-top: 12px;
}

.benchmark-item.active .benchmark-plus {
    transform: rotate(45deg);
    background: #6a5cff;
    color: #fff;
}

.kol-directory-page {
  padding: 40px 24px 60px;
  background: #f5f4f0;
  min-height: calc(100vh - 120px);
  font-family: 'Sora', sans-serif;
}

.kol-container {
  max-width: 1000px;
  margin: 0 auto;
}

.kol-header {
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.kol-title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.kol-title span {
  color: #6c63ff;
}

.kol-sub {
  font-size: 13px;
  color: #999;
  margin-top: 4px;
}

.kol-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.chip {
  padding: 7px 16px;
  border-radius: 100px;
  border: 1.5px solid #e0dfd8;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  background: #fff;
  color: #888;
  transition: all 0.2s;
}

.chip.active,
.chip:hover {
  background: #6c63ff;
  color: #fff;
  border-color: #6c63ff;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid #ece9e0;
  transition: 0.25s ease;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.card-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 20px 16px;
}

.avatar-wrap {
  position: relative;
  margin-bottom: 12px;
}

.avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
}

.badge {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 20px;
  height: 20px;
  background: #6c63ff;
  border-radius: 50%;
  border: 2.5px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: #fff;
  font-weight: 700;
}

.card-name {
  font-size: 15px;
  font-weight: 600;
  text-align: center;
}

.card-handle {
  font-size: 12px;
  color: #aaa;
  text-align: center;
  margin-top: 2px;
}

.card-platforms {
  display: flex;
  gap: 6px;
  margin-top: 10px;
}

.plat {
  font-size: 14px;
  width: 26px;
  height: 26px;
  background: #f5f4f0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.divider {
  height: 1px;
  background: #f0ede6;
  margin: 0 20px;
}

.card-bottom {
  padding: 16px 20px 20px;
}

.followers-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.followers {
  font-size: 20px;
  font-weight: 700;
}

.followers span {
  font-size: 12px;
  color: #aaa;
  display: block;
}

.eng-pill {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  background: #f0fdf4;
  color: #16a34a;
  border: 1px solid #bbf7d0;
}

.card-bio {
  font-size: 12.5px;
  color: #666;
  line-height: 1.65;
  margin-bottom: 14px;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 16px;
}

.tag {
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 100px;
  background: #f5f4f0;
  color: #888;
  border: 1px solid #e8e5dc;
}

.btn-contact {
  width: 100%;
  padding: 10px;
  border-radius: 12px;
  background: #6c63ff;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.av1 { background: linear-gradient(135deg, #a78bfa, #6c63ff); }
.av2 { background: linear-gradient(135deg, #fb923c, #f43f5e); }
.av3 { background: linear-gradient(135deg, #34d399, #059669); }
.av4 { background: linear-gradient(135deg, #fbbf24, #f97316); }
.av5 { background: linear-gradient(135deg, #e879f9, #a78bfa); }
.av6 { background: linear-gradient(135deg, #38bdf8, #6366f1); }

/* biar ga ancur di mobile */
@media (max-width: 768px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

.ca {
    font-weight: bold;
    margin: 0;
    margin-bottom: 1rem;
    font-size: 30px;
}

.pe {
    font-size: 14px;
    font-weight: 100;
    line-height: 20px;
    letter-spacing: 0.5px;
    margin: 20px 0 30px;
}

span {
    font-size: 12px;
}

a {
    color: #333;
    font-size: 14px;
    text-decoration: none;
    margin: 15px 0;
}


.btn-grad {background-image: linear-gradient(to right, #6441A5 0%, #2a0845  51%, #6441A5  100%)}
.btn-grad {
    padding: 12px 45px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;
    border-radius: 20px;
    display: inline-block;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 1px;
    border: none;
}

/* hover effect */
.btn-grad:hover {
    background-position: right center;
}

/* biar button ga punya style bawaan aneh */
button.btn-grad {
    outline: none;
}

#signIn{
    background-image: linear-gradient(to right, #fff 0%, #f7f3f3  51%, #fff  100%);
    color: #6441A5;
}

#signUp{
    background-image: linear-gradient(to right, #fff 0%, #f7f3f3  51%, #fff  100%);
    color: #6441A5;
}

form {
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 50px;
    height: 100%;
    text-align: center;
}

input {
    background-color: #eee;
    border: none;
    padding: 12px 15px;
    margin: 8px 0;
    width: 100%;
}

/*  */
.body-container{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #4568DC;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #B06AB3, #4568DC);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #B06AB3, #4568DC); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

}
.container {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25), 0 5px 5px rgba(0, 0, 0, 0.22);
    position: relative;
    overflow: hidden;
    width: 768px;
    max-width: 100%;
    min-height: 480px;
}

/*  */


.form-container {
    position: absolute;
    top: 0;
    height: 100%;
    transition: all 0.6s ease-in-out;
}

.sign-in-container {
    left: 0;
    width: 50%;
    z-index: 2;
}

.sign-up-container {
    left: 0;
    width: 50%;
    opacity: 0;
    z-index: 1;
}

.container.right-panel-active .sign-in-container {
    transform: translateX(100%);
}

.container.right-panel-active .sign-up-container {
    transform: translateX(100%);
    opacity: 1;
    z-index: 5;
    animation: show 0.6s;
}

@keyframes show {
    0%,
    49.99% {
        opacity: 0;
        z-index: 1;
    }

    50%,
    100% {
        opacity: 1;
        z-index: 5;
    }
}

.overlay-container {
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    overflow: hidden;
    transition: transform 0.6s ease-in-out;
    z-index: 100;
}

.container.right-panel-active .overlay-container {
    transform: translateX(-100%);
}

.overlay {
    background: #6441A5;
    background: -webkit-linear-gradient(to right, #6441A5, #2a0845);
    background: linear-gradient(to right, #6441A5, #2a0845);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0 0;
    color: #ffffff;
    position: relative;
    left: -100%;
    height: 100%;
    width: 200%;
    transform: translateX(0);
    transition: transform 0.6s ease-in-out;
}

.container.right-panel-active .overlay {
    transform: translateX(50%);
}

.overlay-panel {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 40px;
    text-align: center;
    top: 0;
    height: 100%;
    width: 50%;
    transform: translateX(0);
    transition: transform 0.6s ease-in-out;
}

.overlay-left {
    transform: translateX(-20%);
}

.container.right-panel-active .overlay-left {
    transform: translateX(0);
}

.overlay-right {
    right: 0;
    transform: translateX(0);
}

.container.right-panel-active .overlay-right {
    transform: translateX(20%);
}

/* USER MENU */
.user-menu{
    display:flex;
    align-items:center;
    gap:10px;
}

/* teks halo */
.user-greet{
    font-weight:600;
    font-size:14px;
    color:#441c84;
}

.logout-form {
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
}

/* tombol logout */
.btn-logout{
    padding:6px 14px;
    border:2px solid #6b3df0;
    background:white;
    color:#6b3df0;
    font-weight:600;
    border-radius:6px;
    cursor:pointer;
    transition:0.2s;
}

.btn-logout:hover{
    background:#6b3df0;
    color:white;
}

/* container utama */
.profile-container{
    max-width: 500px;
    margin: 80px auto;
    padding: 40px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    font-family: 'Libre Franklin', sans-serif;
}

/* judul */
.profile-title{
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #7b2fff;
}

/* form */
.profile-form{
    display: flex;
    flex-direction: column;
}

/* label */
.profile-form label{
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    margin-left: 5px;
}

/* input */
.profile-form input{
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 18px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
    transition: 0.2s;
}

.profile-form input:focus{
    outline: none;
    border-color: #7c3aed;
    box-shadow: 0 0 0 2px rgba(124,58,237,0.15);
}

/* tombol update */
.update-btn{
    margin-top: 10px;
    align-self: center;
    padding: 12px 35px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg,#7c3aed,#5b21b6);
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.update-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

.avatar-section{
    margin-bottom:30px;
}

.avatar{
    width:90px;
    height:90px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid #7c3aed;
}


/* RESPONSIVE (BIAR GA ANCUR DI HP) */
@media (max-width: 768px) {
    .factor-container {
        grid-template-columns: 1fr;
        padding: 25px;
    }

    .factor-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .step-container {
        grid-template-columns: 1fr;
        padding: 25px;
    }

    .step-cards {
        grid-template-columns: 1fr;
    }

    .why-title {
        font-size: 22px;
    }
}

/* =========================
   MOBILE FIX ONLY
========================= */
@media (max-width: 768px) {

  /* GLOBAL */
  html, body {
    overflow-x: hidden;
  }

  .section {
    padding: 60px 18px !important;
  }

  h1 { font-size: 26px !important; }
  h2 { font-size: 20px !important; }
  h3 { font-size: 18px !important; }

  /* NAVBAR */
  .navbar {
    padding: 15px 18px !important;
  }

  .nav-menu {
    right: 10px !important;
    width: 90% !important;
  }n

  /* HERO */
  .hero {
    padding: 90px 18px 60px !important;
    text-align: center;
  }

  .hero-container {
    flex-direction: column !important;
    gap: 25px !important;
  }

  .hero-buttons {
    flex-direction: column !important;
    width: 100%;
  }

  .hero-buttons .btn-primary {
    width: 86.5%;
    text-align: center;
  }

  .hero-buttons .btn-secondary {
    width: 85.5%;
    text-align: center;
  }

  /* GRID FIX */
  .features-grid,
  .pricing-grid,
  .services-grid,
  .why-grid,
  .features-box,
  .team-grid {
    grid-template-columns: 1fr !important;
  }

  .about-stats,
  .about-images,
  .about-strategy,
  .about-faq,
  .why-grid {
    flex-direction: column !important;
  }

  /* SERVICE CARD */
  .service-card img {
    height: 180px !important;
  }

  /* CONTACT */
  .contact-wrapper {
    padding: 25px 18px !important;
    margin: 50px 15px !important;
  }

  .input-group input,
  .input-group textarea {
    font-size: 14px !important;
  }

  /* DOWNLOADER */
  .downloader-box {
    padding: 25px 18px !important;
  }

  }

  /* BLOG */
  .blog-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 15px !important;
  }

  .blog-card {
    padding: 20px !important;
  }

  /* FOOTER */
    .footer-wrapper {
        flex-wrap: wrap;
        gap: 30px;
    }

    .footer-col {
        flex: 100%;
    }

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================
   MOBILE RESPONSIVE (WAJIB)
================================ */
@media (max-width: 1024px) {
    .grid,
    .metrics-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    /* padding biar ga sesek */
    .container,
    .ratecard-container,
    .er-container {
        padding: 16px;
    }

    /* hero jadi stack */
    .ratecard-hero,
    .er-hero {
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
    }

    .hero-left h1 {
        font-size: 22px;
        line-height: 1.4;
    }

    /* grid jadi 1 kolom biar ga gepeng */
    .grid,
    .metrics-grid,
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* profile section rapih */
    .profile-section {
        align-items: flex-start;
    }

    /* font kecilin */
    .metric h4,
    .stat-card h4 {
        font-size: 18px;
    }

    /* price jadi turun */
    .price-section {
        flex-direction: column;
    }

    .price-box h2 {
        font-size: 20px;
    }

    /* tombol full lebar */
    .card-form button {
        width: 100%;
    }
}

@media (max-width: 480px) {

    .avatar {
        width: 55px;
        height: 55px;
    }

    .card-form {
        padding: 18px;
        border-radius: 14px;
    }

    .ratecard-box,
    .er-result-box {
        padding: 18px;
        border-radius: 16px;
    }
}