* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

:root {
    --bg-dark-main: #04081f;
    --bg-dark-accent: #0a113a;
    --primary-blue: #1e88e5;
    --tomdev-blue: #1e88e5;
    --primary-purple: #7c4dff;
    --text-muted: #666;
    --blue-light: #e3f2fd;
    --blue-filter: invert(42%) sepia(93%) saturate(1352%) hue-rotate(186deg) brightness(92%) contrast(101%);
    --card-shadow: 0 10px 25px rgba(30, 136, 229, 0.1);
}

body {
    background-color: #f8faff;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    color: #1e293b;
}

html {
    overflow-x: hidden;
    width: 100%;
}

/* --- Header --- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 6%;
    z-index: 3000;
    background: transparent;
    transition: all 0.4s ease;
}

header.scrolled {
    background: #ffffff;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
    padding: 12px 6%;
}

.logo-container {
    flex: 1;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 35px;
    width: auto;
    transition: 0.3s ease;
}

.desktop-nav {
    display: none;
    flex: 2;
    justify-content: center;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.desktop-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

header.scrolled .desktop-nav a {
    color: var(--bg-dark-main);
}

.desktop-nav a:hover {
    color: var(--primary-blue) !important;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    justify-content: flex-end;
}

.hamburger-icon {
    width: 32px;
    filter: var(--blue-filter);
    cursor: pointer;
    transition: 0.3s;
}

.login-btn {
    background: linear-gradient(90deg, #1e88e5, #00d4ff);
    color: white;
    padding: 10px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
}

.desktop-only {
    display: inline-block;
}

/* --- Mobile Dropdown --- */
.nav-dropdown {
    display: none !important; /* MATI TOTAL DI DESKTOP */
}

@media (max-width: 991px) {
    .nav-dropdown {
        display: block !important; /* HANYA AKTIF DI MOBILE */
        position: fixed;
        top: 55px;
        left: 0;
        width: 100%;
        background: rgba(4, 8, 31, 0.98);
        backdrop-filter: blur(15px);
        z-index: 2000;
        max-height: 0;
        overflow: hidden;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    header.scrolled + .nav-dropdown {
        top: 45px;
        background: rgba(255, 255, 255, 0.98);
    }

    .nav-dropdown.open {
        max-height: 500px;
        padding-bottom: 25px;
    }
}

header.scrolled+.nav-dropdown {
    top: 45px;
    background: rgba(255, 255, 255, 0.98);
}

.mobile-menu {
    list-style: none;
    padding: 10px 6% 20px; /* Padding atas dikecilkan maksimal */
}

.mobile-item {
    padding: 12px 0;
    opacity: 0;
    transform: translateX(-20px);
    transition: 0.4s;
}

.nav-dropdown.open .mobile-item {
    opacity: 1;
    transform: translateX(0);
}

.mobile-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

header.scrolled+.nav-dropdown .mobile-link {
    color: var(--bg-dark-main);
}

.fire-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

/* --- FAQ Logic --- */
.faq-container {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-question {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    color: var(--bg-dark-main);
    font-size: 1.05rem;
    user-select: none;
    background: #fff;
    z-index: 2;
    position: relative;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.95rem;
    visibility: hidden;
}

.faq-item:hover {
    border-color: #d1d9e6;
    transform: translateY(-2px);
}

.faq-item.active {
    border-color: var(--primary-blue);
    box-shadow: 0 20px 40px rgba(30, 136, 229, 0.08);
}

.faq-item.active .faq-answer {
    padding-bottom: 25px;
    max-height: 500px;
    opacity: 1;
    visibility: visible;
}

.faq-icon-wrapper {
    width: 32px;
    height: 32px;
    background: #f0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.faq-icon-wrapper i {
    color: var(--primary-blue);
    font-size: 0.8rem;
    transition: 0.4s;
}

.faq-item.active .faq-icon-wrapper {
    background: var(--primary-blue);
}

.faq-item.active .faq-icon-wrapper i {
    transform: rotate(180deg);
    color: #fff;
}

/* --- Footer --- */
footer {
    background: linear-gradient(285deg, var(--bg-dark-accent) 45%, var(--bg-dark-main) 45.2%);
    padding: 80px 6% 40px;
    color: #fff;
    position: relative;
    z-index: 20;
    overflow: hidden;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: -1;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo-img {
    height: 45px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    max-width: 350px;
    font-size: 0.95rem;
}

.footer-links-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.footer-links h4,
.contact-column h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
    display: block;
}

.footer-links a:hover {
    color: var(--primary-blue);
    padding-left: 5px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    text-decoration: none;
}

.contact-item i {
    color: var(--primary-blue);
    font-size: 1rem;
    margin-top: 3px;
    width: 18px;
    text-align: center;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: 0.3s;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
    color: #fff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 30px auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

/* --- Pricing Section (Ultra Modern Dark) --- */
.pricing-section {
    background: #020617;
    padding: 100px 6%;
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, #ffffff, transparent);
    z-index: 1;
}

.pricing-header {
    text-align: center;
    position: relative;
    z-index: 10;
    margin-bottom: 60px;
}

.pricing-header .section-title {
    color: #fff;
    font-size: 3rem;
}

.pricing-header p {
    color: #94a3b8;
    max-width: 600px;
    margin: 15px auto 0;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 10;
}

.price-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px 35px;
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.price-card:hover {
    transform: translateY(-20px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(30, 136, 229, 0.4);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.price-card.featured {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(30, 136, 229, 0.3);
}

.price-card.featured::after {
    content: "REKOMENDASI";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #1e88e5, #00d4ff);
    color: #fff;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.price-badge {
    color: #38bdf8;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.price-value {
    margin-bottom: 25px;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.price-value .currency {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
}

.price-value .amount {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
}

.price-value .period {
    color: #64748b;
    font-size: 0.9rem;
}

.price-card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.price-features {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.price-features li {
    color: #cbd5e1;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.price-features li i {
    color: #38bdf8;
    font-size: 0.9rem;
}

.price-btn {
    padding: 18px;
    border-radius: 20px;
    text-align: center;
    font-weight: 800;
    text-decoration: none;
    transition: 0.3s;
}

.price-btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.price-btn-outline:hover {
    background: #fff;
    color: #020617;
}

.price-btn-fill {
    background: linear-gradient(135deg, #1e88e5, #00d4ff);
    color: #fff;
    box-shadow: 0 10px 20px rgba(30, 136, 229, 0.3);
}

.price-btn-fill:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(30, 136, 229, 0.5);
}

/* Floating Glow Orbs */
.glow-orb {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(30, 136, 229, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 60px 20px;
    }

    .pricing-header .section-title {
        font-size: 2rem;
    }

    .price-value .amount {
        font-size: 2.8rem;
    }
}

/* --- Magic Reveal Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Delay Helpers */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* Hover Shine Effect */
.btn-fill,
.why-card,
.service-card,
.info-card {
    position: relative;
    overflow: hidden;
}

.btn-fill::after,
.why-card::after,
.info-card::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(30deg);
    transition: all 0.6s ease;
    pointer-events: none;
}

.btn-fill:hover::after,
.why-card:hover::after,
.info-card:hover::after {
    left: 120%;
}

/* --- Responsive --- */
@media (min-width: 768px) {
    header {
        padding: 25px 8%;
    }

    .desktop-nav {
        display: flex;
    }

    .hamburger-icon {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1.5fr 2fr 1.5fr;
        gap: 50px;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

@media (max-width: 767px) {
    header {
        padding: 12px 15px;
        align-items: center;
        justify-content: space-between;
    }

    .nav-actions {
        gap: 8px;
        flex: 0 0 auto;
    }

    .logo-container {
        flex: 0 0 auto;
        max-width: 80px;
    }

    .logo-img {
        height: 22px;
        width: auto;
        object-fit: contain;
    }

    .login-btn {
        padding: 5px 10px;
        font-size: 0.7rem;
        border-radius: 6px;
        white-space: nowrap;
    }

    .hamburger-icon {
        width: 24px;
    }

    .footer-links-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .footer-grid {
        gap: 40px;
    }
}