/* ===== SCROLL REVEAL ===== */
@keyframes vmRevealUp {
    from { opacity: 0; transform: translate3d(0, 40px, 0); }
    to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes vmRevealLeft {
    from { opacity: 0; transform: translate3d(-40px, 0, 0); }
    to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes vmRevealRight {
    from { opacity: 0; transform: translate3d(40px, 0, 0); }
    to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes vmRevealScale {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}

.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
    will-change: opacity, transform;
    transition: none;
    pointer-events: auto;
}

.reveal-left { transform: translate3d(-40px, 0, 0); }
.reveal-right { transform: translate3d(40px, 0, 0); }
.reveal-scale { transform: scale(0.92); }

.reveal-up.visible {
    animation: vmRevealUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: var(--delay, 0s);
}

.reveal-left.visible {
    animation: vmRevealLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: var(--delay, 0s);
}

.reveal-right.visible {
    animation: vmRevealRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: var(--delay, 0s);
}

.reveal-scale.visible {
    animation: vmRevealScale 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: var(--delay, 0s);
}

.trust-card.reveal-up:not(.visible),
.product-card.reveal-up:not(.visible),
.auto-module-card.reveal-up:not(.visible),
.auto-feat-card.reveal-up:not(.visible) {
    transition: none !important;
}

.trust-card.reveal-up.visible,
.product-card.reveal-up.visible {
    transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        background 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== HERO ENHANCED ===== */
.hero {
    padding: 140px 0 80px;
    isolation: isolate;
}

.hero-content { z-index: 3; position: relative; }

.hero .hero-eyebrow-dot {
    opacity: 1;
}

.text-shimmer {
    background-size: 200% auto;
}

.home-page .text-shimmer {
    animation: none;
}

:not(.home-page) .text-shimmer {
    animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    animation: btnShine 3s ease infinite;
}

@keyframes btnShine {
    0% { transform: translateX(-100%); }
    50%, 100% { transform: translateX(100%); }
}

.btn-glass {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--white);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(233, 0, 9, 0.4);
    color: var(--white);
    transform: translateY(-2px);
}

.glass-stat {
    padding: 20px 28px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.glass-stat:hover {
    border-color: rgba(233, 0, 9, 0.22);
    box-shadow: 0 6px 24px rgba(233, 0, 9, 0.08);
    background: rgba(255, 255, 255, 0.06);
}

.stat-item strong {
    display: inline;
    font-size: 2rem;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-light);
    font-weight: 700;
}

.stat-label {
    display: block;
    margin-top: 4px;
    font-size: 0.8rem;
    color: var(--gray);
}

.hero-scroll-hint {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
    pointer-events: none;
    opacity: 0.45;
}

.hero-scroll-hint span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    opacity: 0.7;
}

@keyframes fadeBounce {
    0%, 100% { opacity: 0.3; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.7; transform: translateX(-50%) translateY(8px); }
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== MARQUEE ===== */
.marquee-section {
    padding: 16px 0;
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}

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

.marquee-content {
    display: flex;
    gap: 48px;
    padding-right: 48px;
}

.marquee-content span {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-light);
}

.marquee-content span i { color: var(--primary); }

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== TRUST CARDS ENHANCED ===== */
.trust-card {
    position: relative;
    overflow: hidden;
}

.trust-card-glow {
    display: none;
}

.trust-icon {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.trust-card:hover .trust-icon {
    transform: scale(1.1) rotate(-5deg);
}

/* ===== ABOUT / PROFILE ===== */
.about-section {
    background: transparent;
}

.about-highlight {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    margin: 20px 0;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.highlight-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--icon-muted);
    font-size: 1.2rem;
}

.about-highlight strong { display: block; color: var(--white); font-size: 0.95rem; }
.about-highlight p { color: var(--gray); font-size: 0.8rem; margin: 0; }

.about-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 24px 0;
}

.metric-item {
    text-align: center;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.metric-item:hover {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.metric-item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--white);
}

.metric-item span { font-size: 0.75rem; color: var(--gray); }

/* About profile photo — kontainer terpisah, lebar penuh */
.about-profile-media {
    width: 100%;
    margin: 0 0 32px;
}

.about-profile-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    width: 100%;
}

.about-profile-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
    animation: aboutProfileFloat 7s ease-in-out infinite;
}

.about-profile-frame--alt {
    animation-delay: -1.75s;
}

.about-profile-frame--alt2 {
    animation-delay: -3.5s;
}

.about-profile-frame--alt3 {
    animation-delay: -5.25s;
}

@keyframes aboutProfileFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.about-profile-photo {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    min-height: clamp(110px, 14vw, 190px);
    object-fit: cover;
    object-position: center;
}

.about-profile-shine {
    position: absolute;
    top: 0;
    left: -80%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.14),
        transparent
    );
    transform: skewX(-18deg);
    pointer-events: none;
    animation: profileShine 6s ease-in-out infinite;
}

@keyframes profileShine {
    0%, 65%, 100% {
        left: -80%;
        opacity: 0;
    }
    80% {
        left: 130%;
        opacity: 1;
    }
}

.about-profile-media.visible .about-profile-photo {
    animation: aboutProfileReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.about-profile-media.visible .about-profile-frame:nth-child(2) .about-profile-photo {
    animation-delay: 0.08s;
}

.about-profile-media.visible .about-profile-frame:nth-child(3) .about-profile-photo {
    animation-delay: 0.16s;
}

.about-profile-media.visible .about-profile-frame:nth-child(4) .about-profile-photo {
    animation-delay: 0.24s;
}

@keyframes aboutProfileReveal {
    from {
        opacity: 0.85;
        transform: scale(1.03);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Location Showcase */
.location-showcase {
    position: relative;
    height: 100%;
}

@media (min-width: 993px) {
    .about-visual {
        display: flex;
        flex-direction: column;
        min-height: 100%;
        align-self: stretch;
    }

    .location-showcase {
        display: flex;
        flex-direction: column;
        flex: 1;
        min-height: 0;
        width: 100%;
    }

    .map-card {
        display: flex;
        flex-direction: column;
        flex: 1;
        min-height: 100%;
    }

    .map-bg {
        flex-shrink: 0;
    }

    .profile-card.glass-card {
        flex: 1;
        display: flex;
        flex-direction: column;
        min-height: 0;
    }

    .profile-card-body {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
}

.map-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    z-index: 1;
}

.map-bg {
    position: relative;
    height: 180px;
    background: linear-gradient(135deg, #0a0a0a 0%, #121212 50%, #0e0e0e 100%);
    overflow: hidden;
}

.map-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: gridDrift 15s linear infinite;
}

@keyframes gridDrift {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 60px 60px, 60px 60px; }
}

.map-route {
    position: absolute;
    top: 50%; left: 20%;
    width: 60%; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: rotate(-15deg);
    animation: routePulse 3s ease infinite;
}

@keyframes routePulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

.map-pin {
    position: absolute;
    top: 45%; left: 55%;
    transform: translate(-50%, -100%);
    z-index: 3;
}

.map-pin i {
    font-size: 2rem;
    color: var(--info);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
    animation: pinBounce 2s ease infinite;
}

@keyframes pinBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.pin-pulse {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid rgba(96, 165, 250, 0.5);
    animation: pinRipple 3s ease-out infinite;
}

.pin-pulse-1 { width: 30px; height: 30px; animation-delay: 0s; }
.pin-pulse-2 { width: 30px; height: 30px; animation-delay: 1s; }
.pin-pulse-3 { width: 30px; height: 30px; animation-delay: 2s; }

@keyframes pinRipple {
    0% { width: 20px; height: 20px; opacity: 0.8; }
    100% { width: 80px; height: 80px; opacity: 0; }
}

.map-label {
    position: absolute;
    bottom: 16px; left: 16px;
    padding: 8px 16px;
    background: rgba(18, 18, 18, 0.92);
    backdrop-filter: blur(8px);
    border-radius: 8px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.map-label span { display: block; color: var(--white); font-weight: 600; font-size: 0.85rem; }
.map-label small { color: var(--gray-light); font-size: 0.75rem; }

.glass-card {
    background: var(--bg-surface);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    margin-top: -40px;
    position: relative;
    z-index: 2;
    margin-left: 16px;
    margin-right: 16px;
    border-radius: 16px;
    animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.profile-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
}

.profile-avatar {
    position: relative;
    width: 52px; height: 52px;
}

.profile-avatar img {
    width: 52px; height: 52px;
    border-radius: 14px;
    object-fit: cover;
    object-position: center;
    position: relative;
    z-index: 1;
}

.profile-avatar-logo {
    object-fit: contain;
    padding: 6px;
    background: rgba(0, 0, 0, 0.35);
}

.avatar-ring {
    position: absolute;
    inset: -4px;
    border-radius: 18px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    animation: ringRotate 4s linear infinite;
}

@keyframes ringRotate {
    0% { transform: rotate(0deg); border-color: rgba(255, 255, 255, 0.15); }
    50% { border-color: rgba(255, 255, 255, 0.3); }
    100% { transform: rotate(360deg); border-color: rgba(255, 255, 255, 0.15); }
}

.profile-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    color: #22c55e;
    margin-top: 2px;
    font-weight: 600;
}

.profile-tag-verified,
.profile-tag i {
    color: #22c55e;
}

.profile-badge-komdigi {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 6px 8px;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.profile-badge-label {
    font-size: 0.58rem;
    font-weight: 700;
    color: #1e3a5f;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.komdigi-logo {
    display: block;
    height: 28px;
    width: auto;
    max-width: 96px;
    object-fit: contain;
}

.cert-thumb-header {
    display: block;
    height: 52px;
    width: auto;
    max-width: 42px;
    object-fit: cover;
    object-position: top center;
    border-radius: 5px;
}

.info-card-cert {
    align-items: center;
}

.info-cert-thumb {
    flex-shrink: 0;
    width: 52px;
    padding: 3px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.info-cert-thumb img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.info-cert-no {
    display: block;
    margin-top: 4px;
    font-size: 0.72rem;
    font-family: ui-monospace, monospace;
    color: var(--price);
    font-weight: 600;
    letter-spacing: 0.03em;
}

.profile-card-body { padding: 16px 24px 24px; }

.info-card {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.3s;
}

.info-card:last-child { border-bottom: none; }

.info-card:hover {
    padding-left: 8px;
}

.info-card-address {
    background: rgba(255, 255, 255, 0.02);
    margin: 0 -24px;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    border-top: 1px solid var(--border-light);
}

.info-icon-wrap {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--icon-muted);
    flex-shrink: 0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover .info-icon-wrap:not(.whatsapp) {
    transform: scale(1.1);
    box-shadow: none;
}

.info-card:hover .info-icon-wrap.whatsapp { transform: scale(1.1); }

.info-icon-wrap.whatsapp {
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
}

.info-card small { color: var(--gray); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.5px; }
.info-card p { color: var(--light); font-size: 0.88rem; margin-top: 4px; line-height: 1.5; }
.info-card-address p {
    font-size: 0.82rem;
    line-height: 1.55;
}
.info-card a { color: var(--light); }
.info-card a:hover { color: var(--link-hover); }

.info-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    font-size: 0.8rem;
    color: var(--info) !important;
    font-weight: 500;
}

.info-link:hover { gap: 10px; }

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    background: transparent;
}

.testimonials-rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 32px;
    margin-bottom: 40px;
    background: var(--bg-surface);
    border-radius: 16px;
    border: 1px solid var(--border);
    flex-wrap: wrap;
}

.rating-big { text-align: center; }

.rating-big strong {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--primary-light);
    line-height: 1;
}

.rating-big .stars { margin: 8px 0; }
.rating-big .stars i { color: var(--star); font-size: 1rem; }
.rating-big span { font-size: 0.85rem; color: var(--gray); }

.rating-bars { min-width: 280px; }

.rating-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
    font-size: 0.8rem;
    color: var(--gray);
}

.rating-bar-row .bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 3px;
    overflow: hidden;
}

@keyframes vmBarFillGrow {
    from { width: 0; }
    to { width: var(--bar-target, 100%); }
}

.bar-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 3px;
}

.bar-fill.is-animated {
    animation: vmBarFillGrow 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.testimonials-slider { position: relative; overflow: hidden; }

.testimonials-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: calc(33.333% - 16px);
    padding: 28px;
    background: var(--bg-surface);
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.4s;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    border-color: rgba(233, 0, 9, 0.2);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    background: var(--bg-elevated);
}

.testimonial-stars { margin-bottom: 12px; }
.testimonial-stars i { color: var(--star); font-size: 0.85rem; }

.testimonial-text {
    flex: 1;
    color: var(--gray-light);
    font-size: 0.9rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial-product {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(233, 0, 9, 0.08);
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--primary-light);
    margin-bottom: 16px;
    width: fit-content;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.author-avatar {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--white);
    flex-shrink: 0;
}

.testimonial-author strong { display: block; color: var(--white); font-size: 0.9rem; }
.testimonial-author span { font-size: 0.75rem; color: var(--gray); }

.verified-badge {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    color: #22c55e;
    font-weight: 600;
    white-space: nowrap;
}

.verified-badge i {
    color: #22c55e;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.slider-btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--dark-card);
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.05);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--primary);
}

/* ===== CTA ENHANCED ===== */
.cta-box {
    position: relative;
    overflow: hidden;
}

.cta-glow {
    display: none;
}

@keyframes ctaGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

.code-block-float {
    animation: codeFloat 5s ease-in-out infinite;
}

@keyframes codeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ===== NAVBAR ENHANCED ===== */
.navbar.scrolled {
    background: rgba(10, 9, 9, 0.96);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    border-bottom-color: var(--border-red);
}

.navbar.scrolled .navbar-inner { height: 68px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 12px);
        min-width: calc(50% - 12px);
    }

    .about-metrics { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .hero { min-height: auto; }
    .hero-scroll-hint { display: none; }

    .testimonial-card {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .testimonials-rating-summary {
        flex-direction: column;
        gap: 24px;
    }

    .glass-card { margin-left: 0; margin-right: 0; }
    .map-bg { height: 180px; }
}

/* ===== LITE MODE — mobile: matikan animasi berat di section bawah ===== */
.lite-mode .hero-eyebrow-dot,
.lite-mode .text-shimmer,
.lite-mode .btn-glow::after,
.lite-mode .glass-card,
.lite-mode .code-block-float,
.lite-mode .pin-pulse-2,
.lite-mode .pin-pulse-3,
.lite-mode .avatar-ring,
.lite-mode .about-profile-frame,
.lite-mode .about-profile-shine,
.lite-mode .about-profile-photo {
    animation: none !important;
}

.lite-mode .map-grid {
    animation: none !important;
}

.lite-mode .marquee-track {
    animation-duration: 45s;
}

.lite-mode .brand-word-victory,
.lite-mode .brand-tagline {
    animation: none !important;
}

.lite-mode .timeline-item.timeline-current .timeline-dot,
.lite-mode .timeline-item.timeline-current .timeline-dot-wait,
.lite-mode .timeline-item.timeline-current .timeline-dot-ship,
.lite-mode .pwi-ship,
.lite-mode .pwi-route::after,
.lite-mode .preorder-wait-progress-bar,
.lite-mode .pv-gear-1,
.lite-mode .pv-gear-2,
.lite-mode .pv-box,
.lite-mode .process-progress-bar,
.lite-mode .sv-truck {
    animation: none !important;
}

@media (max-width: 768px) {
    .pin-pulse-2,
    .pin-pulse-3 {
        display: none;
    }

    .map-grid {
        animation: none;
    }

    .glass-card {
        animation: none;
    }

    .marquee-track {
        animation-duration: 40s;
    }
}
