.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%;
    }
}

/**
 * COMBINED PLATFORMS & GRID SYSTEM STYLESHEET
 * LUXURY COUPLING - APPLE MINIMALIST x TESLA BLUE TIER
 * FIXED ALIGNMENT: Top Aligned Text & Max-Width Core Spec (Anti-Wrap Text)
 * CRAFTED BY SASA FOR PRATAMA SAINS GLOBAL
 */

/* Main Section Wrapper (Pondasi Luar Kontainer) */
.ngs-product-grid-system {
    background: #000000; /* Hitam pekat legam luxury, mantap! */
    padding: 120px 24px;
    box-sizing: border-box;
    width: 100%;
}

/* ==========================================================================
   THE PLATFORMS HEADER STYLING
   ========================================================================== */
.ngs-platforms-header {
    max-width: 900px;
    margin: 0 auto 70px; /* Jarak bawah menuju grid produk */
    text-align: center;
}

.ngs-platforms-header h1 {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, sans-serif;
    font-size: clamp(32px, 5.5vw, 52px); /* Auto fluid di mobile & desktop */
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #ffffff; 
    margin: 0 0 20px 0;
}

/* Aksen Warna Baru di Kata "Platforms" (Upgrade to Smooth Blue) */
.ngs-platforms-header h1 span {
    color: #0071e3; /* Smooth Blue khas Apple Premium Developer */
    display: inline-block;
}

.ngs-platforms-header p {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, sans-serif;
    font-size: clamp(16px, 1.8vw, 19px);
    line-height: 1.5;
    font-weight: 400;
    color: #86868b; /* Abu-abu premium sub-text Apple */
    max-width: 750px;
    margin: 0 auto;
}

/* ==========================================================================
   THE TWO-COLUMN MATRIX GRID STYLING
   ========================================================================== */
.luxury-grid-matrix {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr)); /* Ngunci 2 kolom solid di desktop */
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* The Premium Product Card */
.product-grid-card {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    background: #f5f5f7;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #e5e5e7;
    position: relative;
    box-sizing: border-box;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Image Viewport Area */
.product-media {
    position: relative;
    width: 100%;
    height: 380px;
    background: #f5f5f7;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    box-sizing: border-box;
    overflow: hidden;
}

/* Glassmorphism Badge Dynamic */
.product-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: rgba(255, 255, 255, 0.6);
    color: #1d1d1f;
    padding: 0.5rem 1.2rem;
    border-radius: 2px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 3;
    backdrop-filter: blur(12px);
    font-family: -apple-system, sans-serif;
}

/* Main Laboratory Device Image */
.product-main-img {
    max-width: 75%;
    max-height: 85%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.08));
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Ambient Radial Glow Behind Device */
.product-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 113, 227, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
    opacity: 0;
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.5s ease;
}

/* Content Details Area */
.product-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Memisahkan grup atas dengan grup footer bawah secara presisi */
    flex-grow: 1; 
    background: #ffffff;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Container Teks Atas (Memastikan Title & Deskripsi Rata Atas Sejajar Sempurna) */
.product-text-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
}

/* Meta Tags & Badges */
.product-meta {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 16px;
}

/* Luxury Smooth Blue Tag */
.product-group {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #0071e3;
    background: #e8f2ff;
    padding: 4px 10px;
    border-radius: 4px;
}

.product-brand {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #86868b;
}

/* ==========================================================================
   TYPOGRAPHY & STAT FOOTER RE-ENGINEERED BY SASA
   ========================================================================== */

/* Card Typography */
.product-name {
    font-size: 28px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 12px 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.product-desc {
    font-size: 15px;
    line-height: 1.5;
    color: #6e6e73;
    margin: 0 0 28px 0;
    font-weight: 400;
}

/* Technical Stat Footer inside Card (Full Width & Anti-Break Text) */
.product-stat {
    border-top: 1px solid #e5e5e7;
    padding-top: 20px;
    margin-top: auto; /* Memaksa footer ngunci di bawah area teks */
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%; /* Kasih kapasitas lebar penuh, Bos! */
    box-sizing: border-box;
}

.stat-label {
    color: #86868b;
    font-weight: 400;
    white-space: nowrap; /* Label gak boleh patah baris */
}

.stat-value {
    color: #1d1d1f;
    font-weight: 500;
    white-space: nowrap; /* Trik Sultan Ultimate: Text spek lo dijamin lurus satu baris terus! */
}

/* ==========================================================================
   HOVER INTERACTIONS (THE SULTAN SMOOTH BLUE EFFECTS)
   ========================================================================== */
.product-grid-card:hover {
    transform: translateY(-4px);
    border-color: #0071e3; 
    box-shadow: 0 5px 10px rgba(0, 71, 227, 0.06); 
}



.product-grid-card:hover .product-glow {
    opacity: 1;
}

/* ==========================================================================
   MOBILE RESPONSIVE COMPATIBILITY
   ========================================================================== */
@media (max-width: 768px) {
    .ngs-product-grid-system {
        padding: 60px 16px;
    }
    
    .ngs-platforms-header {
        margin-bottom: 45px;
    }
    
    .luxury-grid-matrix {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .product-media {
        height: 280px;
        padding: 24px;
    }
    
    .product-content {
        padding: 24px;
    }
}


/**
 * 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: #000000; /* 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;
    }
}