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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
            color: #1a1a1a;
            width: 100%;
            max-width: 100vw;
        }

        /* Modern Color Palette */
        :root {
            --primary: #3b82f6;
            --primary-dark: #2563eb;
            --primary-light: #dbeafe;
            --secondary: #06d6a0;
            --secondary-dark: #059669;
            --secondary-light: #d1fae5;
            --accent: #f59e0b;
            --accent-light: #fef3c7;
            --neutral-50: #f8fafc;
            --neutral-100: #f1f5f9;
            --neutral-200: #e2e8f0;
            --neutral-300: #cbd5e1;
            --neutral-400: #94a3b8;
            --neutral-500: #64748b;
            --neutral-600: #475569;
            --neutral-700: #334155;
            --neutral-800: #1e293b;
            --neutral-900: #0f172a;
            --white: #ffffff;
            --success: #10b981;
            --warning: #f59e0b;
            --error: #ef4444;
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(16px);
            z-index: 1000;
            padding: 1rem 0;
            border-bottom: 1px solid var(--neutral-200);
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary);
        }

        .logo img {
            width: 100px;
            height: auto;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--neutral-700);
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .cta-button {
            background: var(--primary);
            color: var(--white);
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .cta-button:hover {
            background: var(--primary-dark);
            transform: translateY(-1px);
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
        }

        /* Hero Section with Image Placement */
        .hero {
            background: linear-gradient(135deg, var(--neutral-50) 0%, var(--primary-light) 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 3rem 0;
            margin-top: 80px;
            position: relative;
            overflow: hidden;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-content {
            z-index: 2;
        }

        .story-badge {
            background: var(--accent-light);
            color: var(--accent);
            padding: 0.5rem 1.5rem;
            border-radius: 24px;
            font-weight: 600;
            font-size: 0.9rem;
            display: inline-block;
            margin-bottom: 1.5rem;
            border: 1px solid var(--accent);
        }

        .story-title {
            font-size: 3rem;
            font-weight: 900;
            color: var(--neutral-900);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .story-highlight {
            color: var(--primary);
            position: relative;
        }

        .story-text {
            font-size: 1.2rem;
            color: var(--neutral-600);
            margin-bottom: 2.5rem;
            line-height: 1.7;
        }

        .story-cta {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .story-btn {
            background: var(--primary);
            color: var(--white);
            padding: 1.2rem 2rem;
            border: none;
            border-radius: 12px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .story-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 12px 24px rgba(59, 130, 246, 0.3);
        }

        .story-stats {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--neutral-600);
            font-weight: 600;
        }

        /* Hero Image Section - No Container */
        .hero-image {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-image-container {
            position: relative;
            width: 320px;
            height: 400px;
        }

        .hero-image-placeholder {
            width: 100%;
            height: 100%;
            background-image: url('/img/laki.png');
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
        }

        .hero-decorations {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .decoration-badge {
            position: absolute;
            color: var(--white);
            padding: 0.8rem 1.2rem;
            border-radius: 20px;
            font-weight: 700;
            font-size: 0.9rem;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(4px);
        }

        .badge-1 {
            top: 20%;
            right: -10%;
            background: linear-gradient(135deg, var(--success), #059669);
            animation: float 3s ease-in-out infinite;
        }

        .badge-2 {
            bottom: 25%;
            left: -15%;
            background: linear-gradient(135deg, var(--accent), #d97706);
            animation: float 3s ease-in-out infinite 1.5s;
        }

        .badge-3 {
            top: 10%;
            left: -10%;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            animation: float 3s ease-in-out infinite 0.5s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        /* Tentang RumahSoal Section */
        .tentang-section {
            padding: 5rem 0;
            background: var(--white);
        }

        .tentang-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--neutral-900);
            margin-bottom: 1rem;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--neutral-600);
            max-width: 600px;
            margin: 0 auto;
        }

        .tentang-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-top: 3rem;
        }

        .tentang-text {
            font-size: 1.1rem;
            color: var(--neutral-700);
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .tentang-features {
            list-style: none;
        }

        .tentang-features li {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
            color: var(--neutral-700);
        }

        .feature-icon {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: var(--primary);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            flex-shrink: 0;
        }

        .tentang-image {
            background: var(--primary-light);
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-weight: 600;
        }

        /* Journey Sukses Section with Timeline */
.journey-section {
    background: var(--neutral-50);
    padding: 4rem 0;
    position: relative;
}

.journey-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.journey-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary);
    transform: translateX(-50%);
}

.timeline-step {
    position: relative;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
}

.timeline-step:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: var(--primary);
    border-radius: 50%;
    z-index: 2;
    border: 3px solid var(--white);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
}

.timeline-content {
    background: var(--white);
    padding: 1.3rem;
    border-radius: 12px;
    width: 45%;
    margin: 0 1.5rem;
    color: var(--neutral-900);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--neutral-200);
}

.timeline-step:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 1.5rem;
}

.timeline-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    color: var(--primary);
}

.timeline-feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: var(--neutral-900);
}

.timeline-feature-desc {
    color: var(--neutral-600);
    line-height: 1.5;
    font-size: 0.9rem;
}

/* ===== ENHANCED MOBILE TIMELINE STYLES ===== */

.timeline-step-indicator {
    display: none;
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    font-weight: 700;
    z-index: 2;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border: 3px solid white;
}

.timeline-step-indicator::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: inherit;
    opacity: 0.3;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.1; }
    100% { transform: scale(1); opacity: 0.3; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-3px); }
    60% { transform: translateY(-2px); }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--neutral-900);
    margin-bottom: 1rem;
}

.pricing-subtitle {
    font-size: 1.2rem;
    color: var(--neutral-600);
}

/* Billing Toggle */
.billing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.toggle-container {
    background: var(--neutral-100);
    border-radius: 12px;
    padding: 0.5rem;
    display: flex;
    position: relative;
}

.toggle-option {
    padding: 0.75rem 1.5rem;
    border: none;
    background: transparent;
    color: var(--neutral-600);
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.toggle-option.active {
    color: var(--primary);
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.discount-badge {
    background: var(--accent);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-left: 0.5rem;
}

/* Toggle Style Cards */
.pricing-toggle-container {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--neutral-200);
}

.plan-card {
    padding: 2rem;
    text-align: center;
    position: relative;
    background: var(--white);
    border-right: 1px solid var(--neutral-200);
}

.plan-card:last-child {
    border-right: none;
}

.plan-card.featured {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05);
    z-index: 2;
    border-radius: 12px;
    margin: -10px;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
    border: none;
}

.plan-card.featured::after {
    content: '🔥 TERPOPULER';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.plan-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.plan-card.featured .plan-price {
    color: var(--white);
}

.plan-card:not(.featured) .plan-price {
    color: var(--primary);
}

.plan-period {
    color: var(--neutral-500);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.plan-card.featured .plan-period {
    color: rgba(255, 255, 255, 0.8);
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.plan-features li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.plan-cta {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plan-card:not(.featured) .plan-cta {
    background: var(--primary);
    color: var(--white);
}

.plan-card:not(.featured) .plan-cta:hover {
    background: var(--primary-dark);
}

.plan-card.featured .plan-cta {
    background: var(--white);
    color: var(--primary);
}

.plan-card.featured .plan-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* Trust Signals */
.trust-signals {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--neutral-600);
    font-weight: 600;
}

.trust-icon {
    font-size: 1.2rem;
    color: var(--success);
}

/* Mobile Responsive Journey Section */
@media (max-width: 768px) {
    /* === ENHANCED MOBILE TIMELINE === */
    .journey-section {
        background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
        padding: 3rem 0;
    }
    
    .journey-container {
        padding: 0 1rem;
    }
    
    .timeline-step-indicator {
        display: flex !important;
    }
    
    .timeline-dot {
        display: none !important;
    }
    
    .timeline-icon {
        display: none !important;
    }
    
    .timeline-step {
        flex-direction: row !important;
        align-items: flex-start !important;
        gap: 1rem !important;
        margin-bottom: 2.5rem !important;
    }
    
    .timeline-step:nth-child(even) {
        flex-direction: row !important;
    }
    
    .timeline-line {
        display: block !important;
        position: absolute;
        left: 30px;
        top: 60px;
        bottom: 60px;
        width: 3px;
        background: linear-gradient(to bottom, 
            var(--primary) 0%, 
            var(--secondary) 25%, 
            var(--accent) 50%, 
            #8b5cf6 75%, 
            var(--success) 100%);
        border-radius: 2px;
        opacity: 0.3;
        transform: none;
    }
    
    .timeline-step:nth-child(1) .timeline-step-indicator {
        background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    }
    
    .timeline-step:nth-child(2) .timeline-step-indicator {
        background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    }
    
    .timeline-step:nth-child(3) .timeline-step-indicator {
        background: linear-gradient(135deg, var(--accent), #d97706);
    }
    
    .timeline-step:nth-child(4) .timeline-step-indicator {
        background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    }
    
    .timeline-step:nth-child(5) .timeline-step-indicator {
        background: linear-gradient(135deg, var(--success), #047857);
    }
    
    .timeline-content {
        width: auto !important;
        flex: 1 !important;
        margin: 0 !important;
        padding: 1.5rem !important;
        border-radius: 16px !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
        position: relative;
        overflow: hidden;
    }
    
    .timeline-content::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(59, 130, 246, 0.1));
        border-radius: 0 16px 0 60px;
    }
    
    .timeline-feature-title {
        position: relative;
        z-index: 2;
        font-size: 1rem;
    }
    
    .timeline-feature-desc {
        position: relative;
        z-index: 2;
        font-size: 0.85rem;
    }

    /* Pricing mobile */
    .pricing-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .pricing-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .plan-card.featured {
        transform: scale(1);
        margin: 0;
        border-radius: 12px;
    }

    .plan-card.featured::after {
        top: -10px;
        font-size: 0.7rem;
        padding: 0.3rem 1rem;
    }

    /* Enhanced trust signals mobile */
        .trust-signals {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 1rem !important;
        margin: 2rem 0 !important;
        padding: 1.5rem !important;
        background: white !important;
        border-radius: 16px !important;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05) !important;
        flex-wrap: wrap !important;
    }
    
    .trust-item {
        padding: 0.8rem !important;
        background: var(--neutral-50) !important;
        border-radius: 12px !important;
        border-left: 4px solid var(--success) !important;
        gap: 1rem !important;
    }
    
    .trust-icon {
        font-size: 1.3rem !important;
    }

    /* Billing toggle mobile */
    .toggle-container {
        padding: 0.3rem;
        background: var(--white);
        box-shadow: 0 4px 16px rgba(0,0,0,0.08);
        border: 1px solid var(--neutral-200);
    }

    .toggle-option {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .toggle-option.active {
        color: var(--white);
        background: var(--primary);
        box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
    }

    .discount-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
        animation: bounce 2s infinite;
    }

    /* Additional mobile fixes */
    .pricing-toggle-container {
        padding: 2rem 1rem;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        border: 1px solid var(--neutral-200);
        border-radius: 24px;
    }

    .plan-features {
        font-size: 0.85rem;
    }

    .plan-cta {
        padding: 0.8rem;
        font-size: 0.9rem;
        border-radius: 12px;
        font-weight: 700;
    }

    .plan-card:not(.featured) .plan-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    }

    .plan-card.featured .plan-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(255, 255, 255, 0.4);
    }
}

        /* Trust Signals */
        .trust-signals {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            margin: 3rem 0;
            flex-wrap: wrap;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--neutral-600);
            font-weight: 600;
        }

        .trust-icon {
            font-size: 1.2rem;
            color: var(--success);
        }

        /* Keunggulan Section */
        /* Flip Cards Keunggulan Section */
.keunggulan-section {
    padding: 5rem 0;
    background: var(--white);
}

.keunggulan-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.flip-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 15px;
    perspective: 1000px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.flip-card {
    background-color: transparent;
    perspective: 1000px;
}

.static-card {
    background-color: transparent;
    perspective: none;
}

.flip-card:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
    height: 240px;
}

.flip-card:nth-child(2) {
    grid-column: 2 / 4;
    grid-row: 1;
    height: 180px;
}

.flip-card:nth-child(3) {
    grid-column: 1 / 3;
    grid-row: 2;
    height: 200px;
}

.flip-card:nth-child(4) {
    grid-column: 3;
    grid-row: 2;
    height: 280px;
}

.static-card:nth-child(5) {
    grid-column: 4;
    grid-row: 1 / 3;
    height: auto;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s ease-in-out;
    transform-style: preserve-3d;
    cursor: pointer;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    overflow: visible;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 35px 15px;
    text-align: center;
}

.flip-card-back {
    transform: rotateY(180deg);
}


/* Warna kartu */
.flip-card:nth-child(1) .flip-card-front,
.flip-card:nth-child(1) .flip-card-back {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.flip-card:nth-child(2) .flip-card-front,
.flip-card:nth-child(2) .flip-card-back {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
}

.flip-card:nth-child(3) .flip-card-front,
.flip-card:nth-child(3) .flip-card-back {
    background: linear-gradient(135deg, var(--accent) 0%, #d97706 100%);
}

.flip-card:nth-child(4) .flip-card-front,
.flip-card:nth-child(4) .flip-card-back {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

/* Decorative circles */
.flip-card-front::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -20%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.flip-card-front::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.flip-card-back::before {
    content: '';
    position: absolute;
    top: -15%;
    left: -15%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.flip-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.2));
    animation: float 3s ease-in-out infinite;
    z-index: 2;
    position: relative;
}

.flip-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    z-index: 2;
    position: relative;
}

.flip-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    z-index: 2;
    position: relative;
}

.flip-description {
    font-size: 0.85rem;
    line-height: 1.4;
    text-align: center;
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    margin: 10px 0 15px 0;
    z-index: 2;
    position: relative;
    font-weight: 400;
}

.flip-stats {
    display: flex;
    justify-content: space-around;
    width: 100%;
    margin: 10px 0;
}

.stat-item {
    text-align: center;
    background: rgba(255,255,255,0.2);
    padding: 6px 8px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    flex: 1;
    margin: 0 3px;
    max-width: 70px;
}

.stat-number {
    font-size: 1rem;
    font-weight: bold;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    display: block;
}

.stat-label {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.9);
    margin-top: 2px;
    font-weight: 500;
}

/* Static card style */
.static-card-content {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 25px;
    text-align: center;
    color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    width: 100%;
    margin-top: 8px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.15);
}

.feature-icon {
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.feature-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Animasi */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 4s infinite;
    z-index: 1;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

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

    /* Header mobile */
    .nav-container {
        padding: 0 1rem;
    }

    .logo img {
        width: 80px;
    }

    .cta-button {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    /* Hero section mobile */
    .hero {
        margin-top: 70px;
        padding: 2rem 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0 1rem;
    }

    .hero-image-container {
        width: 280px;
        height: 350px;
        margin: 0 auto;
    }

    .story-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .story-text {
        font-size: 1rem;
        padding: 0 10px;
    }

    .story-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }

    .story-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .badge-1, .badge-2, .badge-3 {
        display: none;
    }

    /* Tentang section mobile */
    .tentang-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .tentang-image {
        height: 250px;
        margin-top: 1rem;
    }

    /* Timeline mobile */
    .timeline-step {
        flex-direction: column !important;
        margin-bottom: 2rem;
    }

    .timeline-step:nth-child(even) {
        flex-direction: column !important;
    }

    .timeline-content {
        width: 100%;
        margin: 1rem 0 0 0 !important;
    }

    .timeline-step:nth-child(even) .timeline-content {
        margin: 1rem 0 0 0 !important;
    }

    .timeline-dot {
        position: relative;
        left: auto;
        transform: none;
        margin: 0 auto 1rem;
    }

    .timeline-line {
        display: none;
    }

    /* Pricing mobile */
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .plan-card.featured {
        transform: scale(1);
        margin: 0;
        border-radius: 12px;
    }

    .plan-card.featured::after {
        top: -10px;
        font-size: 0.7rem;
        padding: 0.3rem 1rem;
    }

    /* Trust signals mobile */
    .trust-signals {
        flex-direction: column;
        gap: 1rem;
    }

    /* RESET SEMUA FLIP CARD STYLING UNTUK MOBILE */
    .keunggulan-section * {
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }
    
    .keunggulan-container {
        padding: 0 8px !important;
        margin: 0 auto !important;
    }

    /* Mobile Cards - Force simple layout */
    .flip-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
        padding: 0 !important;
        margin: 0 !important;
        grid-template-columns: none !important;
        grid-template-rows: none !important;
    }
    
    .flip-card,
    .static-card {
        width: 100% !important;
        height: auto !important;
        perspective: none !important;
        margin: 0 !important;
        padding: 0 !important;
        display: block !important;
        position: relative !important;
        grid-column: unset !important;
        grid-row: unset !important;
        transform: none !important;
    }
    
    /* Reset semua positioning dan sizing */
    .flip-card:nth-child(1),
    .flip-card:nth-child(2), 
    .flip-card:nth-child(3),
    .flip-card:nth-child(4),
    .static-card:nth-child(5) {
        margin: 0 !important;
        padding: 0 !important;
        grid-row: unset !important;
        grid-column: unset !important;
        height: auto !important;
        position: relative !important;
        transform: none !important;
    }
    
    /* Disable all flip effects on mobile */
    .flip-card-inner {
        transform: none !important;
        transition: none !important;
        position: relative !important;
        width: 100% !important;
        height: auto !important;
        margin: 0 !important;
        padding: 0 !important;
        display: block !important;
    }
    
    .flip-card:hover .flip-card-inner {
        transform: none !important;
    }
    
    /* Hide back side completely */
    .flip-card-back {
        display: none !important;
    }
    
    /* Mobile card layout - PAKSA JADI HORIZONTAL */
    .flip-card-front {
        position: relative !important;
        width: 100% !important;
        height: auto !important;
        border-radius: 20px !important;
        padding: 20px !important;
        margin: 0 !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        backface-visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
    }
    
    /* Text content on the left */
    .flip-card-front > div:first-child {
        flex: 1;
        text-align: left;
        padding-right: 15px;
    }
    
    /* Title styling */
    .flip-card-front h3 {
        font-size: 16px;
        font-weight: 700;
        margin: 0 0 8px 0;
        color: white;
        text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        line-height: 1.3;
    }
    
    /* Description styling */
    .flip-card-front p {
        font-size: 14px;
        margin: 0;
        line-height: 1.4;
        color: rgba(255,255,255,0.9);
        opacity: 0.9;
    }
    
    /* Icon on the right */
    .flip-icon {
        font-size: 2rem !important;
        margin: 0 !important;
        flex-shrink: 0;
        width: 60px !important;
        height: 60px !important;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255,255,255,0.2);
        border-radius: 12px;
        backdrop-filter: blur(10px);
        animation: none !important;
    }
    
    /* Remove all unnecessary elements */
    .flip-subtitle,
    .flip-description,
    .flip-stats,
    .stat-item,
    .flip-card-front::before,
    .flip-card-front::after,
    .shimmer {
        display: none !important;
    }
    
    /* Card colors */
    .flip-card:nth-child(1) .flip-card-front {
        background: linear-gradient(to right, #267cf6, #4aa1f7) !important;
    }
    
    .flip-card:nth-child(2) .flip-card-front {
        background: linear-gradient(to right, #00b289, #00d4a2) !important;
    }
    
    .flip-card:nth-child(3) .flip-card-front {
        background: linear-gradient(to right, #f6921e, #fbb03b) !important;
    }
    
    .flip-card:nth-child(4) .flip-card-front {
        background: linear-gradient(to right, #f44336, #f76c5e) !important;
    }
    
    /* Override content with correct text */
    .flip-card:nth-child(1) .flip-card-front h3::after {
        content: "Anda bisa mengakses materi pembelajaran dan latihan soal tak terbatas selama 24 jam dan 7 hari dalam seminggu kapanpun dan dimanapun Anda bebas untuk belajar.";
        white-space: pre-line;
        font-size: 14px;
        font-weight: normal;
        opacity: 0.9;
        display: block;
        margin-top: 8px;
        line-height: 1.4;
    }
    
    .flip-card:nth-child(2) .flip-card-front h3::after {
        content: "Akses ribuan materi berkualitas dan ribuan video pembelajaran yang dikemas secara menarik dan dapat diakses melalui smartphone kamu dengan mudah.";
        white-space: pre-line;
        font-size: 14px;
        font-weight: normal;
        opacity: 0.9;
        display: block;
        margin-top: 8px;
        line-height: 1.4;
    }
    
    .flip-card:nth-child(3) .flip-card-front h3::after {
        content: "Terdapat ribuan soal pilihan yang diantaranya diambil dari soal tes CPNS/PPPK tahun sebelumnya dan sesuai dengan kisi-kisi terupdate untuk persiapan maksimal.";
        white-space: pre-line;
        font-size: 14px;
        font-weight: normal;
        opacity: 0.9;
        display: block;
        margin-top: 8px;
        line-height: 1.4;
    }
    
    .flip-card:nth-child(4) .flip-card-front h3::after {
        content: "RumahSoal menyediakan Tryout online dan latihan soal dengan tampilan mirip sistem CAT. Menggunakan Timer pengerjaan soal dan langsung mengetahui skor nilai hasil.";
        white-space: pre-line;
        font-size: 14px;
        font-weight: normal;
        opacity: 0.9;
        display: block;
        margin-top: 8px;
        line-height: 1.4;
    }
    
    /* Static card mobile layout */
    .static-card-content {
        border-radius: 20px;
        padding: 12px;
        background: linear-gradient(135deg, #8fb3ff, #a8c7ff) !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center;
        text-align: center;
        margin-bottom: 8px;
        position: static;
        width: 100%;
        height: auto;
        transform: none;
        box-shadow: none;
    }
    
    .static-card .flip-title {
        font-size: 14px;
        font-weight: 700;
        text-align: center;
        margin-bottom: 8px;
        color: white;
    }
    
    /* Features grid for static card */
    .features-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
        width: 100%;
        margin-top: 8px;
    }
    
    .feature-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 8px 4px;
        background: rgba(255,255,255,0.2);
        border-radius: 8px;
        border: 1px solid rgba(255,255,255,0.2);
    }
    
    .feature-icon {
        font-size: 12px;
        margin-bottom: 4px;
        width: 24px;
        height: 24px;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .feature-title {
        font-size: 9px;
        font-weight: 500;
        color: white;
        line-height: 1.1;
    }
    
    /* Hide any conflicting elements */
    .static-card-content::before {
        display: none !important;
    }

    /* Comparison mobile */
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .comparison-grid-with-image {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .problem-solution-image {
        max-width: 200px;
        margin: 0 auto;
    }

    /* Stats mobile */
    .progress-stats-container {
        padding: 0 1rem;
    }

    .progress-stat-header {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .progress-stat-name {
        font-size: 1.1rem;
        justify-content: center;
    }

    .progress-stat-value {
        font-size: 1.5rem;
    }

    /* Testimony mobile */
    .vintage-newspaper {
        margin: 1rem auto 0;
        padding: 1.5rem;
    }

    .testimonial-carousel {
        height: 320px;
    }

    .quote-text {
        font-size: 0.9rem;
        text-align: left;
    }

    .vintage-author {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }

    .author-photo {
        margin: 0 auto;
    }

    /* Footer mobile */
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-logo img {
        width: 100px;
    }

    /* Section titles mobile */
    .section-title,
    .pricing-title,
    .progress-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }

    /* Section spacing mobile */
    .tentang-section,
    .journey-section,
    .keunggulan-section,
    .testimony-section,
    .problem-solution {
        padding: 3rem 0;
    }
    
    .keunggulan-section {
        padding: 3rem 0;
    }

    .stats {
        padding: 3rem 0;
    }

    /* Billing toggle mobile */
    .toggle-container {
        padding: 0.3rem;
    }

    .toggle-option {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .discount-badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }

    /* Timeline content mobile adjustments */
    .timeline-feature-title {
        font-size: 1rem;
    }

    .timeline-feature-desc {
        font-size: 0.85rem;
    }

    /* Additional mobile fixes */
    .pricing-toggle-container {
        padding: 2rem 1rem;
    }

    .plan-features {
        font-size: 0.85rem;
    }

    .plan-cta {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
}

/* FORCE DESKTOP LAYOUT - PROBLEM SOLUTION SECTION */
@media (min-width: 769px) {
    .problem-solution {
        padding: 4rem 0;
        background: var(--white);
    }

    .problem-solution-container {
        max-width: 1000px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    .comparison-grid-with-image {
        display: grid !important;
        grid-template-columns: 1fr auto 1fr !important;
        gap: 2rem !important;
        margin-top: 2.5rem !important;
        align-items: center !important;
    }

    .comparison-side {
        background: var(--white) !important;
        border-radius: 12px !important;
        padding: 1.8rem !important;
        box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04) !important;
        border: 1px solid var(--neutral-200) !important;
        position: relative !important;
    }

    .problem-side {
        border-left: 3px solid var(--error) !important;
    }

    .solution-side {
        border-left: 3px solid var(--secondary) !important;
    }

    .problem-solution-image {
        max-width: 250px !important;
        width: 100% !important;
        height: auto !important;
        border-radius: 12px !important;
    }

    .side-icon {
        font-size: 2.2rem !important;
        margin-bottom: 1rem !important;
    }

    .side-title {
        font-size: 1.4rem !important;
        font-weight: 700 !important;
        margin-bottom: 1rem !important;
    }

    .problem-side .side-title {
        color: var(--error) !important;
    }

    .solution-side .side-title {
        color: var(--secondary) !important;
    }

    .side-text {
        font-size: 0.95rem !important;
        color: var(--neutral-600) !important;
        margin-bottom: 1.2rem !important;
        line-height: 1.5 !important;
    }

    .side-list {
        list-style: none !important;
        margin-bottom: 1.2rem !important;
    }

    .side-list li {
        color: var(--neutral-700) !important;
        margin-bottom: 0.7rem !important;
        padding-left: 1.5rem !important;
        position: relative !important;
        line-height: 1.4 !important;
        font-size: 0.9rem !important;
    }

    .problem-side .side-list li::before {
        content: '✗' !important;
        position: absolute !important;
        left: 0 !important;
        color: var(--error) !important;
        font-weight: 800 !important;
        font-size: 1rem !important;
    }

    .solution-side .side-list li::before {
        content: '✓' !important;
        position: absolute !important;
        left: 0 !important;
        color: var(--secondary) !important;
        font-weight: 800 !important;
        font-size: 1rem !important;
    }
}
@media (max-width: 768px) {
    .comparison-grid-with-image {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .problem-solution-image {
        max-width: 150px;
    }
}
        /* Testimony Section - Vintage Clean Style */
        .testimony-section {
            padding: 4rem 0;
            background: #f8f7f4;
            position: relative;
        }

        .testimony-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .vintage-newspaper {
            background: #fefdfb;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 
                0 0 0 1px #e8e6e1,
                0 8px 32px rgba(0, 0, 0, 0.08);
            position: relative;
            font-family: 'Times New Roman', serif;
            max-width: 800px;
            margin: 2rem auto 0;
            overflow: hidden;
        }

        .vintage-newspaper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 20%, rgba(139, 69, 19, 0.02) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(160, 82, 45, 0.015) 0%, transparent 50%);
            pointer-events: none;
        }

        .newspaper-header {
            text-align: center;
            border-bottom: 2px solid #d4c5a9;
            padding-bottom: 1rem;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .newspaper-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #3c2f20;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 0.25rem;
        }

        .newspaper-subtitle {
            font-size: 0.9rem;
            color: #8b7355;
            font-style: italic;
            letter-spacing: 0.5px;
        }

        .testimonial-carousel {
            position: relative;
            height: 280px;
            overflow: hidden;
        }

        .testimonial-slide {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0;
            transform: translateX(30px);
            transition: all 0.6s ease-in-out;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .testimonial-slide.active {
            opacity: 1;
            transform: translateX(0);
        }

        .vintage-quote {
            position: relative;
            background: rgba(255, 255, 255, 0.6);
            padding: 1.5rem;
            border-radius: 8px;
            border: 1px solid #e8e6e1;
            margin-bottom: 1.5rem;
            box-shadow: 0 2px 12px rgba(139, 69, 19, 0.04);
        }

        .vintage-quote::before {
            content: '"';
            position: absolute;
            top: -15px;
            left: 15px;
            font-size: 3rem;
            color: #d4c5a9;
            font-family: 'Times New Roman', serif;
            opacity: 0.4;
        }

        .quote-text {
            font-size: 1rem;
            line-height: 1.6;
            color: #3c2f20;
            font-style: italic;
            text-align: justify;
            margin-bottom: 0.5rem;
        }

        .vintage-author {
            display: flex;
            align-items: center;
            gap: 1rem;
            background: rgba(139, 69, 19, 0.03);
            padding: 0.75rem;
            border-radius: 6px;
            border-left: 3px solid #d4c5a9;
        }

        .author-photo {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #8b7355, #d4c5a9);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            font-size: 1.2rem;
            border: 2px solid #e8e6e1;
            box-shadow: 0 2px 8px rgba(139, 69, 19, 0.1);
        }

        .author-details h4 {
            color: #3c2f20;
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 0.15rem;
        }

        .author-details p {
            color: #8b7355;
            font-size: 0.85rem;
            font-style: normal;
        }

        .success-badge {
            background: #8b7355;
            color: white;
            padding: 0.2rem 0.6rem;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 500;
            margin-top: 0.3rem;
            display: inline-block;
        }

        .carousel-navigation {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1.5rem;
            margin-top: 1.5rem;
        }

        .nav-button {
            background: #8b7355;
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(139, 115, 85, 0.2);
        }

        .nav-button:hover {
            background: #6b5a47;
            transform: scale(1.05);
        }

        .nav-button:disabled {
            background: #d4c5a9;
            cursor: not-allowed;
            transform: scale(1);
        }

        .carousel-indicators {
            display: flex;
            gap: 0.4rem;
        }

        .indicator-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #d4c5a9;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator-dot.active {
            background: #8b7355;
            transform: scale(1.2);
        }

        /* Problem vs Solution Section */
        .problem-solution {
            padding: 4rem 0;
            background: var(--white);
        }

        .problem-solution-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .comparison-side {
            background: var(--white);
            border-radius: 12px;
            padding: 1.8rem;
            box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
            border: 1px solid var(--neutral-200);
            position: relative;
        }

        .problem-side {
            border-left: 3px solid var(--error);
        }

        .solution-side {
            border-left: 3px solid var(--secondary);
        }

        .side-icon {
            font-size: 2.2rem;
            margin-bottom: 1rem;
        }

        .side-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .problem-side .side-title {
            color: var(--error);
        }

        .solution-side .side-title {
            color: var(--secondary);
        }

        .side-text {
            font-size: 0.95rem;
            color: var(--neutral-600);
            margin-bottom: 1.2rem;
            line-height: 1.5;
        }

        .side-list {
            list-style: none;
            margin-bottom: 1.2rem;
        }

        .side-list li {
            color: var(--neutral-700);
            margin-bottom: 0.7rem;
            padding-left: 1.5rem;
            position: relative;
            line-height: 1.4;
            font-size: 0.9rem;
        }

        .problem-side .side-list li::before {
            content: '✗';
            position: absolute;
            left: 0;
            color: var(--error);
            font-weight: 800;
            font-size: 1rem;
        }

        .solution-side .side-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--secondary);
            font-weight: 800;
            font-size: 1rem;
        }

        /* Stats Section */
        .stats {
            background: var(--primary);
            padding: 5rem 0;
            color: var(--white);
        }

        .stats-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .progress-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .progress-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .progress-stats-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .progress-stat-item {
            margin-bottom: 3rem;
        }

        .progress-stat-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }

        .progress-stat-name {
            font-size: 1.3rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .progress-icon {
            font-size: 1.5rem;
        }

        .progress-stat-value {
            font-size: 2rem;
            font-weight: 900;
            color: var(--accent);
        }

        .progress-bar {
            height: 16px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--accent), var(--secondary));
            border-radius: 8px;
            animation: progressFill 3s ease-out;
            position: relative;
        }

        @keyframes progressFill {
            from { width: 0%; }
        }

        .progress-fill.users { width: 85%; }
        .progress-fill.success { width: 95%; }
        .progress-fill.questions { width: 78%; }
        .progress-fill.satisfaction { width: 98%; }

        /* Footer */
        .footer {
            background: var(--neutral-900);
            color: var(--white);
            padding: 3rem 0 1rem;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            text-align: center;
        }

        .footer-content {
            margin-bottom: 2rem;
        }

        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .footer-logo img {
            width: 120px;
            height: auto;
        }

        .footer-text {
            color: var(--neutral-400);
            margin-bottom: 2rem;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: var(--neutral-400);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary);
        }

        .footer-bottom {
            border-top: 1px solid var(--neutral-700);
            padding-top: 1rem;
            color: var(--neutral-500);
        }

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

            /* Header mobile */
            .nav-container {
                padding: 0 1rem;
            }

            .logo img {
                width: 80px;
            }

            .cta-button {
                padding: 0.5rem 1rem;
                font-size: 0.9rem;
            }

            /* Hero section mobile */
            .hero {
                margin-top: 70px;
                padding: 2rem 0;
            }

            .hero-container {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
                padding: 0 1rem;
            }

            .hero-image-container {
                width: 280px;
                height: 350px;
                margin: 0 auto;
            }

            .story-title {
                font-size: 2rem;
                line-height: 1.3;
            }

            .story-text {
                font-size: 1rem;
                padding: 0 10px;
            }

            .story-btn {
                padding: 1rem 1.5rem;
                font-size: 1rem;
                width: 100%;
                max-width: 280px;
            }

            .story-cta {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
            }

            .badge-1, .badge-2, .badge-3 {
                display: none;
            }

            /* Tentang section mobile */
            .tentang-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .tentang-image {
                height: 250px;
                margin-top: 1rem;
            }

            /* Timeline mobile */
            .journey-section {
        background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    }
    
    /* Show step indicators on mobile, hide on desktop */
    .timeline-step-indicator {
        display: flex !important;
    }
    
    /* Hide desktop dots on mobile */
    .timeline-dot {
        display: none !important;
    }
    
    /* Hide desktop icons on mobile */
    .timeline-icon {
        display: none !important;
    }
    
    /* Mobile timeline layout */
    .timeline-step {
        flex-direction: row !important;
        align-items: flex-start !important;
        gap: 1rem !important;
        margin-bottom: 2.5rem !important;
    }
    
    .timeline-step:nth-child(even) {
        flex-direction: row !important;
    }
    
    /* Vertical connecting line for mobile */
    .timeline-line {
        display: block !important;
        position: absolute;
        left: 30px;
        top: 60px;
        bottom: 60px;
        width: 3px;
        background: linear-gradient(to bottom, 
            var(--primary) 0%, 
            var(--secondary) 25%, 
            var(--accent) 50%, 
            #8b5cf6 75%, 
            var(--success) 100%);
        border-radius: 2px;
        opacity: 0.3;
        transform: none;
    }
    
    /* Step indicator colors */
    .timeline-step:nth-child(1) .timeline-step-indicator {
        background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    }
    
    .timeline-step:nth-child(2) .timeline-step-indicator {
        background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    }
    
    .timeline-step:nth-child(3) .timeline-step-indicator {
        background: linear-gradient(135deg, var(--accent), #d97706);
    }
    
    .timeline-step:nth-child(4) .timeline-step-indicator {
        background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    }
    
    .timeline-step:nth-child(5) .timeline-step-indicator {
        background: linear-gradient(135deg, var(--success), #047857);
    }
    
    /* Enhanced mobile content cards */
    .timeline-content {
        width: auto !important;
        flex: 1 !important;
        margin: 0 !important;
        padding: 1.5rem !important;
        border-radius: 16px !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
        position: relative;
        overflow: hidden;
    }
    
    /* Add subtle background pattern */
    .timeline-content::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(59, 130, 246, 0.1));
        border-radius: 0 16px 0 60px;
    }
    
    .timeline-feature-title {
        position: relative;
        z-index: 2;
    }
    
    .timeline-feature-desc {
        position: relative;
        z-index: 2;
    }
    
    /* === ENHANCED PRICING SECTION === */
    
    /* Enhanced billing toggle */
    .toggle-container {
        background: var(--white);
        box-shadow: 0 4px 16px rgba(0,0,0,0.08);
        border: 1px solid var(--neutral-200);
    }
    
    .toggle-option.active {
        color: var(--white);
        background: var(--primary);
        box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
    }
    
    .discount-badge {
        animation: bounce 2s infinite;
    }
    
    /* Enhanced trust signals */
    .trust-signals {
        display: grid !important;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
        gap: 0.8rem !important;
        margin: 2rem 0 !important;
        padding: 1.5rem !important;
        background: white !important;
        border-radius: 16px !important;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05) !important;
        flex-direction: row !important;
    }
    
    .trust-item {
        padding: 0.8rem !important;
        background: var(--neutral-50) !important;
        border-radius: 12px !important;
        border-left: 4px solid var(--success) !important;
        gap: 1rem !important;
    }
    
    .trust-icon {
        font-size: 1.3rem !important;
    }
    
    /* Enhanced plan cards */
    .plan-card {
        padding: 2rem 1.5rem !important;
        border-radius: 20px !important;
        box-shadow: 0 4px 16px rgba(0,0,0,0.05) !important;
        transition: all 0.3s ease !important;
    }
    
    .plan-card:hover {
        transform: translateY(-4px) !important;
        box-shadow: 0 8px 24px rgba(0,0,0,0.12) !important;
    }
    
    .plan-card.featured {
        background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
        box-shadow: 0 8px 32px rgba(59, 130, 246, 0.25) !important;
        overflow: hidden !important;
    }
    
    /* Shimmer effect for featured card */
    .plan-card.featured::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--accent), var(--secondary), var(--accent));
        animation: shimmer 2s infinite;
    }
    
    .plan-card.featured::after {
        top: -12px !important;
        padding: 0.4rem 1.2rem !important;
        border-radius: 24px !important;
        font-size: 0.75rem !important;
        box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4) !important;
    }
    
    /* Enhanced pricing container */
    .pricing-toggle-container {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;
        border: 1px solid var(--neutral-200) !important;
        border-radius: 24px !important;
    }
    
    /* Enhanced CTA buttons */
    .plan-cta {
        padding: 1rem !important;
        border-radius: 12px !important;
        font-weight: 700 !important;
        font-size: 1rem !important;
    }
    
    .plan-card:not(.featured) .plan-cta:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3) !important;
    }
    
    .plan-card.featured .plan-cta:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 6px 16px rgba(255, 255, 255, 0.4) !important;
    }
}
            /* Pricing mobile */
            .plans-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .plan-card.featured {
                transform: scale(1);
                margin: 0;
                border-radius: 12px;
            }

            .plan-card.featured::after {
                top: -10px;
                font-size: 0.7rem;
                padding: 0.3rem 1rem;
            }

            /* Trust signals mobile */
            .trust-signals {
                flex-direction: column;
                gap: 1rem;
            }

            /* Flip cards mobile - sudah ada di CSS sebelumnya */

            /* Comparison mobile */
            .comparison-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .comparison-grid-with-image {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .problem-solution-image {
                max-width: 200px;
                margin: 0 auto;
            }

            /* Stats mobile */
            .progress-stats-container {
                padding: 0 1rem;
            }

            .progress-stat-header {
                flex-direction: column;
                gap: 0.5rem;
                text-align: center;
            }

            .progress-stat-name {
                font-size: 1.1rem;
                justify-content: center;
            }

            .progress-stat-value {
                font-size: 1.5rem;
            }

            /* Testimony mobile */
            .vintage-newspaper {
                margin: 1rem auto 0;
                padding: 1.5rem;
            }

            .testimonial-carousel {
                height: 320px;
            }

            .quote-text {
                font-size: 0.9rem;
                text-align: left;
            }

            .vintage-author {
                flex-direction: column;
                text-align: center;
                gap: 0.8rem;
            }

            .author-photo {
                margin: 0 auto;
            }

            /* Footer mobile */
            .footer-links {
                flex-direction: column;
                gap: 1rem;
            }

            .footer-logo img {
                width: 100px;
            }

            /* Section titles mobile */
            .section-title,
            .pricing-title,
            .progress-title {
                font-size: 1.8rem;
                line-height: 1.3;
            }

            .section-subtitle {
                font-size: 1rem;
                padding: 0 10px;
            }

            /* Section spacing mobile */
            .tentang-section,
            .journey-section,
            .keunggulan-section,
            .testimony-section,
            .problem-solution {
                padding: 3rem 0;
            }

            .stats {
                padding: 3rem 0;
            }

            /* Billing toggle mobile */
            .toggle-container {
                padding: 0.3rem;
            }

            .toggle-option {
                padding: 0.6rem 1rem;
                font-size: 0.9rem;
            }

            .discount-badge {
                font-size: 0.7rem;
                padding: 0.2rem 0.6rem;
            }

            /* Timeline content mobile adjustments */
            .timeline-feature-title {
                font-size: 1rem;
            }

            .timeline-feature-desc {
                font-size: 0.85rem;
            }

            /* Additional mobile fixes */
            .pricing-toggle-container {
                padding: 2rem 1rem;
            }

            .plan-features {
                font-size: 0.85rem;
            }

            .plan-cta {
                padding: 0.8rem;
                font-size: 0.9rem;
            }
        }

        /* Extra small mobile devices */
        @media (max-width: 480px) {
            .nav-container {
                padding: 0 0.5rem;
            }

            .logo img {
                width: 70px;
            }

            .cta-button {
                padding: 0.4rem 0.8rem;
                font-size: 0.8rem;
            }

            .hero {
                margin-top: 60px;
            }

            .hero-container {
                padding: 0 0.5rem;
            }

            .hero-image-container {
                width: 250px;
                height: 320px;
            }

            .story-title {
                font-size: 1.8rem;
            }

            .story-text {
                font-size: 0.9rem;
            }

            .story-btn {
                padding: 0.9rem 1.2rem;
                font-size: 0.9rem;
            }

            .section-title {
                font-size: 1.6rem;
            }

            .section-subtitle {
                font-size: 0.9rem;
            }

            .tentang-text {
                font-size: 1rem;
            }

            .timeline-content {
                padding: 1rem;
            }

            .vintage-newspaper {
                padding: 1rem;
            }

            .testimonial-carousel {
                height: 350px;
            }

            .quote-text {
                font-size: 0.85rem;
            }

            .pricing-toggle-container {
                padding: 1.5rem 0.5rem;
            }

            .plan-card {
                padding: 1.5rem;
            }

            .problem-solution-image {
                max-width: 150px;
            }

            .footer-container {
                padding: 0 1rem;
            }

            .footer-logo img {
                width: 80px;
            }
        }
        /* Package Selection System - Tambahkan ke style4.css */

/* Category Tabs */
.category-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.tab-button {
    background: var(--gray-100);
    color: var(--gray-700);
    border: 2px solid var(--gray-200);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.tab-button.active,
.tab-button:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

/* Package Grid */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.package-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: var(--primary);
}

.package-card.premium {
    border: 2px solid var(--accent);
    transform: scale(1.05);
}

.package-card.premium::before {
    background: linear-gradient(90deg, var(--accent), #f97316);
}

.package-card.premium::after {
    content: '⭐ POPULER';
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.package-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.package-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--neutral-800);
    margin-bottom: 0.5rem;
}

.package-subtitle {
    color: var(--neutral-600);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.package-count {
    background: var(--neutral-100);
    color: var(--neutral-700);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.package-price {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
}

.price-currency {
    font-size: 1rem;
    color: var(--neutral-600);
    font-weight: 600;
}

.price-amount {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
}

.package-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--neutral-700);
}

.package-features .check {
    color: var(--success);
    font-weight: 600;
}

.package-cta {
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.package-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.package-cta:hover::before {
    left: 100%;
}

.package-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

/* Compact card style for SKB and PPPK */
.compact-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    text-align: center;
}

.compact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.compact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    border-color: var(--primary);
}

.compact-card .package-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.compact-card .package-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.compact-card .package-count {
    font-size: 0.75rem;
    margin-bottom: 1rem;
}

.compact-card .package-price {
    justify-content: center;
    margin-bottom: 1.2rem;
}

.compact-card .price-amount {
    font-size: 1.6rem;
}

.compact-card .package-cta {
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
}

/* Compact grid for SKB and PPPK */
.compact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.category-section {
    display: none;
}

.category-section.active {
    display: block;
}

/* Trust Signals */
.trust-signals {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
    background: var(--neutral-50);
    padding: 2rem;
    border-radius: 16px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    color: var(--neutral-700);
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid var(--neutral-200);
}

.trust-icon {
    font-size: 1.2rem;
    color: var(--success);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .compact-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 0.8rem;
    }
    
    .category-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-button {
        width: 200px;
        text-align: center;
    }
    
    .package-card.premium {
        transform: scale(1);
    }
    
    .compact-card .package-title {
        font-size: 0.95rem;
    }
    
    .compact-card .package-icon {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
    
    .compact-card .price-amount {
        font-size: 1.3rem;
    }
    
    .compact-card {
        padding: 1.2rem;
    }
    
    .trust-signals {
        flex-direction: column;
        align-items: center;
    }
}
/* ===== GLOBAL TEXT SIZE ENHANCEMENT ===== */

/* Base body text lebih besar */
body {
    font-size: 16px !important;          /* Base size lebih besar */
    line-height: 1.7;
}

/* Semua paragraph text */
p, .story-text, .tentang-text, .side-text, .section-subtitle, .pricing-subtitle {
    font-size: 1.1rem !important;        /* Dari 1rem jadi 1.1rem */
    font-weight: 450 !important;         /* Slightly bold */
    line-height: 1.7;
    color: #374151;
}

/* List items */
li, .tentang-features li, .side-list li, .plan-features li {
    font-size: 1rem !important;          /* Dari 0.9rem jadi 1rem */
    font-weight: 450 !important;
    line-height: 1.6;
}

/* Button text */
.story-btn, .cta-button, .package-cta, .plan-cta {
    font-size: 1.1rem !important;        /* Button text lebih besar */
    font-weight: 600 !important;
    letter-spacing: 0.02em;
}

/* Tab button text */
.tab-button, .tab-text {
    font-size: 1rem !important;          /* Tab text lebih besar */
    font-weight: 600 !important;
}

/* Navigation links */
.nav-links a {
    font-size: 1rem !important;          /* Nav links lebih besar */
    font-weight: 500 !important;
}

/* Timeline text (yang Anda mention) */
.timeline-feature-desc {
    font-size: 1.1rem !important;        /* Timeline desc lebih besar */
    font-weight: 500 !important;
    line-height: 1.6;
}

.timeline-feature-title {
    font-size: 1.3rem !important;        /* Timeline title lebih besar */
    font-weight: 700 !important;
}

/* Quote text di testimony */
.quote-text {
    font-size: 1.1rem !important;        /* Quote lebih besar */
    font-weight: 450 !important;
    line-height: 1.7;
}

/* Author details */
.author-details h4 {
    font-size: 1.1rem !important;        /* Author name lebih besar */
    font-weight: 600 !important;
}

.author-details p {
    font-size: 1rem !important;          /* Author title lebih besar */
    font-weight: 450 !important;
}

/* Package card text */
.package-title {
    font-size: 1.4rem !important;        /* Package title lebih besar */
    font-weight: 700 !important;
}

.package-subtitle {
    font-size: 1rem !important;          /* Package subtitle lebih besar */
    font-weight: 450 !important;
}

.package-features li {
    font-size: 1rem !important;          /* Package features lebih besar */
    font-weight: 450 !important;
}

/* Flip card text */
.flip-title {
    font-size: 1.4rem !important;        /* Flip card title lebih besar */
    font-weight: 700 !important;
}

.flip-subtitle {
    font-size: 1.1rem !important;        /* Flip subtitle lebih besar */
    font-weight: 500 !important;
}

.flip-description {
    font-size: 1rem !important;          /* Flip description lebih besar */
    font-weight: 450 !important;
    line-height: 1.5;
}

/* Stats text */
.progress-stat-name {
    font-size: 1.2rem !important;        /* Stats name lebih besar */
    font-weight: 600 !important;
}

/* Footer text */
.footer-text {
    font-size: 1rem !important;          /* Footer text lebih besar */
    font-weight: 450 !important;
}

.footer-links a {
    font-size: 1rem !important;          /* Footer links lebih besar */
    font-weight: 500 !important;
}

/* ===== MOBILE ADJUSTMENTS ===== */
@media (max-width: 768px) {
    /* Mobile tetap readable tapi tidak terlalu besar */
    body {
        font-size: 15px !important;
    }
    
    p, .story-text, .tentang-text, .side-text {
        font-size: 1rem !important;      /* Mobile paragraphs */
        font-weight: 450 !important;
    }
    
    .story-btn, .package-cta {
        font-size: 1rem !important;      /* Mobile buttons */
        font-weight: 600 !important;
    }
    
    .timeline-feature-desc {
        font-size: 1rem !important;      /* Mobile timeline */
        font-weight: 500 !important;
    }
    
    .quote-text {
        font-size: 1rem !important;      /* Mobile quotes */
        font-weight: 450 !important;
    }
    
    .package-title {
        font-size: 1.2rem !important;    /* Mobile package titles */
        font-weight: 700 !important;
    }
    
    .flip-title {
        font-size: 1.2rem !important;    /* Mobile flip titles */
        font-weight: 700 !important;
    }
}

/* ===== EXTRA LARGE OPTION (Jika mau lebih besar lagi) ===== */
/*
p, .story-text, .tentang-text {
    font-size: 1.2rem !important;        
    font-weight: 500 !important;
}

.timeline-feature-desc, .quote-text {
    font-size: 1.2rem !important;        
    font-weight: 500 !important;
}
*/
/* QUICK FIX - MOBILE TABS HORIZONTAL */
@media (max-width: 768px) {
    .category-tabs {
        flex-direction: row !important;
    }
}

@media (max-width: 480px) {
    .category-tabs {
        flex-direction: row !important;
    }
}