:root {
	--primary-color: #00AA9B;
	--dark-navy: #172333;
	--bg-light: #F8F9FA;
	--accent-orange: #f39c12;
}

/* HEADER */
.header-section {
	padding: 120px 0;
	background: linear-gradient(135deg,
			rgba(0, 162, 214, 0.85),
			rgba(52, 204, 103, 0.85));
	color: white;
    padding-top: 180px;
    
}

.header-subtitle {
	text-transform: uppercase;
	font-weight: 700;
	font-size: 0.85rem;
	letter-spacing: 2px;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 8px;
}

.header-title {
	font-weight: 800;
	font-size: clamp(2rem, 4vw, 2.8rem);
	color: white;
	margin-bottom: 10px;
}

.header-desc {
	color: rgba(255, 255, 255, 0.85);
	font-size: 1rem;
}

/* ORGANIZATION */
.org-container {
	padding: 60px 0 120px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* NODE */
.node {
	background: #fff;
	border-radius: 18px;
	/* sama */
	padding: 22px;
	/* sama */
	width: 260px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	border-top: 5px solid var(--primary-color);
	margin-bottom: 40px;
}

.node:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 35px rgba(0, 170, 155, 0.15);
}

.node-rups {
	border-top-color: var(--accent-orange);
}

.node-icon {
	font-size: 32px;
	color: var(--accent-orange);
	margin-bottom: 10px;
}

.node img {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background: #eee;
	object-fit: cover;
	margin-bottom: 15px;
}

.node h6 {
	font-weight: 800;
	margin-bottom: 5px;
	color: var(--dark-navy);
}

.node p {
	font-size: 0.85rem;
	color: var(--primary-color);
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 0;
}

/* LINE */
.line {
	width: 2px;
	height: 40px;
	background: #ddd;
	margin-top: -40px;
}

/* GRID */
.grid-manajemen {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	width: 100%;
	max-width: 1000px;
	margin-top: 20px;
}

/* NOTE */
.org-note {
	margin-top: 70px;
	padding: 24px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
	max-width: 800px;
	text-align: center;
}

.org-note p {
	font-size: 0.85rem;
	color: #6b7280;
	margin: 0;
}
