/* ───── RESET & VARIABLES ───── */
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
:root {
	--navy: #0f172a;
	--navy-1: #1e293b;
	--navy-2: #334155;
	--accent: #38bdf8;
	--accent-dim: #0ea5e9;
	--accent-glow: rgba(56, 189, 248, 0.25);
	--white: #f1f5f9;
	--white-dim: #94a3b8;
	--radius: 12px;
	--radius-lg: 20px;
}

html {
	scroll-behavior: smooth;
}
body {
	font-family: "DM Sans", sans-serif;
	background: var(--navy);
	color: var(--white);
	overflow-x: hidden;
	line-height: 1.6;
}
.mw-100{max-width: 100%;}
.w-100{width: 100%;}
.text-center{text-align:center;}
.logo-kontener {
	display: flex;
	align-items: center;
}
.d-none{display:none;}
.footer-text-company{color: var(--white);}
.footer-text-website{margin-top: 0.4rem;}
.brand img{
	width:100px;
	height:100px;
}
.logo-kontener img {
	margin-right: 10px;
}

/* ───── NOISE OVERLAY ───── */
body::after {
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 999;
	opacity: 0.035;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ───── SCROLLBAR ───── */
::-webkit-scrollbar {
	width: 6px;
}
::-webkit-scrollbar-track {
	background: var(--navy);
}
::-webkit-scrollbar-thumb {
	background: var(--navy-2);
	border-radius: 3px;
}

/* ═══════════════════════════════
NAVBAR
═══════════════════════════════ */
nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	padding: 1.25rem 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition:
		background 0.4s,
		backdrop-filter 0.4s,
		padding 0.4s;
}
nav.scrolled {
	background: rgba(15, 23, 42, 0.75);
	backdrop-filter: blur(14px);
	padding: 0.75rem 2rem;
	box-shadow: 0 1px 0 rgba(56, 189, 248, 0.12);
}
.nav-logo {
	font-family: "Syne", sans-serif;
	font-weight: 700;
	font-size: 1.25rem;
	color: var(--white);
	text-decoration: none;
	letter-spacing: -0.5px;
}
.nav-logo img{
	width:32px;
	height: 32px;
}
.nav-logo span {
	color: var(--accent);
}
.nav-links {
	display: flex;
	gap: 2rem;
	list-style: none;
}
.nav-links a {
	color: var(--white-dim);
	text-decoration: none;
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.3px;
	text-transform: uppercase;
	position: relative;
	padding-bottom: 4px;
	transition: color 0.3s;
}
.nav-links a::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--accent);
	border-radius: 1px;
	transition: width 0.3s;
}
.nav-links a:hover {
	color: var(--accent);
}
.nav-links a:hover::after {
	width: 100%;
}




/* ═══════════════════════════════
HERO
═══════════════════════════════ */

.contact-section {
  padding: 100px 20px;
  background: radial-gradient(circle at top, #0d1b2a, #020617);
  color: #e5e7eb;
  font-family: system-ui, sans-serif;
}

.contact-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.section-tag {
  color: #38bdf8;
  font-size: 12px;
  letter-spacing: 2px;
}

.contact-header h1 {
  font-size: 42px;
  margin: 16px 0;
  font-weight: 700;
}

.contact-header h1 span {
  color: #38bdf8;
}

.contact-header p {
  color: #94a3b8;
  line-height: 1.6;
}

.contact-card {
  max-width: 960px;
  margin: auto;
  padding: 40px;
  display: grid;
  grid-template-columns: 100px 1fr 240px;
  gap: 40px;
  border-radius: 24px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  margin-top:2rem;
}

.brand img {
  max-width: 120px;
}
.contact-info {
  display: flex;
  gap: 52px;
}
.info-item {
	margin-bottom:10px;
}
.info-item small {
  display: block;
  color: #94a3b8;
  margin-bottom: 0;
}

.info-item a,
.info-item span {
  color: #e5e7eb;
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
  font-size: 0.82rem;
}

.cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  color: #020617;
  padding: 14px 20px;
  border-radius: 999px;
  text-align: center;
  font-weight: 600;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(56,189,248,.4);
}

.cta small {
  color: #94a3b8;
  font-size: 12px;
}

/* ═══════════════════════════════
HERO
═══════════════════════════════ */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 3rem 2rem 4rem;
	overflow: hidden;
}
/* Hero background image */
.hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.hero-bg canvas {
	display: block;
	width: 100%;
	height: 100%;
}
/* gradient overlay on top of canvas */
.hero-bg::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		linear-gradient(
			180deg,
			var(--navy) 0%,
			transparent 25%,
			transparent 70%,
			var(--navy) 100%
		),
		linear-gradient(
			90deg,
			var(--navy) 0%,
			transparent 15%,
			transparent 85%,
			var(--navy) 100%
		);
	z-index: 1;
}
/* Floating glow orbs */
.hero-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(90px);
	opacity: 0.35;
	pointer-events: none;
}
.hero-orb-1 {
	width: 520px;
	height: 520px;
	background: #0ea5e9;
	top: -120px;
	left: -100px;
}
.hero-orb-2 {
	width: 400px;
	height: 400px;
	background: #6366f1;
	bottom: -60px;
	right: -80px;
}
.hero-orb-3 {
	width: 260px;
	height: 260px;
	background: #38bdf8;
	top: 40%;
	left: 60%;
	opacity: 0.2;
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 780px;
}
.hero-badge {
	display: inline-block;
	border: 1px solid rgba(56, 189, 248, 0.3);
	background: rgba(56, 189, 248, 0.08);
	color: var(--accent);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	padding: 0.45rem 1.1rem;
	border-radius: 50px;
	margin-bottom: 1.8rem;
	animation: fadeUp 0.8s 0.2s both;
}
.hero h1 {
	font-family: "Syne", sans-serif;
	font-size: clamp(2.6rem, 6vw, 4.2rem);
	/* font-weight:800;  */
	line-height: 1.1;
	letter-spacing: -2px;
	color: var(--white);
	animation: fadeUp 0.8s 0.35s both;
}
.hero h1 .accent {
	color: var(--accent);
}
.hero p {
	margin-top: 1.4rem;
	font-size: 1.05rem;
	color: var(--white-dim);
	max-width: 560px;
	margin-left: auto;
	margin-right: auto;
	font-weight: 300;
	animation: fadeUp 0.8s 0.5s both;
}
.hero-cta {
	margin-top: 2.4rem;
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
	animation: fadeUp 0.8s 0.65s both;
}
.btn-primary {
	background: var(--accent);
	color: var(--navy);
	font-family: "DM Sans", sans-serif;
	font-weight: 600;
	font-size: 0.9rem;
	padding: 0.8rem 1.8rem;
	border-radius: 50px;
	border: none;
	cursor: pointer;
	text-decoration: none;
	letter-spacing: 0.3px;
	box-shadow: 0 0 28px var(--accent-glow);
	transition:
		transform 0.25s,
		box-shadow 0.25s;
}
.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 0 40px var(--accent-glow);
}
.btn-ghost {
	border: 1px solid rgba(56, 189, 248, 0.35);
	color: var(--accent);
	background: transparent;
	font-family: "DM Sans", sans-serif;
	font-weight: 500;
	font-size: 0.9rem;
	padding: 0.8rem 1.8rem;
	border-radius: 50px;
	cursor: pointer;
	text-decoration: none;
	transition:
		background 0.3s,
		color 0.3s;
}
.btn-ghost:hover {
	background: rgba(56, 189, 248, 0.1);
	color: #fff;
}

/* scroll hint */
.scroll-hint {
	position: absolute;
	bottom: 2.2rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	color: var(--white-dim);
	font-size: 0.72rem;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	opacity: 0.6;
	z-index: 2;
}
.scroll-hint .line {
	width: 1px;
	height: 38px;
	background: var(--accent);
	animation: scrollBounce 1.8s infinite;
}

/* ═══════════════════════════════
SECTION COMMON
═══════════════════════════════ */
section:not(.harga) {
	padding: 7rem 2rem;
}

section.about{
	padding-top: 0!important;
}
.section-label {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	color: var(--accent);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 1.8px;
	text-transform: uppercase;
	margin-bottom: 1rem;
}
.section-label .dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--accent);
}
.section-title {
	font-family: "Syne", sans-serif;
	font-size: clamp(1.9rem, 4vw, 2.8rem);
	font-weight: 700;
	letter-spacing: -1px;
	line-height: 1.2;
	color: var(--white);
	max-width: 560px;
	margin : 0 auto;
}
.section-title .accent {
	color: var(--accent);
}
.section-desc {
	color: var(--white-dim);
	font-size: 0.95rem;
	max-width: 540px;
	margin-top: 0.9rem;
	font-weight: 300;
}

/* ═══════════════════════════════
ABOUT
═══════════════════════════════ */
.about {
	max-width: 1140px;
	margin: 0 auto;
}
.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	margin-top: 3.5rem;
}
.about-img-wrap {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	aspect-ratio: 4/3;
}
.about-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s;
}
.about-img-wrap:hover img {
	transform: scale(1.04);
}
.about-img-wrap::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(15, 23, 42, 0.5) 0%,
		transparent 60%
	);
	border-radius: var(--radius-lg);
}
.about-img-wrap .img-accent {
	position: absolute;
	bottom: 1.2rem;
	left: 1.2rem;
	z-index: 2;
	background: var(--navy-1);
	border: 1px solid var(--navy-2);
	border-radius: var(--radius);
	padding: 0.7rem 1rem;
	font-size: 0.78rem;
	color: var(--white-dim);
}
.about-img-wrap .img-accent strong {
	color: var(--accent);
	font-size: 1.1rem;
	display: block;
}

.about-text .vision-box {
	margin-top: 2rem;
	border-left: 3px solid var(--accent);
	padding-left: 1.2rem;
	background: rgba(56, 189, 248, 0.04);
	border-radius: 0 var(--radius) var(--radius) 0;
	padding: 1rem 1.2rem;
}
.about-text .vision-box .vl {
	font-size: 0.7rem;
	color: var(--accent);
	letter-spacing: 1.5px;
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 0.3rem;
}
.about-text .vision-box p {
	font-size: 0.9rem;
	color: var(--white-dim);
	font-weight: 300;
}

/* ═══════════════════════════════
MISI (horizontal pills)
═══════════════════════════════ */
.misi {
	background: var(--navy-1);
	position: relative;
	overflow: hidden;
}
.misi::before {
	content: "";
	position: absolute;
	inset: 0;
	background: url("https://images.unsplash.com/photo-1531746020798-e6953c6e8e04?w=1400&q=60")
		center/cover no-repeat;
	opacity: 0.06;
	filter: saturate(0);
}
.misi-inner {
	max-width: 1140px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}
.misi-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.2rem;
	margin-top: 3rem;
}
.misi-card {
	background: rgba(15, 23, 42, 0.7);
	border: 1px solid rgba(56, 189, 248, 0.1);
	border-radius: var(--radius-lg);
	padding: 1.6rem 1.4rem;
	transition:
		border-color 0.3s,
		transform 0.3s;
	backdrop-filter: blur(6px);
}
.misi-card:hover {
	border-color: var(--accent);
	transform: translateY(-4px);
}
.misi-card .mc-icon {
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: rgba(56, 189, 248, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	margin-bottom: 0.9rem;
}
.misi-card h4 {
	font-family: "Syne", sans-serif;
	font-size: 0.88rem;
	font-weight: 700;
	margin-bottom: 0.35rem;
	color: var(--white);
}
.misi-card p {
	font-size: 0.78rem;
	color: var(--white-dim);
	line-height: 1.55;
	font-weight: 300;
}


/* ═══════════════════════════════
SECURITY (horizontal pills)
═══════════════════════════════ */

.security {
	max-width: 1140px;
	margin: 0 auto;
}
.security-inner {
	max-width: 1140px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}
.security-header {
	text-align: center;
}
.security-header .section-desc {
	margin-left: auto!important;
	margin-right: auto!important;
}
.security-list{
	margin-top: 2rem;
	display:flex;
	flex-direction: column;
	gap:10px;
}
.security-list .vision-box {
	border-left: 3px solid var(--accent);
	padding-left: 1.2rem;
	background: rgba(56, 189, 248, 0.04);
	padding: 1rem 1.2rem;
}
.security-list .vision-box p {
	color: #94A3B8;
	font-size: 0.9rem;
}
.d-flex{
	display: flex;
}
.justify-content-center{
	justify-content: center;
}
.gap-15px{
	gap:15px;
}
.security-list .vision-box .d-flex .title{
	color: #E5E7EB !important;
}
.security-list .vision-box .d-flex .accent {
	color: var(--accent);
	/* color: #60A5FA; */
	font-weight: 600;
}
.btn-link{
	display: inline-block;
	background: rgba(56, 189, 248, 0.1);
	color: var(--accent);
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 1px;
	padding: 0.4rem 1rem;
	border-radius: 20px;
	margin-top:10px;
}
.security-tag{
	display: inline-block;
	background: rgba(56, 189, 248, 0.1);
	color: var(--accent);
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 0.4rem 1rem;
	border-radius: 20px;
	margin-top: 3rem;
	margin-bottom: 0.6rem;
}
/* ═══════════════════════════════
LAYANAN SISTEM (cards with image)
═══════════════════════════════ */
.layanan {
	max-width: 1140px;
	margin: 0 auto;
}
.layanan-header {
	text-align: center;
}
.layanan-header .section-desc {
	margin-left: auto;
	margin-right: auto;
}

.layanan-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.6rem;
	margin-top: 3.5rem;
}
.lay-card {
	background: var(--navy-1);
	border: 1px solid var(--navy-2);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition:
		border-color 0.35s,
		transform 0.3s;
	display: flex;
	flex-direction: column;
}
.lay-card:hover {
	border-color: var(--accent);
	transform: translateY(-5px);
}
.lay-card-img {
	height: 160px;
	overflow: hidden;
}
.lay-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}
.lay-card:hover .lay-card-img img {
	transform: scale(1.06);
}
.lay-card-body {
	padding: 1.4rem;
	flex: 1;
}
.lay-card-body .lc-tag {
	display: inline-block;
	background: rgba(56, 189, 248, 0.1);
	color: var(--accent);
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 0.28rem 0.65rem;
	border-radius: 20px;
	margin-bottom: 0.6rem;
}
.lay-card-body h3 {
	font-family: "Syne", sans-serif;
	font-size: 1rem;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 0.35rem;
}
.lay-card-body p {
	font-size: 0.8rem;
	color: var(--white-dim);
	line-height: 1.6;
	font-weight: 300;
}

/* ═══════════════════════════════
PELATIHAN (split layout)
═══════════════════════════════ */

.pelatihan {
	background: var(--navy-1);
	position: relative;
	overflow: hidden;
}
.pelatihan::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(
		ellipse 60% 50% at 80% 50%,
		rgba(56, 189, 248, 0.08) 0%,
		transparent 70%
	);
}
.pelatihan-inner {
	max-width: 1140px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}
.pelatihan-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}
.pelatihan-img {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	aspect-ratio: 4/3;
}
.pelatihan-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.pelatihan-img::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(15, 23, 42, 0.45) 0%,
		transparent 55%
	);
}

.pelatihan-text .p-features {
	list-style: none;
	margin-top: 1.8rem;
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
}
.pelatihan-text .p-features li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	font-size: 0.88rem;
	color: var(--white-dim);
	font-weight: 300;
}
.pelatihan-text .p-features .pf-check {
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	border-radius: 6px;
	background: rgba(56, 189, 248, 0.12);
	border: 1px solid rgba(56, 189, 248, 0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent);
	font-size: 0.7rem;
	margin-top: 1px;
}
.pelatihan-text .p-btn {
	margin-top: 2rem;
}

/* Price cards grid */


.harga {
	max-width: 1140px;
	margin: 0 auto;
	padding: 7rem 0;
}

.harga::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(
		ellipse 60% 50% at 80% 50%,
		rgba(56, 189, 248, 0.08) 0%,
		transparent 70%
	);
}
/* .harga {
	background: var(--navy-1);
	position: relative;
	overflow: hidden;
}
.harga::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(
		ellipse 60% 50% at 80% 50%,
		rgba(56, 189, 248, 0.08) 0%,
		transparent 70%
	);
}
.harga-inner {
	max-width: 1140px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
} */

/* .harga { max-width:1140px; margin:0 auto; } */
.harga-header {
	text-align: center;
}
.harga-header .section-desc {
	margin-left: auto;
	margin-right: auto;
}

.harga-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-top: 3rem;
	align-items: stretch;
}
.harga-card {
	background: var(--navy-1);
	border: 1px solid var(--navy-2);
	border-radius: var(--radius-lg);
	padding: 2rem 1.6rem 2rem;
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
	transition:
		border-color 0.35s,
		transform 0.3s;
}
.harga-card:hover {
	border-color: rgba(56, 189, 248, 0.35);
	transform: translateY(-5px);
}

/* Featured / Popular card */
.harga-card.featured {
	border-color: var(--accent);
	background: linear-gradient(
		180deg,
		rgba(56, 189, 248, 0.07) 0%,
		var(--navy-1) 50%
	);
}
.harga-card.featured::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(
		90deg,
		transparent,
		var(--accent),
		transparent
	);
}
.harga-card .hc-badge {
	position: absolute;
	top: 1.1rem;
	right: 1.1rem;
	background: var(--accent);
	color: var(--navy);
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.9px;
	text-transform: uppercase;
	padding: 0.22rem 0.6rem;
	border-radius: 20px;
}

/* Card header */
.hc-icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: rgba(56, 189, 248, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	margin-bottom: 1rem;
}
.harga-card h3 {
	font-family: "Syne", sans-serif;
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--white);
}
.harga-card .hc-desc {
	font-size: 0.78rem;
	color: var(--white-dim);
	font-weight: 300;
	margin-top: 0.3rem;
	line-height: 1.5;
	height:100px!important;
}
.harga-card .hc-desc b{font-weight: 550;}
/* Price display */
.hc-price {
	margin-top: 1.4rem;
	/* display: flex;
	align-items: flex-end; */
	gap: 0.35rem;
}
.hc-price .price-val {
	font-family: "Syne", sans-serif;
	font-size: 1.9rem;
	font-weight: 700;
	color: var(--white);
	line-height: 1;
}
.hc-price .price-unit {
	font-size: 0.72rem;
	color: var(--white);
	font-weight: 400;
	margin-bottom: 0.25rem;
	line-height: 1.3;
}
.hc-price .price-cross {
	font-size: 0.75rem;
	color: var(--white-dim);
	text-decoration: line-through;
	margin-bottom: 0.2rem;
}

/* Feature list */
.hc-features {
	list-style: none;
	margin-top: 1.6rem;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
}
.hc-features li {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
	font-size: 0.79rem;
	color: var(--white-dim);
	font-weight: 300;
	line-height: 1.5;
}
.hc-features li b {
	font-weight: 600;
	color: gold;
}
.hc-features .feat-check {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	border-radius: 5px;
	background: rgba(56, 189, 248, 0.1);
	border: 1px solid rgba(56, 189, 248, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent);
	font-size: 0.62rem;
	margin-top: 1px;
}
.hc-features .feat-check.off {
	border-color: var(--navy-2);
	background: transparent;
	color: var(--navy-2);
}

/* CTA at bottom */
.hc-cta {
	margin-top: 1.8rem;
}
.hc-cta .btn-primary,
.hc-cta .btn-ghost {
	display: block;
	width: 100%;
	text-align: center;
	font-family: "DM Sans", sans-serif;
}

/* Note below grid */
.harga-note {
	text-align: center;
	margin-top: 1.8rem;
	font-size: 0.77rem;
	color: var(--white-dim);
	font-weight: 300;
}
.harga-note a {
	color: var(--accent);
	text-decoration: none;
}
.harga-note a:hover {
	text-decoration: underline;
}
/* Toggle switch */
.harga-toggle {
	display:flex; align-items:center; justify-content:center; gap:1rem;
	margin-top:2.2rem;
}
.harga-toggle .tgl-label {
	font-size:.8rem; color:var(--white-dim); font-weight:500; letter-spacing:.4px;
	transition:color .3s;
}
.harga-toggle .tgl-label.active { color:var(--white); }
.harga-toggle .tgl-badge {
	font-size:.62rem; color:var(--navy); background:var(--accent);
	font-weight:700; letter-spacing:.8px; text-transform:uppercase;
	padding:.18rem .55rem; border-radius:20px; margin-left:.3rem;
}
.tgl-switch {
	position:relative; width:48px; height:26px;
	background:var(--navy-2); border-radius:13px;
	cursor:pointer; transition:background .3s;
	border:none; outline:none;
}
.tgl-switch.active { background:var(--accent); }
.tgl-switch::after {
	content:''; position:absolute; top:3px; left:3px;
	width:20px; height:20px; border-radius:50%;
	background:#fff; transition:transform .3s;
}
.tgl-switch.active::after { transform:translateX(22px); }

/* ═══════════════════════════════
PROYEK (Case Studies)
═══════════════════════════════ */
/* .proyek {
	max-width: 1140px;
	margin: 0 auto;
}
.proyek::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(
		ellipse 60% 50% at 80% 50%,
		rgba(56, 189, 248, 0.08) 0%,
		transparent 70%
	);
} */
.proyek {
	background: var(--navy-1);
	position: relative;
	overflow: hidden;
}
.proyek::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(
		ellipse 60% 50% at 80% 50%,
		rgba(56, 189, 248, 0.08) 0%,
		transparent 70%
	);
}
.proyek-inner {
	max-width: 1140px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}
/* .proyek-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
} */
.proyek-header {
	text-align: center;
}
.proyek-header .section-desc {
	margin-left: auto;
	margin-right: auto;
}

.proyek-item {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	margin-top: 3rem;
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--navy-2);
	background: var(--navy-1);
	transition: border-color 0.35s;
}
.proyek-item:hover {
	border-color: rgba(56, 189, 248, 0.3);
}
.proyek-item:nth-child(even) {
	direction: rtl;
}
.proyek-item:nth-child(even) > * {
	direction: ltr;
}

/* Visual panel (left or right) */
.proyek-visual {
	position: relative;
	min-height: 340px;
	background: var(--navy);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.proyek-visual .pv-grid {
	position: absolute;
	inset: 0;
	opacity: 0.12;
	background-image:
		linear-gradient(var(--accent) 1px, transparent 1px),
		linear-gradient(90deg, var(--accent) 1px, transparent 1px);
	background-size: 40px 40px;
}
.proyek-visual .pv-glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(70px);
	pointer-events: none;
}
.proyek-visual .pv-icon {
	position: relative;
	z-index: 2;
	width: 88px;
	height: 88px;
	border-radius: 24px;
	background: rgba(56, 189, 248, 0.1);
	border: 2px solid rgba(56, 189, 248, 0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.4rem;
	box-shadow: 0 0 50px rgba(56, 189, 248, 0.15);
}

/* Content panel */
.proyek-content {
	padding: 2.4rem 2rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.proyek-content .pc-tag {
	display: inline-block;
	background: rgba(56, 189, 248, 0.1);
	color: var(--accent);
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 0.28rem 0.65rem;
	border-radius: 20px;
	width: fit-content;
	margin-bottom: 0.8rem;
}
.proyek-content h3 {
	font-family: "Syne", sans-serif;
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--white);
	letter-spacing: -0.3px;
}
.proyek-content .pc-problem {
	margin-top: 1rem;
	padding: 1rem 1.1rem;
	border-radius: 10px;
	background: rgba(239, 68, 68, 0.06);
	border-left: 3px solid #ef4444;
}
.proyek-content .pc-problem .pc-label {
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: #f87171;
	margin-bottom: 0.25rem;
}
.proyek-content .pc-problem p {
	font-size: 0.8rem;
	color: var(--white-dim);
	font-weight: 300;
	line-height: 1.55;
}

.proyek-content .pc-solution {
	margin-top: 0.7rem;
	padding: 1rem 1.1rem;
	border-radius: 10px;
	background: rgba(56, 189, 248, 0.05);
	border-left: 3px solid var(--accent);
}
.proyek-content .pc-solution .pc-label {
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 0.25rem;
}
.proyek-content .pc-solution p {
	font-size: 0.8rem;
	color: var(--white-dim);
	font-weight: 300;
	line-height: 1.55;
}

.proyek-content .pc-result {
	margin-top: 0.7rem;
	padding: 1rem 1.1rem;
	border-radius: 10px;
	background: rgba(34, 197, 94, 0.06);
	border-left: 3px solid #22c55e;
}
.proyek-content .pc-result .pc-label {
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: #4ade80;
	margin-bottom: 0.25rem;
}
.proyek-content .pc-result p {
	font-size: 0.8rem;
	color: var(--white-dim);
	font-weight: 300;
	line-height: 1.55;
}

/* ═══════════════════════════════
TRUST BAR
═══════════════════════════════ */
/* .trust {
	max-width: 1140px;
	margin: 0 auto;
}
.trust::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(
		ellipse 60% 50% at 80% 50%,
		rgba(56, 189, 248, 0.08) 0%,
		transparent 70%
	);
} */
.trust {
	background: var(--navy-1);
	position: relative;
	overflow: hidden;
}
.trust::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(
		ellipse 60% 50% at 80% 50%,
		rgba(56, 189, 248, 0.08) 0%,
		transparent 70%
	);
}
.trust-inner {
	max-width: 1140px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}
.trust-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}
.trust-item {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
	padding: 1.4rem 0;
}
.trust-item .ti-icon {
	flex-shrink: 0;
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: rgba(56, 189, 248, 0.08);
	border: 1px solid rgba(56, 189, 248, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.95rem;
}
.trust-item .ti-title {
	font-family: "Syne", sans-serif;
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 0.2rem;
}
.trust-item .ti-desc {
	font-size: 0.72rem;
	color: var(--white-dim);
	font-weight: 300;
	line-height: 1.5;
}
.link-accent {
	color: var(--accent);
	text-decoration: none;
}
/* ═══════════════════════════════
KONTAK
═══════════════════════════════ */
/* .kontak {
	background: var(--navy-1);
	position: relative;
	overflow: hidden;
}
.kontak::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(
		ellipse 60% 50% at 80% 50%,
		rgba(56, 189, 248, 0.08) 0%,
		transparent 70%
	);
}
.kontak-inner {
	max-width: 1140px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
	text-align: center;
} */
.kontak {
	max-width: 1140px;
	margin: 0 auto;
}
.kontak::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(
		ellipse 60% 50% at 80% 50%,
		rgba(56, 189, 248, 0.08) 0%,
		transparent 70%
	);
}
.kontak-header {
	text-align: center;
}
.kontak-header .section-desc {
	margin-left: auto;
	margin-right: auto;
}
.kontak-box {
	margin-top: 3rem;
	background: var(--navy-1);
	border: 1px solid var(--navy-2);
	border-radius: var(--radius-lg);
	padding: 3rem 2.5rem;
	position: relative;
	overflow: hidden;
}
.kontak-box::before {
	content: "";
	position: absolute;
	top: -80px;
	right: -80px;
	width: 260px;
	height: 260px;
	border-radius: 50%;
	background: var(--accent);
	filter: blur(100px);
	opacity: 0.12;
}
.kontak-box h2 {
	font-family: "Syne", sans-serif;
	font-size: clamp(1.6rem, 3.5vw, 2.1rem);
	font-weight: 700;
	letter-spacing: -0.5px;
	color: var(--white);
	position: relative;
}
.kontak-box p {
	color: var(--white-dim);
	font-size: 0.92rem;
	margin-top: 0.7rem;
	font-weight: 300;
	position: relative;
}
.kontak-items {
	display: flex;
	justify-content: center;
	gap: 3rem;
	margin-top: 2rem;
	flex-wrap: wrap;
	position: relative;
}
.kontak-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
}
.kontak-item .ki-icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: rgba(56, 189, 248, 0.1);
	border: 1px solid rgba(56, 189, 248, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	color: var(--accent);
}
.kontak-item .ki-label {
	font-size: 0.72rem;
	color: var(--white-dim);
	letter-spacing: 0.6px;
	text-transform: uppercase;
}
.kontak-item .ki-value {
	font-size: 0.82rem;
	color: var(--white);
	font-weight: 500;
}
.kontak-cta {
	margin-top: 2.2rem;
	position: relative;
}

/* ═══════════════════════════════
FOOTER
═══════════════════════════════ */
footer {
	background: var(--navy-1);
	border-top: 1px solid var(--navy-2);
	padding: 2.5rem 2rem;
	text-align: center;
}
footer p {
	font-size: 0.75rem;
	color: var(--white-dim);
	font-weight: 300;
}
footer a {
	color: var(--accent);
	text-decoration: none;
}

/* ═══════════════════════════════
ANIMATIONS
═══════════════════════════════ */
@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(28px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes scrollBounce {
	0%,
	100% {
		opacity: 0.6;
		transform: scaleY(1);
	}
	50% {
		opacity: 1;
		transform: scaleY(1.3);
	}
}

/* Reveal on scroll */
.reveal {
	opacity: 0;
	transform: translateY(32px);
	transition:
		opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
	opacity: 1;
	transform: translateY(0);
}
.reveal-delay-1 {
	transition-delay: 0.1s;
}
.reveal-delay-2 {
	transition-delay: 0.2s;
}
.reveal-delay-3 {
	transition-delay: 0.3s;
}
.reveal-delay-4 {
	transition-delay: 0.4s;
}

/* ═══════════════════════════════
RESPONSIVE
═══════════════════════════════ */
@media (max-width: 1080px) {
	.contact-info {
		display: grid;
		gap:0;
		grid-template-columns: 1fr;
	}
}
@media (max-width: 768px) {
	nav {
		padding: 1rem 1.2rem;
	}
	.nav-links {
		gap: 1rem;
	}
	.nav-links a {
		font-size: 0.7rem;
	}
	.about-grid,
	.pelatihan-grid {
		grid-template-columns: 1fr;
		gap: 2.2rem;
	}
	.layanan-grid {
		grid-template-columns: 1fr;
	}
	.harga-grid {
		grid-template-columns: 1fr;
	}
	.trust-grid {
		grid-template-columns: 1fr;
	}
	.proyek-item {
		grid-template-columns: 1fr;
	}
	.contact-card {
		grid-template-columns: 1fr;
	}
	.brand img{
		display: none;
	}
	.contact-info {
		display: grid;
		gap:0;
		grid-template-columns: 1fr;
	}
	.proyek-item:nth-child(even) {
		direction: ltr;
	}
	.proyek-visual {
		min-height: 220px;
	}
	.misi-grid {
		grid-template-columns: 1fr 1fr;
	}
	.security-grid {
		grid-template-columns: 1fr 1fr;
	}
	.kontak-items {
		gap: 1.8rem;
	}
	section {
		padding: 5rem 1.4rem;
	}
	.harga {
		padding: 5rem 2rem!important;
	}
}
@media (max-width: 480px) {
	.nav-links a {
		font-size: 0.65rem;
	}
	.misi-grid {
		grid-template-columns: 1fr;
	}
	.security-grid {
		grid-template-columns: 1fr;
	}
	.contact-card {
		grid-template-columns: 1fr;
	}
	
	.contact-info {
		display: grid;
		gap:0;
		grid-template-columns: 1fr;
	}
	.kontak-box {
		padding: 2rem 1.4rem;
	}
	.harga {
		padding: 5rem 2rem!important;
	}
}
    /* Demo wrapper only — remove in production */
    /* *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      background: #0a0d14;
      font-family: 'DM Sans', sans-serif;
      padding: 60px 0;
    } */
 
    /* ─────────────────────────────────────────
       CLIENTS SECTION
       Letakkan CSS ini di style.css kamu
    ───────────────────────────────────────── */
	section.clients{
		padding: 4rem 0 3rem 0!important;
		
	}
	.clients .ti-title {
		font-family: "Syne", sans-serif;
		font-size: 0.82rem;
		font-weight: 700;
		color: var(--white);
		margin-bottom: 0.2rem;
	}
 
    .clients-label {
      text-align: center;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: #475569;
    }
 
    /* ── Track wrapper: clips the scroll ── */
    .clients-track-wrap {
      	position: relative;
		overflow: hidden;
		margin: 0 auto!important;
		/* Fade edges */
		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%
		);
    }
 
    /* ── The scrolling track ── */
    .clients-track {
		display: flex;
		align-items: center;
		gap: 1rem;
		width: max-content;
		margin: 0 auto!important;
		/* Default: no animation (≤4 logos = static centered) */
		animation: none;
    }
 
    /* Only animate when JS adds this class */
	.clients-track.is-marquee {
		animation: marquee 28s linear infinite;
		/* Hapus akan-akan ada gap */
		gap: 1rem; /* pastikan gap konsisten */
	}

	/* Tambah ini — hilangkan gap antar "loop" */
	.clients-track.is-marquee::after {
		content: '';
		display: inline-block;
		width: 1rem; /* sama dengan gap */
	}
 
    @keyframes marquee {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
 
    /* ── When static (few logos): center them ── */
    .clients-track-wrap.is-static {
      display: flex;
      justify-content: center;
	  align-items: center;
    }
    .clients-track-wrap.is-static .clients-track {
      flex-wrap: wrap;
      justify-content: center;
      gap: 2.5rem 4rem;
    }
 
    /* ── Each logo item ── */
    /* Ubah client-item jadi flex column */
	.client-item {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: flex-end; /* dorong semua ke bawah */
		flex-shrink: 0;
		height: 120px;        /* tinggi fixed untuk semua item */
		min-width: 100px;
		padding: 0 8px;
		gap: 0.6rem;
		opacity: 0.5;
		/* filter: grayscale(100%) invert(1) brightness(1.2); */
		transition: opacity 0.3s, filter 0.3s;
	}
	.client-item:hover {
		opacity: 1;
		filter: grayscale(0%) invert(0) brightness(1);
	}

	/* Logo mengisi sisa ruang di atas teks */
	.client-item img {
		height: auto;
		max-height: 70px;     /* batas tinggi logo */
		width: auto;
		max-width: 140px;
		object-fit: contain;
		display: block;
		margin-top: auto;     /* dorong logo ke atas, teks ke bawah */
	}

	/* Teks selalu di baris yang sama */
	.client-text-logo {
		font-family: 'Syne', sans-serif;
		font-size: 0.75rem;
		font-weight: 600;
		color: #94a3b8;
		letter-spacing: 0.5px;
		white-space: nowrap;
		line-height: 1;
		flex-shrink: 0;
	}
 
    /* ─── Demo purpose only ─── */
    .demo-note {
      text-align: center;
      color: #334155;
      font-size: 0.78rem;
      margin-top: 3rem;
      font-family: monospace;
    }
