.hero{
	position:relative;
	width:100%;
	height:100vh;
	min-height:700px;
	overflow:hidden;
	background:#fff;
	display:flex;
	align-items:center;
}

.hero-bg{
	position:absolute;
	inset:0;
	width:100%;
	height:100%;
	z-index:1;
}

.hero-bg img{
	position:absolute;
	right:-8%;
	top:50%;
	transform:translateY(-50%);
	width:72vw;
	max-width:none;
	height:auto;
	object-fit:contain;
	filter: drop-shadow(0 40px 80px rgba(0,0,0,.12));
}

.hero-content{
	position:relative;
	z-index:3;
	width:100%;
	max-width:1600px;
	padding:0 7vw;
	margin-top:-40vh;
}

.hero-content h1{
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	max-width:700px;
	font-size:clamp(32px, 9vw, 70px);
	line-height:.88;
	letter-spacing:-0.07em;
	font-weight:500;
	/* biar napas luxury */
	margin:0;
}

/* optional small label */
.hero-content::before{
	content:"";
	display:block;
	margin-bottom:28px;
	font-size:11px;
	font-weight:600;
	letter-spacing:.28em;
	text-transform:uppercase;

	color:#7a7a7a;
}


/* responsive */
@media(max-width:1200px){

	.hero-bg img{
		width:95vw;
		right:-25%;
		opacity:.9;
	}

	.hero-content h1{
		font-size:clamp(56px, 12vw, 110px);
		max-width:500px;
	}
}

@media(max-width:768px){

	.hero{
		min-height:760px;
		align-items:flex-start;
		padding-top:160px;
	}

	.hero-bg img{
		width:145vw;
		right:-58%;
		top:58%;
		opacity:.85;
	}

	.hero-content{
		padding:0 28px;
	}

	.hero-content h1{
		font-size:64px;
		line-height:.9;
	}
}

.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; }
}