        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(15px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }

            50% {
                opacity: 0.5;
                transform: scale(1.3);
            }
        }

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

        body {
            font-family: 'Inter', sans-serif;
            background: var(--bg-grad);
            color: var(--text-main);
            font-size: 13px;
            overflow-x: hidden;
            min-height: 100vh;
            padding-bottom: 0;
        }

        /* Container untuk menjaga kerapihan di layar lebar */
        .main-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        /* Ornamen Latar Belakang */
        body::before,
        body::after {
            content: '';
            position: fixed;
            border-radius: 50%;
            z-index: -1;
            opacity: 0.5;
            filter: blur(60px);
        }

        body::before {
            width: 300px;
            height: 300px;
            background: #f6e0b3;
            top: -100px;
            right: -100px;
        }

        body::after {
            width: 200px;
            height: 200px;
            background: #c3e2cc;
            bottom: 100px;
            left: -100px;
        }

        .grad-text {
            background: var(--gold-grad);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 600;
        }

        .section-label {
            font-size: 10px;
            letter-spacing: 4px;
            color: var(--green-dark);
            text-transform: uppercase;
            text-align: center;
            margin: 30px 0 15px;
            font-weight: 500;
        }

        /* --- ANNOUNCEMENT BAR --- */
        .announcement-bar {
            background: var(--gold-grad);
            color: #fff;
            text-align: center;
            padding: 8px 15px;
            margin: 15px 15px 0;
            border-radius: 12px;
            font-size: 10px;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            animation: fadeUp 0.5s ease-out;
        }

        .announcement-bar .ann-icon {
            font-size: 14px;
        }

        .announcement-bar .ann-link {
            color: #fff;
            text-decoration: underline;
            font-weight: 600;
            margin-left: 4px;
        }

        /* --- HEADER & DESKTOP NAV --- */
        .top-header {
            position: sticky;
            top: 15px;
            background: var(--glass);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            padding: 12px 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-radius: 50px;
            border: 1px solid var(--glass-border);
            box-shadow: var(--shadow-soft);
            margin: 0 15px;
            z-index: 2000;
            transition: all 0.3s;
        }

        .logo {
            letter-spacing: 5px;
            font-weight: 600;
            color: var(--green-dark);
            font-size: 14px;
            text-transform: uppercase;
        }

        .logo-wrap {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            letter-spacing: normal;
        }

        .logo-img {
            width: 42px;
            height: 42px;
            border-radius: 50%;
        }

        .logo-text {
            letter-spacing: 3px;
            font-size: 12px;
            font-weight: 800;
            color: #9a6f10;
            background: none;
            -webkit-text-fill-color: initial;
            -webkit-text-stroke: 0.7px rgba(72, 50, 4, 0.68);
            text-shadow: 0 0 1px rgba(72, 50, 4, 0.38), 0 1px 0 rgba(255, 255, 255, 0.35);
        }

        [data-theme="dark"] .logo-text {
            color: #f4cd63;
            -webkit-text-stroke: 0.6px rgba(36, 28, 4, 0.72);
            text-shadow: 0 0 2px rgba(244, 205, 99, 0.25);
        }

        .logo span {
            background: var(--gold-grad);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Bottom Navbar (Mobile) */
        .nav-bar {
            position: fixed;
            bottom: 15px;
            left: 15px;
            right: 15px;
            background: rgba(6, 78, 59, 0.85);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            display: flex;
            justify-content: space-around;
            padding: 15px;
            border-radius: 50px;
            z-index: 2000;
        }

        .nav-bar a {
            text-decoration: none;
            color: rgba(255, 255, 255, 0.6);
            font-size: 10px;
            font-weight: 500;
            text-transform: uppercase;
        }

        .nav-bar a.active {
            color: #f6e0b3;
            font-weight: 600;
        }

        /* Menu yang hanya muncul di Desktop */
        .desktop-nav {
            display: none;
            /* Sembunyi secara default (mobile) */
            gap: 30px;
        }

        .desktop-nav a {
            text-decoration: none;
            color: var(--text-main);
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: 0.3s;
            position: relative;
        }

        .desktop-nav a:hover,
        .desktop-nav a.active {
            color: var(--gold-dark);
        }

        .desktop-nav a.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--gold-grad);
            border-radius: 2px;
        }

        /* --- PROMO SLIDER --- */
        .slider-wrapper {
            padding: 20px 15px 10px;
        }

        .promo-slider {
            width: 100%;
            height: 160px;
            background: var(--green-grad);
            overflow: hidden;
            position: relative;
            border-radius: 25px;
            box-shadow: 0 10px 25px rgba(6, 78, 59, 0.3);
            border: 2px solid rgba(255, 255, 255, 0.1);
        }

        .slides {
            display: flex;
            width: 300%;
            height: 100%;
            animation: slideMove 12s infinite ease-in-out;
        }

        .slide {
            width: 300%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: #fff;
            text-align: center;
            background-size: cover;
            background-position: center;
        }

        .slide-overlay {
            padding: 30px;
        }

        .slide h2 {
            font-weight: 600;
            font-size: 1.2rem;
            letter-spacing: 4px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .slide p {
            font-size: 10px;
            color: #f6e0b3;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-top: 5px;
        }

        @keyframes slideMove {

            0%,
            30% {
                transform: translateX(0);
            }

            33%,
            63% {
                transform: translateX(-33.33%);
            }

            66%,
            96% {
                transform: translateX(-66.66%);
            }

            100% {
                transform: translateX(0);
            }
        }

        /* --- LIVE SCHEDULE --- */
        .live-schedule {
            display: grid;
            grid-template-columns: 1fr;
            gap: 10px;
            padding: 0 20px 20px;
            animation: fadeUp 0.7s ease-out backwards;
            animation-delay: 0.3s;
        }

        .live-card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 14px;
            padding: 14px;
            display: flex;
            align-items: center;
            gap: 12px;
            box-shadow: var(--shadow-neumorph);
            transition: all 0.3s;
        }

        .live-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(31, 38, 135, 0.1);
        }

        .live-card.event-live {
            border-color: rgba(239, 68, 68, 0.4);
        }

        .live-time {
            font-size: 10px;
            font-weight: 600;
            color: var(--green-dark);
            display: flex;
            align-items: center;
            gap: 6px;
            min-width: 90px;
        }

        .live-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #ef4444;
            animation: pulse 1.5s infinite;
        }

        .live-info h4 {
            font-size: 11px;
            color: var(--green-dark);
        }

        .live-info p {
            font-size: 9px;
            color: var(--text-muted);
        }

        /* --- SECTIONS --- */
        .mgmt-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            padding: 20px;
        }

        .mgmt-card {
            background: var(--glass);
            padding: 20px 10px;
            border-radius: 20px;
            text-align: center;
            box-shadow: var(--shadow-soft);
        }

        .mgmt-avatar-ring {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin: 0 auto 10px;
            padding: 3px;
            background: linear-gradient(135deg, #d4af37, #fff, #11694e);
        }

        .mgmt-avatar {
            width: 100%;
            height: 100%;
            background: #eee;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }

        .mgmt-card h5 {
            font-weight: 600;
            font-size: 11px;
            color: var(--green-dark);
            text-transform: uppercase;
        }

        .mgmt-card p {
            font-size: 9px;
            color: var(--gold-dark);
            font-weight: 500;
        }

        .stats-bar {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            padding: 10px 20px;
        }

        .stat-card {
            background: var(--card-bg);
            padding: 20px 10px;
            border-radius: 20px;
            text-align: center;
            box-shadow: var(--shadow-neumorph);
        }

        .stat-card span {
            display: block;
            font-size: 18px;
            font-weight: 600;
            color: var(--green-dark);
        }

        .stat-card label {
            font-size: 9px;
            color: #888;
            text-transform: uppercase;
            font-weight: 500;
        }

        /* --- GENRE PHONE SLIDER --- */
        .genre-section {
            padding: 10px 0 30px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 25px;
            padding: 0 20px;
        }

        .section-header .eyebrow {
            font-size: 9px;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--gold-dark);
            font-weight: 600;
            margin-bottom: 6px;
        }

        .section-header .section-title {
            font-size: 1.3rem;
            color: var(--green-dark);
            margin-bottom: 6px;
        }

        .section-header .subtext {
            font-size: 11px;
            color: var(--text-muted);
            line-height: 1.4;
        }

        .expertise-slider-wrap {
            width: 100%;
            overflow: hidden;
            position: relative;
            padding: 10px 0;
        }

        .expertise-track {
            display: flex;
            gap: 18px;
            width: max-content;
            animation: genreRoll 25s linear infinite;
            padding: 10px 0;
        }

        .expertise-track:hover {
            animation-play-state: paused;
        }

        .expertise-phone {
            width: 150px;
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .expertise-phone-frame {
            width: 130px;
            padding: 8px 6px 6px;
            border-radius: 22px;
            background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
            border: 2px solid #333;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
            position: relative;
        }

        .expertise-phone-frame::before {
            content: '';
            position: absolute;
            top: 3px;
            left: 50%;
            transform: translateX(-50%);
            width: 30px;
            height: 4px;
            border-radius: 4px;
            background: #444;
        }

        [data-theme="dark"] .expertise-phone-frame {
            background: linear-gradient(145deg, #0d0d0d, #1a1a1a);
            border-color: #444;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
        }

        [data-theme="dark"] .expertise-phone-frame::before {
            background: #555;
        }

        .expertise-phone-screen {
            background: var(--card-bg);
            border-radius: 16px;
            padding: 18px 10px 14px;
            text-align: center;
            min-height: 140px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .expertise-phone:hover .expertise-phone-screen {
            transform: translateY(-4px);
            box-shadow: 0 6px 20px rgba(31, 38, 135, 0.15);
        }

        .ep-genre-icon {
            font-size: 28px;
            display: block;
            margin-bottom: 8px;
        }

        .ep-genre-name {
            font-size: 9px;
            font-weight: 600;
            color: var(--green-dark);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 5px;
        }

        .ep-genre-desc {
            font-size: 7px;
            color: var(--text-muted);
            line-height: 1.3;
            margin-bottom: 6px;
        }

        .ep-genre-count {
            font-size: 7px;
            color: var(--gold-dark);
            font-weight: 500;
            background: rgba(212, 175, 55, 0.12);
            padding: 2px 8px;
            border-radius: 8px;
        }

        @keyframes genreRoll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        /* Blok konten di dalam main-container (selaras kartu 95%) */
        .page-block {
            width: 95%;
            max-width: 100%;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 28px;
            clear: both;
        }

        .page-block .section-header {
            text-align: center;
            margin-bottom: 18px;
            padding: 0 4px;
        }

        .our-expertise-block {
            animation: fadeUp 0.7s ease-out backwards;
        }

        .grid-service {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            padding: 0;
        }

        .service-mini {
            background: var(--glass);
            padding: 18px 5px;
            text-align: center;
            border-radius: 15px;
            box-shadow: var(--shadow-soft);
            border: 1px solid var(--glass-border);
        }

        .service-mini i {
            background: var(--gold-grad);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-size: 18px;
            display: block;
            font-style: normal;
            font-weight: 600;
        }

        /* --- TOP PERFORMANCE --- */
        .top-performance-card {
            background: var(--card-bg);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 22px 16px 18px;
            box-shadow: 0 8px 32px rgba(31, 38, 135, 0.08);
        }

        .rank-podium {
            display: flex;
            align-items: flex-end;
            justify-content: center;
            gap: 10px;
            margin-bottom: 20px;
            padding: 0 4px;
        }

        .podium-item {
            flex: 1;
            max-width: 110px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
        }

        .podium-rank-1 {
            order: 2;
        }

        .podium-rank-2 {
            order: 1;
        }

        .podium-rank-3 {
            order: 3;
        }

        .podium-medal {
            font-size: 11px;
            font-weight: 700;
            color: var(--gold-dark);
            margin-bottom: 8px;
            min-height: 18px;
        }

        .podium-rank-1 .podium-medal {
            font-size: 18px;
            color: #d4af37;
        }

        .podium-avatar,
        .rank-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 600;
            font-size: 13px;
            border: 3px solid #fff;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
        }

        .podium-rank-1 .podium-avatar {
            width: 62px;
            height: 62px;
            font-size: 15px;
            border-color: rgba(212, 175, 55, 0.45);
        }

        .avatar-tone-gold {
            background: linear-gradient(135deg, #f6e0b3, #d4af37);
        }

        .avatar-tone-green {
            background: linear-gradient(135deg, #c3e2cc, #11694e);
        }

        .avatar-tone-amber {
            background: linear-gradient(135deg, #f6e0b3, #aa8a2e);
        }

        .avatar-tone-violet {
            background: linear-gradient(135deg, #e8d5f5, #8b5cf6);
        }

        .avatar-tone-blue {
            background: linear-gradient(135deg, #dbeafe, #3b82f6);
        }

        .avatar-tone-pink {
            background: linear-gradient(135deg, #fce7f3, #ec4899);
        }

        .avatar-tone-mint {
            background: linear-gradient(135deg, #d1fae5, #10b981);
        }

        .avatar-tone-sun {
            background: linear-gradient(135deg, #fef3c7, #f59e0b);
        }

        .avatar-tone-rose {
            background: linear-gradient(135deg, #fee2e2, #ef4444);
        }

        .avatar-tone-indigo {
            background: linear-gradient(135deg, #e0e7ff, #6366f1);
        }

        .podium-name {
            font-size: 11px;
            font-weight: 600;
            color: var(--green-dark);
            margin: 10px 0 4px;
        }

        .podium-score {
            font-size: 10px;
            font-weight: 600;
            color: var(--gold-dark);
            display: flex;
            align-items: center;
            gap: 4px;
            margin: 0;
        }

        .podium-bar {
            width: 100%;
            margin-top: 12px;
            border-radius: 10px 10px 4px 4px;
            background: var(--green-grad);
            opacity: 0.85;
        }

        .podium-rank-1 .podium-bar {
            height: 72px;
            background: var(--gold-grad);
        }

        .podium-rank-2 .podium-bar {
            height: 52px;
        }

        .podium-rank-3 .podium-bar {
            height: 40px;
            opacity: 0.65;
        }

        .rank-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
            border-top: 1px dashed var(--glass-border);
            padding-top: 16px;
        }

        .rank-row {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 12px;
            background: rgba(255, 255, 255, 0.55);
            border: 1px solid var(--glass-border);
            border-radius: 14px;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .rank-row:hover {
            transform: translateX(4px);
            box-shadow: 0 4px 12px rgba(31, 38, 135, 0.08);
        }

        .rank-num {
            width: 26px;
            font-size: 12px;
            font-weight: 700;
            color: var(--green-dark);
            text-align: center;
            flex-shrink: 0;
        }

        .rank-row .rank-avatar {
            width: 38px;
            height: 38px;
            font-size: 11px;
            flex-shrink: 0;
        }

        .rank-info {
            flex: 1;
            min-width: 0;
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .rank-name {
            font-size: 12px;
            font-weight: 600;
            color: var(--green-dark);
        }

        .rank-label {
            font-size: 9px;
            color: var(--text-muted);
        }

        .rank-score {
            font-size: 11px;
            font-weight: 600;
            color: var(--gold-dark);
            display: flex;
            align-items: center;
            gap: 4px;
            flex-shrink: 0;
        }

        .top-performance-link {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            margin-top: 16px;
            padding: 12px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--green-dark);
            text-decoration: none;
            border-radius: 12px;
            background: rgba(6, 78, 59, 0.06);
            transition: background 0.2s, color 0.2s;
        }

        .top-performance-link:hover {
            background: var(--green-grad);
            color: #fff;
        }

        /* --- LIVE NETWORK --- */
        .live-network .top-performance-card,
        .live-network .map-box {
            background: var(--card-bg);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 0;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(31, 38, 135, 0.08);
        }

        .live-network .map-box #map {
            border-radius: 20px;
            border: none;
        }

        .map-box {
            padding: 0;
        }

        #map {
            width: 100%;
            height: 260px;
            min-height: 220px;
            border-radius: 25px;
            border: 2px solid #fff;
            box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
            z-index: 1;
            background: #e8e8e8;
        }

        #map .leaflet-container {
            height: 100%;
            width: 100%;
            border-radius: 23px;
            font-family: 'Inter', sans-serif;
        }

        .dot-marker {
            background: transparent;
            border: none;
        }

        /* --- BONUS SIMULATION RESULT --- */
        .sim-result-wrap {
            margin-top: 6px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            text-align: left;
        }

        .sim-summary {
            padding: 14px;
            border-radius: 14px;
            border: 1px solid #d8dfdd;
            background: #f2f4f2;
            text-align: center;
        }

        .sim-summary-title {
            font-size: 10px;
            color: #8b8f8f;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 6px;
        }

        .sim-summary-total {
            font-size: 28px;
            line-height: 1.1;
            font-weight: 700;
            color: #0b5b47;
            margin-bottom: 6px;
        }

        .sim-summary-note {
            font-size: 11px;
            color: #9e7b1b;
            font-weight: 600;
        }

        .sim-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }

        .sim-card {
            /* border: 1px solid #d8dfdd; */
            border-radius: 12px;
            padding: 10px;
            /* background: #f8f9f8; */
        }

        .sim-card-label {
            font-size: 9px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #8b8f8f;
            margin-bottom: 4px;
        }

        .sim-card-value {
            font-size: 15px;
            font-weight: 700;
            color: #0b5b47;
            margin-bottom: 2px;
        }

        .sim-card-sub {
            font-size: 10px;
            color: #7a7f7e;
        }

        .sim-breakdown {
            /* border: 1px solid #d8dfdd; */
            border-radius: 12px;
            padding: 10px 12px;
            background: #f8f9f8;
        }

        .sim-breakdown-title {
            font-size: 10px;
            color: #8b8f8f;
            margin-bottom: 8px;
        }

        .sim-break-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 11px;
            padding: 5px 0;
            border-bottom: 1px dashed #cfd7d4;
            color: #0b5b47;
        }

        .sim-break-row:last-child {
            border-bottom: none;
        }

        .sim-break-row-active {
            margin-top: 3px;
            padding-top: 8px;
            color: #0b5b47;
            font-weight: 600;
        }

        .sim-hint {
            font-size: 10px;
            color: #7a7f7e;
            line-height: 1.5;
            text-align: center;
            padding: 6px 4px 0;
        }

        /* --- FOOTER --- */
        .site-footer {
            background: var(--footer-bg);
            color: var(--hero-text);
            padding: 50px 20px 20px;
            margin-top: 40px;
            border-radius: 30px 30px 0 0;
        }

        .footer-grid {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            scrollbar-width: none;
            padding-bottom: 10px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-grid::-webkit-scrollbar {
            display: none;
        }

        .footer-col {
            min-width: 160px;
            flex-shrink: 0;
        }

        .footer-logo {
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 3px;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
        }

        .footer-logo .fl-icon {
            width: 28px;
            height: 28px;
            border-radius: 8px;
            background: var(--gold-grad);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            font-size: 14px;
        }

        .footer-tagline {
            font-size: 11px;
            line-height: 1.6;
            color: var(--hero-sub);
            margin-bottom: 16px;
        }

        .footer-social {
            display: flex;
            gap: 10px;
        }

        .footer-social a {
            width: 34px;
            height: 34px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--hero-text);
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s;
        }

        .footer-social a:hover {
            background: var(--gold-grad);
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(212, 175, 55, 0.35);
        }

        .footer-col h4 {
            font-size: 10px;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 14px;
            color: var(--hero-sub);
        }

        .footer-col a {
            display: block;
            color: var(--hero-sub);
            text-decoration: none;
            font-size: 11px;
            padding: 5px 0;
            transition: all 0.3s;
        }

        .footer-col a:hover {
            color: var(--hero-sub);
            padding-left: 6px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            margin-top: 35px;
            padding-top: 18px;
            text-align: center;
        }

        .footer-bottom p {
            font-size: 10px;
            color: rgba(255, 255, 255, 0.5);
        }

        .footer-bottom .green-text {
            color: var(--hero-sub);
            font-weight: 600;
        }

        /* --- RESPONSIVE ADJUSTMENTS --- */
        @media (min-width: 768px) {
            .desktop-nav {
                display: flex;
            }

            .nav-bar {
                display: none;
            }

            .top-header {
                margin: 20px auto;
                padding: 15px 40px;
            }

            /* Penyesuaian Grid di Desktop agar tidak terlalu sempit */
            .mgmt-container {
                grid-template-columns: repeat(3, 1fr);
                max-width: 900px;
                margin: 0 auto;
            }

            .grid-service {
                grid-template-columns: repeat(8, 1fr);
            }

            .rank-podium {
                gap: 18px;
                margin-bottom: 24px;
            }

            .podium-item {
                max-width: 140px;
            }

            .podium-rank-1 .podium-avatar {
                width: 72px;
                height: 72px;
            }

            .grid-service {
                gap: 12px;
            }

            .promo-slider {
                height: 300px;
            }

            .slide h2 {
                font-size: 2.5rem;
            }

            .slide p {
                font-size: 14px;
            }

            .expertise-phone {
                width: 170px;
            }

            .expertise-phone-frame {
                width: 150px;
            }

            .expertise-phone-screen {
                min-height: 160px;
                padding: 22px 12px 16px;
            }

            .ep-genre-icon {
                font-size: 32px;
            }

            .ep-genre-name {
                font-size: 10px;
            }

            .ep-genre-desc {
                font-size: 8px;
            }

            .ep-genre-count {
                font-size: 8px;
            }

            .footer-grid {
                grid-template-columns: 2fr 1fr 1fr 1fr;
            }
        }
