/* =============================================
   JAKTRON LANDING PAGE - landing.css
   Design tokens match existing style.css
   ============================================= */

:root {
    --lp-primary: #e63946;
    --lp-secondary: #f77f00;
    --lp-dark: #0d0f14;
    --lp-dark-2: #161923;
    --lp-text: #212529;
    --lp-text-muted: #6c757d;
    --lp-white: #ffffff;
    --lp-bg: #FFF5F5;
    --lp-border: rgba(0, 0, 0, 0.08);
    --lp-shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.07);
    --lp-shadow-md: 0 10px 30px rgba(0, 0, 0, 0.12);
    --lp-shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.18);
    --lp-radius: 16px;
    --lp-radius-sm: 8px;
    --lp-footer-bg: #212529;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--lp-bg);
    color: var(--lp-text);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ===== CONTAINER ===== */
.lp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== NAVBAR ===== */
.lp-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    background-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid transparent;
    transition: background-color 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.lp-navbar.scrolled {
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-bottom-color: rgba(0, 0, 0, 0.06);
}

.lp-navbar.scrolled .lp-nav-link {
    color: var(--lp-text);
}

.lp-navbar.scrolled .lp-nav-link:hover {
    color: var(--lp-primary);
}

.lp-navbar.scrolled .lp-hamburger {
    color: var(--lp-text);
}

.lp-navbar .lp-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lp-logo img {
    height: 38px;
    width: auto;
    display: block;
    transition: opacity 0.3s ease;
}

/* Default (transparent navbar): tampilkan logo putih, sembunyikan logo gelap */
.lp-logo .lp-logo-white {
    display: block;
}

.lp-logo .lp-logo-dark {
    display: none;
}

/* Scrolled (white navbar): sembunyikan logo putih, tampilkan logo gelap */
.lp-navbar.scrolled .lp-logo .lp-logo-white {
    display: none;
}

.lp-navbar.scrolled .lp-logo .lp-logo-dark {
    display: block;
}

.lp-main-nav {
    display: flex;
    align-items: center;
}

.lp-nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.lp-nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    letter-spacing: 0.2px;
}

.lp-nav-link:hover {
    color: var(--lp-white);
}

/* Promosi link dengan bell icon kuning */
.lp-nav-promo {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.lp-nav-promo .bi-bell-fill {
    color: var(--lp-primary) !important;
    font-size: 0.9rem;
}

.lp-navbar.scrolled .lp-nav-promo .bi-bell-fill {
    color: var(--lp-primary) !important;
}

.lp-cta-button {
    background-color: var(--lp-primary);
    color: var(--lp-white);
    padding: 10px 22px;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lp-cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.4);
}

.lp-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 28px;
    color: var(--lp-white);
}

.lp-mobile-nav {
    display: none;
    flex-direction: column;
    background-color: rgba(13, 15, 20, 0.98);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.lp-mobile-nav.active {
    display: flex;
    max-height: 400px;
}

.lp-mobile-nav-link {
    padding: 16px 24px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-weight: 500;
    transition: background 0.2s;
}

.lp-mobile-nav-link:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.lp-mobile-cta {
    color: var(--lp-primary);
    font-weight: 700;
}

/* ===== HERO ===== */
.lp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--lp-dark);
}

.lp-hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(13, 15, 20, 0.82) 0%,
        rgba(13, 15, 20, 0.65) 38%,
        rgba(13, 15, 20, 0.20) 62%,
        rgba(13, 15, 20, 0.05) 100%
    );
    z-index: 2;
}

.lp-hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.lp-hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: lpCrossfadeZoom 24s infinite;
}

.lp-slide-1 {
    background-image: url('/img/BlokM_set3.webp');
    animation-delay: 0s;
}

.lp-slide-2 {
    background-image: url('/img/LB_set7.webp');
    animation-delay: 4s;
}

.lp-slide-3 {
    background-image: url('/img/LB_set8.webp');
    animation-delay: 8s;
}

.lp-slide-4 {
    background-image: url('/img/LB_set10.webp');
    animation-delay: 12s;
}

.lp-slide-5 {
    background-image: url('/img/Understation_blokm.webp');
    animation-delay: 16s;
}

.lp-slide-6 {
    background-image: url('/img/HAJI NAWI_SAMSUNG.webp');
    animation-delay: 20s;
}

@keyframes lpCrossfadeZoom {
    0% {
        opacity: 0;
        transform: scale(1.08);
    }

    4% {
        opacity: 1;
    }

    16% {
        opacity: 1;
        transform: scale(1);
    }

    20% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.lp-hero-content {
    position: relative;
    z-index: 3;
    padding-top: 120px;
    padding-bottom: 80px;
    color: var(--lp-white);
}

/* Center hero layout */
.lp-hero-centered {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lp-hero-centered .lp-hero-headline {
    max-width: 640px;
}

.lp-hero-centered .lp-hero-sub {
    max-width: 500px;
}

.lp-hero-centered .lp-hero-actions {
    justify-content: center;
}

.lp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(230, 57, 70, 0.15);
    border: 1px solid rgba(230, 57, 70, 0.4);
    color: #ff8a91;
    padding: 7px 16px;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 28px;
    animation: lpFadeInUp 0.8s ease both;
}

.lp-hero-badge i {
    font-size: 14px;
    color: var(--lp-primary);
}

.lp-hero-headline {
    font-size: clamp(1.9rem, 3.6vw, 2.75rem);
    font-weight: 900;
    line-height: 1.18;
    margin-bottom: 20px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
    animation: lpFadeInUp 0.8s 0.15s ease both;
    white-space: nowrap;
}

.lp-highlight {
    color: var(--lp-primary);
    text-shadow: 0 0 20px rgba(230, 57, 70, 0.6), 0 2px 8px rgba(0, 0, 0, 0.5);
}

.lp-hero-sub {
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.80);
    max-width: 480px;
    margin-bottom: 28px;
    font-weight: 400;
    line-height: 1.65;
    animation: lpFadeInUp 0.8s 0.3s ease both;
}

.lp-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: nowrap;
    align-items: center;
    margin-bottom: 24px;
    animation: lpFadeInUp 0.8s 0.45s ease both;
}

/* ===== BUTTONS ===== */
.lp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--lp-radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    letter-spacing: 0.1px;
}

.lp-btn-primary {
    background-color: var(--lp-primary);
    color: var(--lp-white);
    border: 2px solid var(--lp-primary);
    box-shadow: 0 4px 16px rgba(230, 57, 70, 0.3);
}

.lp-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(230, 57, 70, 0.45);
}

.lp-btn-outline {
    background: transparent;
    color: var(--lp-white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.lp-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--lp-white);
    transform: translateY(-3px);
}

.lp-btn-ghost {
    background: rgba(255, 255, 255, 0.08);
    color: var(--lp-white);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
}

.lp-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Hero outline button (clean, like reference) */
.lp-btn-hero-outline {
    background: transparent;
    color: var(--lp-white);
    border: 2px solid rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.85rem;
    padding: 14px 32px;
}

.lp-btn-hero-outline:hover {
    background: var(--lp-white);
    color: var(--lp-text);
    border-color: var(--lp-white);
    transform: translateY(-3px);
}

.lp-btn-lg {
    padding: 15px 34px;
    font-size: 1rem;
}

/* ===== HERO PARTNERS ===== */
.lp-hero-partners {
    display: flex;
    align-items: center;
    gap: 20px;
    animation: lpFadeInUp 0.8s 0.6s ease both;
}

.lp-partner-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
}

.lp-partner-logos img {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: opacity 0.3s;
}

.lp-partner-logos img:hover {
    opacity: 1;
}

/* ===== SCROLL INDICATOR ===== */
.lp-scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.4rem;
    animation: lpBounce 1.8s infinite ease-in-out;
    text-decoration: none;
    transition: color 0.3s;
}

.lp-scroll-indicator:hover {
    color: var(--lp-white);
}

@keyframes lpBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* ===== SECTION BASE ===== */
.lp-section {
    padding: 100px 0;
}

/* ============================================
   SCROLL REVEAL SYSTEM — Corporate Premium
   ============================================ */

/* Base hidden state */
.sr-fade-up {
    opacity: 0;
    transform: translateY(50px) scale(0.98);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

/* Zoom-in for media images */
.sr-zoom {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

/* Fade from left */
.sr-fade-left {
    opacity: 0;
    transform: translateX(-40px) scale(0.98);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

/* Fade from right */
.sr-fade-right {
    opacity: 0;
    transform: translateX(40px) scale(0.98);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

/* Stats slide-up with scale */
.sr-stat {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

/* Revealed state — all variants */
.sr-fade-up.sr-visible,
.sr-zoom.sr-visible,
.sr-fade-left.sr-visible,
.sr-fade-right.sr-visible,
.sr-stat.sr-visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Stagger delay utilities */
.sr-delay-1  { transition-delay: 0.10s; }
.sr-delay-2  { transition-delay: 0.20s; }
.sr-delay-3  { transition-delay: 0.30s; }
.sr-delay-4  { transition-delay: 0.40s; }
.sr-delay-5  { transition-delay: 0.50s; }
.sr-delay-6  { transition-delay: 0.60s; }
.sr-delay-7  { transition-delay: 0.70s; }

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .sr-fade-up, .sr-zoom, .sr-fade-left, .sr-fade-right, .sr-stat {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* Stat number formatting for large numbers */
.lp-stat-number {
    font-variant-numeric: tabular-nums;
}



.lp-section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--lp-primary);
    margin-bottom: 14px;
    position: relative;
    padding-left: 20px;
}

.lp-section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 2px;
    background-color: var(--lp-primary);
}

.lp-section-heading {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--lp-text);
}

.lp-section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

.lp-section-header .lp-section-label::before {
    display: none;
}

.lp-section-desc {
    font-size: 1rem;
    color: var(--lp-text-muted);
    line-height: 1.75;
}

/* ===== ABOUT SECTION ===== */
.lp-about {
    background-color: var(--lp-white);
}

.lp-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.lp-about-img-wrapper {
    position: relative;
    border-radius: var(--lp-radius);
    overflow: visible;
}

.lp-about-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--lp-radius);
    box-shadow: var(--lp-shadow-lg);
    display: block;
}

.lp-about-badge-float {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: var(--lp-white);
    border-radius: var(--lp-radius-sm);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--lp-shadow-md);
    border: 1px solid var(--lp-border);
    font-size: 0.85rem;
    line-height: 1.4;
}

.lp-about-badge-float i {
    font-size: 2rem;
    color: var(--lp-primary);
    flex-shrink: 0;
}

.lp-about-badge-float strong {
    display: block;
    font-weight: 700;
    color: var(--lp-text);
    margin-bottom: 0;
    line-height: 1.2;
}

.lp-about-badge-float small {
    color: var(--lp-text-muted);
    font-size: 0.78rem;
    line-height: 1.2;
}

.lp-about-text p {
    color: var(--lp-text-muted);
    margin-bottom: 18px;
    font-size: 0.98rem;
}

.lp-about-text p strong {
    color: var(--lp-text);
    font-weight: 700;
}

.lp-about-pillars {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 32px;
}

.lp-pillar {
    display: flex;
    align-items: center;
    gap: 14px;
}

.lp-pillar i {
    font-size: 1.4rem;
    color: var(--lp-primary);
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(230, 57, 70, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-pillar span {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--lp-text);
}

/* ===== SERVICES ===== */
.lp-services {
    background-color: var(--lp-bg);
}

.lp-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 992px) {
    .lp-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.lp-service-card {
    background: var(--lp-white);
    border-radius: var(--lp-radius);
    padding: 28px 24px;
    box-shadow: var(--lp-shadow-sm);
    border: 1px solid var(--lp-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lp-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--lp-shadow-md);
}

.lp-service-card-accent {
    background: linear-gradient(145deg, var(--lp-primary) 0%, #c5303d 100%);
    color: var(--lp-white);
    border-color: transparent;
}

/* === MOMEN SPESIAL CARD === */
.lp-service-card-special {
    background: linear-gradient(145deg, #fff8f8 0%, #fff0f1 100%);
    border-color: rgba(230, 57, 70, 0.2);
    position: relative;
    overflow: hidden;
}

.lp-service-card-special::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--lp-primary), #f77f00);
    border-radius: 3px 3px 0 0;
}

.lp-service-card-special:hover {
    border-color: rgba(230, 57, 70, 0.4);
    box-shadow: 0 12px 32px rgba(230, 57, 70, 0.12);
}

.lp-service-icon-special {
    background: rgba(230, 57, 70, 0.1) !important;
}

.lp-service-icon-special i {
    color: var(--lp-primary) !important;
}

.lp-service-link-special {
    color: var(--lp-primary) !important;
    font-weight: 600;
}

/* === MINI VIDEOTRON PREVIEW (inside Momen Spesial card) === */
.lp-svc-greeting-preview {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.lp-svc-preview-screen {
    width: 100%;
    background: linear-gradient(135deg, #1a0a0f 0%, #350a14 60%, #1a0a0f 100%);
    border-radius: 10px;
    padding: 18px 12px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 96px;
    position: relative;
    overflow: hidden;
    /* scanline subtle effect */
    background-image:
        linear-gradient(135deg, #1a0a0f 0%, #350a14 60%, #1a0a0f 100%),
        repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(255,255,255,0.012) 3px, rgba(255,255,255,0.012) 6px);
    background-blend-mode: normal;
}

/* Red top accent line */
.lp-svc-preview-screen::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--lp-primary), transparent);
    border-radius: 2px 2px 0 0;
}

.lp-svc-preview-item {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.lp-svc-preview-item.active {
    opacity: 1;
}

.lp-svc-preview-emoji {
    font-size: 1.8rem;
    line-height: 1;
    animation: svcFloatEmoji 3s ease-in-out infinite;
    filter: drop-shadow(0 2px 8px rgba(230,57,70,0.35));
}

@keyframes svcFloatEmoji {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-5px); }
}

.lp-svc-preview-text {
    font-size: 0.72rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.3px;
    background: linear-gradient(90deg, #fff 0%, #ffd6da 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Floating label below the screen */
.lp-svc-preview-label {
    display: inline-block;
    margin-top: 8px;
    background: var(--lp-primary);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.3px;
    transition: all 0.4s ease;
    text-align: center;
}

.lp-svc-greeting-desc {
    font-size: 0.8rem;
    color: var(--lp-text-muted);
    line-height: 1.6;
    margin-top: 2px;
    margin-bottom: 4px;
}


.lp-service-card-accent .lp-service-content h3,
.lp-service-card-accent .lp-service-content p {
    color: rgba(255, 255, 255, 0.9);
}

.lp-service-card-accent .lp-service-content h3 {
    color: var(--lp-white);
}

.lp-service-icon {
    width: 56px;
    height: 56px;
    background: rgba(230, 57, 70, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lp-service-card-accent .lp-service-icon {
    background: rgba(255, 255, 255, 0.2);
}

.lp-service-icon i {
    font-size: 1.6rem;
    color: var(--lp-primary);
}

.lp-service-card-accent .lp-service-icon i {
    color: var(--lp-white);
}

.lp-service-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--lp-text);
}

.lp-service-content p {
    font-size: 0.9rem;
    color: var(--lp-text-muted);
    line-height: 1.75;
}

.lp-service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--lp-primary);
    text-decoration: none;
    margin-top: auto;
    transition: gap 0.2s ease;
}

.lp-service-card-accent .lp-service-link {
    color: rgba(255, 255, 255, 0.9);
}

.lp-service-link:hover {
    gap: 10px;
}

/* ===== STATS SECTION ===== */
.lp-stats-section {
    background: linear-gradient(135deg, var(--lp-dark) 0%, var(--lp-dark-2) 100%);
    padding: 80px 0;
}

.lp-stats-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.lp-stat-item {
    text-align: center;
    flex: 1;
    min-width: 180px;
}

.lp-stat-number {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--lp-white);
    line-height: 1;
    margin-bottom: 10px;
}

.lp-stat-number span {
    color: var(--lp-primary);
}

.lp-stat-label {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
    line-height: 1.4;
}

.lp-stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

/* ===== BRAND PARTNER SECTION ===== */
.lp-brands-section {
    padding: 80px 0;
    background: var(--lp-white);
    overflow: hidden;
}

.lp-brands-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px auto;
}

.lp-brands-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #8c73e6;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.lp-brands-heading {
    font-size: clamp(2rem, 3.2vw, 2.8rem);
    font-weight: 800;
    color: var(--lp-text);
    margin-bottom: 16px;
    line-height: 1.15;
}

.lp-brands-desc {
    font-size: 0.95rem;
    color: var(--lp-text-muted);
    line-height: 1.7;
}

/* Marquee Container */
.lp-brands-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.lp-brands-marquee-wrapper::before,
.lp-brands-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.lp-brands-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--lp-white), transparent);
}
.lp-brands-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--lp-white), transparent);
}

.lp-brands-marquee {
    display: flex;
    width: fit-content;
}

.lp-brands-track {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-left: 30px;
    animation: lpMarquee 45s linear infinite;
}

.lp-brands-track:hover {
    animation-play-state: paused;
}

@keyframes lpMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.lp-brand-card {
    background: var(--lp-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 12px 20px;
    width: 240px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.lp-brand-card:hover {
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.lp-brand-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .lp-brand-card {
        width: 180px;
        height: 90px;
        padding: 12px 16px;
    }
    .lp-brands-marquee-wrapper::before,
    .lp-brands-marquee-wrapper::after {
        width: 60px;
    }
}

/* ===== TESTIMONIALS ===== */
.lp-testimonials {
    background-color: var(--lp-white);
    overflow: hidden;
}

.lp-testimonials-track-wrapper {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.lp-testimonials-grid {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: lpScrollTestimonials 28s linear infinite;
}

.lp-testimonials-grid:hover {
    animation-play-state: paused;
}

@keyframes lpScrollTestimonials {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.lp-testimonial-card {
    background: var(--lp-bg);
    border-radius: var(--lp-radius);
    padding: 32px 28px;
    border: 1px solid var(--lp-border);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    flex: 0 0 360px;
    width: 360px;
    box-sizing: border-box;
}

.lp-testimonial-card:hover {
    box-shadow: var(--lp-shadow-md);
    transform: translateY(-4px);
}


.lp-testimonial-quote {
    color: var(--lp-primary);
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.4;
}

.lp-testimonial-text {
    font-size: 0.95rem;
    color: var(--lp-text);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 28px;
}

.lp-testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.lp-author-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lp-primary), #c5303d);
    color: var(--lp-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.lp-author-info strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--lp-text);
}

.lp-author-info span {
    font-size: 0.8rem;
    color: var(--lp-text-muted);
}

/* ===== FINAL CTA ===== */
.lp-final-cta {
    background: linear-gradient(135deg, var(--lp-dark) 0%, #1a0a0d 60%, rgba(230, 57, 70, 0.15) 100%);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.lp-final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.lp-final-cta-content {
    position: relative;
    z-index: 1;
    color: var(--lp-white);
}

.lp-final-cta-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--lp-primary);
    margin-bottom: 20px;
}

.lp-final-cta-content h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 22px;
}

.lp-final-cta-content>p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 520px;
    margin: 0 auto 40px;
}

.lp-final-cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.lp-final-cta-note {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
    margin: 0 auto !important;
    text-align: center;
    width: 100%;
    display: block;
}

/* ===== FOOTER ===== */
.lp-footer {
    background-color: var(--lp-footer-bg);
    color: var(--lp-white);
    padding: 60px 0 0;
}

.lp-footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    padding-bottom: 40px;
}

.lp-footer-col {
    flex: 1;
    min-width: 200px;
}

.lp-footer-logo {
    display: block;
    margin-bottom: 18px;
}

.lp-footer-logo img {
    height: 44px;
    width: auto;
}

.lp-footer-col>p {
    font-size: 0.88rem;
    color: #adb5bd;
    line-height: 1.75;
}

.lp-footer-col h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.lp-footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 40px;
    background-color: var(--lp-primary);
}

.lp-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lp-footer-links a {
    text-decoration: none;
    color: #adb5bd;
    font-size: 0.88rem;
    transition: color 0.2s;
}

.lp-footer-links a:hover {
    color: var(--lp-white);
}

.lp-footer-social {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.lp-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--lp-white);
    border-radius: 50%;
    text-decoration: none;
    transition: background 0.3s;
}

.lp-footer-social a:hover {
    background: var(--lp-primary);
}

.lp-footer-social svg {
    width: 18px;
    height: 18px;
}

.lp-footer-bottom {
    background-color: #1a1d20;
    text-align: center;
    padding: 20px 0;
    font-size: 0.85rem;
    color: #6c757d;
}

/* ===== STICKY CLOCK ===== */
#lp-sticky-clock {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    padding: 10px 15px;
    font-family: 'Poppins', sans-serif;
}

.lp-clock-info {
    text-align: right;
}

.lp-clock-label {
    display: block;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--lp-text-muted);
}

.lp-clock-value {
    font-size: 10px;
    font-weight: 500;
    Letter-spacing: 0.5px;
    color: var(--lp-text);
}

/* ===== ANIMATION ===== */
@keyframes lpFadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lp-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.lp-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .lp-nav-links {
        display: none;
    }

    .lp-hamburger {
        display: block;
    }

    .lp-about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .lp-about-img {
        height: 380px;
    }

    .lp-about-badge-float {
        left: 16px;
        bottom: -20px;
    }

    .lp-services-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }

    .lp-testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .lp-stat-divider {
        display: none;
    }

    .lp-stats-grid {
        justify-content: center;
        gap: 40px;
    }

    .lp-footer-col {
        min-width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .lp-section {
        padding: 70px 0;
    }

    .lp-hero-content {
        padding-top: 100px;
    }

    .lp-hero-headline {
        font-size: 2rem;
        white-space: normal;
    }

    .lp-hero-sub {
        font-size: 0.95rem;
    }

    .lp-hero-sub br {
        display: none;
    }

    .lp-hero-trust {
        grid-template-columns: 1fr;
        gap: 12px;
        text-align: left;
    }

    .lp-final-cta {
        padding: 80px 0;
    }

    .lp-footer-container {
        flex-direction: column;
        text-align: center;
    }

    .lp-footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .lp-footer-social {
        justify-content: center;
    }

    .lp-footer-links {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .lp-hero-actions {
        flex-direction: column;
    }

    .lp-btn {
        width: 100%;
        justify-content: center;
    }

    .lp-final-cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .lp-about-img {
        height: 260px;
    }

    .lp-about-badge-float {
        left: 8px;
        bottom: -16px;
        padding: 12px 14px;
        font-size: 0.78rem;
    }

    .lp-stat-item {
        min-width: 140px;
    }
}

/* =============================================
   REFINEMENT v5 Ã¢â‚¬â€ CRO & UX Enhancement
   ============================================= */

/* ===== HERO TRUST INDICATORS ===== */
.lp-hero-trust {
    display: grid;
    grid-template-columns: auto auto;
    gap: 10px 40px;
    justify-content: center;
    margin-top: 24px;
    animation: lpFadeInUp 0.8s 0.7s ease both;
}

.lp-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.2px;
}

.lp-trust-item i {
    color: #4ade80;
    font-size: 0.9rem;
}

/* ===== SERVICE BULLET LISTS ===== */
.lp-service-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 8px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lp-service-bullets li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--lp-text-muted);
    line-height: 1.4;
}

.lp-service-bullets li i {
    color: var(--lp-primary);
    font-size: 1rem;
    flex-shrink: 0;
}

.lp-service-bullets-white li {
    color: rgba(255, 255, 255, 0.85);
}

.lp-service-bullets-white li i {
    color: rgba(255, 255, 255, 0.9);
}

/* ===== HERO CTA HIERARCHY ===== */
#hero-cta-primary {
    background: var(--lp-primary);
    border-color: var(--lp-primary);
    box-shadow: 0 6px 24px rgba(230, 57, 70, 0.45);
    font-size: 0.82rem;
    padding: 10px 22px;
    white-space: nowrap;
}

#hero-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(230, 57, 70, 0.55);
}

#hero-cta-secondary {
    font-size: 0.82rem;
    padding: 10px 22px;
    white-space: nowrap;
}

/* ===== TRUST BADGE - BRAND SECTION ===== */
.lp-brands-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(230, 57, 70, 0.06);
    border: 1px solid rgba(230, 57, 70, 0.2);
    color: var(--lp-primary);
    padding: 8px 16px;
    border-radius: 99px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-top: 8px;
}

.lp-brands-trust-badge i {
    font-size: 1rem;
}

/* ===== CTA TRUST NOTE ===== */
.lp-cta-trust-note {
    margin-top: 20px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.lp-cta-trust-note i {
    color: #4ade80;
}

/* ===== FOOTER EXTRA COLUMN ===== */
.lp-footer-container {
    grid-template-columns: repeat(5, 1fr);
}

/* ===== COUNT-UP STAT NUMBER ===== */
.lp-stat-text {
    /* Stat items that don't count up, already text */
}

/* ===== ENHANCED MICRO INTERACTIONS ===== */

/* Service card hover Ã¢â‚¬â€ subtle lift */
.lp-service-card {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.lp-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.13);
}

/* Bubble hover Ã¢â‚¬â€ scale with shadow */
.lp-bubble {
    transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.lp-bubble:hover {
    transform: scale(1.12) !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
    z-index: 10;
}

/* Pillar items hover */
.lp-pillar {
    padding: 10px 14px;
    border-radius: 10px;
    transition: background 0.2s ease;
}

.lp-pillar:hover {
    background: rgba(230, 57, 70, 0.05);
}

/* Badge float Ã¢â‚¬â€ tighten text spacing */
.lp-about-badge-float strong {
    display: block;
    font-weight: 700;
    color: var(--lp-text);
    margin-bottom: 0;
    line-height: 1.2;
}

.lp-about-badge-float small {
    color: var(--lp-text-muted);
    font-size: 0.78rem;
    line-height: 1.2;
}

/* ===== SECTION TRANSITIONS ===== */
.lp-section,
.lp-stats-section,
.lp-brands-section,
.lp-final-cta {
    transition: opacity 0.4s ease;
}

/* ===== FOOTER 5-COLUMN RESPONSIVE ===== */
@media (max-width: 1100px) {
    .lp-footer-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .lp-footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .lp-hero-trust {
        gap: 12px;
    }

    .lp-trust-item {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .lp-footer-container {
        grid-template-columns: 1fr;
    }

    .lp-hero-trust {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
}

/* ===== JENIS MEDIA SECTION ===== */
.lp-media-types {
    background-color: var(--lp-white);
}

.lp-produk-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 100px;
}

.lp-produk-item:last-child {
    margin-bottom: 0;
}

.lp-produk-item.lp-produk-reverse {
    direction: rtl;
}

.lp-produk-item.lp-produk-reverse > * {
    direction: ltr;
}

/* Image slider wrapper */
.lp-sc-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--lp-radius);
    overflow: hidden;
    box-shadow: var(--lp-shadow-lg);
    background: #111;
}

.lp-sc-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.lp-sc-img.active {
    opacity: 1;
}

.lp-sc-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.85);
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    color: var(--lp-text);
    z-index: 5;
    transition: all 0.2s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    backdrop-filter: blur(4px);
}

.lp-sc-arrow:hover {
    background: var(--lp-white);
    transform: translateY(-50%) scale(1.1);
}

.lp-sc-arrow.left { left: 12px; }
.lp-sc-arrow.right { right: 12px; }

.lp-sc-progress-wrap {
    margin-top: 14px;
}

.lp-sc-loc-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--lp-text-muted);
    margin-bottom: 6px;
}

.lp-sc-progress-track {
    height: 3px;
    background: var(--lp-border);
    border-radius: 999px;
    overflow: hidden;
}

.lp-sc-progress-fill {
    height: 100%;
    background: var(--lp-primary);
    border-radius: 999px;
    transition: width 0.4s ease;
    width: 0%;
}

/* Text side */
.lp-sc-type-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--lp-primary);
    margin-bottom: 10px;
}

.lp-produk-heading {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 800;
    color: var(--lp-text);
    margin-bottom: 16px;
    line-height: 1.2;
}

.lp-produk-heading span {
    color: var(--lp-primary);
}

.lp-produk-text p {
    font-size: 0.95rem;
    color: var(--lp-text-muted);
    line-height: 1.75;
    margin-bottom: 20px;
}

.lp-produk-specs {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 28px;
}

.lp-produk-specs li {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--lp-text);
    display: flex;
    align-items: center;
    gap: 9px;
}

.lp-produk-specs li i {
    color: var(--lp-primary);
    font-size: 0.95rem;
    flex-shrink: 0;
}

.lp-sc-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--lp-primary);
    color: var(--lp-white);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 12px 24px;
    border-radius: 50px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(230,57,70,0.3);
}

.lp-sc-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(230,57,70,0.45);
    gap: 12px;
}

/* ===== SKEMA KERJA SAMA SECTION ===== */
.lp-skema {
    background: var(--lp-bg);
}

.lp-timeline-wrapper {
    max-width: 860px;
    margin: 0 auto;
}

.lp-timeline-track {
    position: relative;
    margin-bottom: 40px;
}

.lp-timeline-progress {
    position: absolute;
    left: 0;
    top: 18px;
    height: 3px;
    background: var(--lp-primary);
    border-radius: 999px;
    transition: width 0.45s ease;
    width: 0%;
}

.lp-tl-nodes {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding-top: 0;
    padding-bottom: 0;
}

.lp-tl-nodes::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--lp-border);
    border-radius: 999px;
}

.lp-tl-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.lp-tl-dot {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--lp-white);
    border: 3px solid var(--lp-border);
    transition: all 0.3s ease;
    box-shadow: var(--lp-shadow-sm);
}

.lp-tl-node.active .lp-tl-dot,
.lp-tl-node.done .lp-tl-dot {
    border-color: var(--lp-primary);
    background: var(--lp-primary);
}

.lp-tl-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--lp-text-muted);
    letter-spacing: 0.3px;
    transition: color 0.3s;
}

.lp-tl-node.active .lp-tl-label {
    color: var(--lp-primary);
    font-weight: 700;
}

.lp-timeline-content-card {
    background: var(--lp-white);
    border-radius: var(--lp-radius);
    padding: 40px 48px;
    box-shadow: var(--lp-shadow-md);
    border: 1px solid var(--lp-border);
    min-height: 180px;
    animation: lpFadeInUp 0.35s ease both;
}

.lp-tl-step-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--lp-primary);
    background: rgba(230,57,70,0.08);
    border-radius: 50px;
    padding: 4px 14px;
    margin-bottom: 14px;
}

.lp-timeline-content-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--lp-text);
    margin-bottom: 10px;
}

.lp-timeline-content-card p {
    font-size: 0.95rem;
    color: var(--lp-text-muted);
    line-height: 1.75;
}

.lp-tl-split-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 20px;
}

.lp-tl-split-header {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--lp-text);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.lp-tl-split-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.lp-tl-split-col ul li {
    font-size: 0.88rem;
    color: var(--lp-text-muted);
    padding-left: 16px;
    position: relative;
}

.lp-tl-split-col ul li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: var(--lp-primary);
    font-weight: 700;
}

/* Responsive */
@media (max-width: 900px) {
    .lp-produk-item {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 60px;
    }
}

.lp-produk-specs li i {
    color: var(--lp-primary);
    font-size: 0.95rem;
    flex-shrink: 0;
}

.lp-sc-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--lp-primary);
    color: var(--lp-white);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 12px 24px;
    border-radius: 50px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(230,57,70,0.3);
}

.lp-sc-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(230,57,70,0.45);
    gap: 12px;
}

/* ===== FAQ SECTION ===== */
.lp-faq-section {
    background: var(--lp-bg);
}

.lp-faq-layout {
    max-width: 1200px;
    margin: 0 auto;
}

/* Content */
.lp-faq-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
    animation: lpFadeInUp 0.4s ease;
}

.lp-faq-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lp-faq-item {
    background: var(--lp-white);
    border: 1px solid var(--lp-border);
    border-radius: 12px;
    margin-bottom: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.lp-faq-item:hover {
    border-color: rgba(230,57,70,0.3);
}

.lp-faq-item.open {
    border-color: var(--lp-primary);
    box-shadow: 0 8px 24px rgba(230,57,70,0.06);
}

.lp-faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 24px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--lp-text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.lp-faq-item.open .lp-faq-q {
    color: var(--lp-primary);
}

.lp-faq-q i {
    font-size: 0.9rem;
    color: var(--lp-text-muted);
    transition: transform 0.3s ease;
}

.lp-faq-item.open .lp-faq-q i {
    transform: rotate(180deg);
    color: var(--lp-primary);
}

.lp-faq-a {
    padding: 0 24px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--lp-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.lp-faq-item.open .lp-faq-a {
    padding: 0 24px 24px 24px;
    max-height: 500px;
    opacity: 1;
}

.lp-faq-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px dashed var(--lp-border);
}

.lp-faq-split strong {
    display: block;
    color: var(--lp-text);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.lp-faq-split ul {
    list-style: none;
    padding-left: 0;
}

.lp-faq-split li {
    font-size: 0.85rem;
    position: relative;
    padding-left: 14px;
    margin-bottom: 4px;
}

.lp-faq-split li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: var(--lp-primary);
}

/* Responsive */
@media (max-width: 900px) {
    .lp-produk-item {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 60px;
    }

    .lp-produk-item.lp-produk-reverse {
        direction: ltr;
    }

    .lp-faq-list {
        grid-template-columns: 1fr;
    }

    .lp-faq-split {
        grid-template-columns: 1fr;
    }
}



/* Coming Soon Badge */
.lp-badge-soon {
    display: inline-flex;
    align-items: center;
    background: rgba(230, 57, 70, 0.08);
    color: var(--lp-primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
    margin-top: -4px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(230, 57, 70, 0.15);
}
.lp-badge-soon i {
    margin-right: 5px;
    font-size: 0.85rem;
}

/* =============================================
   PERSONAL GREETING / MOMEN SPESIAL SECTION
   ============================================= */

.lp-greeting {
    background: #ffffff;
    border-top: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.lp-greeting-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* === LEFT: VISUAL === */
.lp-greeting-visual {
    position: relative;
}

.lp-greeting-carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0,0,0,0.18), 0 8px 24px rgba(230, 57, 70, 0.12);
}

.lp-greeting-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
    pointer-events: none;
}

.lp-greeting-slide.active {
    opacity: 1;
    pointer-events: auto;
}

/* Mockup screen */
.lp-greeting-mockup {
    width: 100%;
    height: 100%;
}

.lp-mockup-screen {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Per-slide gradients */
.lp-greeting-slide[data-type="birthday"] .lp-mockup-screen {
    background: linear-gradient(135deg, #1a0a0f 0%, #3d0a18 50%, #1a0a0f 100%);
}
.lp-greeting-slide[data-type="graduation"] .lp-mockup-screen {
    background: linear-gradient(135deg, #0a0f1a 0%, #0a2d3d 50%, #0a0f1a 100%);
}
.lp-greeting-slide[data-type="proposal"] .lp-mockup-screen {
    background: linear-gradient(135deg, #1a0a14 0%, #3d0a28 50%, #1a0a14 100%);
}
.lp-greeting-slide[data-type="anniversary"] .lp-mockup-screen {
    background: linear-gradient(135deg, #1a0f0a 0%, #3d1a0a 50%, #1a0f0a 100%);
}

.lp-mockup-overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 80% 20%, rgba(230,57,70,0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(255,255,255,0.05) 0%, transparent 50%);
}

.lp-mockup-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 32px;
}

.lp-mockup-emoji {
    font-size: 3rem;
    margin-bottom: 10px;
    filter: drop-shadow(0 4px 12px rgba(230,57,70,0.4));
    animation: floatEmoji 3s ease-in-out infinite;
}

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

.lp-mockup-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.lp-mockup-title {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(90deg, #fff 0%, #ffd6da 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.lp-mockup-name {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    margin-bottom: 4px;
}

.lp-mockup-from {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    font-style: italic;
}

.lp-mockup-brand {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 3;
}

.lp-mockup-brand img {
    height: 18px;
    opacity: 0.7;
}

.lp-mockup-brand span {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.45);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
}

/* Decorative scan-line effect */
.lp-mockup-screen::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255,255,255,0.015) 2px,
        rgba(255,255,255,0.015) 4px
    );
    pointer-events: none;
    z-index: 1;
}

/* Red accent line at top */
.lp-mockup-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--lp-primary), transparent);
    z-index: 4;
}

/* Dots */
.lp-greeting-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.lp-greeting-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.18);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.lp-greeting-dot.active {
    width: 28px;
    border-radius: 4px;
    background: var(--lp-primary);
}

/* Floating type badge */
.lp-greeting-type-badge {
    position: absolute;
    top: -14px;
    right: -14px;
    background: var(--lp-primary);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 30px;
    box-shadow: 0 6px 20px rgba(230,57,70,0.35);
    transition: all 0.4s ease;
    white-space: nowrap;
    z-index: 10;
}

/* === RIGHT: TEXT === */
.lp-section-label-special {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--lp-primary) !important;
    background: rgba(230,57,70,0.08) !important;
    border: 1px solid rgba(230,57,70,0.2) !important;
}

.lp-section-label-special i {
    font-size: 0.9rem;
}

.lp-greeting-heading {
    margin-bottom: 16px !important;
}

.lp-greeting-desc {
    color: var(--lp-text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

/* Layanan list */
.lp-greeting-list {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
}

.lp-greeting-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--lp-text);
}

.lp-greeting-list li i {
    color: var(--lp-primary);
    font-size: 1rem;
    flex-shrink: 0;
}

/* Highlight box */
.lp-greeting-highlight {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: linear-gradient(135deg, rgba(230,57,70,0.06) 0%, rgba(247,127,0,0.04) 100%);
    border: 1px solid rgba(230,57,70,0.2);
    border-left: 3px solid var(--lp-primary);
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 28px;
}

.lp-greeting-highlight i {
    color: var(--lp-primary);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.lp-greeting-highlight span {
    font-size: 0.85rem;
    color: var(--lp-text);
    font-weight: 500;
    line-height: 1.6;
}

/* CTA Buttons */
.lp-greeting-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.lp-btn-outline-dark {
    background: transparent;
    border: 2px solid #212529;
    color: #212529;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.lp-btn-outline-dark:hover {
    background: #212529;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(33,37,41,0.25);
}

.lp-btn-outline-dark i {
    font-size: 1rem;
    color: #25D366;
}

.lp-btn-outline-dark:hover i {
    color: #25D366;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
    .lp-greeting-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .lp-greeting-visual {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }

    .lp-greeting-type-badge {
        top: -10px;
        right: -10px;
        font-size: 0.72rem;
        padding: 6px 12px;
    }
}

@media (max-width: 520px) {
    .lp-greeting-list {
        grid-template-columns: 1fr;
    }

    .lp-greeting-actions {
        flex-direction: column;
    }

    .lp-greeting-actions a {
        text-align: center;
        justify-content: center;
    }

    .lp-mockup-title {
        font-size: 1.2rem;
    }

    .lp-mockup-emoji {
        font-size: 2.2rem;
    }
}
