        :root {
            --primary: #f5b301;
            --primary-dark: #e6a500;
            --secondary: #ff6b00;
            --light: #ffffff;
            --light-bg: #f8f9fa;
            --light-card: #ffffff;
            --light-border: #e9ecef;
            --text: #2d3748;
            --text-muted: #718096;
            --text-light: #4a5568;
            --success: #10b981;
            --danger: #ef4444;
            --radius: 12px;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
            --transition: all 0.3s ease;
        }

        /* Reset & Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--light-bg);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
            min-height: 100vh;
            text-rendering: optimizeSpeed;
        }

        /* Skip to Main Content */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 6px;
            background: var(--primary);
            color: white;
            padding: 8px;
            text-decoration: none;
            border-radius: var(--radius);
            z-index: 10000;
            transition: var(--transition);
        }

        .skip-link:focus {
            top: 6px;
        }

        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        h1 {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
        }

        h2 {
            font-size: clamp(2rem, 4vw, 2.8rem);
        }

        h3 {
            font-size: clamp(1.5rem, 3vw, 2rem);
        }

        p {
            margin-bottom: 1rem;
        }

        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }

        a:hover {
            color: var(--secondary);
        }

        /* Layout */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header & Navigation */
        header {
            background: var(--light);
            border-bottom: 1px solid var(--light-border);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
            box-shadow: var(--shadow);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-img {
            height: 45px;
            width: auto;
            object-fit: contain;
        }

        .nav-menu {
            display: flex;
            gap: 25px;
            align-items: center;
            list-style: none;
        }

        .nav-link {
            font-weight: 600;
            padding: 8px 16px;
            border-radius: var(--radius);
            transition: var(--transition);
            color: var(--text);
        }

        .nav-link:hover,
        .nav-link.active {
            background: rgba(245, 179, 1, 0.1);
            color: var(--primary);
        }

        .mobile-toggle {
            display: none;
            background: transparent;
            border: 1px solid var(--light-border);
            color: var(--text);
            padding: 10px;
            border-radius: var(--radius);
            cursor: pointer;
            font-size: 1.2rem;
        }

        /* Hero Section */
        .hero {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--light) 0%, var(--light-bg) 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(245, 179, 1, 0.08) 0%, transparent 70%);
            z-index: 0;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-text {
            max-width: 100%;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(245, 179, 1, 0.15);
            color: var(--primary);
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .hero-title {
            margin-bottom: 20px;
            color: var(--text);
        }

        .hero-title span {
            color: var(--primary);
        }

        .hero-desc {
            font-size: 1.1rem;
            color: var(--text-muted);
            margin-bottom: 30px;
        }

        .hero-features {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }

        .feature-tag {
            background: var(--light);
            border: 1px solid var(--light-border);
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--text);
            box-shadow: var(--shadow);
        }

        .feature-tag i {
            color: var(--success);
        }

        .hero-actions {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 24px;
            border-radius: var(--radius);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            gap: 8px;
            font-size: 1rem;
        }

        .btn-primary {
            background: linear-gradient(to right, var(--primary), var(--secondary));
            color: #1b1200;
            box-shadow: var(--shadow);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(245, 179, 1, 0.3);
        }

        .btn-outline {
            background: transparent;
            border: 1px solid var(--light-border);
            color: var(--text);
            box-shadow: var(--shadow);
        }

        .btn-outline:hover {
            background: rgba(245, 179, 1, 0.05);
            transform: translateY(-3px);
            border-color: var(--primary);
        }

        /* Hero Banner */
        .hero-banner-container {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-banner {
            width: 100%;
            max-width: 500px;
            aspect-ratio: 1/1;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--light-border);
            background: var(--light);
        }

        .hero-banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Sections */
        section {
            padding: 80px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title {
            margin-bottom: 15px;
            color: var(--text);
        }

        .section-title span {
            color: var(--primary);
        }

        .section-desc {
            font-size: 1.1rem;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Konten Utama Section */
        .konten-utama {
            background: var(--light);
        }

        .konten-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
        }

        .main-content {
            background: var(--light-card);
            border-radius: var(--radius);
            padding: 30px;
            border: 1px solid var(--light-border);
            box-shadow: var(--shadow);
        }

        .main-content h2 {
            color: var(--primary);
            margin-bottom: 20px;
        }

        .main-content h3 {
            margin: 25px 0 15px;
            color: var(--text);
        }

        .main-content p {
            color: var(--text-muted);
        }

        .main-content ul {
            margin-bottom: 20px;
            padding-left: 20px;
        }

        .main-content li {
            margin-bottom: 8px;
            color: var(--text-muted);
        }

        .main-content code {
            background: rgba(245, 179, 1, 0.1);
            padding: 2px 6px;
            border-radius: 4px;
            font-family: monospace;
            color: var(--primary);
        }

        .sidebar {
            background: var(--light-card);
            border-radius: var(--radius);
            padding: 25px;
            border: 1px solid var(--light-border);
            height: fit-content;
            box-shadow: var(--shadow);
        }

        .sidebar h3 {
            margin-bottom: 20px;
            color: var(--primary);
        }

        .sidebar-links {
            list-style: none;
        }

        .sidebar-links li {
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px solid var(--light-border);
        }

        .sidebar-links a {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-muted);
            transition: var(--transition);
        }

        .sidebar-links a:hover {
            color: var(--primary);
            padding-left: 5px;
        }

        .sidebar-links i {
            width: 20px;
            text-align: center;
        }

        .status-info {
            background: rgba(16, 185, 129, 0.1);
            border: 1px solid rgba(16, 185, 129, 0.3);
            border-radius: var(--radius);
            padding: 15px;
            margin-top: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .status-info i {
            color: var(--success);
        }

        /* Reviews Section */
        .reviews-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }

        .review-card {
            background: var(--light-card);
            border-radius: var(--radius);
            padding: 25px;
            border: 1px solid var(--light-border);
            transition: var(--transition);
            box-shadow: var(--shadow);
        }

        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .review-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }

        .review-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: #1b1200;
        }

        .review-info h4 {
            margin-bottom: 5px;
        }

        .review-stars {
            color: var(--primary);
            font-size: 0.9rem;
        }

        .review-text {
            color: var(--text-muted);
            font-style: italic;
        }

        /* Blog Section */
        .blog-section {
            background: var(--light-bg);
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }

        .blog-card {
            background: var(--light-card);
            border-radius: var(--radius);
            padding: 25px;
            border: 1px solid var(--light-border);
            transition: var(--transition);
            height: 100%;
            display: flex;
            flex-direction: column;
            box-shadow: var(--shadow);
        }

        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .blog-category {
            display: inline-block;
            background: rgba(245, 179, 1, 0.15);
            color: var(--primary);
            padding: 5px 12px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .blog-card h3 {
            margin-bottom: 15px;
            line-height: 1.4;
        }

        .blog-card h3 a {
            color: var(--text);
        }

        .blog-card h3 a:hover {
            color: var(--primary);
        }

        .blog-card p {
            color: var(--text-muted);
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .blog-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-top: auto;
        }

        /* FAQ Section */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--light-card);
            border-radius: var(--radius);
            margin-bottom: 15px;
            border: 1px solid var(--light-border);
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .faq-question {
            padding: 20px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
            color: var(--text);
        }

        .faq-question:hover {
            background: rgba(245, 179, 1, 0.05);
        }

        .faq-question i {
            transition: var(--transition);
            color: var(--primary);
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: var(--transition);
            color: var(--text-muted);
        }

        .faq-item.active .faq-question {
            background: rgba(245, 179, 1, 0.1);
            color: var(--primary);
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-item.active .faq-answer {
            padding: 0 20px 20px;
            max-height: 500px;
        }

        /* CTA Section */
        .cta {
            background: linear-gradient(135deg, var(--light-card) 0%, var(--light-bg) 100%);
            border-radius: 20px;
            padding: 60px 40px;
            text-align: center;
            border: 1px solid var(--light-border);
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

        .cta::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(245, 179, 1, 0.08) 0%, transparent 70%);
            z-index: 0;
        }

        .cta-content {
            position: relative;
            z-index: 1;
        }

        .cta-title {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--text);
        }

        .cta-desc {
            font-size: 1.1rem;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto 30px;
        }

        /* Footer */
        footer {
            background: var(--light-card);
            border-top: 1px solid var(--light-border);
            padding: 60px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-col h3 {
            margin-bottom: 20px;
            color: var(--primary);
        }

        .footer-col p {
            color: var(--text-muted);
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: var(--text-muted);
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--primary);
            padding-left: 5px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--light-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text);
            transition: var(--transition);
        }

        .social-link:hover {
            background: var(--primary);
            color: #1b1200;
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid var(--light-border);
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        /* Breadcrumb */
.breadcrumb-list{list-style:none;display:flex;gap:10px;align-items:center;padding:0;margin:0}
.breadcrumb-item{color:var(--text-muted)}
.breadcrumb-item a{color:var(--text-muted)}
.breadcrumb-item a:hover{color:var(--primary)}
.breadcrumb-sep{color:var(--text-muted)}
.hero-note{margin-top:12px;color:var(--text-muted);font-size:.95rem}
.hero-features{list-style:none;padding:0;margin:0 0 30px;display:flex;gap:15px;flex-wrap:wrap}

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .hero-banner-container {
                order: -1;
            }
            
            .konten-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--light);
                flex-direction: column;
                padding: 20px;
                border-top: 1px solid var(--light-border);
                box-shadow: var(--shadow-lg);
            }
            
            .nav-menu.active {
                display: flex;
            }
            
            .mobile-toggle {
                display: block;
            }
            
            .hero-actions {
                justify-content: center;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
        }

        .sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}


        @media (max-width: 576px) {
            .hero-banner {
                max-width: 100%;
            }
            
            .btn {
                width: 100%;
                justify-content: center;
            }
            
            .hero-actions {
                flex-direction: column;
            }
        }

        /* Print Styles */
        @media print {
            .no-print {
                display: none !important;
            }
            
            body {
                background: white;
                color: black;
            }
            
            a {
                color: black;
                text-decoration: underline;
            }
        }

        /* Reduced Motion */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
            
            html {
                scroll-behavior: auto;
            }
        }