*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --bg:#0A0D1A;
  --surface:#111527;
  --card:#181D30;
  --card2:#1E2438;
  --border:#252A42;
  --blue:#3D7EFF;
  --blue-dim:#2860CC;
  --teal:#1EEBB8;
  --teal-dim:#15B88E;
  --white:#FFFFFF;
  --text-sec:#8B90A8;
  --text-muted:#555A72;
  --font-head:'Plus Jakarta Sans',sans-serif;
  --font-body:'Plus Jakarta Sans',sans-serif;
}
html{scroll-behavior:smooth}
body{background:var(--bg);color:var(--white);font-family:var(--font-body);font-size:16px;line-height:1.6;overflow-x:hidden}

/* NAV */
nav{position:fixed;top:0;left:0;right:0;z-index:100;background:rgba(10,13,26,0.85);backdrop-filter:blur(12px);border-bottom:0.5px solid var(--border);padding:0 40px;height:75px;display:flex;align-items:center;justify-content:space-between}
.nav-logo{font-size:20px;font-weight:800;color:var(--white);text-decoration:none;display:flex;align-items:center;gap:8px;flex-shrink:0;}
.nav-logo span{color:var(--teal)}
.nav-center{position:absolute;left:50%;transform:translateX(-50%);display:flex;align-items:center;gap:32px}
.nav-center a{color:var(--text-sec);text-decoration:none;font-size:14px;font-weight:500;transition:color .2s}
.nav-center a:hover{color:var(--white)}
.btn-nav{background:var(--blue);color:#fff;padding:8px 20px;border-radius:8px;font-size:14px;font-weight:600;text-decoration:none;transition:background .2s;flex-shrink:0;white-space:nowrap}
.btn-nav:hover{background:var(--blue-dim)}

/* HERO */
.hero{min-height:100vh;display:flex;align-items:center;justify-content:center;text-align:center;padding:100px 24px 60px;position:relative;overflow:hidden}
.hero-bg{position:absolute;inset:0;pointer-events:none}
.hero-glow-blue{position:absolute;top:-120px;left:50%;transform:translateX(-50%);width:700px;height:700px;border-radius:50%;
background1:radial-gradient(circle,rgba(61,126,255,.18) 0%,transparent 70%)}
.hero-glow-teal{position:absolute;top:200px;right:-100px;width:400px;height:400px;border-radius:50%;background:radial-gradient(circle,rgba(30,235,184,.10) 0%,transparent 70%)}
.hero-glow-teal2{position:absolute;top:150px;left:-100px;width:350px;height:350px;border-radius:50%;background:radial-gradient(circle,rgba(61,126,255,.08) 0%,transparent 70%)}
/* grid texture */
.hero-bg::after{content:'';position:absolute;inset:0;background-image:linear-gradient(var(--border) 1px,transparent 1px),linear-gradient(90deg,var(--border) 1px,transparent 1px);background-size:48px 48px;opacity:.25;mask-image:radial-gradient(ellipse 80% 60% at 50% 40%,black 0%,transparent 100%)}

.hero-badge{display:inline-flex;align-items:center;gap:8px;background:rgba(30,235,184,.1);border:0.5px solid rgba(30,235,184,.3);border-radius:100px;padding:6px 16px;font-size:12px;font-weight:600;color:var(--teal);letter-spacing:.08em;text-transform:uppercase;margin-bottom:28px}
.hero-badge::before{content:'';width:8px;height:8px;border-radius:50%;background:var(--blue);animation:pulse 2s infinite}
@keyframes pulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.5;transform:scale(.8)}}

.hero h1{font-family:var(--font-head);font-size:clamp(44px,7vw,80px);font-weight:800;line-height:1.05;margin-bottom:24px}
.hero h1 em{font-style:normal;color:var(--blue)}
.hero h1 span{color:var(--teal)}
.hero-sub{max-width:660px;margin:0 auto 40px;color:var(--text-sec);font-size:18px;line-height:1.7}
.hero-cta{display:flex;gap:12px;justify-content:center;flex-wrap:wrap}
.btn-primary{background:var(--blue);color:#fff;padding:14px 28px;border-radius:10px;font-size:15px;font-weight:700;text-decoration:none;transition:all .2s;border:none;cursor:pointer}
.btn-primary:hover{background:var(--blue-dim);transform:translateY(-1px)}
.btn-outline{background:transparent;color:var(--white);padding:14px 28px;border-radius:10px;font-size:15px;font-weight:600;text-decoration:none;border:0.5px solid var(--border);transition:all .2s}
.btn-outline:hover{border-color:var(--blue);color:var(--blue)}

/* STATS */
.stats{background:var(--blue);padding:0}
.stats-inner{max-width:900px;margin:0 auto;display:grid;grid-template-columns:repeat(4,1fr);padding:28px 40px}
.stat{text-align:center;padding:8px}
.stat-num{font-family:var(--font-head);font-size:28px;font-weight:800;color:#fff}
.stat-label{font-size:12px;color:rgba(255,255,255,.7);margin-top:4px;text-transform:uppercase;letter-spacing:.06em}

/* SECTIONS */
section{padding:96px 24px}
.container{max-width:1080px;margin:0 auto}
.section-label{display:inline-block;font-size:14px;font-weight:600;letter-spacing:0;text-transform:uppercase;color:var(--teal);margin-bottom:16px}
.section-title{font-family:var(--font-head);font-size:clamp(32px,4vw,48px);font-weight:700;line-height:1.1;margin-bottom:16px}
.section-title em{font-style:normal;color:var(--teal)}
.section-title span{color:var(--blue)}
.section-sub{color:var(--text-sec);font-size:17px;max-width:620px;line-height:1.7}

/* DUAL BENEFIT */
.dual{text-align:center}
.dual .section-sub{margin:0 auto 56px}
.cards-row{display:grid;grid-template-columns:1fr 1fr;gap:20px}
.benefit-card{background:var(--card);border:0.5px solid var(--border);border-radius:16px;padding:36px;text-align:left;position:relative;overflow:hidden;transition:border-color .3s}
.benefit-card:hover{border-color:var(--blue)}
.benefit-card.teal:hover{border-color:var(--teal)}
.benefit-card::before{content:'';position:absolute;top:0;left:0;right:0;height:2px}
.benefit-card.blue::before{background:var(--blue)}
.benefit-card.teal::before{background:var(--teal)}
.card-icon{width:44px;height:44px;border-radius:10px;display:flex;align-items:center;justify-content:center;font-size:20px;margin-bottom:20px}
.card-icon.blue{background:rgba(61,126,255,.15)}
.card-icon.teal{background:rgba(30,235,184,.12)}
.benefit-card h3{font-family:var(--font-head);font-size:20px;font-weight:800;margin-bottom:12px}
.benefit-card p{color:var(--text-sec);font-size:14px;margin-bottom:20px;line-height:1.6}
.check-list{list-style:none;display:flex;flex-direction:column;gap:10px;margin-bottom:28px}
.check-list li{display:flex;align-items:center;gap:10px;color:var(--text-sec);font-size:14px}
.check-list li::before{content:'';width:16px;height:16px;border-radius:50%;flex-shrink:0}
.check-list.blue li::before{background:rgba(61,126,255,.2);box-shadow:inset 0 0 0 1.5px var(--blue)}
.check-list.teal li::before{background:rgba(30,235,184,.15);box-shadow:inset 0 0 0 1.5px var(--teal)}
.check-list li span{color:var(--white);font-weight:500}
.btn-card{display:inline-block;padding:14px 28px;border-radius:8px;font-size:14px;font-weight:600;text-decoration:none;transition:all .2s}
.btn-card.blue{background:var(--blue);color:#fff}
.btn-card.blue:hover{background:var(--blue-dim)}
.btn-card.teal{background:var(--teal);color:#0A0D1A}
.btn-card.teal:hover{background:var(--teal-dim)}

/* HOW IT WORKS (FOR CLIENT) */
.how-wrap{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:start}
.steps{display:flex;flex-direction:column;gap:0}
.step{display:flex;gap:16px;padding:20px 0;position:relative}
.step:not(:last-child)::after{content:'';position:absolute;left:19px;top:50px;bottom:0;width:1px;background:var(--border)}
.step-num{width:38px;height:38px;border-radius:50%;background:var(--card2);border:0.5px solid var(--border);display:flex;align-items:center;justify-content:center;font-size:13px;font-weight:700;color:var(--blue);flex-shrink:0}
.step-body h4{font-size:15px;font-weight:700;margin-bottom:4px}
.step-body p{font-size:13px;color:var(--text-sec);line-height:1.6}

/* Comparison box */
.compare-panel{background:var(--card);border:0.5px solid var(--border);border-radius:16px;padding:28px;display:flex;flex-direction:column;gap:16px}
.compare-panel h4{font-size:14px;font-weight:700;color:var(--text-sec);margin-bottom:4px}
.cpm-row{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-bottom:8px}
.cpm-box{background:var(--card2);border-radius:10px;padding:14px;border:0.5px solid var(--border)}
.cpm-box.highlight{border-color:var(--teal)}
.cpm-platform{font-size:10px;color:var(--text-muted);text-transform:uppercase;letter-spacing:.08em;margin-bottom:6px}
.cpm-price{font-family:var(--font-head);font-size:16px;font-weight:800;color:var(--white)}
.cpm-box.highlight .cpm-price{color:var(--teal)}
.cpm-note{font-size:10px;color:var(--text-muted);margin-top:3px}

.sim-title{font-size:13px;font-weight:600;color:var(--text-sec);margin-bottom:12px}
.sim-row{display:grid;grid-template-columns:repeat(3,1fr);gap:10px}
.sim-box{background:var(--card2);border-radius:10px;padding:14px;text-align:center}
.sim-val{font-family:var(--font-head);font-size:18px;font-weight:800;color:var(--blue)}
.sim-val.teal{color:var(--teal)}
.sim-lbl{font-size:10px;color:var(--text-muted);margin-top:3px}

.btn-cta-center{display:flex;justify-content:center;margin-top:24px}

/* COMPARISON TABLE */
.comp-table-section{background:var(--surface)}
.comp-table-wrap{display:flex;justify-content:center;margin-top:48px}
.comp-table{width:100%;max-width:720px;border-collapse:collapse;border-radius:14px;overflow:hidden;border:0.5px solid var(--border)}
.comp-table thead tr{background:var(--card2)}
.comp-table th{padding:16px 24px;text-align:left;font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:.08em;color:var(--text-muted)}
.comp-table th:nth-child(2){color:var(--text-muted)}
.comp-table th.sc{color:var(--teal);background:rgba(30,235,184,.06)}
.comp-table td{padding:15px 24px;font-size:14px;border-top:0.5px solid var(--border)}
.comp-table td:first-child{color:var(--text-sec)}
.comp-table td:nth-child(2){color:#FF5F5F}
.comp-table td:nth-child(3){color:var(--teal);font-weight:600;background:rgba(30,235,184,.03)}
.comp-table tr:hover td{background:rgba(255,255,255,.02)}
.comp-table tr:hover td:nth-child(3){background:rgba(30,235,184,.06)}
.badge-sc {
    background: rgba(61, 126, 255, .12);
    color: #679aff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    border: 0.5px solid rgba(61, 126, 255, .12);
}

/* FOR CLIPPER */
.clipper-wrap{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:start}
.feature-cards{display:flex;flex-direction:column;gap:14px}
.feat-card{background:var(--card);border:0.5px solid var(--border);border-radius:12px;padding:20px 24px;display:flex;gap:16px;align-items:flex-start;transition:border-color .3s}
.feat-card:hover{border-color:var(--teal)}
.feat-icon{width:40px;height:40px;border-radius:10px;background:rgba(30,235,184,.1);display:flex;align-items:center;justify-content:center;font-size:18px;flex-shrink:0}
.feat-card h4{font-size:15px;font-weight:700;margin-bottom:4px}
.feat-card p{font-size:13px;color:var(--text-sec);line-height:1.5}

/* CTA BANNER */
.cta-banner{background:linear-gradient(135deg,#101628 0%,#0E1120 50%,#0A1520 100%);border-top:0.5px solid var(--border);border-bottom:0.5px solid var(--border);text-align:center;position:relative;overflow:hidden}
.cta-banner::before{content:'';position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:600px;height:300px;background:radial-gradient(ellipse,rgba(61,126,255,.12) 0%,transparent 70%);pointer-events:none}
.cta-banner h2{font-family:var(--font-head);font-size:clamp(28px,4vw,48px);font-weight:800;margin-bottom:12px}
.cta-banner p{color:var(--text-sec);font-size:16px;margin-bottom:36px;max-width:480px;margin-left:auto;margin-right:auto}
.cta-buttons{display:flex;gap:12px;justify-content:center;flex-wrap:wrap}

/* FOOTER */
footer{background:var(--surface);border-top:0.5px solid var(--border);padding:56px 40px 32px}
.footer-inner{max-width:1080px;margin:0 auto}
.footer-top{display:grid;grid-template-columns:2fr 1fr 1fr;gap:40px;margin-bottom:48px}
.footer-brand p{color:var(--text-sec);font-size:13px;line-height:1.7;margin:12px 0 20px;max-width:100%}
.footer-contact{font-size:13px;color:var(--text-muted);display:flex;flex-direction:column;gap:6px}
.footer-col h5{font-size:13px;font-weight:700;color:var(--text-sec);text-transform:uppercase;letter-spacing:.08em;margin-bottom:16px}
.footer-col a{display:block;color:var(--text-muted);text-decoration:none;font-size:13px;margin-bottom:10px;transition:color .2s}
.footer-col a:hover{color:var(--white)}
.social-row{display:flex;gap:10px;margin-top:8px}
.social-btn{width:34px;height:34px;border-radius:8px;background:var(--card);border:0.5px solid var(--border);display:flex;align-items:center;justify-content:center;font-size:14px;text-decoration:none;transition:all .2s}
.social-btn:hover{border-color:var(--blue);background:rgba(61,126,255,.1)}
.footer-bottom{border-top:0.5px solid var(--border);padding-top:24px;display:flex;justify-content:space-between;align-items:center}
.footer-bottom p{color:var(--text-muted);font-size:12px}

/* ─── RESPONSIVE ─── */
.nav-hamburger{display:none;background:none;border:none;cursor:pointer;padding:4px}
.nav-mobile-menu{display:none;position:absolute;top:64px;left:0;right:0;background:rgba(10,13,26,0.98);backdrop-filter:blur(12px);border-bottom:0.5px solid var(--border);flex-direction:column;padding:16px 24px;gap:4px}
.nav-mobile-menu.open{display:flex}
.nav-mobile-menu a{color:var(--text-sec);text-decoration:none;font-size:15px;font-weight:500;padding:12px 0;border-bottom:0.5px solid var(--border);transition:color .2s}
.nav-mobile-menu a:last-child{border-bottom:none;margin-top:8px}
.nav-mobile-menu a:hover{color:var(--white)}

@media(max-width:768px){
  /* NAV */
  nav{padding:0 20px}
  .nav-center{display:none}
  .btn-nav{display:none}
  .nav-hamburger{display:block}

  /* HERO */
  .hero{padding:88px 20px 48px}
  .hero h1{font-size:clamp(36px,10vw,52px)}
  .hero-sub{font-size:15px}

  /* STATS */
  .stats-inner{grid-template-columns:repeat(2,1fr);padding:20px}
  .stat-num{font-size:22px}

  /* SECTIONS */
  section{padding:64px 20px}

  /* DUAL BENEFIT */
  .cards-row{grid-template-columns:1fr}

  /* HOW IT WORKS */
  .how-wrap{grid-template-columns:1fr;gap:40px}

  /* COMPARISON TABLE */
  .comp-table th,.comp-table td{padding:12px 14px;font-size:13px}

  /* CLIPPER */
  .clipper-wrap{grid-template-columns:1fr;gap:40px}

  /* FOOTER */
  footer{padding:40px 20px 24px}
  .footer-top{grid-template-columns:1fr;gap:32px}
  .footer-bottom{flex-direction:column;gap:8px;text-align:center}
  .footer-bottom p:last-child{display:none}
}

@media(max-width:480px){
  .hero h1{font-size:clamp(30px,9vw,42px)}
  .stats-inner{grid-template-columns:repeat(2,1fr);padding:16px}
  .cpm-row{grid-template-columns:1fr}
  .sim-row{grid-template-columns:1fr}
  .btn-primary,.btn-outline{width:100%;text-align:center}
  .hero-cta{flex-direction:column}
}




/* ================= DARK MODE OVERRIDE ================= */


/* HERO */
.hero {
  background: transparent !important;
}
.hero h1 {
  background: linear-gradient(90deg,#fff,#60A5FA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-badge {
  background: rgba(59,130,246,.1);
  border: 1px solid rgba(59,130,246,.3);
  color: #fff;
}
.social-btn {
  display: flex !important;
  align-items: center;
  justify-content: center;
}

     

        /* Tombol untuk membuka modal */
        .btn-terms {
            padding: 0;
            background-color: var(--surface);
            color:var(--text-muted);
            border: none;
         display:block;
            cursor: pointer;
            font-size: 13px;
           margin-bottom:10px;
            transition: background-color .2s;
        }

        .btn-terms:hover {
            background-color: none;
			color:var(--white);
        }

.footer-col a{display:block;color:var(--text-muted);text-decoration:none;font-size:13px;margin-bottom:10px;transition:color .2s}
.footer-col a:hover{color:var(--white)}


        /* Modal Overlay */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 999;
        }

        .modal-overlay.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Modal */
        .modal {
            background: white;
            border-radius: 8px;
            width: 90%;
            max-width: 700px;
            max-height: 85vh;
            display: flex;
            flex-direction: column;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        }

        /* Modal Header */
        .modal-header {
            padding: 15px 24px;
            border-bottom: 1px solid #e5e5e5;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .modal-header h2 {
            font-size: 18px;
            font-weight: 600;
            color: #ccc;
            margin: 0;
        }

        .modal-close {
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #999;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 4px;
            transition: background-color 0.2s, color 0.2s;
        }

        .modal-close:hover {
            background-color: #f0f0f0;
            color: #333;
        }

        /* Modal Content */
        .modal-content {
            overflow-y: auto;
            padding: 24px;
            flex: 1;
        }

        /* Section Styling */
        .section {
            margin-bottom: 24px;
        }

        .section:last-child {
            margin-bottom: 0;
        }

        .section-header {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 12px;
        }

        .section-number {
            background-color: #e5e5e5;
            color: #333;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 600;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .section h2 {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            margin: 0;
            line-height: 1.4;
        }

        .section h3 {
            font-size: 14px;
            font-weight: 600;
            color: #333;
            margin: 12px 0 8px 0;
        }

        .section p {
            font-size: 13px;
            color: #666;
            line-height: 1.6;
            margin-bottom: 10px;
        }

        .section ul {
            margin-left: 20px;
            margin-bottom: 10px;
        }

        .section ul li {
            font-size: 13px;
            color: #666;
            margin-bottom: 6px;
            line-height: 1.5;
        }

        .section ul li strong {
            color: #333;
        }

        /* Scrollbar styling */
        .modal-content::-webkit-scrollbar {
            width: 6px;
        }

        .modal-content::-webkit-scrollbar-track {
            background: #f0f0f0;
        }

        .modal-content::-webkit-scrollbar-thumb {
            background: #ccc;
            border-radius: 3px;
        }

        .modal-content::-webkit-scrollbar-thumb:hover {
            background: #999;
        }

        /* Responsive */
        @media (max-width: 600px) {
            .modal {
                width: 95%;
                max-height: 90vh;
            }

            .modal-header {
                padding: 10px 24px ;
            }

            .modal-header h2 {
                font-size: 18px;
            }

            .modal-content {
                padding: 16px;
            }

            .section-header {
                gap: 10px;
            }

            .section h2 {
                font-size: 14px;
            }

            .section h3 {
                font-size: 13px;
            }

            .section p,
            .section ul li {
                font-size: 12px;
            }
        }
		
		
		
.modal-header {
    background: #0f172a;
    color: #e5e7eb;
    border-bottom: 1px solid #1f2937;
}

.modal-header .close {
    color: #9ca3af;
    opacity: 1;
}

.dark-saas {
    background: #0f172a;
    color: #e5e7eb;
    padding: 28px;
    max-height: 85vh;
    overflow-y: auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.dark-saas h1 {
    text-align: center;
    font-size: 22px;
    margin-bottom: 4px;
    color: #f9fafb;
}

.dark-saas h2 {
    text-align: center;
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 24px;
}

.section {
    background: #111827;
    border: 1px solid #1f2937;
    border-radius: 14px;
    padding: 18px 20px;
    margin-bottom: 16px;
    transition: 0.2s;
}

.section:hover {
    border-color: #374151;
}

.section h3 {
    font-size: 15px;
    margin-bottom: 10px;
    color: #f3f4f6;
}

.section p {
    font-size: 13px;
    color: #9ca3af;
    margin-bottom: 10px;
}

.section ul {
    padding-left: 18px;
}

.section li {
    font-size: 13px;
    color: #d1d5db;
    margin-bottom: 6px;
}

.badge {
    display: inline-block;
    background: #1d4ed8;
    color: #fff;
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 6px;
    margin-top: 6px;
}

.warning {
    color: #f87171;
    font-weight: 500;
}

.footer {
    text-align: center;
    margin-top: 28px;
    font-weight: 600;
    color: #e5e7eb;
}
		