:root {
    --bg-dark: #0d1626;
    --bg-card: #18283c;
    --bg-card-elevated: #1d3149;
    --primary: #38bdf8;
    --primary-light: #bae6fd; /* Warna link untuk dark background */
    --primary-hover: #0ea5e9;
    --text-main: #f8fbff;
    --text-muted: #bcc8da;
    --text-soft: #d7e1ef;
    --border-color: rgba(163, 182, 208, 0.16);
    --highlight-red: #ef4444;
    --gradient-text: linear-gradient(135deg, #bae6fd 0%, #38bdf8 100%);
    --gradient-glow: radial-gradient(circle, rgba(56,189,248,0.16) 0%, rgba(13,22,38,0) 70%);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--primary-light);
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
    color: var(--text-main);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

h1, h2, h3, h4, h5, h6,
.logo,
.badge,
.section-kicker,
.trust-label,
.pricing-badge,
.pricing-eyebrow,
.comparison-label,
.cl-version,
.cl-tag {
    font-family: 'Outfit', sans-serif;
}

/* Utils */
.py-xl { padding: 8rem 0; }
.mt-xl { margin-top: 6rem; }
.bg-dark { background-color: #0a1220; }
.bg-light { background-color: rgba(255, 255, 255, 0.04); }

/* Navbar */
.sticky-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    width: 100%;
    background: rgba(13, 22, 38, 0.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
}

.logo img { height: 32px; }

/* Buttons Base */
.btn-primary, .btn-secondary, .btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: white !important;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    border: none;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(56, 189, 248, 0.28);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main) !important;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    border: 1px solid var(--border-color);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-muted) !important;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    border: 1px solid var(--border-color);
    cursor: pointer;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-main) !important;
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-lg { padding: 1.1rem 2.5rem; font-size: 1.1rem; }

/* Hero */
.hero-professional {
    padding: 100px 0;
    background: var(--gradient-glow);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Gambar dibuat lebih besar dan dominan */
    gap: 3rem; /* Persempit jarak agar lebih kompak */
    align-items: center; /* Kembali ke center, tapi kita gunakan offset pada visual */
}

.hero h1 {
    font-size: 4.2rem;
    line-height: 1.05;
    margin-bottom: 2rem;
    letter-spacing: -0.04em;
    font-weight: 800;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3.5rem;
    max-width: 540px;
}

.hero-visual {
    width: 100%;
    position: relative;
    padding-top: 2rem; /* Memberikan ruang agar sejajar dengan H1, bukan Badge */
}

/* Tambahkan pendaran cahaya di belakang gambar */
.hero-visual::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: var(--primary);
    filter: blur(120px);
    opacity: 0.15;
    z-index: -1;
}

.hero-screenshot {
    width: 100%;
    display: block;
    border-radius: 16px;
    box-shadow: 
        0 50px 100px -20px rgba(0, 0, 0, 0.6),
        0 30px 60px -30px rgba(0, 0, 0, 0.7),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.5s ease;
}

/* Efek interaktif saat dihover */
.hero-visual:hover .hero-screenshot {
    transform: translateY(-10px) scale(1.02);
}

.hero-trust {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--text-soft);
}

.badge {
    background: rgba(56, 189, 248, 0.1);
    color: var(--primary-light);
    padding: 0.6rem 1.2rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    display: inline-block;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
}

.version-tag {
    font-size: 0.8rem;
    color: var(--primary-light);
    font-weight: 600;
    opacity: 0.8;
    margin-left: 0.5rem;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.trust-strip {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.03);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
    padding: 1.5rem 0;
}

.trust-item {
    padding: 0.85rem 1rem;
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.035);
}

.trust-label {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--primary-light);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.trust-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    .hero-cta-group {
        width: 100%;
        align-items: center;
    }
    .version-tag {
        margin-left: 0;
    }
}

/* Risk Section */
.risk-section {
    padding: 6rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.risk-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.risk-kicker {
    display: inline-block;
    margin-bottom: 1.15rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.risk-kicker-problem {
    color: #f43f5e;
}

.risk-kicker-solution {
    color: #22c55e;
}

.risk-item h3 {
    margin-bottom: 1rem;
    color: #fb7185; /* Soft red for risk */
}

.risk-item:last-child h3 {
    color: var(--primary-light);
}

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

.risk-item p + p {
    margin-top: 1rem;
}

/* Features */
.features { padding: 96px 0; }
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}
.section-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.85rem;
    margin-bottom: 1.2rem;
    border-radius: 999px;
    border: 1px solid rgba(56, 189, 248, 0.22);
    background: rgba(56, 189, 248, 0.08);
    color: var(--primary-light);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.section-header h2 { font-size: 2.9rem; margin-bottom: 1rem; }
.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.75;
}

.feature-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 0.85rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 18px;
    padding: 1.5rem;
    min-height: 152px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(56, 189, 248, 0.34);
    background: rgba(56, 189, 248, 0.05);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(56, 189, 248, 0.12);
    color: var(--primary-light);
    margin-bottom: 0.9rem;
}

.feature-icon svg {
    width: 22px;
    height: 22px;
}

.feature-card h3 {
    font-size: 1.08rem;
    line-height: 1.25;
    margin-bottom: 0.7rem;
    color: var(--text-main);
}

.feature-meta {
    display: inline-flex;
    align-self: flex-start;
    padding: 0.32rem 0.7rem;
    border-radius: 999px;
    background: rgba(56, 189, 248, 0.1);
    color: var(--primary-light);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.tool-group-grid,
.comparison-grid,
.support-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.tool-group,
.comparison-card,
.support-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 20px;
    padding: 1.8rem;
}

.tool-group h3,
.comparison-card h3,
.support-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.9rem;
}

.tool-group p,
.support-card p {
    color: var(--text-muted);
    line-height: 1.75;
}

.tool-list {
    margin-top: 1rem;
    color: var(--primary-light);
    font-size: 0.95rem;
    font-weight: 600;
}

.comparison-section,
.trust-summary,
.closing-cta {
    padding: 100px 0;
}

.comparison-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.025) 100%);
}

.trust-summary {
    background: rgba(9, 17, 30, 0.55);
}

.comparison-label {
    display: inline-flex;
    margin-bottom: 1rem;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: rgba(56, 189, 248, 0.1);
    color: var(--primary-light);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.comparison-card-pro {
    background: linear-gradient(180deg, rgba(56, 189, 248, 0.1) 0%, rgba(24, 40, 60, 0.9) 100%);
    border-color: rgba(56, 189, 248, 0.42);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
}

.comparison-label-pro {
    background: rgba(14, 165, 233, 0.16);
    color: #d5f3ff;
}

.comparison-points {
    list-style: none;
    display: grid;
    gap: 0.85rem;
    margin-top: 1.1rem;
}

.comparison-points li {
    position: relative;
    padding-left: 1.6rem;
    color: var(--text-main);
    line-height: 1.65;
}

.comparison-points li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-light);
}

.section-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.section-actions-center {
    justify-content: center;
}

.release-proof {
    padding: 88px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(180deg, rgba(10, 18, 32, 1) 0%, rgba(16, 28, 45, 0.92) 100%);
}

.release-proof-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    gap: 2rem;
    align-items: center;
}

.release-proof-grid p {
    color: var(--text-muted);
    max-width: 760px;
}

/* Pricing */
.pricing { padding: 100px 0; }
.section-kicker-pricing {
    border-color: rgba(56, 189, 248, 0.22);
    background: rgba(56, 189, 248, 0.08);
    color: var(--primary-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem;
    align-items: stretch;
}

.pricing-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 24px;
    padding: 2.75rem;
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.22);
}

.pricing-card-basic {
    display: flex;
    flex-direction: column;
}

.pricing-card-pro {
    background: linear-gradient(180deg, rgba(56, 189, 248, 0.12) 0%, rgba(24, 40, 60, 0.94) 100%);
    border-color: rgba(56, 189, 248, 0.5);
    box-shadow: 0 24px 48px rgba(9, 17, 30, 0.32);
}

.pricing-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: var(--primary);
    color: white;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.pricing-eyebrow {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.pricing-eyebrow-pro {
    color: var(--primary-light);
}

.pricing-price-row {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin: 0.3rem 0 0.75rem;
}

.pricing-price-row .amount {
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 0.95;
}

.pricing-currency {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1;
}

.pricing-compare {
    color: var(--text-muted);
    font-size: 1.35rem;
    text-decoration: line-through;
    margin-left: 0.2rem;
}

.pricing-summary {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 1.4rem;
    line-height: 1.7;
}

.pricing-features {
    list-style: none;
    margin: 0 0 2rem;
    display: grid;
    gap: 1rem;
    text-align: left;
}

.pricing-features li {
    position: relative;
    padding-left: 2rem;
    color: var(--text-main);
    font-size: 1.05rem;
    line-height: 1.65;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-light);
    font-weight: bold;
}

.pricing-features-pro li::before {
    color: var(--primary);
}

.btn-full {
    display: block;
    width: 100%;
    text-align: center;
}

.btn-pro {
    background: var(--primary);
    color: white !important;
    box-shadow: 0 10px 24px rgba(56, 189, 248, 0.22);
}

.btn-pro:hover {
    background: var(--primary-hover);
    box-shadow: 0 12px 26px rgba(56, 189, 248, 0.3);
}

.pricing-footer { margin-top: 1rem; color: var(--text-muted); font-size: 0.92rem; }

/* FAQ */
.faq { padding: 8rem 0; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { margin-bottom: 1rem; border-bottom: 1px solid var(--border-color); }
.faq-question {
    width: 100%;
    padding: 2rem 0;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.25rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.faq-answer {
    padding-bottom: 2rem;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

.faq-answer strong { color: var(--text-main); }

/* Compliance Page Styles */
.compliance-header { text-align: center; margin-bottom: 6rem; }
.compliance-header h1 { font-size: 4.5rem; margin-bottom: 1.5rem; }
.compliance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}
.compliance-card {
    background: var(--bg-card-elevated);
    padding: 3.5rem;
    border-radius: 24px;
    border: 1px solid var(--border-color);
}
.card-icon { font-size: 3rem; margin-bottom: 1.5rem; }

.compliance-details {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
    padding-inline: 0.75rem;
}
.compliance-details h2 {
    margin-bottom: 2.25rem;
}
.detail-item { margin-bottom: 4rem; }
.detail-item h4 { font-size: 1.5rem; margin-bottom: 1rem; color: var(--primary-light); }
.detail-item p { color: var(--text-muted); line-height: 1.8; }

.compliance-cta {
    padding: 5rem;
    border-radius: 32px;
    text-align: center;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.75rem;
}

/* Promo & Pricing Refinement */
.promo-banner {
    background: linear-gradient(90deg, #0f2f4a 0%, #38bdf8 100%);
    color: white;
    padding: 0.75rem 0;
    text-align: center;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.code-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: monospace;
    font-weight: bold;
    border: 1px dashed rgba(255, 255, 255, 0.5);
}

.strike {
    text-decoration: line-through;
    opacity: 0.5;
    font-size: 0.6em;
    margin-right: 0.5rem;
}

.promo-label {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #fbbf24; /* Gold/Amber for promo */
    font-weight: 500;
}

/* Footer */
footer { padding: 100px 0 50px; border-top: 1px solid var(--border-color); }
.footer-container { display: flex; justify-content: space-between; align-items: center; margin-bottom: 5rem; }
.footer-links { display: flex; gap: 3rem; }
.footer-links a { color: var(--text-muted); font-size: 0.9rem; }
.footer-links a:hover { color: var(--text-main); }
.footer-bottom { text-align: center; opacity: 0.5; font-size: 0.8rem; }

.highlight-red { color: var(--highlight-red); }

.hero h1,
.section-header h2 {
    letter-spacing: -0.03em;
}

.compliance-header .lead,
.cl-hero p,
.footer-brand p {
    color: var(--text-muted);
}

/* Mobile Responsive Refinement */
@media (max-width: 1024px) {
    .hero-container { gap: 3rem; }
    .hero h1 { font-size: 3rem; }
}

/* Navbar Mobile Fix */
@media (max-width: 768px) {
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
    .nav-actions {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-left: auto; /* Memastikan grup tombol terdorong ke kanan */
    }

    .py-xl { padding: 4rem 0; }
    .mt-xl { margin-top: 3rem; }
    
    .nav-links { display: none; }
    
    .hero-professional { padding: 60px 0; }
    .hero-container { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
    .hero h1 { font-size: 2.5rem; }
    .hero p { margin: 0 auto 2.5rem; font-size: 1.1rem; }
    .hero-actions { flex-direction: column; gap: 1rem; }
    .btn-lg { width: 100%; }
    
    .trust-grid,
    .risk-grid,
    .compliance-grid,
    .tool-group-grid,
    .comparison-grid,
    .support-grid,
    .release-proof-grid { grid-template-columns: 1fr; gap: 2rem; }
    .pricing-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    
    .feature-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .feature-card { min-height: 144px; padding: 1.35rem; }
    .pricing-card { padding: 2rem 1.5rem; }
    .pricing-price-row .amount { font-size: 3.5rem; }
    .pricing-currency { font-size: 1.6rem; }
    .pricing-compare { font-size: 1.1rem; }
    
    .compliance-header h1 { font-size: 2.5rem; }
    .compliance-card { padding: 2rem; }
    .compliance-details {
        max-width: 100%;
        padding-inline: 0.5rem;
    }
    .compliance-cta { padding: 2.5rem 1.5rem; border-radius: 20px; }
    .comparison-section,
    .trust-summary,
    .closing-cta { padding: 72px 0; }
    
    .footer-container { flex-direction: column; text-align: center; gap: 3rem; }
    .footer-links { justify-content: center; flex-wrap: wrap; }
}

@media (max-width: 480px) {
    .container { padding: 0 1.25rem; }
    .nav-container { height: 70px; }
    .logo span { display: none; } /* Hanya tampilkan icon logo di HP sangat kecil agar tidak sempit */
    .btn-ghost { padding: 0.6rem 0.8rem; }
    .lang-text { font-size: 0.8rem; }
    .hero h1 { font-size: 2.2rem; }
    .faq-question { font-size: 1.1rem; }
    .feature-card-grid { grid-template-columns: 1fr; }
    .feature-card { min-height: 140px; }
    .section-actions .btn-primary,
    .section-actions .btn-secondary { width: 100%; }
}
