/* =====================================================
   Berjuara - Platform Belajar CPNS - Main Styles
   ===================================================== */

/* CSS Variables */
:root {
    /* Primary Colors */
    --primary: #22C55E;
    --primary-rgb: 34, 197, 94;
    --primary-dark: #16A34A;
    --primary-light: #86EFAC;
    --secondary: #3B82F6;
    --secondary-dark: #2563EB;
    --secondary-light: #93C5FD;

    /* Supporting Colors */
    --bg-primary: #F8FAFC;
    --bg-secondary: #FFFFFF;
    --text-primary: #1E293B;
    --text-secondary: #64748B;
    --text-muted: #94A3B8;
    --border: #E2E8F0;
    --border-light: #F1F5F9;

    /* Status Colors */
    --success: #22C55E;
    --success-rgb: 34, 197, 94;
    --error: #EF4444;
    --error-rgb: 239, 68, 68;
    --warning: #F59E0B;
    --warning-rgb: 245, 158, 11;
    --info: #3B82F6;
    --secondary-rgb: 59, 130, 246;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #22C55E 0%, #3B82F6 100%);
    --gradient-hero: linear-gradient(135deg, #22C55E 0%, #3B82F6 50%, #22C55E 100%);

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;

    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;

    /* Spacing */
    --container-max: 1280px;
    --header-height: 70px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

a {
    color: var(--secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--secondary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

/* =====================================================
   Layout Components
   ===================================================== */

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    font-size: var(--text-lg);
}

/* Grid System */
.grid {
    display: grid;
    gap: 1.5rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Flexbox Utilities */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }

/* =====================================================
   Promo Banner Section (Large Banner)
   ===================================================== */

.promo-section {
    padding: 2rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.promo-section.hidden {
    display: none;
}

.promo-card {
    position: relative;
    background: linear-gradient(135deg, #7c3aed 0%, #2563eb 50%, #0ea5e9 100%);
    border-radius: 1.5rem;
    padding: 2.5rem;
    color: white;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.3);
}

.promo-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.promo-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
}

.promo-close-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.promo-card-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.promo-left {
    flex: 1;
}

.promo-badge-large {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1e293b;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.promo-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.promo-desc {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.promo-code-box {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.25rem;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    border: 1px dashed rgba(255,255,255,0.3);
}

.promo-code-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

.promo-code-value {
    font-family: 'Courier New', monospace;
    font-size: 1.25rem;
    font-weight: 700;
    background: white;
    color: #7c3aed;
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.promo-code-value:hover {
    transform: scale(1.05);
}

.promo-code-box .fa-copy {
    cursor: pointer;
    opacity: 0.8;
    transition: all 0.2s ease;
}

.promo-code-box .fa-copy:hover {
    opacity: 1;
    transform: scale(1.1);
}

.promo-timer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.promo-right {
    text-align: center;
    min-width: 280px;
}

.promo-price-box {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
}

.promo-price-old {
    font-size: 1.1rem;
    text-decoration: line-through;
    opacity: 0.7;
}

.promo-price-new {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin: 0.5rem 0;
}

.promo-price-period {
    font-size: 0.9rem;
    opacity: 0.8;
}

.promo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1e293b;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

.promo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.5);
}

.promo-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.promo-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    position: relative;
    z-index: 1;
}

.promo-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.promo-feature .fa-check-circle {
    color: #4ade80;
}

@media (max-width: 968px) {
    .promo-card {
        padding: 2rem 1.5rem;
    }

    .promo-card-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .promo-left {
        text-align: center;
    }

    .promo-title {
        font-size: 1.75rem;
    }

    .promo-desc {
        font-size: 1rem;
    }

    .promo-code-box {
        flex-wrap: wrap;
        justify-content: center;
    }

    .promo-right {
        min-width: auto;
        width: 100%;
        max-width: 320px;
    }

    .promo-features {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

    .promo-feature {
        font-size: 0.85rem;
    }
}

/* Promo Slider Styles */
.promo-slider {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
}

.slides-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.slide {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    display: flex;
}

/* Slider Navigation Buttons - positioned outside slider via container */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #1e293b;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.slider-prev {
    left: 0.5rem;
}

.slider-next {
    right: 0.5rem;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot:hover {
    background: #94a3b8;
}

.slider-dot.active {
    background: linear-gradient(135deg, #7c3aed, #2563eb);
    transform: scale(1.2);
}

/* Banner Image Styles */
.slide-banner-link {
    display: flex;
    text-decoration: none;
    width: 100%;
    height: 100%;
}

.slide-banner-link .banner-card {
    flex: 1;
}

.slide-banner-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1200 / 400;
    object-fit: contain;
    border-radius: 1.5rem;
    display: block;
}

/* Banner Card Styles (HTML banners) */
.banner-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.5rem 3rem;
    border-radius: 1.5rem;
    color: white;
    min-height: 280px;
    gap: 2rem;
}

.banner-promo {
    background: linear-gradient(135deg, #7c3aed 0%, #2563eb 50%, #0ea5e9 100%);
}

.banner-pasangan {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 50%, #be185d 100%);
}

.banner-sahabat {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 50%, #c2410c 100%);
}

.banner-tryout {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 50%, #15803d 100%);
}

.banner-left {
    flex: 1;
}

.banner-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.banner-badge {
    display: inline-block;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    color: #1e293b;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.35rem 1rem;
    border-radius: 2rem;
    margin-bottom: 0.75rem;
}

.banner-badge-green {
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
}

.banner-badge-pink {
    background: linear-gradient(90deg, #fda4af, #fb7185);
    color: #881337;
}

.banner-badge-orange {
    background: linear-gradient(90deg, #fdba74, #fb923c);
    color: #7c2d12;
}

.banner-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    color: white;
}

.banner-desc {
    font-size: 1rem;
    color: white;
    font-weight: 500;
    margin-bottom: 0.75rem;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.banner-code {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.15);
    border: 1px dashed rgba(255,255,255,0.3);
    padding: 0.4rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.banner-code strong {
    background: white;
    color: #7c3aed;
    padding: 0.2rem 0.6rem;
    border-radius: 0.25rem;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.banner-referral-info {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.banner-referral-info i {
    font-size: 1rem;
    opacity: 0.9;
}

.banner-features {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    opacity: 0.9;
}

.banner-features i {
    color: #4ade80;
    margin-right: 0.25rem;
}

.banner-price-box {
    background: rgba(255,255,255,0.15);
    padding: 1.25rem 2rem;
    border-radius: 1rem;
    text-align: center;
}

.banner-price-old {
    display: block;
    font-size: 0.9rem;
    text-decoration: line-through;
    opacity: 0.7;
}

.banner-price-new {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0.25rem 0;
}

.banner-price-period {
    font-size: 0.85rem;
    opacity: 0.8;
}

.banner-cta {
    display: inline-block;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    color: #1e293b;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.banner-cta-white {
    background: white;
    color: #16a34a;
}

.banner-icon-circle {
    width: 120px;
    height: 120px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
}

.banner-icon-pink {
    background: rgba(255,255,255,0.2);
}

.banner-icon-orange {
    background: rgba(255,255,255,0.2);
}

.banner-price-pink {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.25);
}

.banner-price-orange {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.25);
}

.banner-price-label {
    display: block;
    font-size: 0.8rem;
    opacity: 0.85;
    margin-bottom: 0.15rem;
}

.banner-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.banner-stat-pill {
    background: rgba(255,255,255,0.2);
    padding: 0.35rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .banner-card {
        flex-direction: column;
        padding: 1.5rem;
        text-align: center;
        gap: 1.25rem;
    }

    .banner-title {
        font-size: 1.5rem;
    }

    .banner-desc {
        font-size: 0.8rem;
    }

    .banner-features {
        justify-content: center;
        flex-wrap: wrap;
    }

    .banner-stats {
        justify-content: center;
    }

    .banner-price-new {
        font-size: 1.8rem;
    }

    .banner-icon-circle {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .banner-code {
        margin: 0 auto 0.75rem;
    }

    .banner-referral-info {
        text-align: left;
        font-size: 0.75rem;
    }
}

/* ==================== MENTOR SECTION ==================== */
.mentor-section {
    background: var(--bg-primary);
}

.mentor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.mentor-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: var(--radius-xl, 1rem);
    border: 1px solid var(--border, #e5e7eb);
    text-align: center;
    transition: var(--transition, all 0.2s);
    position: relative;
}

.mentor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

.mentor-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.25rem;
    border: 4px solid rgba(34, 197, 94, 0.15);
    background: var(--bg-primary);
    display: block;
}

.mentor-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary, #1e293b);
    margin: 0 0 0.4rem 0;
}

.mentor-bidang {
    display: inline-block;
    background: var(--gradient-primary, linear-gradient(135deg, #22C55E 0%, #3B82F6 100%));
    color: white;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.25rem 0.85rem;
    border-radius: 999px;
    margin-bottom: 0.85rem;
    letter-spacing: 0.02em;
}

.mentor-bio {
    color: var(--text-secondary, #64748b);
    font-size: 0.875rem;
    line-height: 1.55;
    margin: 0 0 1rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mentor-achievements {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    text-align: left;
    border-top: 1px solid var(--border-light, #f1f5f9);
    padding-top: 1rem;
}

.mentor-achievements li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-secondary, #64748b);
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.mentor-achievements li:last-child {
    margin-bottom: 0;
}

.mentor-achievements i {
    color: var(--primary, #22C55E);
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

@media (max-width: 768px) {
    .mentor-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 2rem;
    }

    .mentor-card {
        padding: 1.5rem 1.25rem;
    }

    .mentor-photo {
        width: 100px;
        height: 100px;
    }

    .mentor-name {
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    .banner-card {
        padding: 1.25rem;
        gap: 1rem;
    }

    .banner-title {
        font-size: 1.3rem;
    }

    .banner-price-box {
        padding: 1rem 1.5rem;
    }

    .banner-price-new {
        font-size: 1.5rem;
    }

    .banner-cta {
        padding: 0.6rem 1.5rem;
        font-size: 0.85rem;
    }
}

/* Slide Loading State */
.slide-loading {
    width: 100%;
    aspect-ratio: 1200 / 400;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: #64748b;
    font-size: 1rem;
}

.slide-loading i {
    font-size: 2rem;
    color: #7c3aed;
}

/* Responsive - maintain aspect ratio and scale */
@media (max-width: 768px) {
    .promo-slider {
        border-radius: 1rem;
    }

    .slide-banner-image {
        border-radius: 1rem;
    }

    .slider-btn {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
        background: rgba(255, 255, 255, 0.7);
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    }

    .slider-prev {
        left: 0.25rem;
    }

    .slider-next {
        right: 0.25rem;
    }

    .slider-dots {
        margin-top: 1rem;
        gap: 0.5rem;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }
}

/* =====================================================
   Header & Navigation
   ===================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: var(--text-xl);
    color: var(--text-primary);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* Logo putih untuk background gelap */
.logo-img-white {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Logo gelap untuk background terang */
.logo-img-dark {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0);
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--text-primary);
}

/* =====================================================
   Hero Section
   ===================================================== */

.hero {
    min-height: 100vh;
    padding-top: calc(var(--header-height) + 2rem);
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: var(--gradient-primary);
    opacity: 0.05;
    border-radius: 50%;
    transform: rotate(-15deg);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(34, 197, 94, 0.1);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    grid-column: 1;
}

.hero-stat {
    text-align: left;
}

.hero-stat-number {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
}

.hero-stat-label {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image-wrapper {
    position: relative;
    padding: 2rem;
}

.hero-image-main {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.hero-float-card {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-float-card.card-1 {
    top: 10%;
    right: -10%;
    animation: float 3s ease-in-out infinite;
}

.hero-float-card.card-2 {
    bottom: 15%;
    left: -5%;
    animation: float 3s ease-in-out infinite 0.5s;
}

.hero-float-card.card-3 {
    bottom: 35%;
    right: -15%;
    animation: float 3s ease-in-out infinite 1s;
}

.float-icon {
    width: 45px;
    height: 45px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.float-icon.green { background: rgba(34, 197, 94, 0.1); color: var(--primary); }
.float-icon.blue { background: rgba(59, 130, 246, 0.1); color: var(--secondary); }
.float-icon.orange { background: rgba(245, 158, 11, 0.1); color: var(--warning); }

.float-content h4 {
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.float-content p {
    font-size: var(--text-xs);
    color: var(--text-muted);
    margin: 0;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Hero Laptop Simple Illustration */
.hero-laptop-simple {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #22C55E 0%, #3B82F6 100%);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.2);
}

.laptop-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.laptop-icon-wrapper > .fa-laptop {
    font-size: 6rem;
    color: white;
}

.canvas-pen-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.canvas-pen-overlay .fa-pen-fancy {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    transform: rotate(-45deg);
}

.canvas-scribble {
    width: 50px;
    height: 30px;
    opacity: 0.8;
}

/* Float Card Positions - Repositioned to avoid overlap */
.hero-float-card.card-1 {
    top: 5%;
    right: -5%;
    animation: float 3s ease-in-out infinite;
}

.hero-float-card.card-2 {
    bottom: 55%;
    left: -10%;
    animation: float 3s ease-in-out infinite 0.5s;
}

.hero-float-card.card-3 {
    top: 45%;
    right: -12%;
    animation: float 3s ease-in-out infinite 1s;
}

.hero-float-card.card-4 {
    bottom: 25%;
    left: -8%;
    animation: float 3s ease-in-out infinite 1.5s;
}

.hero-float-card.card-5 {
    bottom: 0%;
    right: 5%;
    animation: float 3s ease-in-out infinite 2s;
}

.float-icon.purple { background: rgba(139, 92, 246, 0.1); color: #8B5CF6; }
.float-icon.teal { background: rgba(20, 184, 166, 0.1); color: #14B8A6; }

/* =====================================================
   Features Section
   ===================================================== */

.features {
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.feature-card.featured {
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.feature-card.featured h3,
.feature-card.featured p {
    color: white;
}

.feature-card.featured .feature-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.feature-card.featured:hover {
    border-color: transparent;
}

.feature-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-icon.green { background: rgba(34, 197, 94, 0.1); color: var(--primary); }
.feature-icon.blue { background: rgba(59, 130, 246, 0.1); color: var(--secondary); }
.feature-icon.orange { background: rgba(245, 158, 11, 0.1); color: var(--warning); }
.feature-icon.red { background: rgba(239, 68, 68, 0.1); color: var(--error); }
.feature-icon.purple { background: rgba(139, 92, 246, 0.1); color: #8B5CF6; }
.feature-icon.teal { background: rgba(20, 184, 166, 0.1); color: #14B8A6; }

.feature-card h3 {
    font-size: var(--text-xl);
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: var(--text-sm);
    margin: 0;
}

/* =====================================================
   Categories Section
   ===================================================== */

.categories {
    background: var(--bg-primary);
}

.categories-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.category-tab {
    padding: 0.75rem 2rem;
    background: white;
    border: 2px solid var(--border);
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.category-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.category-tab.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
}

.category-content {
    display: none;
}

.category-content.active {
    display: block;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.category-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.category-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.category-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.category-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.category-card h4 {
    font-size: var(--text-lg);
    margin-bottom: 0.25rem;
}

.category-card .subtitle {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.subcategory-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.subcategory-tag {
    padding: 0.375rem 0.75rem;
    background: var(--bg-primary);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.subcategory-tag:hover {
    background: var(--primary);
    color: white;
}

/* =====================================================
   Pricing Section
   ===================================================== */

.pricing {
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    border: 2px solid var(--border);
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.popular {
    border-color: var(--primary);
    background: white;
}

.pricing-card.popular::before {
    content: 'Paling Populer';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.375rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.pricing-header h3 {
    font-size: var(--text-xl);
    margin-bottom: 0.5rem;
}

.pricing-header .price {
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--text-primary);
}

.pricing-header .price span {
    font-size: var(--text-base);
    font-weight: 400;
    color: var(--text-muted);
}

.pricing-header .price-original {
    font-size: var(--text-lg);
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 0.25rem;
}

.pricing-header .price-discount {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    font-size: var(--text-xs);
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    margin-top: 0.5rem;
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.pricing-features li i {
    color: var(--primary);
}

.pricing-features li.disabled {
    color: var(--text-muted);
}

.pricing-features li.disabled i {
    color: var(--text-muted);
}

/* =====================================================
   CTA Section
   ===================================================== */

.cta {
    background: var(--gradient-primary);
    padding: 5rem 0;
}

.cta .container {
    text-align: center;
}

.cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--text-lg);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta .btn-white {
    background: white;
    color: var(--primary);
}

.cta .btn-white:hover {
    background: var(--bg-primary);
}

/* =====================================================
   Footer
   ===================================================== */

.footer {
    background: var(--text-primary);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo {
    margin-bottom: 1rem;
    color: white;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-sm);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
}

.footer-links h4 {
    color: white;
    font-size: var(--text-base);
    margin-bottom: 1.5rem;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-sm);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.5);
}

/* =====================================================
   Responsive Design
   ===================================================== */

@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 0;
    }

    .hero-image {
        order: 1;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }

    .hero-stats {
        order: 2;
    }

    .hero-image-wrapper {
        padding: 3rem 2rem;
        min-height: 320px;
    }

    .hero-float-card {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 0.5rem;
        gap: 0.35rem;
        width: 100px;
        height: 100px;
        border-radius: var(--radius);
        overflow: hidden;
    }

    .hero-float-card .float-icon {
        width: 36px;
        height: 36px;
        min-height: 36px;
        font-size: 1rem;
    }

    .hero-float-card .float-content h4 {
        font-size: 0.65rem;
        margin-bottom: 0;
        line-height: 1.2;
    }

    .hero-float-card .float-content p {
        display: none;
    }

    .hero-float-card.card-1 { top: 0%; right: -5%; }
    .hero-float-card.card-2 { top: 28%; left: -8%; }
    .hero-float-card.card-3 { top: 55%; right: -5%; }
    .hero-float-card.card-4 { bottom: 10%; left: -6%; }
    .hero-float-card.card-5 { bottom: -8%; right: 12%; }

    .hero-description {
        margin: 0 auto 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .features-grid,
    .category-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Hide header nav-actions earlier - buttons go to mobile menu */
    .header .nav-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 60px;
    }

    h1 { font-size: var(--text-4xl); }
    h2 { font-size: var(--text-3xl); }

    .hero-title {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }

    .features-grid,
    .category-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .hero-image-wrapper {
        padding: 2rem 1.5rem;
        min-height: 260px;
    }

    .hero-float-card.card-1 { top: 0%; right: 3%; }
    .hero-float-card.card-2 { top: 28%; left: 0%; }
    .hero-float-card.card-3 { top: 55%; right: 3%; }
    .hero-float-card.card-4 { bottom: 10%; left: 2%; }
    .hero-float-card.card-5 { bottom: -5%; right: 20%; }

    .laptop-icon-wrapper > .fa-laptop {
        font-size: 4rem;
    }

    .canvas-pen-overlay .fa-pen-fancy {
        font-size: 1rem;
    }

    .canvas-scribble {
        width: 35px;
        height: 20px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .section {
        padding: 3rem 0;
    }

    .categories-tabs {
        flex-wrap: wrap;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .hero-badge {
        font-size: var(--text-xs);
        padding: 0.375rem 0.75rem;
    }

    .hero-description {
        font-size: var(--text-base);
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 0.875rem 1rem;
        font-size: var(--text-sm);
        white-space: normal;
        text-align: center;
    }

    .hero-buttons .btn i {
        flex-shrink: 0;
    }

    .hero-image {
        max-width: 100%;
    }

    .hero-image-wrapper {
        padding: 2.5rem 3rem;
        min-height: 280px;
    }

    .hero-float-card {
        width: 85px;
        height: 85px;
        padding: 0.4rem;
        gap: 0.25rem;
    }

    .hero-float-card .float-icon {
        width: 30px;
        height: 30px;
        min-height: 30px;
        font-size: 0.85rem;
    }

    .hero-float-card .float-content h4 {
        font-size: 0.55rem;
    }

    .hero-float-card.card-1 { top: -2%; right: 5%; }
    .hero-float-card.card-2 { top: 22%; left: 2%; }
    .hero-float-card.card-3 { top: 48%; right: 5%; }
    .hero-float-card.card-4 { bottom: 10%; left: 2%; }
    .hero-float-card.card-5 { bottom: -3%; right: 25%; }

    .hero-stat-number {
        font-size: var(--text-2xl);
    }

    .hero-stat-label {
        font-size: var(--text-xs);
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .cta h2 {
        font-size: var(--text-xl);
    }

    .cta p {
        font-size: var(--text-sm);
    }

    .cta .btn {
        padding: 0.875rem 1.25rem;
        font-size: var(--text-sm);
        white-space: normal;
    }
}

@media (max-width: 350px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-badge {
        font-size: 0.625rem;
    }

    .hero-stats {
        gap: 1rem;
    }

    .hero-stat-number {
        font-size: var(--text-xl);
    }
}

/* =====================================================
   Mobile Navigation Menu
   ===================================================== */

.mobile-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 1rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.mobile-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav .nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: static;
    background: none;
    border-bottom: none;
    box-shadow: none;
    padding: 0;
    z-index: auto;
}

.mobile-nav .nav-link {
    padding: 1rem;
    border-bottom: 1px solid var(--border-light);
}

.mobile-nav .nav-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem 0 0;
}

.mobile-nav .nav-actions .btn {
    display: block;
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: var(--text-sm);
    white-space: normal;
    text-align: center;
    border-radius: 0.5rem;
}

/* =====================================================
   Utilities
   ===================================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-muted { color: var(--text-muted); }

.bg-primary { background-color: var(--primary); }
.bg-secondary { background-color: var(--secondary); }
.bg-white { background-color: white; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.hidden { display: none; }
.visible { display: block; }

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--text-muted);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary);
}

/* =====================================================
   Help Modals - FAQ, Contact, Terms, Privacy
   ===================================================== */
.help-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.2s ease;
}

.help-modal-overlay.active {
    display: flex;
}

.help-modal {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 550px;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    animation: slideUp 0.3s ease;
}

.help-modal-lg {
    max-width: 700px;
}

.help-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
    background: var(--bg-primary);
}

.help-modal-header h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
}

.help-modal-header h2 i {
    color: var(--primary);
}

.help-modal-close {
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius);
    transition: all 0.2s;
}

.help-modal-close:hover {
    background: var(--border-light);
    color: var(--text-primary);
}

.help-modal-body {
    padding: 1.5rem;
}

.help-modal-scroll {
    max-height: 60vh;
    overflow-y: auto;
}

/* FAQ Styles */
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: var(--bg-primary);
    cursor: pointer;
    transition: all 0.2s;
}

.faq-question:hover {
    background: var(--border-light);
}

.faq-question span {
    font-weight: 500;
    color: var(--text-primary);
}

.faq-question i {
    color: var(--text-muted);
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 1rem 1.25rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    border-top: 1px solid var(--border);
}

.faq-item.active .faq-answer {
    display: block;
}

/* Contact Styles */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 1rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.25rem;
}

.contact-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0 0 0.75rem;
}

/* Legal Content Styles */
.legal-updated {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.help-modal-body h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 1.5rem 0 0.75rem;
}

.help-modal-body h3:first-of-type {
    margin-top: 0;
}

.help-modal-body p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.help-modal-body ul {
    margin: 0.5rem 0 1rem 1.25rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.help-modal-body ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =====================================================
   Footer Contact Info
   ===================================================== */
.footer-contact-info {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.footer-contact-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-sm);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact-info p i {
    width: 16px;
    text-align: center;
    color: var(--primary);
}

.footer-contact-info a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.footer-contact-info a:hover {
    color: var(--primary);
}

/* =====================================================
   Cara Pembayaran Section
   ===================================================== */
.payment-methods {
    background: var(--bg-primary);
}

.payment-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.payment-step {
    text-align: center;
    flex: 1;
    max-width: 260px;
    position: relative;
    padding: 2rem 1.5rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.payment-step:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.1);
}

.step-number {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.step-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.payment-step h4 {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.payment-step p {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: 1.6;
}

.payment-step p a {
    color: var(--primary);
    font-weight: 500;
}

.payment-step-arrow {
    display: flex;
    align-items: center;
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-top: 3rem;
}

.payment-channels {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 2rem;
    text-align: center;
}

.payment-channels-title {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.payment-channel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.payment-channel-group {
    text-align: center;
}

.payment-group-label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.payment-group-label i {
    color: var(--primary);
}

.payment-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.payment-logo {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
}

.payment-secure {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.payment-secure i {
    color: var(--primary);
}

/* Payment section responsive */
@media (max-width: 768px) {
    .payment-steps {
        flex-direction: column;
        align-items: center;
    }

    .payment-step {
        max-width: 100%;
        width: 100%;
    }

    .payment-step-arrow {
        transform: rotate(90deg);
        margin-top: 0;
    }

    .payment-channel-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
