/* GLOBAL STYLES */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

:root {
    --primary: #2dd4bf;
    --primary-dark: #14b8a6;
    --bg-dark: #0f172a;
    --bg-card: rgba(255, 255, 255, 0.05);
    --border-glass: rgba(255, 255, 255, 0.1);
    --text-main: #ffffff;
    --text-muted: #94a3b8;
}

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

body {
    background: radial-gradient(circle at top right, #1e293b, #0f172a);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* NAVBAR SYSTEM */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    isolation: isolate;

    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(15, 23, 42, 0.8);                              backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-glass);
}

.logo {
    height: 50px;
    width: 100px;
    object-fit: cover;                                              border-radius: 12px;
}

/* --- BRANDING UPGRADE --- */
.brand-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tagline {                                                          display: flex;
    flex-direction: column;
    line-height: 1.1;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    border-left: 1px solid var(--border-glass);
    padding-left: 12px;
}
.tagline span {
    font-weight: 400;
}

.tagline .ampersand {
    color: var(--primary);
    font-weight: 700;
    font-size: 11px;
}


@media (max-width: 768px) {
    .tagline {
        display: flex;
    }                                                           }


.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}
.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;                                            padding: 8px 16px;
    border-radius: 12px;
}

/* NAVIGATION ICON STYLES */
.nav-links a i, .sidebar a i {
    margin-right: 15px;
    color: var(--primary);
    transition: 0.5s;
    width: 18px;
    text-align: center;
}

/* ACTIVE STATE (Penanda Halaman Aktif) */
.nav-links a.active, .sidebar a.active {
    background: rgba(45, 212, 191, 0.15) !important;
    color: var(--primary) !important;
    font-weight: 700;
}

.nav-links a.active i, .sidebar a.active i {                        color: var(--primary) !important;
}

/* HOVER EFFECTS */
.nav-links a:hover, .sidebar a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.nav-links a:hover i, .sidebar a:hover i {
    transform: scale(1.2);
    color: #fff;
}

/* --- NAVIGATION UPGRADE (FLOATING MENU) --- */

/* 1. Hamburger & Animasi Jadi X */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;

    position: relative;
    z-index: 10001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary); /* Biar warnanya tosca konsisten */
    transition: 0.3s ease;
}

/* Animasi X saat diklik */
.hamburger.toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}
.hamburger.toggle span:nth-child(2) {
    opacity: 0;
}
.hamburger.toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -7px);
}

/* 2. Menu Melayang */
.nav-menu-mobile {
    position: fixed;
    top: 80px;
    right: 20px;
    width: 220px;

    background: var(--bg-card);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-glass);
    border-radius: 20px;

    z-index: 10000;

    display: flex;
    flex-direction: column;
    padding: 15px;
    gap: 8px;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.nav-menu-mobile.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateY(0);
}

/* 3. Link di Dalam Menu (Rata Kiri) */
.nav-menu-mobile a {
    font-size: 1rem;
    color: white;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px; 
    padding: 12px 15px;
    border-radius: 12px;
    text-align: left; 
    transition: 0.2s;
}

.nav-menu-mobile a i {
    width: 20px;    
    color: var(--primary);
}

.nav-menu-mobile a:hover {
    background: rgba(0, 242, 254, 0.1);
    transform: translateX(5px);
}

/* Penanda Halaman Aktif (MOBILE) */
.nav-menu-mobile a.active {
    background: rgba(45, 212, 191, 0.15) !important;
    color: var(--primary) !important;
    font-weight: 700;
}

.nav-menu-mobile a.active i {
    color: var(--primary) !important;
}

/* HERO SECTION */
.hero {
    padding: 180px 5% 100px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;                                          background: linear-gradient(to right, #fff, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}


.price-tag {
    display: inline-block;
    padding: 0.6rem 1.8rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);

    color: var(--primary);
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 2rem;

    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    cursor: default;
}

.price-tag:hover {
    border-color: var(--primary);
    background: rgba(45, 212, 191, 0.1);
    transform: translateY(-2px);
}

/* CARDS & GLASSMORPHISM */
.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-glass);
    padding: 2.5rem;
    border-radius: 20px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(45, 212, 191, 0.1);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card p {
    color: var(--text-muted);
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    border-radius: 10px;
    transition: 0.3s;
}

.btn:hover {
    background: var(--primary-dark);
    box-shadow: 0 0 20px rgba(45, 212, 191, 0.4);
}

/* FOOTER */
footer {
    margin-top: 100px;
    padding: 3rem 5%;
    text-align: center;
    border-top: 1px solid var(--border-glass);
    background: rgba(0,0,0,0.2);
}

footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .hero { padding-top: 150px; }
}

/* --- PRICING SECTION --- */
.pricing-section {
    padding: 80px 0;
    padding-bottom: 40px;
}

.pricing-wrapper {
    display: flex;
    gap: 20px;
    padding: 20px 10%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.pricing-wrapper::-webkit-scrollbar {
    display: none;
}

.pricing-card {
    flex: 0 0 300px;
    scroll-snap-align: center;
    background: var(--bg-card);
    backdrop-filter: blur(12px);

    border: 2px solid var(--primary);

    border-radius: 24px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: 0.3s;
}

.pricing-card.featured {

    box-shadow: 0 10px 40px rgba(0, 242, 254, 0.2);
    transform: scale(1.03);
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin: 10px 0;
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
}

.card-desc {
    font-size: 0.85rem;
    margin-bottom: 20px;
    color: var(--text-muted);
    min-height: 40px;
}

.features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    flex-grow: 1;
}

.features li {
    font-size: 0.85rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.features i {
    color: var(--primary);
}

.features li.bonus {
    color: #ffdd59;
    font-weight: bold;
}

.btn-select {
    text-align: center;
    padding: 12px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-select:hover {
    background: white;
    color: var(--primary);
}

.note-domain {
  font-size: 12px;
  color: #94a3b8;
  margin: 12px 0 18px;
  line-height: 1.5;
  font-style: italic;
  text-align: left;
  opacity: 0.9;
}

/* Responsif HP */
@media (max-width: 768px) {
    .pricing-wrapper {
        padding: 20px 20px;
    }
    .pricing-card {
        flex: 0 0 85%;
        transform: none !important;
    }
}

/* --- PROCESS SECTION UPGRADE --- */
.process-section {
    padding: 100px 5%;
    background: rgba(15, 23, 42, 0.3); /* Sedikit kontras dari bg utama */
}

.process-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    padding: 40px 30px;
    border-radius: 24px;
    position: relative;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.process-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(45, 212, 191, 0.1);
}

.step-num {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 3rem;
    font-weight: 800;
    opacity: 0.3;
    margin-bottom: 10px;
    display: block;
}

.process-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #fff;
}

.process-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Responsif buat Mobile */
@media (max-width: 768px) {
    .process-section { padding: 60px 5%; }
    .process-card { padding: 30px 25px; }
}
