/* =========================================================
   NAVBAR (Glassmorphism + Sticky)
   ========================================================= */

.navbar-wrapper {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 999;
    backdrop-filter: blur(15px);
    background: rgba(0, 0, 0, 0.35);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.navbar {
    max-width: 100%;
    margin: auto;
    padding: 18px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
}

/* -------- NAV LINKS (Desktop) -------- */

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    padding: 10px 14px;
    border-radius: var(--radius);
    transition: var(--transition);
    font-size: 15px;
    color: var(--text-soft);
}

.nav-links a:hover {
    color: var(--text);
    background: rgba(255,255,255,0.08);
}

/* CTA Button */
.nav-cta-btn {
    padding: 10px 18px;
    border-radius: var(--radius);
    background: var(--primary);
    color: #fff;
    box-shadow: 0 0 15px var(--primary-glow);
    transition: var(--transition);
    font-weight: 600;
}

.nav-cta-btn:hover {
    transform: translateY(-2px);
}

/* =========================================================
   MOBILE MENU
   ========================================================= */

.mobile-menu-btn {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text);
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100%;
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(20px);
    padding: 30px;
    transition: 0.35s ease-in-out;
    z-index: 1000;
}

.mobile-drawer.open {
    left: 0;
}

.drawer-links {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 20px;
}

.drawer-links a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: var(--text-soft);
}

.drawer-links a:hover {
    color: var(--text);
}

/* Close button */
.drawer-close {
    font-size: 30px;
    cursor: pointer;
    color: var(--text);
    position: absolute;
    top: 20px;
    right: 20px;
}

/* Mobile activator */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }
    .mobile-menu-btn {
        padding-left: 0;
        display: contents;
    }
}

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

.footer {
    background: rgba(255,255,255,0.04);
    padding: 60px 20px 30px;
    border-top: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

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

.footer-desc {
    color: var(--text-soft);
    font-size: 15px;
    margin-top: 10px;
}

.footer-title {
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 600;
}

.footer-links li a {
    display: block;
    color: var(--text-soft);
    padding: 6px 0;
    font-size: 15px;
}

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

/* SOCIAL ICONS */

.footer-social {
    margin-top: 15px;
    display: flex;
    gap: 14px;
}

.social-icon {
    font-size: 22px;
    color: var(--text-soft);
    transition: var(--transition);
}

.social-icon:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

/* Bottom area */
.footer-bottom {
    margin-top: 40px;
    text-align: center;
    color: var(--text-soft);
    font-size: 14px;
}

.hero-chat__input {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-chat__input input {
    flex: 1;
    padding: 14px 18px;
    border-radius: 12px;
    background: #151515;
    border: 1px solid #333;
    color: #fff;
    caret-color: #fff; /* Penting */
}

.hero-chat__input input:focus {
    outline: none;
    border-color: #3b82f6;
}


/* ===============================================
   PRICING PAGE
================================================ */
.pricing-hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(to bottom, #0f0f11, #131315);
}

.pricing-title {
    font-size: 48px;
    margin-bottom: 12px;
    color: #fff;
}

.pricing-subtitle {
    color: #aaa;
    max-width: 600px;
    margin: 0 auto;
    font-size: 18px;
}

.pricing-section {
    padding: 80px 20px;
    background: #0d0d0f;
}

.pricing-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* CARD */
.pricing-card {
    background: #161618;
    padding: 28px;
    border-radius: 16px;
    border: 1px solid #222;
    color: #ddd;
    position: relative;
    transition: 0.2s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: #333;
}

.highlighted {
    border-color: #3b82f6;
    box-shadow: 0 0 20px rgba(59,130,246,0.25);
}

.badge-popular {
    background: #3b82f6;
    color: #fff;
    font-size: 13px;
    padding: 4px 10px;
    border-radius: 50px;
    position: absolute;
    top: -12px;
    right: 16px;
}

.plan-name {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
}

.plan-price {
    margin: 14px 0 20px;
    font-size: 26px;
    color: #3b82f6;
}

.plan-price span {
    font-size: 16px;
    color: #888;
}

.plan-features {
    margin-bottom: 24px;
}

.plan-features li {
    margin-bottom: 10px;
}




/* =========================================================
   ANIMATED HOVER EFFECTS
   ========================================================= */

.hover-lift {
    transition: var(--transition);
}

.hover-lift:hover {
    transform: translateY(-3px);
}


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

@media (max-width: 600px) {
    .footer-container {
        text-align: center;
    }
}
