* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f5f7f5;
    color: #333;
}

.header {
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 32px;
}

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

.logo-bni {
    color: #e85d26;
}

.logo-direct {
    color: #1a6b5a;
}

.nav {
    display: flex;
    gap: 24px;
}

.nav-link {
    text-decoration: none;
    color: #555;
    font-size: 14px;
    font-weight: 500;
}

.arrow-down {
    font-size: 10px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-daftar {
    text-decoration: none;
    border: 1px solid #1a6b5a;
    color: #1a6b5a;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-daftar:hover {
    background: #1a6b5a;
    color: #fff;
}

.hero {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 480px;
}

.hero-bg {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    display: block;
    object-fit: cover;
    object-position: center 13%;
    height: 200%;
    margin-top: -4%;
}

.login-section {
    max-width: 1200px;
    margin: -40px auto 0;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

.login-section-inner {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    justify-content: center;
}

.login-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 32px;
    flex: 1;
    max-width: 420px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.login-card h2 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 4px;
}

.login-subtitle {
    font-size: 14px;
    color: #888;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.form-group input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s;
    background: #fafafa;
}

.form-group input:focus {
    outline: none;
    border-color: #1a6b5a;
    background: #fff;
}

.form-group input::placeholder {
    color: #bbb;
}

.password-wrapper {
    position: relative;
}

.password-wrapper input {
    padding-right: 44px;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.forgot-link {
    display: inline-block;
    font-size: 13px;
    color: #e85d26;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 20px;
}

.forgot-link:hover {
    text-decoration: underline;
}

.btn-login {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #e85d26, #f07a3a);
    color: #fff;
    border: none;
    border-radius: 24px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: opacity 0.2s;
}

.btn-login:hover {
    opacity: 0.9;
}

.security-card {
    background: linear-gradient(135deg, #1a6b5a, #238b73);
    border-radius: 16px;
    padding: 28px 20px 80px;
    color: #fff;
    width: 220px;
    flex-shrink: 0;
}

.security-icon {
    margin-bottom: 8px;
    opacity: 0.8;
}

.security-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

.security-card ul {
    list-style: none;
    padding: 0;
}

.security-card ul li {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 14px;
    position: relative;
    opacity: 0.92;
}

.security-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #fff;
}

.security-card ul li strong {
    color: #fff;
}

.features-section {
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 0 24px;
}

.features-title {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 32px;
}

.features-inner {
    display: flex;
    gap: 20px;
}

.feature-card {
    flex: 1;
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid #e8e8e8;
    position: relative;
    transition: all 0.3s;
}

.feature-card.active {
    background: linear-gradient(135deg, #1a6b5a, #238b73);
    color: #fff;
    border-color: transparent;
}

.feature-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 12px;
    margin-bottom: 16px;
    background: #f0f0f0;
    color: #666;
}

.feature-card.active .feature-tag {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 13px;
    line-height: 1.7;
    opacity: 0.85;
}

.feature-arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 20px;
    color: #999;
}

.satu-akun-section {
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 0 24px;
    text-align: center;
}

.satu-akun-inner h2 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 28px;
    font-style: italic;
}

.slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 18px;
    cursor: pointer;
    color: #555;
    transition: all 0.2s;
}

.slider-btn:hover {
    border-color: #1a6b5a;
    color: #1a6b5a;
}

.btn-slider-active {
    display: inline-block;
    background: #1a6b5a;
    color: #fff;
    text-decoration: none;
    padding: 10px 28px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.cash-section {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 24px;
}

.cash-inner h2 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 32px;
}

.cash-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.cash-text {
    flex: 1;
}

.cash-text h3 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 14px;
}

.cash-text p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.link-selengkapnya {
    display: inline-block;
    text-decoration: none;
    color: #e85d26;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #e85d26;
    padding: 8px 20px;
    border-radius: 20px;
    transition: all 0.2s;
}

.link-selengkapnya:hover {
    background: #e85d26;
    color: #fff;
}

.cash-image {
    flex: 1;
}

.cash-image-placeholder {
    background: linear-gradient(135deg, #1a6b5a, #238b73);
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    min-height: 250px;
}

.cash-mockup {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    display: inline-block;
}

.logo-small {
    font-size: 14px;
    font-weight: 700;
}

.mockup-bar {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

.mockup-chart {
    color: #1a6b5a;
    font-size: 14px;
}

.sub-features-section {
    max-width: 1200px;
    margin: 48px auto 0;
    padding: 0 24px;
}

.sub-features-inner {
    display: flex;
    gap: 20px;
}

.sub-feature-card {
    flex: 1;
    text-align: left;
}

.sub-feature-img {
    width: 100%;
    height: 140px;
    background: #f0f0f0;
    border-radius: 12px;
    margin-bottom: 14px;
    border: 1px solid #e8e8e8;
}

.sub-feature-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.sub-feature-card p {
    font-size: 13px;
    line-height: 1.6;
    color: #666;
}

.faq-section {
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 0 24px;
}

.faq-inner {
    max-width: 800px;
}

.faq-label {
    font-size: 13px;
    color: #1a6b5a;
    font-weight: 600;
}

.faq-inner h2 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 4px 0 6px;
}

.faq-subtitle {
    font-size: 14px;
    color: #888;
    margin-bottom: 24px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 18px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: border-color 0.2s;
}

.faq-item:hover {
    border-color: #1a6b5a;
}

.faq-arrow {
    font-size: 12px;
    color: #999;
}

.pertanyaan-section {
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 0 24px;
    text-align: center;
}

.pertanyaan-inner {
    padding: 40px 0;
}

.pertanyaan-icon {
    margin-bottom: 16px;
}

.pertanyaan-inner h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.pertanyaan-inner p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.btn-faq {
    display: inline-block;
    text-decoration: none;
    border: 1px solid #1a6b5a;
    color: #1a6b5a;
    padding: 10px 28px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-faq:hover {
    background: #1a6b5a;
    color: #fff;
}

.cta-banner {
    margin-top: 60px;
    background: linear-gradient(135deg, #1a6b5a, #238b73);
    padding: 60px 24px;
}

.cta-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.cta-banner-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    flex-shrink: 0;
}

.cta-banner-content {
    color: #fff;
}

.cta-banner-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-banner-content p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 24px;
    line-height: 1.6;
}

.btn-daftar-cta {
    display: inline-block;
    text-decoration: none;
    background: #e85d26;
    color: #fff;
    padding: 12px 32px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    transition: opacity 0.2s;
}

.btn-daftar-cta:hover {
    opacity: 0.9;
}

.footer-full {
    background: #fff;
    border-top: 1px solid #e8e8e8;
}

.footer-full-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px 24px;
}

.footer-top {
    display: flex;
    gap: 40px;
    margin-bottom: 32px;
}

.footer-col {
    flex: 1;
}

.footer-col-logo {
    flex: 0.6;
}

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

.logo-bni-footer {
    color: #e85d26;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.footer-col p {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 4px;
}

.footer-col a {
    color: #1a6b5a;
    text-decoration: none;
}

.footer-col a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #e8e8e8;
    padding-top: 20px;
}

.footer-bottom p {
    font-size: 11px;
    color: #999;
    line-height: 1.6;
    margin-bottom: 4px;
}

.footer-bottom a {
    color: #1a6b5a;
    text-decoration: none;
}

.page2-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px;
}

.page2-inner {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.page2-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 32px;
    flex: 1;
    max-width: 480px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #1a6b5a;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    transition: opacity 0.2s;
}

.back-link:hover {
    opacity: 0.7;
}

.page2-header {
    margin-bottom: 28px;
}

.page2-icon {
    width: 56px;
    height: 56px;
    background: #e8f5f0;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.page2-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 6px;
}

.page2-subtitle {
    font-size: 14px;
    color: #888;
}

.password-rules {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.rule {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 12px;
    background: #f0f0f0;
    color: #999;
    transition: all 0.2s;
}

.rule.valid {
    background: #e8f5f0;
    color: #1a6b5a;
}

.rule.invalid {
    background: #f0f0f0;
    color: #999;
}

.match-status {
    font-size: 12px;
    margin-top: 6px;
    min-height: 18px;
}

.match-ok {
    color: #1a6b5a;
}

.match-err {
    color: #e85d26;
}

.phone-wrapper {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background: #fafafa;
    transition: border-color 0.2s;
}

.phone-wrapper:focus-within {
    border-color: #1a6b5a;
    background: #fff;
}

.phone-prefix {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 14px;
    background: #f0f0f0;
    border-right: 1px solid #ddd;
    font-size: 14px;
    color: #555;
    font-weight: 500;
    white-space: nowrap;
}

.flag-id {
    font-size: 18px;
}

.phone-input {
    flex: 1;
    padding: 12px 14px;
    border: none;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    background: transparent;
    outline: none;
}

.phone-input::placeholder {
    color: #bbb;
}

.field-hint {
    font-size: 12px;
    color: #999;
    margin-top: 6px;
}

.btn-submit {
    margin-top: 8px;
}

.page3-center {
    display: flex;
    justify-content: center;
}

.page3-card {
    background: #fff;
    border-radius: 16px;
    padding: 48px 40px;
    max-width: 520px;
    width: 100%;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.page3-icon-success {
    width: 80px;
    height: 80px;
    background: #e8f5f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.page3-card h2 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.page3-subtitle {
    font-size: 14px;
    color: #888;
    line-height: 1.7;
    margin-bottom: 28px;
}

.page3-wa-box {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #f0faf6;
    border: 1px solid #d4e8d4;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
    text-align: left;
}

.wa-icon {
    flex-shrink: 0;
}

.wa-label {
    font-size: 13px;
    color: #888;
    margin-bottom: 4px;
}

.wa-number {
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

.btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 24px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    transition: opacity 0.2s;
    margin-bottom: 20px;
}

.btn-wa:hover {
    opacity: 0.9;
}

.back-link-center {
    display: inline-block;
    font-size: 13px;
    color: #1a6b5a;
    text-decoration: none;
    font-weight: 500;
}

.back-link-center:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .header-right .nav-link {
        display: none;
    }

    .hero {
        height: 250px;
    }

    .hero-image {
        height: 400%;
        object-position: center 12%;
        margin-top: -4%;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .hero-overlay {
        padding: 40px 24px;
    }

    .login-section-inner {
        flex-direction: column;
    }

    .login-card {
        max-width: 100%;
    }

    .security-card {
        width: 100%;
    }

    .features-inner {
        flex-direction: column;
    }

    .page2-inner {
        flex-direction: column;
    }

    .page2-card {
        max-width: 100%;
    }

    .cash-content {
        flex-direction: column;
    }

    .sub-features-inner {
        flex-direction: column;
    }

    .cta-banner-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-top {
        flex-direction: column;
        gap: 24px;
    }
}