/* style.css - Versi Lengkap & Dirapikan */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #1e293b;
    transition: background 0.3s ease, color 0.3s ease;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* ========== TOP BAR ========== */
.top-bar {
    background: #f8fafc;
    padding: 12px 0;
    font-size: 13px;
    border-bottom: 1px solid #e2e8f0;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.top-bar-left {
    display: flex;
    gap: 24px;
    color: #64748B;
}
.top-bar-left span i {
    margin-right: 8px;
    color: #0F5E53;
}
.top-bar-right {
    display: flex;
    gap: 16px;
    align-items: center;
}
.top-bar-right a {
    color: #0F5E53;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.top-bar-right a:hover {
    color: #0a4a41;
}
.theme-toggle-small {
    background: #e2e8f0;
    border: none;
    padding: 6px 12px;
    border-radius: 40px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
}
.theme-toggle-small:hover {
    background: #cbd5e1;
}

/* ========== NAVIGATION ========== */
.navbar {
    background: white;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}
.nav-logo {
    max-height: 45px;
    width: auto;
    transition: filter 0.3s ease;
}
.logo-icon {
    width: 40px;
    height: 40px;
    background: #0F5E53;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: white;
}
.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: #1e293b;
}
.logo-highlight {
    color: #0F5E53;
}
.nav-menu {
    display: flex;
    gap: 32px;
}
.nav-menu a {
    color: #334155;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-menu a:hover {
    color: #0F5E53;
}
.nav-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}
.btn-demo {
    background: #0F5E53;
    color: white;
    padding: 10px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}
.btn-demo:hover {
    background: #0a4a41;
    transform: translateY(-2px);
}
.theme-toggle {
    background: #f1f5f9;
    border: none;
    padding: 8px 14px;
    border-radius: 40px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.2s;
}
.theme-toggle:hover {
    background: #e2e8f0;
}
.mobile-toggle {
    display: none;
    background: #f1f5f9;
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 20px;
}
.mobile-menu {
    display: none;
    background: white;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.mobile-menu a {
    display: block;
    color: #334155;
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
}
.mobile-demo {
    background: #0F5E53;
    color: white !important;
    text-align: center;
    padding: 12px !important;
    border-radius: 40px;
    margin-top: 10px;
}

/* ========== HERO SECTION ========== */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9f6 0%, #ffffff 100%);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-badge {
    display: inline-block;
    background: #e6f7f3;
    color: #0F5E53;
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}
.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1e293b;
}
.hero-subtitle {
    font-size: 18px;
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 32px;
}
.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 48px;
}
.btn-primary {
    background: #0F5E53;
    color: white;
    padding: 14px 32px;
    border-radius: 48px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-primary:hover {
    background: #0a4a41;
    transform: translateY(-2px);
}
.btn-outline {
    border: 2px solid #0F5E53;
    color: #0F5E53;
    background: transparent;
    padding: 12px 30px;
    border-radius: 48px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-outline:hover {
    background: #0F5E53;
    color: white;
    transform: translateY(-2px);
}
.hero-stats {
    display: flex;
    gap: 48px;
}
.stat-item {
    text-align: left;
}
.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #0F5E53;
    display: block;
}
.stat-label {
    font-size: 14px;
    color: #64748B;
}

/* ========== CLIENTS ========== */
.clients {
    padding: 40px 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}
.clients-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 48px;
}
.clients-label {
    color: #64748B;
    font-weight: 500;
}
.clients-logos {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}
.clients-logos span {
    font-weight: 600;
    color: #334155;
}

/* ========== ABOUT ========== */
.about {
    padding: 80px 0;
}
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-image {
    text-align: center;
}
.about-logo {
    max-width: 100%;
    max-height: 300px;
}
.section-tag {
    display: inline-block;
    background: #e6f7f3;
    color: #0F5E53;
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}
.section-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}
.text-gradient {
    color: #0F5E53;
}
.about-text {
    color: #64748B;
    line-height: 1.7;
    margin-bottom: 32px;
}
.about-features {
    display: grid;
    gap: 24px;
    margin-bottom: 32px;
}
.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.about-feature i {
    font-size: 24px;
    color: #0F5E53;
    margin-top: 4px;
}
.about-feature h4 {
    margin-bottom: 6px;
    font-size: 18px;
}
.about-feature p {
    color: #64748B;
    font-size: 14px;
    line-height: 1.5;
}

/* ========== PRODUCTS ========== */
.products {
    padding: 80px 0;
    background: #f8fafc;
}
.section-header {
    text-align: center;
    margin-bottom: 48px;
}
.section-subtitle {
    color: #64748B;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}
.product-card {
    background: white;
    padding: 32px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}
.product-icon {
    font-size: 52px;
    color: #0F5E53;
    margin-bottom: 20px;
}
.product-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}
.product-card p {
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 20px;
}
.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.product-link {
    color: #0F5E53;
    text-decoration: none;
    font-weight: 600;
}
.product-badge {
    background: #e6f7f3;
    color: #0F5E53;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* ========== FEATURES ========== */
.features {
    padding: 80px 0;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}
.feature-card {
    text-align: center;
    padding: 32px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: all 0.3s;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.feature-icon {
    width: 70px;
    height: 70px;
    background: #e6f7f3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.feature-icon i {
    font-size: 32px;
    color: #0F5E53;
}
.feature-card h3 {
    margin-bottom: 12px;
    font-size: 18px;
}
.feature-card p {
    color: #64748B;
    font-size: 14px;
    line-height: 1.5;
}

/* ========== HOW IT WORKS ========== */
.how-it-works {
    padding: 80px 0;
    background: #0F5E53;
    color: white;
}
.how-it-works .section-tag {
    background: rgba(255,255,255,0.2);
    color: white;
}
.how-it-works .section-title,
.how-it-works .section-subtitle {
    color: white;
}
.how-it-works .text-gradient {
    color: #C9A03D;
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-top: 48px;
}
.step-card {
    text-align: center;
    padding: 24px;
}
.step-number {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 20px;
}
.step-icon {
    font-size: 48px;
    margin-bottom: 20px;
}
.step-card h3 {
    margin-bottom: 12px;
    font-size: 20px;
}
.step-card p {
    opacity: 0.85;
    font-size: 14px;
    line-height: 1.5;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
    padding: 80px 0;
    background: #f8fafc;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}
.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.testimonial-card:hover {
    transform: translateY(-5px);
}
.testimonial-rating {
    color: #fbbf24;
    margin-bottom: 20px;
}
.testimonial-card p {
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #334155;
}
.testimonial-author {
    display: flex;
    gap: 16px;
    align-items: center;
}
.author-avatar {
    width: 50px;
    height: 50px;
    background: #0F5E53;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
}
.testimonial-author h4 {
    font-size: 16px;
    margin-bottom: 4px;
}
.testimonial-author span {
    font-size: 12px;
    color: #64748B;
}

/* ========== BLOG ========== */
.blog {
    padding: 80px 0;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}
.blog-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: all 0.3s;
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.blog-image {
    background: #e6f7f3;
    padding: 40px;
    text-align: center;
    font-size: 48px;
}
.blog-category {
    display: inline-block;
    background: #e6f7f3;
    color: #0F5E53;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin: 20px 20px 12px;
}
.blog-card h3 {
    font-size: 18px;
    margin: 0 20px 12px;
    line-height: 1.4;
}
.blog-card p {
    color: #64748B;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 20px 20px;
}
.blog-link {
    display: inline-block;
    margin: 0 20px 20px;
    color: #0F5E53;
    text-decoration: none;
    font-weight: 600;
}
.blog-link i {
    transition: transform 0.2s;
}
.blog-link:hover i {
    transform: translateX(4px);
}
.blog-more {
    text-align: center;
    margin-top: 48px;
}

/* ========== FAQ ========== */
.faq {
    padding: 80px 0;
    background: #f8fafc;
}
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
}
.faq-question i {
    transition: transform 0.3s;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
    color: #64748B;
    line-height: 1.6;
}
.faq-item.active .faq-answer {
    padding: 0 24px 20px;
    max-height: 500px;
}

/* ========== CTA ========== */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #0F5E53 0%, #1B4332 100%);
    color: white;
    text-align: center;
}
.cta-wrapper {
    max-width: 600px;
    margin: 0 auto;
}
.cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}
.cta p {
    margin-bottom: 32px;
    opacity: 0.9;
    line-height: 1.6;
}
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.btn-primary-light {
    background: white;
    color: #0F5E53;
    padding: 14px 32px;
    border-radius: 48px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}
.btn-primary-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.btn-outline-light {
    border: 2px solid white;
    color: white;
    padding: 12px 30px;
    border-radius: 48px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}
.btn-outline-light:hover {
    background: white;
    color: #0F5E53;
    transform: translateY(-2px);
}
.cta-contact a {
    color: #C9A03D;
    text-decoration: none;
    font-weight: 600;
}

/* ========== FOOTER ========== */
.footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 60px 0 20px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.footer-brand .logo-icon {
    background: #C9A03D;
}
.footer-brand span {
    font-size: 20px;
    font-weight: 700;
    color: white;
}
.footer p {
    line-height: 1.6;
    font-size: 14px;
}
.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}
.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.2s;
}
.footer-social a:hover {
    background: #0F5E53;
    transform: translateY(-2px);
}
.footer h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 16px;
}
.footer ul {
    list-style: none;
}
.footer ul li {
    margin-bottom: 12px;
}
.footer ul li a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}
.footer ul li a:hover {
    color: #C9A03D;
}
.footer-contact li {
    display: flex;
    gap: 12px;
    align-items: center;
}
.footer-newsletter {
    text-align: center;
    padding: 32px;
    background: rgba(255,255,255,0.05);
    border-radius: 24px;
    margin-bottom: 40px;
}
.footer-newsletter h4 {
    color: white;
    margin-bottom: 12px;
}
.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 400px;
    margin: 20px auto 0;
}
.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 40px;
    background: white;
}
.newsletter-form button {
    background: #0F5E53;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.2s;
}
.newsletter-form button:hover {
    background: #0a4a41;
}
.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
}
.footer-payment {
    margin-top: 16px;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== DASHBOARD MOCKUP ========== */
.dashboard-mockup-elegant {
    position: relative;
}
.monitor-cartoon {
    position: relative;
}
.monitor-head {
    background: #1e293b;
    border-radius: 20px 20px 0 0;
    padding: 12px;
}
.monitor-bezel-elegant {
    background: #0f172a;
    border-radius: 16px;
    padding: 8px;
}
.monitor-screen-elegant {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}
.webcam-elegant {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.webcam-lens {
    width: 8px;
    height: 8px;
    background: #1e293b;
    border-radius: 50%;
}
.webcam-light {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
}
.dashboard-content-elegant {
    padding: 24px;
    background: #f8fafc;
}
.top-bar-elegant {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.date-time {
    font-size: 12px;
    color: #64748B;
}
.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
}
.welcome-section {
    margin-bottom: 20px;
}
.welcome-section h3 {
    font-size: 16px;
    margin-bottom: 4px;
}
.admin-name {
    color: #0F5E53;
}
.welcome-section p {
    font-size: 12px;
    color: #64748B;
}
.stats-grid-elegant {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}
.stat-elegant {
    background: white;
    padding: 12px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.stat-icon-elegant {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.stat-icon-elegant.purple {
    background: #e0e7ff;
    color: #4f46e5;
}
.stat-icon-elegant.orange {
    background: #ffedd5;
    color: #f59e0b;
}
.stat-icon-elegant.cyan {
    background: #cffafe;
    color: #06b6d4;
}
.stat-info-elegant span {
    font-size: 10px;
    color: #64748B;
}
.stat-info-elegant h4 {
    font-size: 14px;
    font-weight: 700;
}
.stat-info-elegant small {
    font-size: 9px;
    color: #10b981;
}
.charts-row-elegant {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}
.chart-elegant {
    background: white;
    padding: 12px;
    border-radius: 12px;
}
.chart-title {
    font-size: 10px;
    color: #64748B;
    margin-bottom: 6px;
}
.chart-value {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}
.chart-progress-elegant {
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 6px;
}
.progress-fill {
    height: 100%;
    border-radius: 3px;
}
.progress-fill.gold {
    background: #F0B90B;
}
.chart-sub {
    font-size: 9px;
    color: #64748B;
}
.activity-list-elegant {
    background: white;
    border-radius: 12px;
    overflow: hidden;
}
.activity-item-elegant {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-bottom: 1px solid #e2e8f0;
}
.activity-badge {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}
.activity-badge.green {
    background: #dcfce7;
    color: #16a34a;
}
.activity-badge.orange {
    background: #ffedd5;
    color: #f97316;
}
.activity-badge.blue {
    background: #dbeafe;
    color: #3b82f6;
}
.activity-text {
    flex: 1;
}
.activity-text strong {
    display: block;
    font-size: 12px;
}
.activity-text span {
    font-size: 10px;
    color: #64748B;
}
.activity-value {
    font-size: 12px;
    font-weight: 600;
}
.monitor-stand-elegant {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.stand-neck {
    width: 30px;
    height: 40px;
    background: #334155;
}
.stand-base-elegant {
    width: 120px;
    height: 8px;
    background: #334155;
    border-radius: 4px;
}
.monitor-shadow {
    position: absolute;
    bottom: -20px;
    left: 10%;
    width: 80%;
    height: 20px;
    background: rgba(0,0,0,0.1);
    filter: blur(10px);
    border-radius: 50%;
}

/* ========== DARK MODE ========== */
.dark-mode {
    background: #0f172a;
    color: #f1f5f9;
}
.dark-mode .top-bar {
    background: #1e293b;
    border-bottom-color: #334155;
}
.dark-mode .top-bar-left span {
    color: #94a3b8;
}
.dark-mode .top-bar-left span i {
    color: #C9A03D;
}
.dark-mode .top-bar-right a {
    color: #C9A03D;
}
.dark-mode .navbar {
    background: #1e293b;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.dark-mode .logo-text {
    color: #f1f5f9;
}
.dark-mode .nav-menu a {
    color: #cbd5e1;
}
.dark-mode .nav-menu a:hover {
    color: #C9A03D;
}
.dark-mode .theme-toggle,
.dark-mode .theme-toggle-small,
.dark-mode .mobile-toggle {
    background: #334155;
    color: #f1f5f9;
}
.dark-mode .btn-demo {
    background: #C9A03D;
    color: #0f172a;
}
.dark-mode .btn-demo:hover {
    background: #b88d2e;
}
.dark-mode .hero {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}
.dark-mode .hero-title {
    color: #f1f5f9;
}
.dark-mode .hero-subtitle {
    color: #94a3b8;
}
.dark-mode .hero-badge {
    background: #334155;
    color: #C9A03D;
}
.dark-mode .stat-number {
    color: #C9A03D;
}
.dark-mode .stat-label {
    color: #94a3b8;
}
.dark-mode .clients {
    background: #1e293b;
    border-color: #334155;
}
.dark-mode .clients-label {
    color: #94a3b8;
}
.dark-mode .clients-logos span {
    color: #cbd5e1;
}
.dark-mode .section-tag {
    background: #334155;
    color: #C9A03D;
}
.dark-mode .section-title {
    color: #f1f5f9;
}
.dark-mode .section-subtitle {
    color: #94a3b8;
}
.dark-mode .text-gradient {
    color: #C9A03D;
}
.dark-mode .about-text {
    color: #94a3b8;
}
.dark-mode .about-feature h4 {
    color: #f1f5f9;
}
.dark-mode .about-feature p {
    color: #94a3b8;
}
.dark-mode .about-feature i {
    color: #C9A03D;
}
.dark-mode .products {
    background: #1e293b;
}
.dark-mode .product-card {
    background: #1e293b;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    border: 1px solid #334155;
}
.dark-mode .product-card h3 {
    color: #f1f5f9;
}
.dark-mode .product-card p {
    color: #94a3b8;
}
.dark-mode .product-icon {
    color: #C9A03D;
}
.dark-mode .product-link {
    color: #C9A03D;
}
.dark-mode .product-badge {
    background: #334155;
    color: #C9A03D;
}
.dark-mode .features {
    background: #0f172a;
}
.dark-mode .feature-card {
    background: #1e293b;
    border: 1px solid #334155;
}
.dark-mode .feature-card h3 {
    color: #f1f5f9;
}
.dark-mode .feature-card p {
    color: #94a3b8;
}
.dark-mode .feature-icon {
    background: #334155;
}
.dark-mode .feature-icon i {
    color: #C9A03D;
}
.dark-mode .how-it-works {
    background: #0F5E53;
}
.dark-mode .step-card h3 {
    color: #f1f5f9;
}
.dark-mode .step-card p {
    color: #cbd5e1;
}
.dark-mode .testimonials {
    background: #1e293b;
}
.dark-mode .testimonial-card {
    background: #1e293b;
    border: 1px solid #334155;
}
.dark-mode .testimonial-card p {
    color: #cbd5e1;
}
.dark-mode .testimonial-author span {
    color: #94a3b8;
}
.dark-mode .blog {
    background: #0f172a;
}
.dark-mode .blog-card {
    background: #1e293b;
    border: 1px solid #334155;
}
.dark-mode .blog-card h3 {
    color: #f1f5f9;
}
.dark-mode .blog-card p {
    color: #94a3b8;
}
.dark-mode .blog-image {
    background: #334155;
}
.dark-mode .blog-category {
    background: #334155;
    color: #C9A03D;
}
.dark-mode .blog-link {
    color: #C9A03D;
}
.dark-mode .faq {
    background: #1e293b;
}
.dark-mode .faq-item {
    background: #1e293b;
    border: 1px solid #334155;
}
.dark-mode .faq-question {
    color: #f1f5f9;
}
.dark-mode .faq-question i {
    color: #C9A03D;
}
.dark-mode .faq-answer {
    color: #94a3b8;
}
.dark-mode .cta {
    background: linear-gradient(135deg, #0F5E53 0%, #0a4a41 100%);
}
.dark-mode .cta h2 {
    color: #f1f5f9;
}
.dark-mode .cta p {
    color: #cbd5e1;
}
.dark-mode .btn-primary-light {
    background: #f1f5f9;
    color: #0F5E53;
}
.dark-mode .btn-outline-light {
    border-color: #f1f5f9;
    color: #f1f5f9;
}
.dark-mode .footer {
    background: #020617;
}
.dark-mode .footer-brand span {
    color: #f1f5f9;
}
.dark-mode .footer h4 {
    color: #f1f5f9;
}
.dark-mode .footer ul li a {
    color: #94a3b8;
}
.dark-mode .footer p {
    color: #94a3b8;
}
.dark-mode .footer-newsletter {
    background: rgba(255,255,255,0.05);
}
.dark-mode .newsletter-form input {
    background: #1e293b;
    color: #f1f5f9;
    border: 1px solid #334155;
}
.dark-mode .newsletter-form button {
    background: #C9A03D;
    color: #0f172a;
}
.dark-mode .footer-copyright {
    color: #64748B;
}

/* Dark Mode - Dashboard Mockup */
.dark-mode .dashboard-content-elegant {
    background: #1e293b;
}
.dark-mode .stat-elegant,
.dark-mode .chart-elegant,
.dark-mode .activity-list-elegant {
    background: #0f172a;
}
.dark-mode .activity-item-elegant {
    background: #0f172a;
    border-bottom-color: #334155;
}
.dark-mode .stat-info-elegant span,
.dark-mode .chart-title,
.dark-mode .activity-text span,
.dark-mode .date-time {
    color: #94a3b8;
}
.dark-mode .stat-info-elegant h4,
.dark-mode .chart-value,
.dark-mode .activity-text strong,
.dark-mode .welcome-section h3 {
    color: #f1f5f9;
}
.dark-mode .welcome-section p {
    color: #94a3b8;
}
.dark-mode .admin-name {
    color: #C9A03D;
}

/* Dark Mode - Logo dengan shadow bulat */
.dark-mode .nav-logo {
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
    transition: filter 0.3s ease;
}

/* Efek hover - shadow lebih terang */
.dark-mode .nav-logo:hover {
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.9));
}


/* Dark Mode - Background gelap untuk kontras logo */
.dark-mode .nav-brand {
    background: rgba(255,255,255,0.05);
    padding: 8px 18px;
    border-radius: 50px;
}

/* Dark Mode - Scrollbar */
.dark-mode ::-webkit-scrollbar-track {
    background: #1e293b;
}
.dark-mode ::-webkit-scrollbar-thumb {
    background: #334155;
}
.dark-mode ::-webkit-scrollbar-thumb:hover {
    background: #C9A03D;
}

/* ========== PRODUCT CONTENT ========== */
.product-content {
    line-height: 1.8;
    color: #444;
}
.product-content h3 {
    margin-top: 25px;
    margin-bottom: 10px;
    color: #0f766e;
}
.product-content ul {
    padding-left: 20px;
}
.product-content li {
    margin-bottom: 8px;
}

/* Dark Mode - Product Content */
.dark-mode .product-content {
    color: #cbd5e1;
}
.dark-mode .product-content h3 {
    color: #C9A03D;
}

/* ========== ANIMATIONS ========== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.6s ease forwards;
}
.delay-1 {
    animation-delay: 0.2s;
}
.delay-2 {
    animation-delay: 0.4s;
}
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 40px;
    }
    .section-title {
        font-size: 32px;
    }
    .hero-grid,
    .about-wrapper {
        gap: 40px;
    }
}
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    .nav-menu {
        display: none;
    }
    .mobile-toggle {
        display: block;
    }
    .mobile-menu.show {
        display: block;
    }
    .hero-grid,
    .about-wrapper {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 32px;
    }
    .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }
    .section-title {
        font-size: 28px;
    }
    .newsletter-form {
        flex-direction: column;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .stats-grid-elegant {
        grid-template-columns: 1fr;
    }
    .charts-row-elegant {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 480px) {
    .top-bar .container {
        flex-direction: column;
        text-align: center;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .clients-wrapper {
        flex-direction: column;
        text-align: center;
    }
/* Dark Mode - Logo agar terlihat di mode gelap */
.dark-mode .nav-logo {
    filter: brightness(0) invert(1) !important;
}

/* Atau jika logo berwarna putih/hitam, beri efek glow */
.dark-mode .nav-logo {
    filter: drop-shadow(0 0 2px rgba(255,255,255,0.5)) !important;
}

/* Alternatif: beri background putih tipis di belakang logo */
.dark-mode .nav-brand {
    background: rgba(255,255,255,0.1);
    padding: 5px 15px;
    border-radius: 40px;
}