﻿/* --- VARIABLES & RESET --- */
:root { --primary-color:#ff9800; --primary-dark:#f57c00; --primary-light:#ffb347; --accent-color:#ff9800; --accent-dark:#f57c00; --dark-text:#ffffff; --light-text:#d6d6d6; --bg-white:#050505; --bg-light:#101010; --bg-dark:#000000; --section-spacing:100px; --radius-lg:20px; --radius-md:12px; --shadow-soft:0 15px 35px rgba(255,152,0,.16),0 5px 15px rgba(0,0,0,.45); --shadow-hover:0 20px 40px rgba(255,152,0,.24); }

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-white);
    color: var(--dark-text);
    line-height: 1.7;
    overflow-x: hidden;
}
a { text-decoration: none; transition: 0.3s ease; }
img { max-width: 100%; height: auto; }
h1, h2, h3 { font-weight: 700; line-height: 1.2; }

/* --- UTILITIES --- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 25px; }
.text-center { text-align: center; }
.section-padding { padding: var(--section-spacing) 0; }
.bg-light { background-color: var(--bg-light); }

/* Utility khusus untuk centering gambar/video */
.media-center-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px auto;
}
.media-shadow {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.05);
}

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: 15px 35px;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-size: 1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(50,50,93,0.11), 0 1px 3px rgba(0,0,0,0.08);
}
.btn-accent {
    background: var(--primary-color);
    color: white;
}
.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 14px rgba(255, 107, 53, 0.3), 0 3px 6px rgba(0, 0, 0, 0.08);
    background: var(--primary-dark);
}
.btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
}
.btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
    border-color: white;
}
.btn-primary-solid {
    background: var(--primary-color);
    color: white;
}
.btn-primary-solid:hover { 
    background: var(--primary-dark); 
    transform: translateY(-2px);
}

/* --- NAVBAR --- */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #eee;
    box-shadow: 0 2px 15px rgba(0,0,0,0.03);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo {
    font-size: 1.6em;
    font-weight: 800;
    color: var(--primary-color);
}
.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a {
    color: var(--dark-text);
    font-weight: 600;
    font-size: 0.95em;
    position: relative;
}
.nav-links a::after {
    content: ''; position: absolute; width: 0; height: 2px;
    bottom: -5px; left: 0; background: var(--primary-color); transition: 0.3s;
}
.nav-links a:hover::after, .nav-links a:focus-visible::after { width: 100%; }
a:focus-visible, button:focus-visible, .faq-question:focus-visible { outline: 3px solid var(--primary-color); outline-offset: 3px; }

/* --- HERO SECTION --- */
.hero {
    padding: 120px 0 80px;
    background: var(--bg-dark);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}
/* Abstract background shapes */
.hero::before {
    content: ''; position: absolute; top: -100px; right: -100px;
    width: 400px; height: 400px; background: var(--primary-color);
    filter: blur(150px); opacity: 0.4; z-index: 0;
}
.hero::after {
    content: ''; position: absolute; bottom: -100px; left: -100px;
    width: 300px; height: 300px; background: var(--primary-color);
    filter: blur(150px); opacity: 0.3; z-index: 0;
}
.hero-content { position: relative; z-index: 1; }
.hero h1 {
    font-size: 3.5em; font-weight: 800; margin-bottom: 25px;
    letter-spacing: -1px;
}
.hero .subheadline {
    font-size: 1.3em; color: rgba(255,255,255,0.85);
    max-width: 700px; margin: 0 auto 45px; font-weight: 300;
}
.hero-img-container {
    max-width: 800px;
}

/* --- SECTIONS COMMON STYLES --- */
.section-title-wrapper { text-align: center; margin-bottom: 60px; }
.section-title { font-size: 2.5em; color: var(--dark-text); margin-bottom: 15px; }
.section-subtitle { color: var(--light-text); max-width: 600px; margin: 0 auto; }

/* --- INTRO/STORY --- */
.story-content { max-width: 800px; margin: 0 auto; font-size: 1.15em; }
.story-content p { margin-bottom: 25px; }
.highlight { color: var(--primary-color); font-weight: 700; }

/* --- TUTORIAL SECTION (NEW) --- */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    width: 100%;
    max-width: 900px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background: #000;
}
.video-wrapper iframe {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0;
}

/* --- FEATURES --- */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 35px; }
.feature-card {
    background: white; padding: 40px 35px; border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft); transition: 0.3s; border: 1px solid transparent;
}
.feature-card:hover {
    transform: translateY(-10px); box-shadow: var(--shadow-hover);
    border-color: rgba(255, 107, 53, 0.1);
}
.feature-icon-box {
    width: 70px; height: 70px; border-radius: 20px;
    background: var(--primary-color); color: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8em; margin-bottom: 25px;
    box-shadow: 0 10px 20px -10px rgba(255, 107, 53, 0.5);
}
.feature-card h3 { font-size: 1.3em; margin-bottom: 15px; }
.feature-card p { color: var(--light-text); font-size: 0.95em; }

/* --- COMPARISON TABLE --- */
.table-wrapper {
    background: white; border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft); overflow: hidden;
}

/* Desktop Table */
.desktop-table {
    display: block;
}
table { width: 100%; border-collapse: collapse; min-width: 700px;}
th, td { padding: 25px; text-align: center; border-bottom: 1px solid #f0f0f0; }
th { background: #fcfcfc; font-size: 1.1em; color: var(--dark-text); text-align: left; }
th:first-child, td:first-child { text-align: left; padding-left: 40px; }

/* Kolom PRO yang menonjol */
.col-pro-header { background: var(--primary-color) !important; color: white !important; }
.col-pro-cell { background: rgba(255, 107, 53, 0.03); font-weight: 500; }

.icon-check { color: #00c853; font-size: 1.3em; }
.icon-cross { color: #ff4757; font-size: 1.3em; opacity: 0.4; }

/* Mobile Comparison Cards */
.mobile-comparison {
    display: none;
    gap: 20px;
}

.version-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 30px 25px;
    position: relative;
    border: 2px solid transparent;
}

.version-card.pro-version {
    border-color: var(--primary-color);
    background: white;
}

.version-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.version-title {
    font-size: 1.4em;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.5;
}

.pro-version .version-title {
    color: var(--primary-color);
}

.version-badge {
    display: block;
    padding: 5px 15px;
    background: var(--primary-color);
    color: white;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 600;
    margin: 10px auto 0;
    width: fit-content;
}

.feature-list {
    list-style: none;
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #f8f9fa;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-name {
    flex: 1;
    font-size: 0.95em;
    color: var(--dark-text);
}

.download-section {
    text-align: center;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

/* --- PRICING CTA --- */
.pricing-cta-box {
    background: var(--bg-dark);
    padding: 80px 40px; border-radius: var(--radius-lg); text-align: center; color: white;
    position: relative; overflow: hidden; margin-top: 60px;
}
.pricing-cta-box::before {
     content: ''; position: absolute; top: -50%; left: -50%;
     width: 100%; height: 100%; background: var(--primary-color);
     filter: blur(150px); opacity: 0.2;
}
.price-tag {
    font-size: 4em; font-weight: 800;
    color: var(--primary-color);
    margin: 25px 0 10px;
}
.price-tag small { font-size: 0.3em; color: rgba(255,255,255,0.6); }

/* --- HOW TO BUY --- */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.step-card {
    background: white; padding: 40px 30px; border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft); position: relative;
    border-top: 5px solid var(--primary-color);
}
.step-number {
    position: absolute; top: -25px; left: 50%; transform: translateX(-50%);
    width: 50px; height: 50px; background: var(--primary-color); color: white;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1.2em; box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}
.payment-opt {
    display: flex; align-items: center; gap: 15px;
    padding: 15px; border: 1px solid #eee; border-radius: var(--radius-md);
    margin-top: 15px; transition: 0.3s; font-size: 0.9em;
}
.payment-opt i { font-size: 1.5em; color: var(--primary-color); }
.payment-opt:hover { border-color: var(--primary-color); background: var(--bg-light); }

/* --- FOOTER --- */
footer { background: var(--bg-dark); color: #a0aec0; padding: 50px 0; text-align: center; font-size: 0.9em; }
footer a { color: white; font-weight: 600; }

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .hero h1 { font-size: 2.5em; }
    .features-grid, .steps-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .nav-container { flex-direction: column; justify-content: center; gap: 14px; }
    .nav-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 18px; padding: 0; }
    .nav-links a { font-size: 0.85em; }
    
    /* Hide desktop table, show mobile cards */
    .desktop-table { display: none; }
    .mobile-comparison { display: flex; flex-direction: column; }
    
    /* Mobile pricing adjustments */
    .pricing-cta-box {
        padding: 60px 25px;
        margin-top: 40px;
    }
    
    .price-tag {
        font-size: 3em;
        margin: 20px 0;
    }
    
    .price-tag small {
        font-size: 0.35em;
        display: block;
        margin-top: 5px;
    }
    
    /* Mobile button adjustments */
    .btn-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.9em;
    }
    
    /* Section spacing for mobile */
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2em;
    }
    
    .container {
        padding: 0 20px;
    }
    
    /* Mobile version badge adjustments */
    .version-badge {
        display: block;
        margin: 10px auto 0;
        width: fit-content;
        font-size: 0.7em;
        padding: 4px 12px;
    }
    
    /* Mobile feature cards */
    .feature-card {
        padding: 30px 20px;
    }
    
    /* Mobile payment options */
    .payment-opt {
        padding: 12px;
        font-size: 0.85em;
    }
    
    .payment-opt i {
        font-size: 1.3em;
    }
    
    /* Mobile step cards */
    .step-card {
        padding: 35px 20px;
    }
    
    /* Mobile hero adjustments */
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero .subheadline {
        font-size: 1.1em;
    }
    
    /* Mobile video wrapper */
    .video-wrapper {
        max-width: 100%;
    }
}
/* --- TABLET RESPONSIVE --- */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2em;
        line-height: 1.3;
    }
    
    .section-title {
        font-size: 1.8em;
    }
    
    .feature-icon-box {
        width: 60px;
        height: 60px;
        font-size: 1.5em;
    }
    
    .version-title {
        font-size: 1.2em;
    }
    
    .price-tag {
        font-size: 2.5em;
    }
}

/* --- SMALL MOBILE RESPONSIVE --- */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8em;
    }
    
    .hero .subheadline {
        font-size: 1em;
    }
    
    .section-title {
        font-size: 1.6em;
    }
    
    .price-tag {
        font-size: 2em;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.85em;
    }
    
    .feature-card {
        padding: 25px 15px;
    }
    
    .version-card {
        padding: 25px 20px;
    }
    
    .step-card {
        padding: 30px 15px;
    }
    
    .pricing-cta-box {
        padding: 40px 20px;
    }
    
    .container {
        padding: 0 15px;
    }
}
/* --- ADDITIONAL MOBILE FIXES --- */
@media (max-width: 900px) {
    /* Ensure buttons are full width on mobile */
    .btn-group .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    /* Mobile pricing CTA button */
    .pricing-cta-box .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        display: block;
    }
    
    /* Mobile feature item spacing */
    .feature-item {
        padding: 15px 0;
    }
    
    /* Mobile download section buttons */
    .download-section .btn {
        padding: 12px 20px;
        font-size: 0.9em;
    }
}

/* --- LANDSCAPE MOBILE --- */
@media (max-width: 900px) and (orientation: landscape) {
    .hero {
        padding: 60px 0 40px;
    }
    
    .hero h1 {
        font-size: 2em;
    }
    
    .section-padding {
        padding: 50px 0;
    }
}

/* --- PAYMENT SECTION STYLES --- */
/* Mobile adjustments for payment section */
/* --- STATS SECTION --- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.stat-icon {
    font-size: 3em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2.5em;
    font-weight: 800;
    color: var(--dark-text);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.95em;
    color: var(--light-text);
    font-weight: 500;
}

/* --- TESTIMONIALS SECTION --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.testimonial-quote {
    font-size: 3em;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: 20px;
    left: 20px;
    line-height: 1;
}

.testimonial-content {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
    font-style: italic;
    color: var(--dark-text);
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2em;
}

.author-info h4 {
    font-size: 1em;
    margin-bottom: 3px;
    color: var(--dark-text);
}

.author-info p {
    font-size: 0.85em;
    color: var(--light-text);
}

.testimonial-rating {
    color: #ffa500;
    margin-top: 5px;
}

/* --- ROI CALCULATOR --- */
.roi-comparison {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.roi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.roi-item {
    text-align: center;
    padding: 25px;
    border-radius: var(--radius-md);
    border: 2px solid #f0f0f0;
}

.roi-item.highlight {
    border-color: var(--primary-color);
    background: rgba(255, 107, 53, 0.05);
}

.roi-label {
    font-size: 0.9em;
    color: var(--light-text);
    margin-bottom: 10px;
}

.roi-price {
    font-size: 2em;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 5px;
}

.roi-item.highlight .roi-price {
    color: var(--primary-color);
}

.roi-period {
    font-size: 0.85em;
    color: var(--light-text);
}

.roi-savings {
    text-align: center;
    padding: 25px;
    background: var(--primary-color);
    color: white;
    border-radius: var(--radius-md);
    font-size: 1.3em;
    font-weight: 700;
}

/* --- FAQ SECTION --- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--dark-text);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.faq-icon {
    font-size: 1.2em;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 25px 20px;
    color: var(--light-text);
    line-height: 1.6;
}

/* --- URGENCY SECTION --- */
.urgency-box {
    background: var(--primary-color);
    color: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.urgency-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.urgency-content {
    position: relative;
    z-index: 1;
}

.urgency-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
    margin-bottom: 15px;
}

.urgency-title {
    font-size: 2em;
    font-weight: 800;
    margin-bottom: 10px;
}

.urgency-subtitle {
    font-size: 1.1em;
    opacity: 0.9;
    margin-bottom: 20px;
}

.price-comparison {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
}

.old-price {
    font-size: 1.5em;
    text-decoration: line-through;
    opacity: 0.7;
}

.new-price {
    font-size: 2.5em;
    font-weight: 800;
}

.discount-badge {
    background: rgba(255,255,255,0.3);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
}

/* --- USE CASES SECTION --- */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.use-case-card {
    background: white;
    padding: 25px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.use-case-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.use-case-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.use-case-title {
    font-size: 1em;
    font-weight: 600;
    color: var(--dark-text);
}

/* --- COMPATIBILITY SECTION --- */
.compatibility-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 700px;
    margin: 0 auto;
}

.compatibility-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.compatibility-icon {
    font-size: 2em;
    color: var(--primary-color);
}

.compatibility-text h4 {
    font-size: 1em;
    margin-bottom: 5px;
    color: var(--dark-text);
}

.compatibility-text p {
    font-size: 0.85em;
    color: var(--light-text);
}

/* --- UPDATE FITUR TERBARU SECTION --- */
.update-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9em;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.updates-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.update-card {
    background: white;
    padding: 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.update-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(255, 107, 53, 0.2);
}

.update-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3em;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.update-content h4 {
    font-size: 1.1em;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 8px;
    line-height: 1.3;
}

.update-content p {
    font-size: 0.9em;
    color: var(--light-text);
    line-height: 1.5;
}

.update-cta {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 2px solid var(--primary-color);
}

/* --- RESPONSIVE FOR NEW SECTIONS --- */
@media (max-width: 900px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .roi-grid {
        grid-template-columns: 1fr;
    }
    
    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .compatibility-grid {
        grid-template-columns: 1fr;
    }
    
    .updates-grid {
        grid-template-columns: 1fr;
    }
    
    .update-card {
        padding: 20px;
        gap: 15px;
    }
    
    .update-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2em;
    }
    
    .update-content h4 {
        font-size: 1em;
    }
    
    .update-content p {
        font-size: 0.85em;
    }
    
    .update-cta {
        padding: 25px 20px;
    }
    
    .urgency-title {
        font-size: 1.5em;
    }
    
    .price-comparison {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2em;
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
}

/* Payment form */
.payment-form {
    text-align: left;
    margin-top: 24px;
}
.payment-form label {
    display: block;
    font-weight: 700;
    color: var(--dark-text);
    margin: 14px 0 8px;
}
.payment-form input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: var(--radius-md);
    font: inherit;
}
.payment-form input:focus {
    border-color: var(--primary-color);
    outline: 3px solid rgba(255, 107, 53, 0.18);
}
.payment-form button:disabled {
    opacity: 0.7;
    cursor: wait;
}
.payment-form-message {
    min-height: 22px;
    margin-top: 12px;
    color: var(--light-text);
    text-align: center;
    font-size: 0.9em;
}

/* Blog and knowledgebase */
.blog-preview-section { background: #fffaf7; }
.knowledge-list { max-width: 920px; margin: 0 auto; }
.knowledge-list article { padding: 22px 0; border-bottom: 1px solid #eadfd8; }
.knowledge-list article:last-child { border-bottom: 0; }
.knowledge-list h3 { margin: 0 0 8px; font-size: 1.25rem; line-height: 1.4; }
.knowledge-list h3 a { color: var(--dark-text); text-decoration: none; }
.knowledge-list h3 a:hover { color: var(--primary-color); text-decoration: underline; }
.knowledge-list p { margin: 0; color: var(--light-text); line-height: 1.75; }
.blog-preview-cta { text-align: center; margin-top: 34px; }
.blog-header { max-width: 980px; margin: 0 auto; padding: 24px 20px; display: flex; justify-content: space-between; gap: 20px; align-items: center; border-bottom: 1px solid #eee; }
.blog-header a { color: var(--dark-text); text-decoration: none; font-weight: 700; }
.blog-header nav { display: flex; gap: 18px; flex-wrap: wrap; }
.blog-brand { color: var(--primary-color) !important; }
.article-page { background: #fff; padding: 36px 20px 70px; }
.article-content { max-width: 820px; margin: 0 auto; color: var(--dark-text); }
.article-content h1 { font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.15; margin: 18px 0; }
.article-content h2 { font-size: 1.55rem; margin: 42px 0 14px; line-height: 1.35; }
.article-content p, .article-content li { font-size: 1.05rem; line-height: 1.9; color: #333; }
.article-summary { font-size: 1.18rem !important; color: #555 !important; }
.article-meta, .breadcrumb { color: #666 !important; font-size: 0.95rem !important; }
.article-content a { color: var(--primary-color); text-decoration: underline; text-underline-offset: 3px; }
.article-content ol, .article-content ul { padding-left: 24px; }
.related-links li, .blog-list li { margin-bottom: 14px; }
.blog-list p { margin: 4px 0 22px; color: #555; }
@media (max-width: 640px) { .blog-header { align-items: flex-start; flex-direction: column; } .article-page { padding-top: 24px; } }

.btn-accent, .btn-primary-solid { color:#111111 !important; }
.hero, footer { color:#ffffff; }
.card, .feature-card, .pricing-card, .testimonial-card, .stat-card, .faq-item, .blog-preview-card { background: var(--bg-light); color: var(--dark-text); }


/* Microsite contrast override: keep every content card dark and readable. */
.feature-card,
.comparison-table,
.version-card,
.pricing-card,
.testimonial-card,
.faq-item,
.use-case-card,
.stat-card,
.benefit-card,
.target-card,
.blog-preview-card,
.payment-card,
.card,
.info-card,
.step-card,
.spec-card {
    background: #101010 !important;
    color: #ffffff !important;
    border-color: rgba(255, 152, 0, 0.32) !important;
}

.feature-card p,
.pricing-card p,
.testimonial-card p,
.faq-item p,
.use-case-card p,
.stat-card p,
.benefit-card p,
.target-card p,
.blog-preview-card p,
.payment-card p,
.card p,
.info-card p,
.step-card p,
.spec-card p,
.feature-card li,
.pricing-card li,
.faq-answer-content,
.stat-label,
.testimonial-content,
.blog-preview-card .blog-excerpt {
    color: #e5e7eb !important;
}

.feature-card h3,
.pricing-card h3,
.testimonial-card h3,
.faq-question,
.use-case-card h3,
.benefit-card h3,
.target-card h3,
.blog-preview-card h3,
.payment-card h3,
.card h3,
.info-card h3,
.step-card h3,
.spec-card h3,
.stat-number {
    color: #ffffff !important;
}

th,
td {
    background: #101010 !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.16) !important;
}

/* Extra contrast coverage for landing sections. */
.compatibility-item,
.roi-item,
.update-card,
.feature-item,
.urgency-box,
.payment-form {
    background: #101010 !important;
    color: #ffffff !important;
    border-color: rgba(255, 152, 0, 0.32) !important;
}

.compatibility-item p,
.roi-item p,
.update-card p,
.feature-item p,
.urgency-box p,
.payment-form p,
.compatibility-item li,
.roi-item li,
.update-card li,
.feature-item li {
    color: #e5e7eb !important;
}

.compatibility-item h3,
.roi-item h3,
.update-card h3,
.feature-item h3,
.urgency-box h2,
.urgency-box h3 {
    color: #ffffff !important;
}

.payment-form label {
    color: #ffffff !important;
}

.payment-form input {
    background: #ffffff !important;
    color: #111827 !important;
    border-color: rgba(255, 152, 0, 0.45) !important;
}

/* Readability fixes for dark microsites. */
.navbar {
    background: #101010 !important;
    border-bottom: 1px solid rgba(255, 152, 0, 0.28) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35) !important;
}

.nav-logo,
.nav-links a {
    color: #ffffff !important;
}

.nav-logo {
    color: #ff9800 !important;
}

.nav-links a:hover,
.nav-links a:focus-visible {
    color: #ff9800 !important;
}

.section-title,
.section-subtitle,
.bg-light .section-title,
.bg-light .section-subtitle {
    color: #ffffff !important;
}

.section-subtitle,
.knowledge-list p,
.blog-preview-section p,
.blog-preview-section .section-subtitle {
    color: #e5e7eb !important;
}

.bg-light,
.blog-preview-section,
.article-page {
    background: var(--bg-light) !important;
    color: #ffffff !important;
}

.pricing-cta-box,
.price-comparison,
.comparison-wrapper,
.roi-comparison,
.roi-calculator,
.knowledge-list {
    background: #101010 !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 152, 0, 0.32) !important;
}

.pricing-cta-box p,
.price-comparison p,
.comparison-wrapper p,
.roi-comparison p,
.roi-calculator p,
.knowledge-list p,
.knowledge-list a {
    color: #e5e7eb !important;
}

.knowledge-list h3,
.knowledge-list a,
.price-comparison h3,
.roi-comparison h3,
.roi-calculator h3 {
    color: #ffffff !important;
}

.knowledge-list article,
.knowledge-list li,
.blog-preview-card,
.blog-preview-card a {
    color: #ffffff !important;
}

.knowledge-list article {
    border-bottom-color: rgba(255, 255, 255, 0.18) !important;
}

.pricing-cta-box .btn,
.btn-accent,
.btn-primary-solid {
    background: #ff9800 !important;
    color: #111111 !important;
}

/* Blog static pages readability. */
.nav {
    background: #101010 !important;
    border-bottom: 1px solid rgba(255, 152, 0, 0.28) !important;
}

.nav a,
.brand,
.nav-inner a {
    color: #ffffff !important;
}

.brand {
    color: #ff9800 !important;
}

.nav a:hover,
.nav a:focus-visible,
.brand:hover,
.brand:focus-visible {
    color: #ff9800 !important;
}

.article {
    background: var(--bg-light) !important;
    color: #ffffff !important;
}

.article h1,
.article h2,
.article h3,
.article strong,
.article li,
.blog-list a,
.breadcrumb a {
    color: #ffffff !important;
}

.article p,
.article .breadcrumb,
.blog-list p {
    color: #e5e7eb !important;
}

.blog-list li,
.article blockquote,
.article .related,
.article .faq,
.article .cta {
    background: #101010 !important;
    color: #ffffff !important;
    border-color: rgba(255, 152, 0, 0.32) !important;
}

/* Final readability/layout fix for CTA, blog index, and articles. */
.update-cta {
    max-width: 1000px;
    margin: 56px auto 0;
    padding: 34px 28px;
    background: #101010 !important;
    color: #ffffff !important;
    border: 2px solid #ff9800 !important;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.update-cta p,
.update-cta p[style] {
    color: #ffffff !important;
}

.update-cta .fa-gift {
    color: #ff9800 !important;
}

.nav {
    width: 100%;
    background: #101010 !important;
    border-bottom: 1px solid rgba(255, 152, 0, 0.35) !important;
    padding: 18px 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-inner nav {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.brand {
    font-size: 1.2rem;
    font-weight: 800;
    color: #ff9800 !important;
}

.nav-inner nav a {
    color: #ffffff !important;
    font-weight: 700;
}

.nav-inner nav a:hover,
.nav-inner nav a:focus-visible {
    color: #ff9800 !important;
}

.article {
    max-width: 920px;
    margin: 0 auto;
    padding: 52px 24px 80px;
    background: transparent !important;
    color: #ffffff !important;
}

.article h1 {
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.15;
    margin: 10px 0 18px;
    color: #ffffff !important;
}

.article h2 {
    font-size: clamp(1.45rem, 2.6vw, 2rem);
    margin: 42px 0 14px;
    color: #ffffff !important;
}

.article h3 {
    font-size: 1.22rem;
    margin: 0 0 10px;
    color: #ffffff !important;
}

.article p,
.article li {
    color: #e5e7eb !important;
    font-size: 1.02rem;
    line-height: 1.85;
}

.breadcrumb {
    margin-bottom: 18px;
    color: #ffcf8a !important;
}

.breadcrumb a,
.article a {
    color: #ffb347 !important;
    text-decoration: none;
}

.breadcrumb a:hover,
.article a:hover,
.article a:focus-visible {
    color: #ff9800 !important;
    text-decoration: underline;
}

.blog-list,
.related-links {
    list-style: none;
    padding: 0;
    margin: 42px 0 0;
    display: grid;
    gap: 18px;
}

.blog-list li,
.related-links li {
    margin: 0 !important;
    padding: 22px 24px;
    background: #101010 !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 152, 0, 0.42) !important;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.blog-list a,
.related-links a {
    display: inline-block;
    color: #ffffff !important;
    font-size: 1.16rem;
    font-weight: 800;
    line-height: 1.4;
}

.blog-list p,
.related-links p {
    margin: 8px 0 0;
    color: #e5e7eb !important;
}

.article ul:not(.blog-list):not(.related-links),
.article ol {
    margin: 18px 0 26px 24px;
}

.article blockquote,
.article .note,
.article .callout {
    margin: 28px 0;
    padding: 22px 24px;
    background: #101010 !important;
    border-left: 4px solid #ff9800;
    color: #ffffff !important;
}

@media (max-width: 768px) {
    .nav-inner {
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }

    .article {
        padding: 40px 18px 64px;
    }

    .update-cta {
        margin-top: 36px;
        padding: 28px 18px;
    }
}

/* Focused blog preview polish. */
#blog-preview {
    padding: 96px 0 104px !important;
    background: var(--bg-light) !important;
    overflow: visible !important;
}

#blog-preview .container {
    max-width: 1060px;
}

#blog-preview .section-title {
    margin: 0 auto 18px !important;
    color: #ffffff !important;
    text-align: center;
    line-height: 1.18;
}

#blog-preview .section-subtitle {
    max-width: 660px;
    margin: 0 auto 52px !important;
    color: #e5e7eb !important;
    text-align: center;
    line-height: 1.75;
}

#blog-preview .knowledge-list {
    max-width: 940px;
    margin: 0 auto !important;
    display: grid;
    gap: 18px;
    padding: 0;
    background: transparent !important;
    border: 0 !important;
}

#blog-preview .knowledge-list article {
    padding: 24px 28px !important;
    background: #101010 !important;
    border: 1px solid rgba(255, 152, 0, 0.38) !important;
    border-radius: 16px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.26);
}

#blog-preview .knowledge-list article:last-child {
    border-bottom: 1px solid rgba(255, 152, 0, 0.38) !important;
}

#blog-preview .knowledge-list h3 {
    margin: 0 0 10px !important;
    font-size: 1.18rem;
    line-height: 1.45;
}

#blog-preview .knowledge-list h3 a {
    color: #ffffff !important;
    text-decoration: none !important;
}

#blog-preview .knowledge-list h3 a:hover,
#blog-preview .knowledge-list h3 a:focus-visible {
    color: #ff9800 !important;
    text-decoration: underline !important;
}

#blog-preview .knowledge-list p {
    margin: 0 !important;
    color: #e5e7eb !important;
    line-height: 1.75;
}

#blog-preview .blog-preview-cta {
    display: flex;
    justify-content: center;
    margin: 42px 0 0 !important;
    padding: 0 0 8px;
    text-align: center;
}

#blog-preview .blog-preview-cta .btn {
    min-width: 230px;
    padding: 15px 30px !important;
    background: #ff9800 !important;
    color: #111111 !important;
    border-radius: 999px;
    font-weight: 800;
}

@media (max-width: 768px) {
    #blog-preview {
        padding: 72px 0 82px !important;
    }

    #blog-preview .section-subtitle {
        margin-bottom: 34px !important;
    }

    #blog-preview .knowledge-list article {
        padding: 22px 20px !important;
    }
}
