/* ============================================================
   Landing Page – Clean Light SaaS Style
   ============================================================ */
:root {
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    --primary: #4f46e5;
    --primary-dark: #4338ca;
    --primary-glow: rgba(79,70,229,0.15);
    --accent: #06b6d4;
    --accent2: #8b5cf6;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --bg-body: #ffffff;
    --bg-surface: #f8fafc;
    --bg-card: #ffffff;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --border: #e2e8f0;
    --glass: rgba(255,255,255,0.8);
    --radius: 14px;
}
[data-theme="dark"] {
    --bg-body: #0f172a;
    --bg-surface: #1e293b;
    --bg-card: #1e293b;
    --text-main: #f1f5f9;
    --text-muted: #94a3b8;
    --border: #334155;
    --glass: rgba(30,41,59,0.8);
    --primary-glow: rgba(79,70,229,0.25);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: var(--font-body);
    background: var(--bg-body);
    color: var(--text-main);
    overflow-x: hidden;
    width: 100%;
    font-size: 15px;
    line-height: 1.6;
    transition: background .3s, color .3s;
}
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); color: var(--text-main); font-weight: 700; }
p { color: var(--text-muted); line-height: 1.75; }
a { text-decoration: none !important; transition: all .2s; }
img { max-width: 100%; }
.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Layout */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; overflow: hidden; }
.section-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; overflow: hidden; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section-tag { display: inline-block; background: var(--primary-glow); color: var(--primary); font-size: .8rem; font-weight: 700; padding: .4rem 1rem; border-radius: 100px; margin-bottom: 1rem; letter-spacing: .03em; }
.section-title { font-size: 2.2rem; margin-bottom: .75rem; line-height: 1.2; }
.section-desc { font-size: 1rem; }
.row { display: flex; flex-wrap: wrap; margin: 0 -.75rem; overflow: hidden; }
.col-lg-6 { flex: 0 0 50%; max-width: 50%; padding: 0 .75rem; }
.col-md-4 { flex: 0 0 33.33%; max-width: 33.33%; padding: 0 .75rem; }
.col-md-8 { flex: 0 0 66.66%; max-width: 66.66%; padding: 0 .75rem; }
.align-items-center { align-items: center; }
.d-none { display: none !important; }
.d-lg-flex { display: flex !important; }
.d-md-inline-block { display: inline-block !important; }
.d-md-block { display: block !important; }
.mb-5 { margin-bottom: 3rem; }
.pr-lg-5 { padding-right: 2.5rem; }
.ml-2 { margin-left: .5rem; }
.text-center { text-align: center; }

/* Buttons */
.btn-cta {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--primary); color: #fff !important;
    padding: .75rem 1.5rem; border-radius: 8px;
    font-weight: 600; font-size: .9rem;
    box-shadow: 0 4px 14px rgba(79,70,229,0.3);
    transition: transform .2s, box-shadow .2s;
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(79,70,229,0.4); color: #fff; }
.btn-cta-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    border: 1.5px solid var(--border); color: var(--text-main) !important;
    padding: .75rem 1.5rem; border-radius: 8px;
    font-weight: 600; font-size: .9rem;
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary) !important; }

/* ── Navbar ── */
.nav-land {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: .75rem 0;
    background: transparent;
    transition: all .3s;
}
.nav-land.scrolled {
    background: var(--glass);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-heading); font-weight: 800; font-size: 1.2rem; color: var(--text-main) !important; text-decoration: none; }
.nav-brand img { height: 40px; width: auto; }
.nav-brand .brand-text { line-height: 1.2; }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { color: var(--text-muted) !important; font-size: .9rem; font-weight: 500; }
.nav-links a:hover { color: var(--primary) !important; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.theme-btn { background: var(--bg-surface); border: 1px solid var(--border); width: 36px; height: 36px; border-radius: 8px; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--text-muted); }
.hamburger { background: none; border: none; font-size: 1.3rem; color: var(--text-main); cursor: pointer; display: none; }

/* Mobile Menu */
.mobile-menu { position: fixed; inset: 0; background: var(--bg-body); z-index: 9999; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.5rem; transform: translateX(100%); transition: transform .3s; }
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { font-size: 1.2rem; font-weight: 600; color: var(--text-main) !important; }
.mobile-close { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; font-size: 1.5rem; color: var(--text-main); cursor: pointer; }

/* ── Hero ── */
.hero { padding: 8rem 0 5rem; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-blob { position: absolute; border-radius: 50%; filter: blur(100px); opacity: .4; }
.hero-blob-1 { width: 500px; height: 500px; background: var(--primary); top: -150px; left: -100px; opacity: .15; }
.hero-blob-2 { width: 400px; height: 400px; background: var(--accent); bottom: -100px; right: -50px; opacity: .1; }
.hero-blob-3 { width: 300px; height: 300px; background: var(--accent2); top: 50%; left: 50%; opacity: .08; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--primary-glow); color: var(--primary); padding: .4rem 1rem; border-radius: 100px; font-size: .8rem; font-weight: 700; margin-bottom: 1.5rem; }
.pulse-dot { width: 8px; height: 8px; background: var(--primary); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.5)} }
.hero-title { font-size: 3rem; line-height: 1.15; margin-bottom: 1.25rem; letter-spacing: -.02em; }
.hero-sub { font-size: 1.1rem; margin-bottom: 2rem; max-width: 500px; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.social-proof { display: flex; align-items: center; gap: 14px; }
.avatar-stack { display: flex; }
.avatar-stack img { width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--bg-body); margin-left: -10px; }
.avatar-stack img:first-child { margin-left: 0; }
.proof-text { font-size: .85rem; color: var(--text-muted); }
.stars { color: #f59e0b; font-size: .8rem; margin-bottom: 2px; }

/* Hero Mockup */
.hero-mockup { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-illustration { width: 100%; max-width: 600px; height: auto; border-radius: 16px; animation: floatHero 4s ease-in-out infinite; }
@keyframes floatHero { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

/* ── Marquee ── */
.marquee-section { padding: 1.5rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; }
.marquee-track { display: flex; gap: 3rem; animation: marquee 30s linear infinite; white-space: nowrap; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.marquee-item { font-size: .85rem; font-weight: 600; color: var(--text-muted); display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.marquee-item i { color: var(--primary); }

/* ── Stats ── */
.stats-section { padding: 3rem 0; }
.stats-grid { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; padding: 0 1.5rem; }
.stat-card { text-align: center; padding: 1.5rem 1rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); }
.stat-icon { font-size: 1.5rem; margin-bottom: .75rem; }
.stat-num { font-size: 2rem; font-weight: 800; color: var(--text-main); }
.stat-label { font-size: .8rem; color: var(--text-muted); font-weight: 500; margin-top: .25rem; }

/* ── Bento Features ── */
.bento { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.25rem; }
.bento-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; transition: border-color .2s, box-shadow .2s; }
.bento-card:hover { border-color: var(--primary); box-shadow: 0 8px 24px var(--primary-glow); }
.bento-wide { grid-column: span 2; }
.bento-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--primary-glow); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; margin-bottom: 1rem; }
.bento-card h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.bento-card p { font-size: .9rem; margin: 0; }

/* ── Steps ── */
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.step-card { text-align: center; padding: 2rem 1.5rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); }
.step-num { width: 48px; height: 48px; border-radius: 50%; background: var(--primary); color: #fff; font-size: 1.2rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.step-card h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.step-card p { font-size: .9rem; }

/* ── Pricing ── */
.pricing-section { background: var(--bg-surface); }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; align-items: start; }
.price-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; position: relative; transition: transform .2s, box-shadow .2s; }
.price-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.08); }
.price-card.featured { border-color: var(--primary); box-shadow: 0 12px 40px var(--primary-glow); transform: scale(1.03); }
.price-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.price-ribbon { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--primary); color: #fff; font-size: .7rem; font-weight: 700; padding: .3rem 1rem; border-radius: 100px; white-space: nowrap; }
.price-tag { display: inline-block; background: var(--bg-surface); color: var(--text-muted); font-size: .75rem; font-weight: 700; padding: .3rem .8rem; border-radius: 6px; margin-bottom: .75rem; }
.price-name { font-size: 1.3rem; margin-bottom: .5rem; }
.price-amount { font-size: 3rem; font-weight: 800; margin-bottom: .5rem; }
.price-amount span { font-size: 1rem; font-weight: 500; color: var(--text-muted); }
.price-desc { font-size: .85rem; margin-bottom: 1.25rem; }
.price-features { list-style: none; margin-bottom: 1.5rem; }
.price-features li { font-size: .85rem; padding: .4rem 0; display: flex; align-items: center; gap: 8px; color: var(--text-main); }
.price-features li i { color: var(--success); font-size: .75rem; width: 20px; height: 20px; background: rgba(16,185,129,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.price-features li.disabled { color: var(--text-muted); opacity: .6; }
.price-features li.disabled i { color: var(--text-muted); background: var(--bg-surface); }

/* ── Formasi ── */
.search-box { position: relative; }
.search-box input { width: 100%; padding: .8rem 1rem .8rem 2.5rem; border: 1.5px solid var(--border); border-radius: 10px; font-size: .95rem; background: var(--bg-card); color: var(--text-main); outline: none; transition: border-color .2s; }
.search-box input:focus { border-color: var(--primary); }
.search-box i { position: absolute; left: 0; top: 0; }
.formasi-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: .75rem; }
.formasi-item { }
.formasi-pill { background: var(--bg-surface); border: 1px solid var(--border); padding: .6rem 1rem; border-radius: 8px; font-size: .85rem; font-weight: 500; color: var(--text-main); transition: all .2s; }
.formasi-pill:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-glow); }

/* ── Testimonials ── */
.testi-section { background: var(--bg-surface); }
.testi-slide { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.testi-slide img { width: 100%; display: block; }
.swiper-pagination-bullet-active { background: var(--primary) !important; }

/* ── FAQ ── */
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: 10px; margin-bottom: .75rem; overflow: hidden; background: var(--bg-card); }
.faq-item.faq-hidden { display: none; }
.faq-q { padding: 1rem 1.25rem; font-weight: 600; font-size: .95rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: var(--text-main); }
.faq-q i { transition: transform .3s; color: var(--text-muted); font-size: .8rem; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s, padding .3s; padding: 0 1.25rem; }
.faq-item.open .faq-a { max-height: 300px; padding: 0 1.25rem 1rem; }
.faq-a p { font-size: .9rem; margin: 0; }
.faq-cat-btn { padding: .5rem 1.1rem; border-radius: 100px; border: 1px solid var(--border); background: var(--bg-card); font-size: .8rem; font-weight: 600; color: var(--text-muted); cursor: pointer; transition: all .2s; }
.faq-cat-btn:hover { border-color: var(--primary); color: var(--primary); }
.faq-cat-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ── CTA Banner ── */
.cta-banner { background: linear-gradient(135deg, var(--primary), var(--accent2)); border-radius: var(--radius); padding: 4rem 2rem; text-align: center; color: #fff; position: relative; overflow: hidden; }
.cta-banner h2 { color: #fff; font-size: 2rem; margin-bottom: .75rem; }
.cta-banner p { color: rgba(255,255,255,.85); margin-bottom: 1.5rem; font-size: 1rem; }
.cta-circle { position: absolute; border-radius: 50%; background: rgba(255,255,255,.06); }

/* ── Footer ── */
.footer { padding: 4rem 0 2rem; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 2rem; margin-bottom: 2rem; }
.footer h5 { font-size: .9rem; margin-bottom: 1rem; color: var(--text-main); }
.footer-link { display: block; font-size: .85rem; color: var(--text-muted) !important; margin-bottom: .5rem; }
.footer-link:hover { color: var(--primary) !important; }
.footer-social { display: flex; gap: 12px; margin-top: 1rem; }
.footer-social a { width: 36px; height: 36px; border-radius: 8px; background: var(--bg-surface); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-muted) !important; font-size: .9rem; }
.footer-social a:hover { color: var(--primary) !important; border-color: var(--primary); }
.footer-bottom { text-align: center; font-size: .8rem; color: var(--text-muted); padding-top: 1.5rem; border-top: 1px solid var(--border); }

/* ── WhatsApp Float ── */
.wa-float { position: fixed; bottom: 1.5rem; right: 1.5rem; width: 56px; height: 56px; background: #25d366; color: #fff !important; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; box-shadow: 0 4px 14px rgba(37,211,102,.4); z-index: 999; transition: transform .2s; }
.wa-float:hover { transform: scale(1.1); }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .col-lg-6 { flex: 0 0 100%; max-width: 100%; }
    .pr-lg-5 { padding-right: .75rem; }
    .d-lg-flex { display: none !important; }
    .hamburger { display: block; }
    .hero-title { font-size: 2.4rem; }
    .bento { grid-template-columns: 1fr; }
    .bento-wide { grid-column: span 1; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .price-card.featured { transform: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .hero { padding: 6rem 0 3rem; }
    .hero-title { font-size: 2rem; }
    .section-title { font-size: 1.7rem; }
    .stats-grid { grid-template-columns: repeat(2,1fr); }
    .steps-grid { grid-template-columns: 1fr; }
    .col-md-4, .col-md-8 { flex: 0 0 100%; max-width: 100%; }
    .d-md-inline-block { display: none !important; }
    .d-md-block { display: none !important; }
}
@media (max-width: 480px) {
    .hero-title { font-size: 1.7rem; }
    .section-title { font-size: 1.4rem; }
    .hero-btns { flex-direction: column; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .formasi-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}
