<!-- start Simple Custom CSS and JS -->
<style type="text/css">
:root {
    --vox-primary: #0F8C3B;
    --vox-primary-hover: #0c7531;
    --vox-dark: #1F2937;
    --vox-gray-light: #F9FAFB;
    --vox-gray: #6B7280;
    --vox-border: #E5E7EB;
    --vox-white: #FFFFFF;
    --vox-orange: #F97316;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--vox-dark);
    background-color: var(--vox-white);
    line-height: 1.618;
    /* Golden Ratio */
    font-size: 16px;
    padding-top: 70px;
    /* Kompensasi fixed-top navbar */
    margin-block-start: 0;
    /* Reset default margin WordPress */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--vox-dark);
}

/* Typography Helper */
.text-primary-vox {
    color: var(--vox-primary) !important;
}

.bg-light-vox {
    background-color: var(--vox-gray-light);
}

.bg-primary-light-vox {
    background-color: #f2f9f4 !important; /* Turunan warna var(--vox-primary) */
}

.btn-vox-primary {
    background-color: var(--vox-primary);
    color: var(--vox-white);
    border: none;
    padding: 14px 23px;
    /* Golden ratio padding */
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-vox-primary:hover {
    background-color: var(--vox-primary-hover);
    color: var(--vox-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 140, 59, 0.2);
}

.btn-vox-outline {
    border: 2px solid var(--vox-border);
    color: var(--vox-dark);
    padding: 12px 19px;
    /* Golden ratio padding */
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    background: transparent;
    text-decoration: none;
    display: inline-block;
}

.btn-vox-outline:hover {
    border-color: var(--vox-primary);
    color: var(--vox-primary);
    background-color: rgba(15, 140, 59, 0.05);
}



/* Hero Section */
.vox-hero {
    padding: 100px 0 100px;
    background: linear-gradient(145deg, #ffffff 0%, #f0f7f2 100%);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--vox-border);
}

.vox-hero-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(15, 140, 59, 0.1);
    color: var(--vox-primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 26px;
}

.vox-hero-badge i {
    margin-right: 8px;
    font-size: 16px;
}

.vox-hero h1 {
    font-size: 2.94rem;
    /* Golden Ratio to desc (1.82 * 1.618) */
    line-height: 1.25;
    /* Adjusted for larger text, related to GR */
    margin-bottom: 26px;
    letter-spacing: -1px;
}

.vox-hero p {
    font-size: 1.125rem;
    line-height: 1.618;
    /* Golden Ratio */
    color: var(--vox-gray);
    margin-bottom: 42px;
}

.vox-hero-dashboard {
    background: var(--vox-white);
    border-radius: 12px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
    padding: 42px;
    position: relative;
    border: 1px solid var(--vox-border);
    z-index: 2;
}

.vox-status-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--vox-border);
    margin-bottom: 26px;
}

.vox-status-indicator {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 14px;
}

.vox-status-dot {
    width: 10px;
    height: 10px;
    background-color: var(--vox-primary);
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 12px rgba(15, 140, 59, 0.6);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(15, 140, 59, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(15, 140, 59, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(15, 140, 59, 0);
    }
}

.vox-dashboard-metric {
    background-color: var(--vox-gray-light);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
    border: 1px solid var(--vox-border);
}

.vox-metric-label {
    font-size: 12px;
    color: var(--vox-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vox-metric-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--vox-dark);
    margin-top: 4px;
}

/* Common Section Styles */
.vox-section {
    padding: 110px 0;
}

.vox-section-header {
    text-align: center;
    margin-bottom: 68px;
    max-width: 61.8%;
    /* Golden Ratio width for readability */
    margin-left: auto;
    margin-right: auto;
}

.vox-section-label {
    color: var(--vox-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    margin-bottom: 16px;
    display: block;
}

.vox-section-title {
    font-size: 1.82rem;
    /* Golden Ratio to desc */
    margin-bottom: 26px;
    line-height: 1.4;
    letter-spacing: -0.5px;
}

.vox-section-desc {
    color: var(--vox-gray);
    font-size: 1.125rem;
    line-height: 1.618;
    /* Golden Ratio */
}

/* Cards */
.vox-card {
    background: var(--vox-white);
    border-radius: 12px;
    padding: 42px 26px;
    height: 100%;
    border: 1px solid var(--vox-border);
    transition: all 0.3s ease;
    color: var(--vox-dark);
}

.vox-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
    border-color: var(--vox-primary);
    transform: translateY(-5px);
}

.vox-card-icon {
    width: 56px;
    height: 56px;
    background-color: rgba(15, 140, 59, 0.08);
    color: var(--vox-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 24px;
}

.vox-card-title {
    font-size: 1.618rem;
    /* Golden ratio to text */
    margin-bottom: 16px;
    line-height: 1.4;
}

.vox-card-text {
    color: var(--vox-gray);
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.618;
    /* Golden Ratio */
}

/* Use Cases */
.vox-usecase-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 42px;
}

.vox-usecase-icon {
    color: var(--vox-primary);
    font-size: 24px;
    margin-right: 20px;
    background: var(--vox-white);
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
    border: 1px solid var(--vox-border);
}

/* Partner Slider Section */
.vox-partner-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    background: var(--vox-white);
}

.vox-partner-slider-container::before,
.vox-partner-slider-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 12vw;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.vox-partner-slider-container::before {
    left: 0;
    background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

.vox-partner-slider-container::after {
    right: 0;
    background: linear-gradient(to left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

.vox-partner-slider {
    display: flex;
    width: calc(220px * 12);
    animation: scroll-partners 35s linear infinite;
}

.vox-partner-slider:hover {
    animation-play-state: paused;
}

.vox-partner-logo {
    width: 220px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 20px;
    filter: grayscale(100%) opacity(0.5);
    transition: all 0.4s ease;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--vox-dark);
}

.vox-partner-logo:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
    color: var(--vox-primary);
}

@keyframes scroll-partners {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-220px * 6)); }
}

/* Our Client Section - Slider 2 Baris */
.vox-client-logo-item {
    width: 220px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 0 15px;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
    font-weight: 700;
    font-size: 1.05rem;
    color: #4B5563;
}

.vox-client-logo-item i {
    font-size: 26px;
    color: #6B7280;
    transition: all 0.3s ease;
}

.vox-client-logo-item span {
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vox-client-logo-item:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
    color: var(--vox-primary);
}

.vox-client-logo-item:hover i {
    color: var(--vox-primary);
}

/* FAQ Accordion */
.vox-accordion .accordion-item {
    border: 1px solid var(--vox-border);
    border-radius: 8px !important;
    margin-bottom: 16px;
    background-color: var(--vox-white);
    overflow: hidden;
}

.vox-accordion .accordion-button {
    font-weight: 600;
    color: var(--vox-dark);
    padding: 20px;
    background-color: transparent;
    box-shadow: none;
    font-size: 1.05rem;
}

.vox-accordion .accordion-button:not(.collapsed) {
    color: var(--vox-primary);
    background-color: rgba(15, 140, 59, 0.03);
    border-bottom: 1px solid var(--vox-border);
}

.vox-accordion .accordion-button::after {
    background-size: 1rem;
}

.vox-accordion .accordion-body {
    padding: 26px 20px;
    color: var(--vox-gray);
    line-height: 1.618;
    /* Golden Ratio */
}

/* Call To Action */
.vox-cta-section {
    background-color: var(--vox-primary);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.vox-cta-content {
    position: relative;
    z-index: 2;
    max-width: 61.8%;
    /* Golden Ratio container */
    margin: 0 auto;
}

.vox-cta-title {
    color: var(--vox-white);
    font-size: 1.82rem;
    /* Golden Ratio to desc */
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.vox-cta-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 40px;
}

.btn-vox-white {
    background-color: var(--vox-white);
    color: var(--vox-primary);
    padding: 16px 26px;
    /* Golden Ratio padding */
    font-weight: 700;
    border-radius: 6px;
    font-size: 1.125rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
}

.btn-vox-white:hover {
    background-color: var(--vox-gray-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    color: var(--vox-primary-hover);
}



/* Responsive */
@media (max-width: 991px) {
    .vox-hero h1 {
        font-size: 2.45rem;
        /* Scaled Golden Ratio */
        line-height: 1.25;
    }

    .vox-section {
        padding: 70px 0;
    }

    .vox-stats-container {
        padding: 30px 0;
    }

    .vox-stat-item {
        margin-bottom: 20px;
    }


}

@media (max-width: 768px) {
    .vox-hero {
        padding: 100px 0 50px;
        text-align: center;
    }

    .vox-hero h1 {
        font-size: 1.82rem;
        line-height: 1.25;
    }

    .vox-hero p {
        margin-left: auto;
        margin-right: auto;
        font-size: 1rem;
        line-height: 1.618;
    }

    .vox-hero-dashboard {
        margin-top: 40px;
        padding: 20px;
    }

    .vox-section {
        padding: 50px 0;
    }

    .vox-section-title {
        font-size: 1.618rem;
        /* Golden ratio to text on mobile */
        margin-bottom: 16px;
    }

    .vox-section-header {
        max-width: 100%;
        margin-bottom: 42px;
    }

    .vox-card {
        padding: 42px 26px;
        /* Golden Ratio Card Padding maintained on mobile */
    }

    .vox-cta-section {
        padding: 60px 0;
    }

    .vox-cta-title {
        font-size: 1.618rem;
        /* Golden ratio to text on mobile */
    }

    .vox-cta-desc {
        font-size: 1rem;
        line-height: 1.618;
        margin-bottom: 42px;
        /* Golden ratio spacing */
    }

    .vox-cta-content {
        max-width: 100%;
    }



    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* Header */
/* Navbar */
.vox-navbar {
    box-shadow: 0 1px 15px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-weight: 800;
    font-size: 24px;
    color: var(--vox-primary);
    letter-spacing: -0.5px;
}

.navbar-brand span {
    color: var(--vox-dark);
}

.nav-link {
    font-weight: 500;
    color: var(--vox-dark);
    margin: 0 12px;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
    color: var(--vox-primary);
}

/* Mega Menu */
.vox-mega-menu {
    border-radius: 0 0 12px 12px !important;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    transition-delay: 0.25s;
    /* Delay sebelum mega menu menghilang */
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
}

@media (min-width: 992px) {
    .nav-item.dropdown:hover .vox-mega-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        display: block;
        transition-delay: 0s;
        /* Muncul seketika saat di-hover */
    }
}

.vox-mega-menu-title {
    font-size: 0.875rem;
    /* ~14px */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vox-mega-menu-link {
    display: block;
    padding: 16px;
    /* Golden Ratio padding */
    border-radius: 8px;
    color: var(--vox-dark);
    text-decoration: none;
    transition: all 0.2s ease;
    background-color: transparent;
}

.vox-mega-menu-link:hover {
    background-color: rgba(15, 140, 59, 0.05);
    color: var(--vox-primary);
    transform: translateX(3px);
}

.vox-mega-menu-link strong {
    display: block;
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 6px;
}

.vox-mega-menu-link p {
    font-size: 0.95rem;
    /* ~15px */
    line-height: 1.618;
    /* Golden Ratio line height */
    margin-bottom: 0;
    color: #6c757d;
}

.vox-mega-menu-icon {
    font-size: 1.618rem;
    /* Golden Ratio icon size */
    line-height: 1;
    margin-top: 2px;
    /* Top align adjustment */
    margin-right: 16px;
    /* Golden Ratio spacing */
    width: 32px;
    /* Keep icons aligned */
    text-align: center;
    flex-shrink: 0;
    /* Prevent icon shrinking */
}

.vox-mega-menu-uc-link:hover .vox-uc-card {
    border-color: var(--vox-primary) !important;
    box-shadow: 0 4px 12px rgba(15, 140, 59, 0.08);
    transform: translateY(-2px);
}

.vox-uc-card {
    padding: 26px !important;
    /* 16px * 1.618 ≈ 26px */
    transition: all 0.3s ease;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid var(--vox-border);
}

.vox-uc-card strong {
    font-size: 1rem;
    line-height: 1.4;
    display: block;
    color: #212529;
    margin-top: 5px;
    /* Alignment with icon */
}

.vox-uc-card p {
    font-size: 0.95rem;
    line-height: 1.618;
    /* Golden Ratio */
    margin-bottom: 0;
    color: #6c757d;
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--vox-white);
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-top: 15px;
        border: 1px solid var(--vox-border);
    }
}

/* Footer */
.vox-footer {
    background-color: var(--vox-dark);
    color: var(--vox-white);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.vox-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.vox-footer-brand {
    font-size: 28px;
    font-weight: 800;
    color: var(--vox-white);
    margin-bottom: 24px;
    display: inline-block;
    text-decoration: none;
}

.vox-footer-desc {
    color: #9CA3AF;
    font-size: 1rem;
    line-height: 1.618;
    /* Golden Ratio */
    margin-bottom: 32px;
}

.vox-footer h5 {
    color: var(--vox-white);
    margin-bottom: 24px;
    font-size: 1.125rem;
    letter-spacing: 0.5px;
}

.vox-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vox-footer-links li {
    margin-bottom: 12px;
}

.vox-footer-links a {
    color: #9CA3AF;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.vox-footer-links a:hover {
    color: var(--vox-primary);
    transform: translateX(5px);
}

.vox-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    color: #9CA3AF;
}

.vox-contact-item i {
    color: var(--vox-primary);
    font-size: 18px;
    margin-right: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.vox-contact-item span {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.618;
}

.vox-contact-item a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.vox-contact-item a:hover {
    color: var(--vox-white);
}

.vox-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    margin-top: 60px;
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 991px) {
    .vox-footer {
        padding: 60px 0 30px;
    }

    .vox-footer-brand {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .vox-footer {
        padding: 50px 0 20px;
    }

    .vox-footer-desc {
        font-size: 0.95rem;
    }

    .vox-contact-item {
        margin-bottom: 16px;
    }

    .vox-footer-bottom {
        padding-top: 20px;
        margin-top: 40px;
    }
}

/* Managed Internet Access Specific Styles */
.vox-mia-hero {
    padding: 120px 0 100px;
    background: linear-gradient(135deg, #ffffff 0%, #f4fbf6 100%);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--vox-border);
}

.vox-mia-hero h1 {
    font-size: 2.94rem;
    line-height: 1.25;
    margin-bottom: 26px;
    letter-spacing: -1px;
}

.vox-mia-hero p {
    font-size: 1.125rem;
    line-height: 1.618;
    color: var(--vox-gray);
    margin-bottom: 42px;
}

.hero-visual-card {
    background: var(--vox-white);
    border-radius: 12px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.06);
    padding: 32px;
    border: 1px solid var(--vox-border);
    position: relative;
    z-index: 2;
}

/* Assurance Strip */
.vox-assurance-strip {
    background-color: var(--vox-dark);
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.assurance-item {
    display: flex;
    align-items: center;
    color: var(--vox-white);
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
}

.assurance-item i {
    color: var(--vox-primary);
    font-size: 18px;
    margin-right: 12px;
}

/* Feature Cards */
.vox-feature-card {
    background: var(--vox-white);
    border-radius: 12px;
    padding: 42px 32px;
    height: 100%;
    border: 1px solid var(--vox-border);
    transition: all 0.3s ease;
}

.vox-feature-card:hover {
    box-shadow: 0 15px 30px rgba(5, 5, 5, 0.06);
    border-color: var(--vox-primary);
    transform: translateY(-5px);
}

.feature-icon-wrapper {
    width: 56px;
    height: 56px;
    background-color: rgba(3, 147, 62, 0.08);
    color: var(--vox-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 24px;
}

.feature-title {
    font-size: 1.3rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.feature-desc {
    color: var(--vox-gray);
    font-size: 1rem;
    margin-bottom: 0;
}

/* Problem Section Layout */
.problem-list-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 26px;
}

.problem-icon {
    color: var(--vox-orange);
    font-size: 20px;
    margin-right: 16px;
    margin-top: 2px;
}

.solution-list-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 26px;
    padding: 24px;
    background: var(--vox-white);
    border: 1px solid var(--vox-border);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.solution-icon {
    color: var(--vox-primary);
    font-size: 24px;
    margin-right: 20px;
    background: rgba(3, 147, 62, 0.1);
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Use Case Cards */
.use-case-card {
    border: 1px solid var(--vox-border);
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    background: var(--vox-white);
}

.use-case-img-placeholder {
    height: 160px;
    background: linear-gradient(135deg, var(--vox-gray-light) 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vox-gray);
}

.use-case-body {
    padding: 26px;
}

/* Stats Section */
.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--vox-primary);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

/* Specific Responsive Styles for MIA Page */
@media (max-width: 991px) {
    .vox-mia-hero h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .vox-mia-hero {
        padding: 100px 0 60px;
        text-align: center;
    }

    .hero-visual-card {
        margin-top: 40px;
    }

    .assurance-item {
        margin-bottom: 16px;
        justify-content: center;
    }
}</style>
<!-- end Simple Custom CSS and JS -->
