
/* ==========================================================================
   APPLE x TESLA LUXURY CARD ENGINE - PROMEGA AUTOMATION
   ========================================================================== */

/* Main Container - Deep Space Foundation */
.pmg-automation-v2 {
    background-color: #0A0A0C; /* Hitam Sultan Selera Kita */
    padding: 100px 0;
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow: hidden;
}

/* Tesla Cyber Laser Line */
.pmg-laser-line-v2 {
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, rgba(253,185,19,0) 0%, rgba(253,185,19,0.4) 50%, rgba(253,185,19,0) 100%);
}

/* Premium Header Layout */
.pmg-header-v2 {
    max-width: 1200px;
    margin: 0 auto 56px;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.pmg-header-left-v2 h2 {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: #ffffff;
    margin: 0;
    line-height: 1.1;
}

/* Wrapper Re-engineered to Premium Grid Layout */
.pmg-wrapper-v2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.pmg-slider-container-v2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 Kolom Card Mewah Simetris */
    gap: 40px;
    width: 100%;
}

/* Monolithic Glassmorphic Card Link Wrapper */
.pmg-card-luxury-v2 {
    background-color: rgba(18, 18, 22, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.pmg-link-wrapper-v2 {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Hover Physics - Tesla Autopilot Card Lift */
.pmg-card-luxury-v2:hover {
    transform: translateY(-8px);
    border-color: rgba(253, 185, 19, 0.25); /* Glow Tipis Oranye pas di-hover */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(253, 185, 19, 0.03);
}

/* Visual Product Frame with Zero-Gravity Ambient */
.pmg-card-visual-v2 {
    position: relative;
    background-color: #121216;
    height: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.pmg-card-visual-v2 img {
    max-width: 100%;
    max-height: 240px;
    object-fit: contain;
    z-index: 2;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.3));
}

.pmg-card-luxury-v2:hover .pmg-card-visual-v2 img {
    transform: scale(1.05) translateY(-4px);
}

/* Sasa's Signature Ambient Orange Glow */
.pmg-orange-glow-v2 {
    position: absolute;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(253, 185, 19, 0.12) 0%, rgba(0,0,0,0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    filter: blur(25px);
    z-index: 1;
    transition: all 0.5s ease;
}

.pmg-card-luxury-v2:hover .pmg-orange-glow-v2 {
    background: radial-gradient(circle, rgba(253, 185, 19, 0.18) 0%, rgba(0,0,0,0) 70%);
    width: 260px;
    height: 260px;
}

/* Sophisticated Typography Panel */
.pmg-card-info-v2 {
    padding: 40px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pmg-brand-badge-v2 {
    font-size: 11px;
    font-weight: 700;
    color: #2997ff; /* Cyber Blue Badge */
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: inline-block;
}

.pmg-card-info-v2 h3 {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.pmg-lab-stat-v2 {
    font-size: 13px;
    color: #86868b;
    font-weight: 500;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
    display: block;
    line-height: 1.4;
}

.pmg-card-desc-v2 {
    font-size: 14.5px;
    line-height: 1.6;
    color: #ccd0d5;
    margin: 0;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden; /* Biar deskripsi kepotong rapi kalo kepanjangan */
}

/* Responsive Adaptive Viewport */
@media (max-width: 992px) {
    .pmg-slider-container-v2 {
        grid-template-columns: 1fr; /* Responsif langsung jadi 1 kolom di tablet/mobile */
        gap: 32px;
    }
    
    .pmg-header-v2 {
        margin-bottom: 40px;
    }

    .pmg-card-info-v2 {
        padding: 32px;
    }
}

@media (max-width: 734px) {
    .pmg-automation-v2 {
        padding: 60px 0;
    }
    
    .pmg-header-v2 {
        padding: 0 24px;
    }
    
    .pmg-wrapper-v2 {
        padding: 0 24px;
    }

    .pmg-header-left-v2 h2 {
        font-size: 28px;
    }
}