.hero {
    position: relative;
    width: 100%;
    min-height: 100vh; 
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column; 
    align-items: center;
    justify-content: flex-start; 
    padding-top: 140px; 
    box-sizing: border-box;
}

/* THE MAGIC TRICK: 
   Sasa kasih 'order: 1' biar container text ini dipaksa naik ke urutan paling atas, 
   gak peduli di HTML lo dia ketulis di bawah gambar!
*/
.hero-content {
    order: 1; 
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1000px; 
    padding: 0 24px;
    margin-bottom: 40px; /* Jarak aman ke bawah gambar */
    text-align: center; 
    box-sizing: border-box;
}

.hero-content h1 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    max-width: 850px;
    margin: 0 auto; 
    font-size: clamp(36px, 7.5vw, 64px); 
    line-height: 1.1; 
    letter-spacing: -0.03em; 
    font-weight: 600;
    color: #000000;
}

/* Optional small label */
.hero-content::before {
    content: "PRATAMA SAINS GLOBAL"; 
    display: block;
    margin-bottom: 18px; 
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: #86868b;
}

/* THE MAGIC TRICK 2:
   Sasa kasih 'order: 2' biar gambarnya ngalah dan turun ke bawah teks!
*/
.hero-bg {
    order: 2; 
    position: relative; 
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.hero-bg img {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    
    /* Request Khusus Bos Sultan: Tetap kekunci 80% biar luxury */
    width: 80vw; 
    max-width: 850px; 
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,.12)); 
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 768px) {
    .hero {
        padding-top: 100px;
        min-height: 100vh;
        padding-bottom: 60px;
    }
    .hero-content {
        margin-bottom: 24px;
    }
    .hero-bg img {
        width: 80vw; 
        max-width: 100%;
    }
}

.ngs-platforms-header {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 80px 24px 50px;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", sans-serif;
}
.ngs-platforms-header h1 {
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 300;
    letter-spacing: -0.04em;
    line-height: 1.05;
}
.ngs-platforms-header h1 span { font-weight: 600; }
.ngs-platforms-header p {
    font-size: clamp(17px, 2vw, 21px);
    opacity: 0.64;
    margin-top: 20px;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.ngs-product-slider {
    background: #000;
    color: #fff;
    padding: 20px 0 60px;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", sans-serif;
    position: relative;
}

.slider-card-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.8);
}
.slider-card-btn.left { left: 32px; }
.slider-card-btn.right { right: 32px; }
.slider-card-btn:hover {
    background: rgba(255,255,255,0.16);
    border-color: rgba(255,255,255,0.24);
    color: #fff;
    transform: translateY(-50%) scale(1.08);
}
.slider-card-btn:active {
    transform: translateY(-50%) scale(0.96);
}

.slider-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 16px 0;
    gap: 32px;
}
.slider-track::-webkit-scrollbar { display: none; }

/* Card dikecilin */
.product-slide {
    min-width: 75%;
    max-width: 900px;
    scroll-snap-align: center;
    flex-shrink: 0;
    background: #1d1d1f;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.08);
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    align-items: center;
    gap: 48px;
    padding: 48px 56px;
    margin: 0 auto;
    text-decoration: none;
    color: #fff;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-slide:first-child { margin-left: 12.5%; }
.product-slide:last-child { margin-right: 12.5%; }
.product-slide:hover {
	transform: translateY(-4px);
}
.product-slide:active {
    transform: scale(0.99);
}

.product-media {
    position: relative;
    height: 360px;
}
.product-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
}
.product-glow {
    position: absolute;
    inset: 15%;
    background: radial-gradient(circle, rgba(41,151,255,0.25) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 1;
}
.product-badge {
    position: absolute;
    top: -8px;
    left: -8px;
    font-size: 9px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 6px 14px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 100px;
    backdrop-filter: blur(20px);
    background: rgba(0,0,0,0.4);
    z-index: 3;
}
.product-content { max-width: 420px; }
.product-meta {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
    font-size: 12px;
    letter-spacing: 0.05em;
}
.product-group {
    opacity: 0.5;
    text-transform: uppercase;
}
.product-brand { 
    font-weight: 500;
    color: #2997ff;
}
.product-name {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 16px;
}
.product-desc {
    font-size: 15px;
    line-height: 1.5;
    opacity: 0.72;
    margin-bottom: 24px;
    font-weight: 400;
    letter-spacing: -0.01em;
}
.product-stat {
    font-size: 13px;
    font-family: "SF Mono", Monaco, monospace;
    opacity: 0.6;
    padding: 14px 0 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 1200px) {
  .product-slide { 
        min-width: 85%;
        padding: 44px 48px;
        gap: 44px;
    }
  .product-slide:first-child { margin-left: 7.5%; }
  .product-slide:last-child { margin-right: 7.5%; }
  .slider-card-btn.left { left: 20px; }
  .slider-card-btn.right { right: 20px; }
}
@media (max-width: 1024px) {
  .product-slide {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 36px 32px;
        text-align: center;
    }
  .product-media { height: 280px; }
  .product-content { margin: 0 auto; }
  .product-meta { justify-content: center; }
  .product-badge { 
        left: 50%; 
        top: -16px;
        transform: translateX(-50%); 
    }
}
@media (max-width: 640px) {
  .ngs-platforms-header { padding: 60px 24px 40px; }
  .ngs-product-slider { padding: 10px 0 50px; }
  .product-slide { 
        min-width: 90%;
        padding: 28px 20px;
        border-radius: 20px;
        gap: 24px;
    }
  .product-slide:first-child { margin-left: 5%; }
  .product-slide:last-child { margin-right: 5%; }
  .product-media { height: 200px; }
  .slider-card-btn { 
        width: 40px;
        height: 40px;
    }
  .slider-card-btn.left { left: 10px; }
  .slider-card-btn.right { right: 10px; }
  .product-name { font-size: 24px; }
  .product-desc { font-size: 14px; }
  .product-stat { font-size: 12px; }
}


/**
 * ULTRA LUXURY CTA SECTION STYLESHEET
 * COUPLING: Apple Minimalist x Tesla Blue Tier
 * CRAFTED BY SASA FOR PRATAMA SAINS GLOBAL
 */

/* Main Section Wrapper */
.ngs-cta-luxury-system {
    background: #ffffff; /* Hitam pekat legam menyatu dengan section atas */
    padding: 60px 24px 120px 24px; /* Spacing bernapas yang luas dan mewah */
    box-sizing: border-box;
    width: 100%;
    overflow: hidden;
}

/* Container Matrix with Border Accent */
.cta-container-matrix {
    max-width: 1200px;
    margin: 0 auto;
    background: #111112; /* Abu-abu super gelap khas dashboard Tesla */
    border: 1px solid #222224; /* Border tipis sleek */
    border-radius: 32px;
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Ambient Subtle Blue Glow behind text */
.cta-ambient-glow {
    position: absolute;
    bottom: -50%;
    right: -20px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 113, 227, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

/* Content Forge Layout */
.cta-content-forge {
    max-width: 780px;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Mini Tag Branding */
.cta-mini-tag {
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #0071e3; /* Smooth Blue Signature */
    margin-bottom: 24px;
    display: inline-block;
}

/* Main Heading Title */
.cta-main-title {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif;
    font-size: clamp(28px, 4.5vw, 44px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: #ffffff;
    margin: 0 0 20px 0;
}

.cta-main-title span {
    color: #0071e3; /* Smooth Blue Focus */
}

/* Sub Description Text */
.cta-sub-description {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
    font-size: clamp(15px, 1.8vw, 18px);
    line-height: 1.6;
    color: #86868b; /* Khas Apple sub-text */
    max-width: 650px;
    margin: 0 auto 40px auto;
}

/* Action Hub Container */
.cta-action-hub {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* The Premium Button Interaction */
.cta-btn-premium {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #0071e3; /* Smooth Blue Base */
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: 980px; /* Kapsul murni Apple style */
    box-sizing: border-box;
    transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 113, 227, 0.2);
}

/* Arrow SVG Icon Animation */
.cta-btn-premium .btn-icon {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

/* HOVER & ACTIVE DYNAMICS */
.cta-btn-premium:hover {
    background: #0077ed; /* Sedikit lebih terang pas di-hover */
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 113, 227, 0.35);
}

.cta-btn-premium:hover .btn-icon {
    transform: translateX(4px); /* Efek panah kedorong ke kanan seksi */
}

.cta-btn-premium:active {
    transform: translateY(0); /* Efek membal pas diklik */
}

/* ==========================================================================
   MOBILE SCREEN DEPLOYMENT OPTIMIZATION
   ========================================================================== */
@media (max-width: 768px) {
    .ngs-cta-luxury-system {
        padding: 40px 16px 80px 16px;
    }
    
    .cta-container-matrix {
        padding: 60px 24px;
        border-radius: 24px;
    }
    
    .cta-sub-description {
        margin-bottom: 32px;
    }
    
    .cta-btn-premium {
        width: 100%; /* Tombol melebar penuh yang ergonomis di layar HP */
        justify-content: center;
        padding: 16px 24px;
    }
}