/* --- VARIABLES & RESET --- */
:root {
    /* Orange Color Palette - No Gradients */
    --primary-color: #ff6b35;
    --primary-dark: #e55a2b;
    --primary-light: #ff8c5a;
    --accent-color: #ff6b35;
    --accent-dark: #e55a2b;
    
    --dark-text: #2d3748;
    --light-text: #718096;
    --bg-white: #ffffff;
    --bg-light: #fef7f0;
    --bg-dark: #1a1a1a;

    --section-spacing: 100px;
    --radius-lg: 20px;
    --radius-md: 12px;
    --shadow-soft: 0 15px 35px rgba(255, 107, 53, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);
    --shadow-hover: 0 20px 40px rgba(255, 107, 53, 0.15);
}

* { 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 { width: 100%; }

/* --- 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-links { display: none; }
    .nav-container { justify-content: center; }
    
    /* 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 --- */
.payment-method-divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.payment-method-divider::before,
.payment-method-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #e0e0e0;
}

.payment-method-divider::before {
    left: 0;
}

.payment-method-divider::after {
    right: 0;
}

.qris-container {
    background: white;
    padding: 20px;
    border-radius: var(--radius-md);
    border: 2px solid var(--primary-color);
    display: inline-block;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
}

.qris-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
}

.qris-container img {
    max-width: 250px;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.payment-info {
    font-size: 0.85em;
    color: var(--light-text);
    margin-top: 10px;
    line-height: 1.6;
}

.payment-info i {
    color: var(--primary-color);
    margin-right: 5px;
}

/* Mobile adjustments for payment section */
@media (max-width: 768px) {
    .qris-container img {
        max-width: 200px;
    }
    
    .payment-method-divider::before,
    .payment-method-divider::after {
        width: 35%;
    }
}

/* --- 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;
    }
}
