:root {
    --green-primary: #2d7a3a;
    --green-mid: #3a9e4a;
    --green-light: #5cc06a;
    --green-pale: #e8f5ea;
    --green-soft: #f0f9f1;
    --beige: #f5f0e8;
    --cream: #faf7f2;
    --white: #ffffff;
    --dark: #1a2e1c;
    --text: #2c3e2d;
    --text-muted: #5a7060;
    --border: #d4e8d4;
    --orange: #f97316;
    --gold: #f59e0b;
    --red-soft: #fef2f2;
    --shadow: 0 4px 24px rgba(45, 122, 58, 0.10);
    --shadow-card: 0 2px 16px rgba(45, 122, 58, 0.08);
    --radius: 16px;
    --radius-sm: 10px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ======= NAVBAR ======= */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    box-shadow: 0 2px 12px rgba(45, 122, 58, 0.08);
}

.nav-logo {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--green-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-logo span {
    color: var(--green-light);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: .92rem;
    transition: color .2s;
}

.nav-links a:hover {
    color: var(--green-primary);
}

.btn-nav {
    background: var(--green-primary);
    color: #fff;
    border: none;
    padding: 9px 22px;
    border-radius: 8px;
    font-family: inherit;
    font-weight: 600;
    font-size: .9rem;
    cursor: pointer;
    transition: background .2s, transform .1s;
}

.btn-nav:hover {
    background: var(--green-mid);
    transform: translateY(-1px);
}

/* ======= HERO ======= */
.hero {
    padding-top: 100px;
    background: linear-gradient(160deg, var(--cream) 0%, var(--green-soft) 60%, var(--beige) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(92, 192, 106, 0.18) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(45, 122, 58, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-inner {
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: .82rem;
    font-weight: 600;
    color: var(--green-primary);
    margin-bottom: 20px;
    box-shadow: var(--shadow-card);
}

.hero-badge::before {
    content: '🌿';
}

.hero h1 {
    font-size: clamp(2rem, 3vw, 2.2rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 14px;
}

.hero h1 em {
    font-style: normal;
    color: var(--green-primary);
}

.hero p.sub {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto 32px;
}

.hero-img {
    padding-top: 50px;
    width: 100%;
    max-width: 760px;
    margin: 0 auto 40px;
    display: block;
    height: auto;
    position: relative;
    overflow: hidden;
}

.hero-img-mock {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    gap: 12px;
}

.hero-img-mock .bank-icon {
    font-size: 3rem;
}

.hero-img-mock .bank-label {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
}

/* Feature pills */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 32px;
}

.hf-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px 14px;
    font-size: .85rem;
    font-weight: 500;
    color: var(--text);
    box-shadow: var(--shadow-card);
}

.hf-pill .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green-light);
}

.hero-cta {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--green-primary);
    color: #fff;
    border: none;
    padding: 13px 28px;
    border-radius: 10px;
    font-family: inherit;
    font-weight: 700;
    font-size: .95rem;
    cursor: pointer;
    transition: all .2s;
    box-shadow: 0 4px 20px rgba(45, 122, 58, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    background: var(--green-mid);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(45, 122, 58, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--green-primary);
    border: 2px solid var(--green-primary);
    padding: 13px 28px;
    border-radius: 10px;
    font-family: inherit;
    font-weight: 700;
    font-size: .95rem;
    cursor: pointer;
    transition: all .2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-outline:hover {
    background: var(--green-pale);
    transform: translateY(-2px);
}

/* ======= NOTICE BAR ======= */
.notice-bar {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 16px 5%;
}

.notice-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--text-muted);
}

.notice-inner strong {
    color: var(--green-primary);
}

.notice-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: auto;
}

.notice-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
    color: var(--text);
    font-weight: 500;
}

.notice-tag::before {
    content: '✅';
    font-size: .8rem;
}

/* ======= SECTIONS ======= */
section {
    padding: 80px 5%;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    font-size: .8rem;
    font-weight: 700;
    color: var(--green-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    background: var(--green-pale);
    padding: 4px 12px;
    border-radius: 50px;
}

.section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.3rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 14px;
    line-height: 1.25;
}

.section-title em {
    font-style: normal;
    color: var(--green-primary);
}

.section-sub {
    font-size: .95rem;
    color: var(--text-muted);
    max-width: 540px;
}

.text-center {
    text-align: center;
}

.text-center .section-sub {
    margin: 0 auto;
}

/* ======= MASALAH ======= */
.masalah {
    background: var(--green-soft);
}

.masalah-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 40px;
}

.masalah-card {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    transition: transform .2s, box-shadow .2s;
}

.masalah-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.masalah-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    background: var(--green-pale);
}

.masalah-text {
    font-size: .88rem;
    color: var(--text);
    font-weight: 500;
    line-height: 1.4;
}

.masalah-footnote {
    margin-top: 24px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--green-primary);
    font-style: italic;
    text-align: center;
}

/* ======= SOLUSI ======= */
.solusi-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.solusi-mockup {
    background: linear-gradient(135deg, #eaf6ec 0%, #d4edda 100%);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border-radius: 10px;
    padding: 10px 14px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
}

.mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mockup-title {
    font-weight: 700;
    font-size: .88rem;
    color: var(--dark);
    margin-left: 4px;
}

.mockup-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 14px;
}

.stat-box {
    background: var(--white);
    border-radius: 10px;
    padding: 12px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, .05);
}

.stat-val {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--green-primary);
}

.stat-lbl {
    font-size: .72rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.mockup-chart {
    background: var(--white);
    border-radius: 10px;
    padding: 14px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, .05);
    margin-bottom: 10px;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 60px;
    margin-top: 8px;
}

.bar {
    flex: 1;
    background: var(--green-light);
    border-radius: 4px 4px 0 0;
    opacity: .85;
    transition: opacity .2s;
}

.bar:hover {
    opacity: 1;
}

.solusi-features {
    list-style: none;
    margin-top: 8px;
}

.solusi-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .88rem;
    color: var(--text);
    padding: 6px 0;
    border-bottom: 1px solid var(--green-soft);
}

.solusi-features li::before {
    content: '✓';
    color: var(--green-primary);
    font-weight: 700;
}

.solusi-desc {
    font-size: .95rem;
    color: var(--text-muted);
    margin-top: 16px;
    line-height: 1.7;
}

/* ======= FITUR ======= */
.fitur {
    background: var(--cream);
}

.fitur-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.fitur-preview {
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-mid) 100%);
    border-radius: var(--radius);
    padding: 28px;
    color: #fff;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 8px 30px rgba(45, 122, 58, 0.25);
}

.fitur-preview-icon {
    font-size: 2.5rem;
}

.fitur-preview-text h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.fitur-preview-text p {
    font-size: .84rem;
    opacity: .85;
}

.fitur-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.fitur-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    transition: all .25s;
}

.fitur-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--green-light);
}

.fitur-card-icon {
    width: 48px;
    height: 48px;
    background: var(--green-pale);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.fitur-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.fitur-card p {
    font-size: .84rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.6;
}

.fitur-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.fitur-tag {
    background: var(--green-pale);
    color: var(--green-primary);
    font-size: .75rem;
    font-weight: 600;
    border-radius: 50px;
    padding: 3px 10px;
}

.fitur-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ======= KENAPA ======= */
.kenapa {
    background: var(--white);
}

.kenapa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.kenapa-card {
    padding: 28px 24px;
    border-radius: var(--radius);
    border: 1.5px solid var(--border);
    background: var(--white);
    transition: all .25s;
    position: relative;
    overflow: hidden;
}

.kenapa-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green-primary), var(--green-light));
    transform: scaleX(0);
    transition: transform .25s;
    transform-origin: left;
}

.kenapa-card:hover::before {
    transform: scaleX(1);
}

.kenapa-card:hover {
    box-shadow: var(--shadow);
    border-color: var(--green-light);
}

.kenapa-icon {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.kenapa-card h3 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.kenapa-card p {
    font-size: .84rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ======= HARGA ======= */
.harga {
    background: var(--green-soft);
}

.harga-box {
    max-width: 540px;
    margin: 40px auto 0;
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 8px 40px rgba(45, 122, 58, 0.15);
    border: 2px solid var(--border);
}

.harga-badge {
    display: inline-block;
    background: var(--green-pale);
    color: var(--green-primary);
    font-size: .78rem;
    font-weight: 700;
    border-radius: 50px;
    padding: 4px 14px;
    margin-bottom: 16px;
}

.harga-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--green-primary);
    line-height: 1;
    margin-bottom: 6px;
}

.harga-price span {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-muted);
}

.harga-sub {
    font-size: .88rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.harga-features {
    list-style: none;
    margin-bottom: 28px;
    text-align: left;
}

.harga-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .88rem;
    color: var(--text);
    padding: 8px 0;
    border-bottom: 1px solid var(--green-soft);
}

.harga-features li .check {
    color: var(--green-primary);
    font-weight: 700;
    font-size: 1rem;
}

.btn-harga {
    display: block;
    text-align: center;
    text-decoration: none;
    width: 100%;
    background: var(--green-primary);
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s;
    box-shadow: 0 4px 20px rgba(45, 122, 58, 0.3);
}

.btn-harga:hover {
    background: var(--green-mid);
    transform: translateY(-2px);
    color: #fff;
}

.harga-note {
    font-size: .78rem;
    color: var(--text-muted);
    margin-top: 14px;
}

/* ======= COCOK ======= */
.cocok {
    background: var(--cream);
}

.cocok-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 14px;
    margin-top: 40px;
}

.cocok-card {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 20px 16px;
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    transition: all .2s;
}

.cocok-card:hover {
    border-color: var(--green-light);
    transform: translateY(-3px);
}

.cocok-card .icon {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.cocok-card p {
    font-size: .82rem;
    font-weight: 600;
    color: var(--dark);
}

/* ======= CTA ======= */
.cta-section {
    background: linear-gradient(135deg, rgba(45, 122, 58, 0.9) 0%, rgba(58, 158, 74, 0.9) 70%), url("images/img (1).webp");
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 80px 5%;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    right: -20%;
    bottom: -50%;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
}

.cta-section h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 10px;
}

.cta-section p {
    font-size: .95rem;
    opacity: .85;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: #fff;
    color: var(--green-primary);
    border: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-family: inherit;
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .15);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
}

.btn-white-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .6);
    padding: 14px 28px;
    border-radius: 10px;
    font-family: inherit;
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s;
}

.btn-white-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .1);
    transform: translateY(-2px);
}

/* ======= FOOTER ======= */
footer {
    background: var(--dark);
    color: rgba(255, 255, 255, .8);
    padding: 60px 5% 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 4fr 1fr 1fr 1fr;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-brand h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: .84rem;
    line-height: 1.7;
    opacity: .7;
}

.footer-col h4 {
    font-size: .88rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    font-size: .84rem;
    padding: 4px 0;
    opacity: .7;
}

.footer-col ul li a {
    color: inherit;
    text-decoration: none;
}

.footer-col ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1100px;
    margin: 24px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .8rem;
    opacity: .5;
    flex-wrap: wrap;
    gap: 10px;
}

/* ======= ANIMATIONS ======= */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    opacity: 0;
    animation: fadeUp .6s ease forwards;
}

.fade-up-1 {
    animation-delay: .1s;
}

.fade-up-2 {
    animation-delay: .25s;
}

.fade-up-3 {
    animation-delay: .4s;
}

.fade-up-4 {
    animation-delay: .55s;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all .6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ======= RESPONSIVE ======= */
@media (max-width: 900px) {
    .solusi-inner {
        grid-template-columns: 1fr;
    }

    .fitur-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    nav .nav-links {
        display: none;
    }
}

@media (max-width: 600px) {
    section {
        padding: 60px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .masalah-grid {
        grid-template-columns: 1fr;
    }

    .kenapa-grid {
        grid-template-columns: 1fr 1fr;
    }
}