/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #ff6b35;
    --dark-orange: #e85d2a;
    --light-orange: #ff8c5f;
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --bg-card: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --border-color: #2a2a2a;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-orange);
}

.nav-brand .logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-orange);
}

.btn-download {
    background: var(--primary-orange);
    color: white !important;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-download:hover {
    background: var(--dark-orange);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 60px 0;
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--light-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary-orange);
    color: white;
}

.btn-primary:hover {
    background: var(--dark-orange);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

.btn-large {
    padding: 20px 40px;
    font-size: 20px;
}

.hero-stats {
    display: flex;
    gap: 60px;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-orange);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

/* Problem Section */
.problem-section {
    background: var(--bg-darker);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.problem-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.problem-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-5px);
}

.problem-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary-orange);
}

.problem-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.1);
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* How It Works */
.how-it-works {
    background: var(--bg-darker);
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 20px;
    align-items: center;
}

.step-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    text-align: center;
    transition: all 0.3s;
}

.step-card:hover {
    border-color: var(--primary-orange);
    transform: scale(1.05);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--dark-orange) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 900;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.step-card p {
    color: var(--text-secondary);
}

.step-arrow {
    font-size: 32px;
    color: var(--primary-orange);
    font-weight: 900;
}

/* Pricing Section */
.pricing-table {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table th {
    background: var(--bg-darker);
    padding: 24px;
    font-size: 20px;
    font-weight: 700;
    text-align: left;
}

.pricing-table th:first-child {
    width: 50%;
}

.pricing-table .highlight-col {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--dark-orange) 100%);
    color: white;
}

.pricing-table td {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
}

.pricing-table tr:hover {
    background: rgba(255, 107, 53, 0.05);
}

.check {
    color: #4ade80;
    font-size: 20px;
    font-weight: 700;
}

.cross {
    color: #ef4444;
    font-size: 20px;
    font-weight: 700;
}

.download-row {
    background: var(--bg-darker);
}

.download-row td {
    border: none;
}

.download-info {
    text-align: center;
    padding: 40px 20px;
}

.download-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.download-info p {
    color: var(--text-secondary);
    margin-top: 16px;
}

/* How to Buy Section */
.how-to-buy-section {
    background: var(--bg-darker);
}

.buy-steps {
    max-width: 900px;
    margin: 0 auto;
}

.buy-step {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
    align-items: flex-start;
}

.buy-step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--dark-orange) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 900;
    flex-shrink: 0;
}

.buy-step-content {
    flex: 1;
}

.buy-step-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.buy-step-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.buy-step-content strong {
    color: var(--primary-orange);
    font-size: 24px;
}

.buy-step-content ul {
    list-style: none;
    padding: 0;
}

.buy-step-content ul li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-secondary);
}

.buy-step-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: 700;
}

.note {
    font-size: 14px;
    color: var(--text-secondary);
    font-style: italic;
    margin-top: 12px;
}

/* Payment Method */
.payment-method {
    margin-top: 30px;
}

.qris-container {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

.qris-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 2px solid #e5e5e5;
}

.qris-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}

.qris-info svg {
    color: var(--primary-orange);
}

.qris-info p {
    font-size: 20px;
    font-weight: 700;
    color: #0a0a0a;
    margin: 0;
}

.qris-desc {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.btn-whatsapp {
    background: #25d366;
    color: white !important;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
}

.btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

/* Download Section */
.download-section {
    background: var(--bg-darker);
}

.download-card {
    max-width: 700px;
    margin: 0 auto 60px;
}

.download-info-box {
    background: var(--bg-card);
    padding: 50px;
    border-radius: 16px;
    border: 2px solid var(--primary-orange);
    text-align: center;
}

.download-info-box h3 {
    font-size: 32px;
    margin-bottom: 12px;
}

.download-info-box>p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.download-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 30px;
}

.feature-item {
    color: var(--text-secondary);
    text-align: left;
}

.system-requirements {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.system-requirements h3 {
    font-size: 24px;
    margin-bottom: 24px;
    text-align: center;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.req-item {
    color: var(--text-secondary);
}

.req-item strong {
    color: var(--primary-orange);
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faq-item {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--primary-orange);
    transform: translateY(-5px);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-orange);
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-logo {
    width: 60px;
    height: 60px;
    border-radius: 12px;
}

.footer-brand p {
    font-size: 20px;
    font-weight: 700;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 14px !important;
    font-weight: 400 !important;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--primary-orange);
}

.footer-links a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-orange);
}

.footer-contact p {
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .step-arrow {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .nav-links {
        display: none;
    }

    .features-grid,
    .problem-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .pricing-table {
        overflow-x: auto;
    }

    .buy-step {
        flex-direction: column;
    }
}

/* Monetization Section */
.monetization-section {
    background: var(--bg-darker);
}

.monetization-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.monetization-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s;
}

.monetization-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.1);
}

.monetization-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.monetization-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-orange);
}

.monetization-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Icon Wrapper - Professional SVG Icons */
.icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--dark-orange) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s;
}

.icon-wrapper svg {
    color: white;
    width: 40px;
    height: 40px;
}

.feature-card:hover .icon-wrapper,
.monetization-card:hover .icon-wrapper,
.audience-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

/* Features Section Updates */
.features-section {
    background: var(--bg-dark);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.1);
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Target Audience Section */
.audience-section {
    background: var(--bg-darker);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.audience-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s;
}

.audience-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.1);
}

.audience-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.audience-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-orange);
}

.audience-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Comparison Section */
.comparison-section {
    background: var(--bg-dark);
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 16px;
}

.comparison-table {
    width: 100%;
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-collapse: collapse;
}

.comparison-table thead {
    background: var(--bg-darker);
}

.comparison-table th {
    padding: 24px;
    font-size: 20px;
    font-weight: 700;
    text-align: left;
}

.comparison-table th:first-child {
    width: 30%;
}

.comparison-table .manual-col {
    background: rgba(239, 68, 68, 0.1);
}

.comparison-table .tool-col {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-orange);
    font-weight: 600;
}

.comparison-table td {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table tbody tr:hover {
    background: rgba(255, 107, 53, 0.05);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

/* Tutorial Section */
.tutorial-section {
    background: var(--bg-darker);
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto 60px;
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    background: var(--bg-card);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

.tutorial-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.tutorial-steps .step-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s;
}

.tutorial-steps .step-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-5px);
}

.tutorial-steps .step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--dark-orange) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 900;
    margin: 0 auto 20px;
}

.tutorial-steps .step-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.tutorial-steps .step-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--bg-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.testimonial-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.1);
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    justify-content: center;
}

.stars svg {
    width: 20px;
    height: 20px;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.testimonial-author strong {
    color: var(--text-primary);
    font-size: 18px;
}

.testimonial-author span {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Pricing Section Updates */
.pricing-section {
    background: var(--bg-darker);
}

.pricing-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 50px;
    border-radius: 20px;
    border: 2px solid var(--primary-orange);
    position: relative;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--dark-orange) 100%);
    color: white;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.pricing-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 8px;
    margin-top: 20px;
}

.pricing-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-size: 18px;
}

.price-wrapper {
    text-align: center;
    margin-bottom: 40px;
}

.price-original {
    margin-bottom: 10px;
}

.strikethrough {
    text-decoration: line-through;
    color: var(--text-secondary);
    font-size: 24px;
}

.price-current {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.currency {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-orange);
}

.amount {
    font-size: 72px;
    font-weight: 900;
    color: var(--primary-orange);
    line-height: 1;
}

.price-note {
    color: var(--text-secondary);
    font-size: 16px;
}

/* Countdown Timer */
.countdown-wrapper {
    background: var(--bg-darker);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.countdown-label {
    text-align: center;
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--bg-card);
    padding: 20px 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.countdown-item span:first-child {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-orange);
    line-height: 1;
}

.countdown-label-small {
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

.countdown-separator {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-orange);
}

/* Pricing Features */
.pricing-features {
    margin-bottom: 40px;
}

.pricing-features h4 {
    font-size: 22px;
    margin-bottom: 20px;
    text-align: center;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
}

.pricing-features li {
    padding: 12px 0;
    color: var(--text-secondary);
    font-size: 16px;
    border-bottom: 1px solid var(--border-color);
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* Payment Method */
.payment-method {
    text-align: center;
    margin-bottom: 30px;
}

.payment-label {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.payment-badge {
    display: inline-block;
    background: var(--bg-darker);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    border: 1px solid var(--border-color);
}

.pricing-guarantee {
    text-align: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.pricing-guarantee p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Pulse Animation */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
    }

    50% {
        box-shadow: 0 0 0 20px rgba(255, 107, 53, 0);
    }
}

/* How to Buy Section Updates */
.how-to-buy-section {
    background: var(--bg-dark);
}

.how-to-buy-section .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* New 4-Column Grid Layout */
.steps-grid-4col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.buy-step-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.buy-step-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.1);
}

.step-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--dark-orange) 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.buy-step-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-orange);
}

.buy-step-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 15px;
}

.buy-step-card strong {
    color: var(--primary-orange);
}

/* QRIS Section */
.qris-section {
    text-align: center;
    margin-bottom: 60px;
}

.qris-section h3 {
    font-size: 28px;
    margin-bottom: 30px;
}

.qris-placeholder {
    max-width: 400px;
    margin: 0 auto;
}

.qris-box {
    background: white;
    padding: 50px 40px;
    border-radius: 16px;
    border: 2px dashed #ccc;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.qris-title {
    color: #333;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.qris-note {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.qris-amount {
    color: var(--primary-orange);
    font-size: 32px;
    font-weight: 900;
    margin: 10px 0 0 0;
}

/* WhatsApp Section */
.whatsapp-section {
    text-align: center;
    margin-bottom: 60px;
}

.whatsapp-section h3 {
    font-size: 28px;
    margin-bottom: 30px;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25d366;
    color: white;
    padding: 18px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-button:hover {
    background: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

/* Old buy-step styles (keeping for backward compatibility) */
.buy-step {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s;
}

.buy-step:hover {
    border-color: var(--primary-orange);
    transform: translateY(-5px);
}

.step-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.buy-step h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-orange);
}

.buy-step p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.qris-placeholder {
    margin-top: 30px;
}

.qris-box {
    background: white;
    padding: 60px 40px;
    border-radius: 12px;
    border: 2px dashed #ccc;
}

.qris-box p {
    color: #666;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.qris-note {
    font-size: 14px !important;
    font-weight: 400 !important;
    margin-top: 10px !important;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
    transition: all 0.3s;
}

.whatsapp-button:hover {
    background: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.buy-notes {
    max-width: 800px;
    margin: 60px auto 0;
    background: var(--bg-card);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.buy-notes p {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.buy-notes ul {
    list-style: none;
    padding: 0;
}

.buy-notes li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-secondary);
}

.buy-notes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 18px;
}

/* FAQ Section Updates - Accordion Style */
.faq-section {
    background: var(--bg-darker);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--primary-orange);
}

.faq-item.active {
    border-color: var(--primary-orange);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px 30px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s;
}

.faq-question:hover {
    color: var(--primary-orange);
}

.faq-icon {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-orange);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding: 0 30px 24px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.faq-answer ul {
    padding: 0 30px 24px 60px;
    color: var(--text-secondary);
}

.faq-answer li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.faq-answer strong {
    color: var(--primary-orange);
    font-weight: 700;
}

/* Footer Updates */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-logo {
    width: 60px;
    height: 60px;
    border-radius: 12px;
}

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 16px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--primary-orange);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-orange);
}

.footer-contact p {
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.footer-contact a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.footer-bottom a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive Updates */
@media (max-width: 768px) {

    .monetization-grid,
    .audience-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .comparison-table-wrapper {
        overflow-x: auto;
    }

    .comparison-table {
        min-width: 600px;
    }

    .video-wrapper {
        padding-bottom: 75%;
        /* Adjust for mobile */
    }

    .tutorial-steps {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .pricing-title {
        font-size: 28px;
    }

    .amount {
        font-size: 56px;
    }

    .countdown-item {
        padding: 15px 20px;
    }

    .countdown-item span:first-child {
        font-size: 36px;
    }

    .how-to-buy-section .steps-grid {
        grid-template-columns: 1fr;
    }

    /* New 4-column grid responsive */
    .steps-grid-4col {
        grid-template-columns: 1fr;
    }

    .faq-question {
        font-size: 16px;
        padding: 20px;
    }

    .faq-answer p,
    .faq-answer ul {
        padding-left: 20px;
        padding-right: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .steps-grid-4col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .btn {
        padding: 14px 24px;
        font-size: 16px;
    }

    .countdown {
        gap: 5px;
    }

    .countdown-item {
        padding: 10px 15px;
    }

    .countdown-item span:first-child {
        font-size: 28px;
    }

    .countdown-separator {
        font-size: 28px;
    }
}

/* ============================================
   NEW STYLES: Hero Eyebrow & Nav Download
   ============================================ */

.hero-eyebrow {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-orange);
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.nav-download {
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    color: white !important;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.nav-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

/* ============================================
   DOWNLOAD CTA SECTION
   ============================================ */

.download-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, var(--bg-darker) 50%, rgba(255, 107, 53, 0.05) 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.download-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.download-cta-text {
    flex: 1;
}

.download-cta-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.download-cta-text h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.download-cta-text p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.download-cta-features {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 15px;
}

.cta-feature svg {
    color: #4ade80;
}

.download-cta-buttons {
    text-align: center;
}

.download-cta-buttons .btn-large {
    white-space: nowrap;
}

.download-cta-buttons .download-note {
    margin-top: 12px;
    font-size: 13px;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .download-cta-content {
        flex-direction: column;
        text-align: center;
    }

    .download-cta-text h2 {
        font-size: 28px;
    }

    .download-cta-features {
        justify-content: center;
    }

    .hero-eyebrow {
        font-size: 14px;
    }
}

/* QRIS Image Styling */
.qris-image {
    max-width: 200px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--primary-orange);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Floating WhatsApp Button */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 999;
    text-decoration: none;
}

.floating-wa-text {
    background: #1a1a1a;
    color: #fff;
    padding: 10px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
    animation: textPulse 2s ease-in-out infinite;
}

.floating-wa-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.5);
    transition: all 0.3s ease;
    animation: waPulse 2s ease-in-out infinite;
}

.floating-wa-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.floating-wa:hover .floating-wa-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7);
}

@keyframes waPulse {

    0%,
    100% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.5);
    }

    50% {
        box-shadow: 0 4px 35px rgba(37, 211, 102, 0.8);
    }
}

@keyframes textPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

/* Comparison Table Mobile Styles */
.comparison-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -20px;
    padding: 0 20px;
}

.comparison-table {
    min-width: 600px;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        font-size: 24px;
        color: #fff;
    }

    .nav-links .nav-download {
        background: var(--primary-orange);
        padding: 15px 40px;
        border-radius: 10px;
    }

    /* Comparison table scroll hint */
    .comparison-table-wrapper {
        position: relative;
    }

    .comparison-table-wrapper::after {
        content: '← Geser untuk lihat lebih →';
        display: block;
        text-align: center;
        font-size: 12px;
        color: var(--text-secondary);
        padding: 10px 0;
        opacity: 0.7;
    }

    .comparison-table {
        font-size: 14px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 15px;
        min-width: 120px;
    }

    .comparison-table th:first-child,
    .comparison-table td:first-child {
        position: sticky;
        left: 0;
        background: var(--bg-card);
        z-index: 1;
    }

    /* Floating WA mobile */
    .floating-wa {
        bottom: 20px;
        right: 15px;
    }

    .floating-wa-text {
        font-size: 12px;
        padding: 8px 12px;
    }

    .floating-wa-icon {
        width: 50px;
        height: 50px;
    }

    .floating-wa-icon svg {
        width: 26px;
        height: 26px;
    }
}
/* Knowledgebase */
.knowledgebase-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #111114 0%, #0b0b0d 100%);
}

.knowledgebase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
    margin-top: 42px;
}

.knowledgebase-card {
    display: block;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.045);
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.knowledgebase-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 107, 53, 0.65);
}

.knowledgebase-card h3 {
    margin: 12px 0;
    font-size: 1.35rem;
}

.knowledgebase-card p {
    color: #b0b0b0;
    line-height: 1.7;
}

.knowledgebase-card strong,
.knowledgebase-label {
    color: #ff6b35;
}

.knowledgebase-label {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Video Demo */
.video-demo-section {
    padding: 90px 0;
    background: #0b0b0d;
}

.video-demo-wrapper {
    position: relative;
    width: min(960px, 100%);
    margin: 42px auto 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    background: #050506;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
    aspect-ratio: 16 / 9;
}

.video-demo-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-demo-note {
    text-align: center;
    color: #b0b0b0;
}

.video-demo-note a {
    color: #ff6b35;
    font-weight: 700;
}
