@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,700;1,800;1,900&display=swap');

html
{
	scroll-behavior: smooth;
	overflow-x: hidden;
	width: 100%;
	max-width: 100vw;
}

section[id]
{
	scroll-margin-top: 85px;
}

@media screen and (max-width: 768px)
{
	section[id]
	{
		scroll-margin-top: 70px;
	}
}

*
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body
{
	font-family: 'Poppins', sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: #1e293b;
	line-height: 1.6;
	overflow-x: hidden;
	width: 100%;
	max-width: 100vw;
	position: relative;
}

img
{
	max-width: 100%;
	height: auto;
}

a
{
	text-decoration: none;
	color: inherit;
	transition: color 0.2s ease;
}

h1, h2, h3, h4, h5, h6
{
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	color: #1a1a42;
}

h1
{
	font-size: 2.3rem;
	letter-spacing: -0.5px;
	line-height: 1.25;
}

span
{
	font-size: .9rem;
}

h6
{
	font-size: 1.1rem;
	color: rgb(24, 24, 49);
}


/*------------- Navigation style start ------------*/
nav
{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 74px;
	box-sizing: border-box;
	background-color: #ffffff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 28px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	border-bottom: 1px solid rgba(226, 232, 240, 0.7);
	z-index: 99995;
	transition: height 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

nav.scrolled
{
	height: 62px;
	background-color: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	box-shadow: 0 4px 20px -2px rgba(26, 26, 66, 0.08), 0 2px 6px -1px rgba(0, 0, 0, 0.04);
	border-bottom: 1px solid rgba(212, 160, 23, 0.25);
}

nav > a
{
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	line-height: 1;
	flex-shrink: 0;
}

nav .logo
{
	height: 38px;
	width: auto;
	max-width: 145px;
	cursor: pointer;
	object-fit: contain;
	transition: height 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s ease;
	display: block;
}

nav.scrolled .logo
{
	height: 32px;
}

nav .navigation
{
	display: flex;
	align-items: center;
	min-width: 0;
}

/* Navigation Drawer Base */
.nav-backdrop
{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(15, 23, 42, 0.65);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	z-index: 99990;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

.nav-backdrop.active
{
	display: block;
	opacity: 1;
	pointer-events: auto;
}

body.menu-open
{
	overflow: hidden !important;
}

.menu-toggle-btn
{
	display: none;
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	cursor: pointer;
	padding: 0;
	transition: all 0.2s ease;
}

.menu-toggle-btn:hover
{
	background: rgba(212, 160, 23, 0.1);
	border-color: rgba(212, 160, 23, 0.4);
}

.menu-toggle-btn .menu-bar
{
	width: 20px;
	height: 2px;
	background: #1a1a42;
	border-radius: 2px;
	transition: all 0.25s ease;
}

#menu-btn
{
	display: none;
}

#menu-close
{
	display: none;
}

.nav-drawer-header,
.nav-drawer-footer,
.nav-icon
{
	display: none;
}

nav .navigation ul .nav-item-wrapper
{
	display: contents;
}

nav .navigation ul
{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style: none;
	gap: 1px;
}

nav .navigation ul li
{
	list-style: none;
	margin: 0 1px;
}

nav .navigation ul li a
{
	text-decoration: none;
	color: #1a1a42;
	font-size: 13.5px;
	font-weight: 500;
	padding: 6px 9px;
	border-radius: 6px;
	transition: color 0.2s ease, background-color 0.2s ease;
	position: relative;
	display: inline-block;
	white-space: nowrap;
	letter-spacing: -0.15px;
}

nav .navigation ul li a::after
{
	content: '';
	position: absolute;
	bottom: 2px;
	left: 11px;
	right: 11px;
	height: 2px;
	background: #d4a017;
	border-radius: 2px;
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.25s ease;
}

nav .navigation ul li a:hover::after,
nav .navigation ul li a.active::after
{
	transform: scaleX(1);
}

nav .navigation ul li a.active
{
	color: #d4a017;
	font-weight: 600;
}

nav .navigation ul li a:hover
{
	color: #d4a017;
	background-color: rgba(212, 160, 23, 0.06);
}

/* Navigation Actions: Translate, Masuk, Daftar */
.nav-actions {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-left: 10px;
	flex-shrink: 0;
}

/* Language Picker Dropdown */
.nav-lang-picker {
	position: relative;
	display: inline-block;
}

.lang-btn {
	background: #f8fafc;
	border: 1.5px solid #e2e8f0;
	color: #1a1a42;
	padding: 5px 9px;
	border-radius: 8px;
	font-size: 12.5px;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	cursor: pointer;
	transition: all 0.2s ease;
	font-family: inherit;
}

.lang-btn:hover {
	background: #f1f5f9;
	border-color: #cbd5e1;
}

.lang-btn i.fa-globe {
	color: #2563eb;
	font-size: 13px;
}

.lang-btn i.lang-caret {
	font-size: 9px;
	color: #64748b;
	transition: transform 0.2s ease;
}

.nav-lang-picker.active .lang-btn i.lang-caret {
	transform: rotate(180deg);
}

.lang-dropdown {
	position: absolute;
	top: calc(100% + 6px);
	right: 0;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	min-width: 145px;
	padding: 6px;
	display: none;
	flex-direction: column;
	gap: 2px;
	z-index: 100010;
}

.nav-lang-picker.active .lang-dropdown {
	display: flex;
	animation: navFadeIn 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes navFadeIn {
	from { opacity: 0; transform: translateY(-4px); }
	to { opacity: 1; transform: translateY(0); }
}

.lang-opt {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	border-radius: 6px;
	color: #334155;
	font-size: 13px;
	font-weight: 500;
	text-decoration: none;
	transition: background 0.15s ease, color 0.15s ease;
}

.lang-opt:hover {
	background: #f1f5f9;
	color: #1a1a42;
}

.lang-opt.active {
	background: rgba(37, 99, 235, 0.08);
	color: #2563eb;
	font-weight: 600;
}

.lang-opt .check-active {
	margin-left: auto;
	font-size: 11px;
	color: #2563eb;
}

/* Nav Buttons: Masuk & Daftar */
.nav-btn-masuk {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 6px 13px;
	border-radius: 8px;
	border: 1.5px solid #cbd5e1;
	background: transparent;
	color: #1a1a42;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.2s ease;
	white-space: nowrap;
}

.nav-btn-masuk:hover {
	border-color: #1a1a42;
	background: rgba(26, 26, 66, 0.04);
	color: #1a1a42;
}

.nav-btn-daftar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 6px 15px;
	border-radius: 8px;
	background: #ffb41d;
	color: #1a1a42;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 3px 10px rgba(255, 180, 29, 0.28);
	transition: all 0.2s ease;
	white-space: nowrap;
	border: 1.5px solid #ffb41d;
}

.nav-btn-daftar:hover {
	background: #f5a60b;
	border-color: #f5a60b;
	color: #1a1a42;
	transform: translateY(-1px);
	box-shadow: 0 5px 14px rgba(255, 180, 29, 0.35);
}

/* Drawer Auth & Lang Styles */
.drawer-auth-buttons {
	display: flex;
	gap: 10px;
	margin-bottom: 12px;
	width: 100%;
}

.drawer-btn-masuk,
.drawer-btn-daftar {
	flex: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 10px 12px;
	border-radius: 8px;
	font-size: 13.5px;
	font-weight: 700;
	text-decoration: none;
	text-align: center;
	transition: all 0.2s ease;
}

.drawer-btn-masuk {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #ffffff;
}

.drawer-btn-masuk:hover {
	background: rgba(255, 255, 255, 0.16);
	color: #ffffff;
}

.drawer-btn-daftar {
	background: #ffb41d;
	color: #1a1a42;
	border: 1px solid #ffb41d;
}

.drawer-btn-daftar:hover {
	background: #f5a60b;
	color: #1a1a42;
}

.drawer-lang-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 8px 12px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	margin-bottom: 12px;
}

.drawer-lang-label {
	color: rgba(255, 255, 255, 0.85);
	font-size: 13px;
	display: flex;
	align-items: center;
	gap: 6px;
}

.drawer-lang-switch {
	display: flex;
	gap: 6px;
}

.drawer-lang-btn {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: rgba(255, 255, 255, 0.8);
	padding: 4px 10px;
	border-radius: 6px;
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
}

.drawer-lang-btn:hover {
	color: #ffffff;
	border-color: rgba(255, 255, 255, 0.4);
}

.drawer-lang-btn.active {
	background: #2563eb;
	border-color: #2563eb;
	color: #ffffff;
}

/*------------- Navigation style end ------------*/



/*------------- Hero section styling start --------------*/
#home
{
	background-color: #111444;
	background-image: linear-gradient(to right, rgba(17, 20, 68, 0.98) 0%, rgba(17, 20, 68, 0.94) 42%, rgba(17, 20, 68, 0.55) 66%, rgba(17, 20, 68, 0.1) 88%, transparent 100%), url("../img/hero-child-blocks.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: right center;
	width: 100%;
	min-height: calc(100vh - 70px);
	max-height: 850px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	text-align: left;
	padding: 100px 8vw 60px 8vw;
}

#home h1,
#home h2
{
	color: #ffffff;
	font-size: 2.8rem;
	font-weight: 700;
	letter-spacing: 0.5px;
	line-height: 1.25;
	max-width: 520px;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
	margin-bottom: 15px;
}

#home p
{
	max-width: 480px;
	width: 100%;
	color: rgba(255, 255, 255, 0.92);
	font-size: 1.05rem;
	line-height: 1.7;
	margin: 0;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

#home .btn
{
	margin-top: 32px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
	background: transparent;
	border: none;
	padding: 0;
}

#home a
{
	text-decoration: none;
	font-size: 0.95rem;
	padding: 13px 30px;
	font-weight: 600;
	border-radius: 6px;
	transition: all 0.25s ease;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

#home a.blue
{
	color: #ffffff;
	background: transparent;
	border: 2px solid #ffffff;
}

#home a.blue:hover
{
	color: #1a1a42;
	background: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

#home a.yellow
{
	color: #1a1a42;
	background: #ffb41d;
	border: 2px solid #ffb41d;
}

#home a.yellow:hover
{
	color: #1a1a42;
	background: #ffffff;
	border-color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(255, 180, 29, 0.35);
}
/*------------- Hero section styling end --------------*/


/*------------- Features section styling start -------------*/
#features
{
	padding: 5vw 8vw 0 8vw;
	text-align: center;
}

#features > p
{
	color: #5a6577;
	max-width: 650px;
	margin: 8px auto 0 auto;
	font-size: 0.95rem;
}

#features .fea-base
{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	grid-gap: 1rem;
	margin-top: 50px;
}

#features .fea-box,
#ekosistem-kolaboratif .fea-box,
.ekosistem-section .fea-box
{
	background: #ffffff;
	text-align: start;
	padding: 26px 24px;
	border-radius: 8px;
	border: 1px solid #e2e8f0;
	box-shadow: none;
	transition: border-color 0.2s ease, background-color 0.2s ease;
	display: flex;
	flex-direction: column;
}

#features .fea-box:hover,
#ekosistem-kolaboratif .fea-box:hover,
.ekosistem-section .fea-box:hover
{
	border-color: #1a1a42;
	box-shadow: none;
	transform: none;
}

#features .fea-box .fea-icon-img,
#ekosistem-kolaboratif .fea-box .fea-icon-img,
.ekosistem-section .fea-box .fea-icon-img
{
	width: 72px;
	height: 72px;
	object-fit: contain;
	display: block;
	margin-bottom: 14px;
	border-radius: 50%;
	border: 1px solid #e2e8f0;
	background: #f8fafc;
	padding: 2px;
	transition: border-color 0.2s ease;
}

#features .fea-box:hover .fea-icon-img,
#ekosistem-kolaboratif .fea-box:hover .fea-icon-img,
.ekosistem-section .fea-box:hover .fea-icon-img
{
	border-color: #1a1a42;
	transform: none;
}

#features .fea-box i,
#ekosistem-kolaboratif .fea-box i,
.ekosistem-section .fea-box i
{
	font-size: 1.4rem;
	color: #1a1a42;
	background: #eef0f5;
	width: 48px;
	height: 48px;
	border-radius: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

#features .fea-box h3,
#ekosistem-kolaboratif .fea-box h3,
.ekosistem-section .fea-box h3
{
	font-size: 1.15rem;
	font-weight: 700;
	color: #1a1a42;
	padding: 6px 0 6px 0;
	margin: 0;
}

#features .fea-box p,
#ekosistem-kolaboratif .fea-box p,
.ekosistem-section .fea-box p
{
	font-size: 0.9rem;
	font-weight: 400;
	color: #5a6577;
	line-height: 1.65;
	margin: 0;
}
/*------------- Features section styling end -------------*/


/*------------- Courses section styling start ------------*/
#course
{
	padding: 8vw 8vw 8vw 8vw;
	text-align: center;
}

#course > p
{
	color: #5a6577;
	max-width: 650px;
	margin: 8px auto 0 auto;
	font-size: 0.95rem;
}

#course .course-box
{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	grid-gap: 1rem;
	margin-top: 50px;
}

#course .courses
{
	text-align: start;
	background: #fff;
	height: 100%;
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	border: 1px solid #e2e8f0;
	box-shadow: none;
	transition: border-color 0.2s ease;
}

#course .courses:hover
{
	border-color: #1a1a42;
	box-shadow: none;
	transform: none;
}

#course .courses img
{
	width: 100%;
	height: 200px;
	object-fit: cover;
	transition: transform 0.4s ease;
}

#course .courses:hover img
{
	transform: scale(1.03);
}

#course .courses .details
{
	padding: 20px;
	flex-grow: 1;
}

#course .courses .details i
{
	color: #d4a017;
	font-size: .9rem;
}

#course .courses .cost
{
	background-color: #1a1a42;
	color: #e8b820;
	line-height: 42px;
	width: 42px;
	height: 42px;
	font-size: 0.95rem;
	text-align: center;
	border-radius: 10px;
	position: absolute;
	right: 12px;
	top: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
/*------------- Courses section styling end ------------*/


/*------------- Registration section styling start ----------*/
#registration
{
	padding: 6vw 8vw 6vw 8vw;
	background: linear-gradient(140deg, #1b2650 0%, #24356f 55%, #2f4184 100%);
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 3.5rem;
}

#registration .reminder, #registration .reminder h1
{
	color: #fff;
}

#registration .reminder
{
	flex: 1;
	max-width: 600px;
}

#registration .reminder .time
{
	display: flex;
	margin-top: 40px;
	gap: 12px;
	flex-wrap: wrap;
}

#registration .reminder .time .date
{
	text-align: center;
	padding: 14px 28px;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 6px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	font-size: 1rem;
	font-weight: 600;
	color: #ffffff;
}

#registration .form
{
	background: transparent !important;
	border-radius: 0;
	display: flex;
	flex-direction: column;
	padding: 0;
	box-shadow: none !important;
	overflow: visible !important;
	width: 100%;
	max-width: 380px;
	flex-shrink: 0;
	position: relative;
}

#registration .form .form-img-card
{
	width: 100%;
	height: auto;
	min-height: 220px;
	background: transparent !important;
	position: relative;
	overflow: visible !important;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	border-bottom: none !important;
	padding: 0;
	margin-bottom: -22px;
	z-index: 1 !important;
}

#registration .form .form-img-card img
{
	width: auto;
	max-width: 94%;
	height: auto;
	max-height: 240px;
	object-fit: contain;
	object-position: center bottom;
	display: block;
	filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.35));
	transition: transform 0.3s ease;
	margin: 0 auto;
}

#registration .form .form-img-card:hover img
{
	transform: translateY(-4px) scale(1.02);
}

#registration .form .form-content
{
	background: #ffffff !important;
	border-radius: 16px !important;
	border-top: 4px solid #ffb41d !important;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.28) !important;
	padding: 24px 26px 28px 26px !important;
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 2 !important;
}

#registration .form .btn
{
	margin-top: 10px;
}

#registration .form a.yellow
{
	text-decoration: none;
	font-size: 0.9rem;
	padding: 13px 35px;
	background-color: #e8b820;
	font-weight: 600;
	border-radius: 6px;
	color: #1a1a42;
	transition: all 0.2s ease;
}

#registration .form a.yellow:hover
{
	background: #d4a017;
	box-shadow: 0 3px 10px rgba(212, 160, 23, 0.3);
	transform: translateY(-1px);
}

#registration .wa-assurance
{
	margin-top: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	color: #64748b;
	font-size: 0.80rem;
}

#registration .form-slot
{
	margin-top: 16px;
	padding-top: 14px;
	border-top: 1px solid #e2e8f0;
	text-align: center;
}

/* Reminder Navigation Action Buttons (Left column) */
#registration .reminder-actions
{
	margin-top: 28px;
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	align-items: center;
}

.btn-reminder-primary
{
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #ffb41d;
	color: #1a1a42 !important;
	font-weight: 700;
	font-size: 0.90rem;
	padding: 10px 22px;
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.25s ease;
	box-shadow: 0 4px 14px rgba(255, 180, 29, 0.25);
}

.btn-reminder-primary:hover
{
	background: #f0a50f;
	color: #111444 !important;
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(255, 180, 29, 0.35);
}

.btn-reminder-secondary
{
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.12);
	color: #ffffff !important;
	font-weight: 600;
	font-size: 0.90rem;
	padding: 10px 22px;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	text-decoration: none;
	transition: all 0.25s ease;
	backdrop-filter: blur(4px);
}

.btn-reminder-secondary:hover
{
	background: rgba(255, 255, 255, 0.22);
	color: #ffffff !important;
	border-color: rgba(255, 255, 255, 0.6);
	transform: translateY(-2px);
}
/*------------- Registration section styling end ----------*/



/*------------- Experts section styling starts ----------*/
#experts
{
	padding: 6vw 8vw;
	text-align: center;
}

#experts > p
{
	color: #64748b;
	max-width: 680px;
	margin: 10px auto 0 auto;
	font-size: 0.95rem;
	line-height: 1.6;
}

#experts .expert-box
{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 25px;
	margin-top: 45px;
	text-align: center;
}

#experts .expert-box .profile
{
	background: #ffffff;
	padding: 32px 22px 24px 22px;
	border: 1px solid #eceae3;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
	display: flex;
	flex-direction: column;
	align-items: center;
	transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

#experts .expert-box .profile:hover
{
	border-color: #d4a017;
	box-shadow: 0 10px 25px rgba(26, 26, 66, 0.08);
	transform: translateY(-4px);
}

#experts .expert-box .profile img
{
	width: 104px;
	height: 104px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 16px;
	border: 3px solid #f1f5f9;
	transition: border-color 0.25s ease, transform 0.25s ease;
}

#experts .expert-box .profile:hover img
{
	border-color: #d4a017;
	transform: scale(1.03);
}

#experts .expert-box .profile h6
{
	color: #1a1a42;
	font-size: 1.12rem;
	font-weight: 700;
	margin: 0 0 6px 0;
}

#experts .expert-box .profile .role
{
	color: #d4a017;
	font-weight: 600;
	font-size: 0.88rem;
	margin: 0 0 12px 0;
}

#experts .expert-box .profile .desc
{
	font-size: 0.88rem;
	color: #556275;
	line-height: 1.55;
	margin: 0 0 18px 0;
	flex-grow: 1;
}

.pro-links
{
	margin-top: auto;
	padding-top: 15px;
	border-top: 1px solid #f1f5f9;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

.pro-links a
{
	text-decoration: none;
	display: inline-flex;
}

.pro-links a i
{
	width: 36px;
	height: 36px;
	border-radius: 6px;
	border: 1px solid #1a1a42;
	color: #1a1a42;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.95rem;
	cursor: pointer;
	transition: all 0.2s ease;
}

.pro-links a:hover i
{
	background: #1a1a42;
	color: #ffffff;
	transform: translateY(-2px);
}

@media screen and (max-width: 1024px)
{
	#experts .expert-box
	{
		grid-template-columns: repeat(2, 1fr);
		gap: 22px;
	}
}

@media screen and (max-width: 580px)
{
	#experts .expert-box
	{
		grid-template-columns: 1fr;
		gap: 18px;
	}
	#experts .expert-box .profile
	{
		padding: 26px 18px;
	}
}
/*------------- Experts section styling ends ----------*/



/*------------- Footer section styling starts (Minishop Inspired with Zuharo Brand Aesthetic) ------------*/
footer, .ftco-footer
{
	position: relative;
	padding: 75px 8vw 35px 8vw;
	background-color: #0c121e;
	border-top: 3px solid #d4a017;
	color: rgba(255, 255, 255, 0.75);
}

/* Mouse Scroll-to-Top Button (Minishop Signature Feature) */
.ftco-footer .mouse
{
	position: absolute;
	left: 0;
	right: 0;
	top: -30px;
	z-index: 99;
	display: flex;
	justify-content: center;
	pointer-events: auto;
}

.mouse-icon
{
	width: 60px;
	height: 60px;
	border: 2px solid #d4a017;
	border-radius: 50%;
	background: #1a1a42;
	cursor: pointer;
	position: relative;
	text-align: center;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	text-decoration: none;
}

.mouse-icon:hover
{
	background: #d4a017;
	transform: translateY(-4px);
	box-shadow: 0 10px 25px rgba(212, 160, 23, 0.45);
}

.mouse-wheel
{
	color: #d4a017;
	font-size: 1.15rem;
	display: flex;
	align-items: center;
	justify-content: center;
	animation: wheel-bounce 1.6s ease infinite;
	transition: color 0.2s ease;
}

.mouse-icon:hover .mouse-wheel
{
	color: #0c121e;
}

@keyframes wheel-bounce
{
	0% { transform: translateY(4px); opacity: 0.4; }
	50% { transform: translateY(-4px); opacity: 1; }
	100% { transform: translateY(4px); opacity: 0.4; }
}

.footer-container
{
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
}

.footer-row
{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 40px 24px;
}

footer .footer-col
{
	flex: 1 1 200px;
	min-width: 180px;
}

footer .footer-col.brand-col
{
	flex: 1.4 1 270px;
	max-width: 340px;
}

footer .footer-col.contact-col
{
	flex: 1.3 1 250px;
	max-width: 320px;
}

footer .footer-logo
{
	display: inline-flex;
	align-items: center;
	margin-bottom: 18px;
	background: transparent;
	padding: 0;
	box-shadow: none;
	text-decoration: none;
}

footer .footer-logo img
{
	height: 44px;
	width: auto;
	max-width: 175px;
	object-fit: contain;
	display: block;
	filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.25));
	transition: opacity 0.2s ease, transform 0.2s ease;
}

footer .footer-logo:hover img
{
	opacity: 0.9;
	transform: scale(1.02);
}

footer .footer-desc
{
	color: #94a3b8;
	font-size: 0.88rem;
	line-height: 1.68;
	margin-bottom: 16px;
}

footer .ftco-heading-2, footer h3
{
	color: #ffffff;
	font-size: 0.84rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2.2px;
	margin: 0 0 20px 0;
	padding-bottom: 10px;
	position: relative;
}

footer .ftco-heading-2::after, footer h3::after
{
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 28px;
	height: 2px;
	background: #d4a017;
	border-radius: 1px;
}

/* Footer Links List */
footer .footer-links, footer ul:not(.ftco-footer-social):not(.block-23 ul)
{
	list-style: none;
	padding: 0;
	margin: 0;
}

footer .footer-links li, footer li:not(.ftco-footer-social li):not(.block-23 li)
{
	list-style: none;
	margin-bottom: 10px;
	font-size: 0.88rem;
	transition: transform 0.2s ease;
}

footer .footer-links li a, footer li a:not(.ftco-footer-social a):not(.block-23 a)
{
	color: rgba(255, 255, 255, 0.72);
	text-decoration: none;
	transition: all 0.2s ease;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

footer .footer-links li a:hover, footer li:hover, footer li a:hover
{
	color: #e8b820;
	transform: translateX(4px);
}

/* Social Media Circular Badges (Minishop Style) */
.ftco-footer-social
{
	list-style: none;
	padding: 0;
	margin: 20px 0 0 0;
	display: flex;
	align-items: center;
	gap: 10px;
}

.ftco-footer-social li
{
	margin: 0 !important;
	padding: 0 !important;
}

.ftco-footer-social li a
{
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #162032;
	border: 1px solid rgba(212, 160, 23, 0.35);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	font-size: 1rem;
	transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
	text-decoration: none;
}

.ftco-footer-social li a:hover
{
	background: #d4a017;
	color: #0c121e;
	border-color: #d4a017;
	transform: translateY(-3px);
	box-shadow: 0 6px 16px rgba(212, 160, 23, 0.35);
}

/* Minishop Contact Info Block (Block-23) */
.block-23 ul
{
	list-style: none;
	padding: 0;
	margin: 0;
}

.block-23 ul li
{
	display: flex;
	align-items: flex-start;
	margin-bottom: 14px;
	font-size: 0.88rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.72);
}

.block-23 ul li .icon
{
	width: 28px;
	flex-shrink: 0;
	color: #d4a017;
	font-size: 0.95rem;
	padding-top: 3px;
	display: inline-block;
}

.block-23 ul li .text
{
	color: rgba(255, 255, 255, 0.72);
}

.block-23 ul li a
{
	color: rgba(255, 255, 255, 0.72);
	text-decoration: none;
	display: flex;
	align-items: flex-start;
	transition: color 0.2s ease;
}

.block-23 ul li a:hover
{
	color: #e8b820;
}

.block-23 ul li a:hover .icon
{
	color: #ffffff;
}

/* Footer Bottom Copyright (Minishop Center Row) */
.footer-bottom, footer .copyright
{
	width: 100%;
	margin-top: 45px;
	padding-top: 25px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	text-align: center;
	display: block;
}

.footer-bottom p, footer .copyright p
{
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.84rem;
	margin: 0;
	line-height: 1.65;
}

.footer-bottom p .text-danger, footer .copyright p i
{
	color: #ef4444;
	margin: 0 3px;
}

/*------------- Fixed Floating WhatsApp Widget (Non-AI, Hangat & Empatik) ------------*/
.wa-floating-widget
{
	position: fixed;
	bottom: 28px;
	right: 28px;
	z-index: 9990;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	font-family: inherit;
	transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

body.menu-open .wa-floating-widget
{
	opacity: 0 !important;
	visibility: hidden !important;
	pointer-events: none !important;
	transform: scale(0.85) !important;
}

/* WhatsApp Main Floating Button (Clean, Flat, Non-AI, No Glow/Shadow) */
.wa-float-btn
{
	display: flex;
	align-items: center;
	gap: 10px;
	background: #25D366;
	color: #ffffff;
	border: 1px solid #1ebe5d;
	border-radius: 50px;
	padding: 12px 20px 12px 16px;
	cursor: pointer;
	transition: background-color 0.2s ease, transform 0.2s ease;
	text-decoration: none;
	outline: none;
	position: relative;
}

.wa-float-btn i
{
	font-size: 26px;
	line-height: 1;
}

.wa-float-badge
{
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 0.2px;
	white-space: nowrap;
}

.wa-float-btn:hover
{
	background: #20ba58;
	transform: translateY(-2px);
}

/* Chat Card Bubble Popup (Clean & Natural, No Heavy AI Shadows) */
.wa-chat-bubble
{
	width: 320px;
	max-width: calc(100vw - 36px);
	background: #ffffff;
	border-radius: 16px;
	margin-bottom: 12px;
	overflow: hidden;
	border: 1px solid #cbd5e1;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
	transform-origin: bottom right;
	transition: all 0.25s ease;
	display: none;
}

.wa-chat-bubble.active
{
	display: block;
	animation: waPopIn 0.25s ease-out;
}

@keyframes waPopIn
{
	0% { opacity: 0; transform: translateY(8px); }
	100% { opacity: 1; transform: translateY(0); }
}

.wa-bubble-header
{
	background: #075E54;
	color: #ffffff;
	padding: 14px 16px;
	display: flex;
	align-items: center;
	gap: 12px;
	position: relative;
}

.wa-avatar
{
	position: relative;
	width: 38px;
	height: 38px;
	background: #25D366;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	font-size: 20px;
	flex-shrink: 0;
}

.wa-status-dot
{
	position: absolute;
	bottom: 1px;
	right: 1px;
	width: 10px;
	height: 10px;
	background: #25D366;
	border: 2px solid #075E54;
	border-radius: 50%;
}

.wa-header-info
{
	display: flex;
	flex-direction: column;
	text-align: left;
	overflow: hidden;
}

.wa-header-name
{
	font-size: 0.86rem;
	font-weight: 600;
	color: #ffffff;
	line-height: 1.25;
}

.wa-header-status
{
	font-size: 0.74rem;
	color: rgba(255, 255, 255, 0.82);
}

.wa-close-btn
{
	margin-left: auto;
	background: transparent;
	border: none;
	color: rgba(255, 255, 255, 0.75);
	font-size: 1.4rem;
	cursor: pointer;
	line-height: 1;
	padding: 0 4px;
	transition: color 0.2s;
}

.wa-close-btn:hover
{
	color: #ffffff;
}

.wa-bubble-body
{
	padding: 16px 16px 12px 16px;
	background: #f0f2f5;
	text-align: left;
}

.wa-bubble-body p
{
	font-size: 0.84rem;
	line-height: 1.55;
	color: #2b3a4a;
	margin: 0 0 10px 0;
	background: #ffffff;
	padding: 10px 14px;
	border-radius: 12px;
	border-top-left-radius: 2px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.wa-bubble-body p:last-child
{
	margin-bottom: 0;
}

.wa-chat-btn
{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: #25D366;
	color: #ffffff;
	text-decoration: none;
	padding: 12px 18px;
	font-size: 0.88rem;
	font-weight: 600;
	transition: background 0.2s;
	text-align: center;
}

.wa-chat-btn:hover
{
	background: #20ba58;
	color: #ffffff;
}
/*------------- Footer section styling ends ------------*/



/*---------------------------------------------------------*/
/*-------------------- Medium Laptop Screen (1081px - 1320px) ----------------*/
/*---------------------------------------------------------*/
@media screen and (min-width: 1081px) and (max-width: 1320px)
{
	nav
	{
		padding: 0 18px !important;
	}

	nav .logo
	{
		max-width: 130px !important;
		height: 34px !important;
	}

	nav .navigation ul li a
	{
		font-size: 12.5px !important;
		padding: 5px 6px !important;
	}

	.nav-actions
	{
		gap: 6px !important;
		margin-left: 6px !important;
	}

	.lang-btn
	{
		padding: 4px 8px !important;
		font-size: 12px !important;
	}

	.nav-btn-masuk,
	.nav-btn-daftar
	{
		padding: 5px 12px !important;
		font-size: 12px !important;
	}
}

/* Ultra-wide desktop screens */
@media screen and (min-width: 1600px)
{
	nav
	{
		padding: 0 5vw;
	}
}

/*---------------------------------------------------------*/
/*-------------------- Tablet/Mobile screen styling (<= 1080px) ----------------*/
/*---------------------------------------------------------*/
@media screen and (max-width: 1080px)
{
	nav
	{
		padding: 0 20px !important;
		height: 64px !important;
		min-height: 64px !important;
		display: flex !important;
		justify-content: space-between !important;
		align-items: center !important;
		background-color: #ffffff !important;
		border-bottom: 1px solid rgba(226, 232, 240, 0.8) !important;
		transition: height 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
	}

	nav.scrolled
	{
		height: 58px !important;
		min-height: 58px !important;
		padding: 0 20px !important;
		background-color: rgba(255, 255, 255, 0.96) !important;
		backdrop-filter: blur(12px) !important;
		-webkit-backdrop-filter: blur(12px) !important;
		box-shadow: 0 4px 16px rgba(26, 26, 66, 0.08) !important;
		border-bottom: 1px solid rgba(212, 160, 23, 0.25) !important;
	}

	nav > a
	{
		display: inline-flex !important;
		align-items: center !important;
		line-height: 1 !important;
	}

	nav img.logo,
	nav .logo
	{
		height: 34px !important;
		width: auto !important;
		max-width: 130px !important;
		transition: height 0.3s ease !important;
	}

	nav.scrolled img.logo,
	nav.scrolled .logo
	{
		height: 30px !important;
	}

	nav .navigation
	{
		display: flex !important;
		align-items: center !important;
	}

	.nav-actions
	{
		display: none !important;
	}

	#menu-btn,
	.menu-toggle-btn
	{
		display: flex !important;
	}

	.nav-drawer-header
	{
		display: flex !important;
		align-items: center;
		justify-content: space-between;
		padding: 22px 20px 18px 20px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.09);
		background: rgba(255, 255, 255, 0.03);
		width: 100%;
		box-sizing: border-box;
	}

	.nav-drawer-header .drawer-brand
	{
		display: inline-flex;
		align-items: center;
		text-decoration: none;
	}

	.nav-drawer-header .drawer-logo
	{
		height: 30px;
		width: auto;
		object-fit: contain;
	}

	.drawer-close-btn
	{
		width: 36px;
		height: 36px;
		border-radius: 50%;
		background: rgba(255, 255, 255, 0.08);
		border: 1px solid rgba(255, 255, 255, 0.12);
		color: #ffffff;
		display: flex !important;
		align-items: center;
		justify-content: center;
		font-size: 1rem;
		cursor: pointer;
		transition: all 0.2s ease;
		padding: 0;
	}

	.drawer-close-btn:hover
	{
		background: rgba(212, 160, 23, 0.25);
		color: #ffb41d;
		transform: rotate(90deg);
	}

	nav .navigation ul
	{
		position: fixed !important;
		top: 0 !important;
		right: 0 !important;
		width: min(310px, 84vw) !important;
		height: 100vh !important;
		height: 100dvh !important;
		background: #0f172a !important;
		background: linear-gradient(180deg, #111827 0%, #0c1222 100%) !important;
		box-shadow: -10px 0 35px rgba(0, 0, 0, 0.5) !important;
		display: flex !important;
		flex-direction: column !important;
		justify-content: flex-start !important;
		align-items: stretch !important;
		padding: 0 !important;
		margin: 0 !important;
		list-style: none !important;
		z-index: 99999 !important;
		transform: translateX(100%) !important;
		visibility: hidden !important;
		pointer-events: none !important;
		transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s !important;
		overflow-y: auto !important;
		-webkit-overflow-scrolling: touch !important;
	}

	nav .navigation ul.active
	{
		transform: translateX(0) !important;
		visibility: visible !important;
		pointer-events: auto !important;
	}

	nav .navigation ul .nav-item-wrapper
	{
		display: flex !important;
		flex-direction: column !important;
		padding: 14px 12px !important;
		flex: 1 !important;
		overflow-y: auto !important;
		gap: 3px !important;
	}

	nav .navigation ul li
	{
		padding: 0 !important;
		margin: 0 !important;
		width: 100% !important;
		border: none !important;
	}

	nav .navigation ul li a
	{
		display: flex !important;
		align-items: center !important;
		gap: 12px !important;
		color: #e2e8f0 !important;
		font-size: 0.90rem !important;
		font-weight: 500 !important;
		padding: 11px 14px !important;
		border-radius: 10px !important;
		text-decoration: none !important;
		transition: background-color 0.2s ease, color 0.2s ease !important;
		position: relative !important;
	}

	nav .navigation ul li a::after
	{
		display: none !important;
	}

	.nav-icon
	{
		display: inline-flex !important;
		align-items: center;
		justify-content: center;
		width: 22px;
		font-size: 0.95rem;
		color: #94a3b8;
		transition: color 0.2s ease, transform 0.2s ease;
	}

	nav .navigation ul li a:hover,
	nav .navigation ul li a.active
	{
		background: rgba(212, 160, 23, 0.12) !important;
		color: #ffffff !important;
	}

	nav .navigation ul li a:hover .nav-icon,
	nav .navigation ul li a.active .nav-icon
	{
		color: #ffb41d !important;
		transform: scale(1.1);
	}

	nav .navigation ul li a.active
	{
		font-weight: 600 !important;
		border-left: 3px solid #ffb41d !important;
		padding-left: 11px !important;
	}

	.nav-drawer-footer
	{
		display: block !important;
		padding: 16px 18px 22px 18px !important;
		border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
		background: rgba(0, 0, 0, 0.2) !important;
		margin-top: auto !important;
	}

	.drawer-wa-btn
	{
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		gap: 8px !important;
		width: 100% !important;
		padding: 11px 16px !important;
		background: #25d366 !important;
		color: #ffffff !important;
		font-size: 0.86rem !important;
		font-weight: 600 !important;
		border-radius: 10px !important;
		text-decoration: none !important;
		box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3) !important;
		transition: transform 0.2s, background-color 0.2s !important;
	}

	.drawer-caption
	{
		display: block !important;
		margin-top: 10px !important;
		text-align: center !important;
		font-size: 0.70rem !important;
		color: #64748b !important;
		letter-spacing: 0.3px !important;
	}

	#home
	{
		padding: 95px 20px 50px 20px !important;
		min-height: auto !important;
		background-image: linear-gradient(180deg, rgba(17, 20, 68, 0.86) 0%, rgba(17, 20, 68, 0.78) 50%, rgba(17, 20, 68, 0.90) 100%), url("../img/hero-child-blocks.jpg") !important;
		background-position: center right !important;
		background-size: cover !important;
		background-repeat: no-repeat !important;
	}

	#features
	{
		padding: 45px 20px;
	}

	#course
	{
		padding: 45px 20px;
	}

	#registration
	{
		padding: 45px 20px;
		gap: 2rem;
	}

	#experts
	{
		padding: 45px 20px;
	}

	.testimony-section .col-lg-5,
	.testimony-section .col-lg-7
	{
		flex: 0 0 100%;
		max-width: 100%;
		padding-left: 15px;
		padding-right: 15px;
	}

	.testimony-section .col-lg-7
	{
		margin-top: 45px;
		padding-left: 15px;
	}

	footer .copyright .pro-links
	{
		margin-top: 15px;
	}
}

/*------------------- Mobile Screen General Typography & Component Scaling (<= 768px) -------------------*/
@media screen and (max-width: 768px)
{
	/* 1. Prevent lateral overflow from AOS translations on mobile */
	[data-aos="fade-left"],
	[data-aos="fade-right"]
	{
		transform: translate3d(0, 16px, 0) !important;
	}

	[data-aos="fade-left"].aos-animate,
	[data-aos="fade-right"].aos-animate
	{
		transform: translate3d(0, 0, 0) !important;
	}

	/* 2. Penyesuaian Ukuran Font Mobile Lebih Ringkas, Proporsional, & Harmonis */
	h1
	{
		font-size: 1.38rem !important;
		line-height: 1.3 !important;
	}

	h2
	{
		font-size: 1.25rem !important;
		line-height: 1.3 !important;
	}

	h3
	{
		font-size: 1.05rem !important;
		line-height: 1.35 !important;
	}

	h4
	{
		font-size: 0.94rem !important;
		line-height: 1.38 !important;
	}

	h5
	{
		font-size: 0.88rem !important;
		line-height: 1.4 !important;
	}

	h6
	{
		font-size: 0.82rem !important;
	}

	p
	{
		font-size: 0.84rem !important;
		line-height: 1.55 !important;
	}

	span
	{
		font-size: 0.80rem;
	}

	/* Subjudul Kategori Emas/Navy / Kickers */
	span[style*="uppercase"],
	.section-header span
	{
		font-size: 0.72rem !important;
		letter-spacing: 0.8px !important;
	}

	/* Global Mobile Section Padding */
	section
	{
		padding: 32px 16px !important;
	}

	/* Section Header Component */
	.section-header
	{
		margin-bottom: 22px !important;
		padding: 0 4px;
	}

	.section-header h1
	{
		font-size: 1.35rem !important;
		line-height: 1.3 !important;
		margin-top: 4px !important;
		margin-bottom: 6px !important;
	}

	.section-header h4
	{
		font-size: 0.92rem !important;
		margin-bottom: 8px !important;
	}

	.section-header p
	{
		font-size: 0.84rem !important;
		line-height: 1.55 !important;
	}

	/* Hero Beranda (#home) & Subpage Hero (#about-home) */
	#home
	{
		padding: 76px 16px 36px 16px !important;
		min-height: auto !important;
		max-height: none !important;
	}

	#home h1,
	#home h2
	{
		font-size: 1.42rem !important;
		line-height: 1.3 !important;
		max-width: 100% !important;
		margin-bottom: 10px !important;
	}

	#home p
	{
		font-size: 0.84rem !important;
		line-height: 1.55 !important;
		max-width: 100% !important;
		margin-top: 8px !important;
		margin-bottom: 16px !important;
	}

	#home .btn
	{
		display: flex !important;
		flex-direction: column !important;
		gap: 10px !important;
		width: 100% !important;
		margin-top: 18px !important;
	}

	#home .btn a
	{
		width: 100% !important;
		text-align: center !important;
		justify-content: center !important;
		font-size: 0.84rem !important;
		padding: 10px 16px !important;
		margin: 0 !important;
	}

	#about-home
	{
		padding: 76px 16px 34px 16px !important;
		min-height: auto !important;
	}

	#about-home h1,
	#about-home h2
	{
		font-size: 1.42rem !important;
		line-height: 1.3 !important;
		margin: 0 0 8px 0 !important;
	}

	#about-home p
	{
		font-size: 0.84rem !important;
		line-height: 1.55 !important;
		margin-top: 8px !important;
	}

	#about-home .btn
	{
		display: flex !important;
		flex-direction: column !important;
		gap: 8px !important;
		width: 100% !important;
		margin-top: 16px !important;
	}

	#about-home .btn a
	{
		width: 100% !important;
		text-align: center !important;
		justify-content: center !important;
		font-size: 0.84rem !important;
		padding: 10px 16px !important;
	}

	/* Navigation Bar on Mobile */
	nav
	{
		padding: 0 16px !important;
		height: 58px !important;
		min-height: 58px !important;
		display: flex !important;
		justify-content: space-between !important;
		align-items: center !important;
		background-color: #ffffff !important;
		border-bottom: 1px solid rgba(226, 232, 240, 0.8) !important;
		transition: height 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
	}

	nav.scrolled
	{
		height: 54px !important;
		min-height: 54px !important;
		padding: 0 16px !important;
		background-color: rgba(255, 255, 255, 0.96) !important;
		backdrop-filter: blur(12px) !important;
		-webkit-backdrop-filter: blur(12px) !important;
		box-shadow: 0 3px 14px rgba(26, 26, 66, 0.08) !important;
		border-bottom: 1px solid rgba(212, 160, 23, 0.25) !important;
	}

	nav > a
	{
		display: inline-flex !important;
		align-items: center !important;
		line-height: 1 !important;
	}

	nav img.logo,
	nav .logo
	{
		height: 30px !important;
		width: auto !important;
		max-width: 115px !important;
		transition: height 0.3s ease !important;
	}

	nav.scrolled img.logo,
	nav.scrolled .logo
	{
		height: 26px !important;
	}

	nav .navigation
	{
		display: flex !important;
		align-items: center !important;
	}

	#menu-btn,
	.menu-toggle-btn
	{
		width: 38px !important;
		height: 38px !important;
	}

	nav .navigation ul
	{
		width: min(300px, 86vw) !important;
	}

	/* About Feature Component (#about-container, .about-container-section) */
	#about-container,
	.about-container-section
	{
		display: flex !important;
		flex-direction: column-reverse !important;
		padding: 30px 16px 20px 16px !important;
		width: 100% !important;
		box-sizing: border-box !important;
	}

	#about-container .about-img,
	.about-container-section .about-img
	{
		width: 100% !important;
		padding: 0 !important;
		margin-top: 18px !important;
	}

	#about-container .about-img img,
	.about-container-section .about-img img
	{
		width: 100% !important;
		max-height: 220px !important;
		border-radius: 8px !important;
	}

	#about-container .about-text,
	.about-container-section .about-text
	{
		width: 100% !important;
		padding: 0 !important;
	}

	#about-container .about-text h2,
	.about-container-section .about-text h2
	{
		font-size: 1.25rem !important;
		line-height: 1.3 !important;
		padding-bottom: 6px !important;
	}

	#about-container .about-text h5,
	.about-container-section .about-text h5
	{
		font-size: 0.92rem !important;
		margin-bottom: 8px !important;
	}

	#about-container .about-text p,
	.about-container-section .about-text p
	{
		font-size: 0.84rem !important;
		line-height: 1.55 !important;
	}

	.about-fe
	{
		padding: 12px 14px !important;
		margin-top: 12px !important;
	}

	.about-fe img
	{
		width: 40px !important;
		height: 40px !important;
		margin-right: 12px !important;
	}

	.about-fe .fe-text
	{
		width: calc(100% - 52px) !important;
	}

	.about-fe .fe-text h5
	{
		font-size: 0.88rem !important;
		margin-bottom: 3px !important;
	}

	.about-fe .fe-text p
	{
		font-size: 0.80rem !important;
		line-height: 1.45 !important;
	}

	/* Fitur Kolaborasi Grid (#features) */
	#features .fea-base
	{
		grid-template-columns: 1fr !important;
		gap: 14px !important;
	}

	.fea-box
	{
		padding: 18px 16px !important;
	}

	.fea-box h3
	.fea-box
	{
		padding: 22px 18px !important;
		border-radius: 14px !important;
		border: 1px solid #e2e8f0 !important;
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03) !important;
	}

	.fea-box h3
	{
		font-size: 1.08rem !important;
		font-weight: 700 !important;
		color: #1a1a42 !important;
		margin-top: 10px !important;
		margin-bottom: 6px !important;
	}

	.fea-box p
	{
		font-size: 0.88rem !important;
		line-height: 1.6 !important;
		color: #5a6577 !important;
	}

	.fea-icon-img
	{
		width: 68px !important;
		height: 68px !important;
		object-fit: contain !important;
		margin-bottom: 6px !important;
	}

	/* Program / Courses Grid (#course) */
	#course .course-box
	{
		grid-template-columns: 1fr !important;
		gap: 16px !important;
	}

	.courses .details
	{
		padding: 14px 16px !important;
	}

	.courses .details h5
	{
		font-size: 0.94rem !important;
		line-height: 1.35 !important;
	}

	.courses .details p
	{
		font-size: 0.83rem !important;
		line-height: 1.5 !important;
	}

	/* Registration & Konsultasi Component (#registration) */
	#registration
	{
		display: flex !important;
		flex-direction: column !important;
		padding: 30px 16px !important;
		gap: 20px !important;
		text-align: center !important;
	}

	#registration .reminder
	{
		width: 100% !important;
	}

	.reminder h1,
	#registration .reminder h1
	{
		font-size: 1.35rem !important;
		line-height: 1.3 !important;
		margin-bottom: 10px !important;
	}

	.reminder p,
	#registration .reminder p
	{
		font-size: 0.84rem !important;
		line-height: 1.5 !important;
		margin-bottom: 16px !important;
	}

	#registration .reminder .time
	{
		display: flex !important;
		justify-content: center !important;
		flex-wrap: wrap !important;
		gap: 8px !important;
		margin-top: 14px !important;
	}

	#registration .reminder .time .date
	{
		padding: 7px 10px !important;
		font-size: 0.78rem !important;
		min-width: 75px !important;
		border-radius: 6px !important;
	}

	#registration .form
	{
		width: 100% !important;
		max-width: 100% !important;
		background: transparent !important;
		box-shadow: none !important;
		border-radius: 0 !important;
		margin: 0 !important;
	}

	#registration .form .form-img-card
	{
		height: auto !important;
		min-height: 180px !important;
		background: transparent !important;
		border-bottom: none !important;
		margin-bottom: -18px !important;
		padding: 0 !important;
		z-index: 1 !important;
	}

	#registration .form .form-img-card img
	{
		max-height: 205px !important;
		max-width: 90% !important;
		width: auto !important;
		object-fit: contain !important;
		object-position: center bottom !important;
		margin: 0 auto !important;
	}

	#registration .form .form-content
	{
		background: #ffffff !important;
		border-radius: 14px !important;
		border-top: 3px solid #ffb41d !important;
		box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28) !important;
		padding: 20px 18px 22px 18px !important;
		position: relative !important;
		z-index: 2 !important;
	}

	#registration .form h3
	{
		font-size: 1.15rem !important;
		margin-bottom: 6px !important;
	}

	#registration .form p
	{
		font-size: 0.82rem !important;
		line-height: 1.45 !important;
		margin-bottom: 16px !important;
	}

	#registration .form a.yellow
	{
		font-size: 0.82rem !important;
		padding: 10px 16px !important;
		width: 100% !important;
		justify-content: center !important;
	}

	#registration .form input, 
	#registration .form select
	{
		font-size: 0.84rem !important;
		padding: 9px 12px !important;
		margin-bottom: 10px !important;
	}

	#registration .reminder-actions
	{
		justify-content: center !important;
		width: 100% !important;
		flex-direction: column !important;
		gap: 10px !important;
		margin-top: 18px !important;
	}

	.btn-reminder-primary,
	.btn-reminder-secondary
	{
		width: 100% !important;
		justify-content: center !important;
		font-size: 0.84rem !important;
		padding: 10px 16px !important;
		text-align: center !important;
	}

	/* Tim Ahli & Guru (Experts) */
	#experts .expert-box
	{
		grid-template-columns: 1fr !important;
		gap: 16px !important;
	}

	#experts .expert-box .profile
	{
		padding: 18px 16px !important;
	}

	.profile img
	{
		width: 78px !important;
		height: 78px !important;
	}

	.profile h6
	{
		font-size: 0.98rem !important;
		margin-top: 8px !important;
	}

	.profile p.role
	{
		font-size: 0.80rem !important;
		margin-bottom: 6px !important;
	}

	.profile p.desc
	{
		font-size: 0.82rem !important;
		line-height: 1.5 !important;
	}

	/* Komponen Multi-Column Grid -> 1 Kolom Bersih di Mobile */
	.ragam-kebutuhan-grid-2,
	.kemandirian-grid-3-2,
	.konteks-grid,
	.comparison-grid,
	.pelaporan-grid,
	.privasi-dual-grid,
	.step-grid,
	.team-members,
	.custom-katalog-grid
	{
		grid-template-columns: 1fr !important;
		gap: 14px !important;
		margin-top: 18px !important;
		width: 100% !important;
	}

	.konteks-card,
	.comparison-card,
	.privasi-card,
	.step-card,
	.ladder-item,
	.checklist-item
	{
		padding: 18px 14px !important;
	}

	.step-card h3,
	.comparison-card h3,
	.ladder-content h4
	{
		font-size: 1.02rem !important;
	}

	.step-card p,
	.konteks-card p,
	.comparison-card p,
	.privasi-card p,
	.ladder-content p
	{
		font-size: 0.83rem !important;
		line-height: 1.5 !important;
	}

	.step-card .badge-step
	{
		width: 32px !important;
		height: 32px !important;
		font-size: 0.88rem !important;
		margin-bottom: 0 !important;
	}

	.step-card .step-icon-img
	{
		width: 46px !important;
		height: 46px !important;
	}

	.step-card .kegiatan-icon-img
	{
		width: 60px !important;
		height: 60px !important;
		margin-bottom: 10px !important;
	}

	/* Table Responsif Mobile */
	.table-responsive
	{
		width: 100% !important;
		overflow-x: auto !important;
		-webkit-overflow-scrolling: touch !important;
		margin-top: 16px !important;
		border-radius: 8px !important;
	}

	.custom-table
	{
		min-width: 460px !important;
		width: 100% !important;
	}

	.custom-table th
	{
		padding: 10px 12px !important;
		font-size: 0.80rem !important;
	}

	.custom-table td
	{
		padding: 10px 12px !important;
		font-size: 0.78rem !important;
		line-height: 1.45 !important;
	}

	/* Accordion FAQ Mobile */
	.faq-accordion
	{
		margin-top: 18px !important;
	}

	.faq-header
	{
		padding: 12px 14px !important;
		font-size: 0.86rem !important;
	}

	.faq-body
	{
		padding: 12px 14px !important;
		font-size: 0.82rem !important;
		line-height: 1.5 !important;
	}

	.ladder-item
	{
		flex-direction: column !important;
		align-items: flex-start !important;
		gap: 10px !important;
	}

	.ladder-icon-img
	{
		width: 50px !important;
		height: 50px !important;
	}

	.checklist-container
	{
		grid-template-columns: 1fr !important;
		gap: 12px !important;
	}

	.checklist-item
	{
		padding: 16px 14px !important;
	}

	.checklist-item h5
	{
		font-size: 0.90rem !important;
	}

	.checklist-item p
	{
		font-size: 0.82rem !important;
	}

	/* Testimonials Section Mobile */
	#testimony-section.ftco-section,
	.testimony-section
	{
		padding: 3em 15px !important;
	}

	.testimony-section .col-lg-7
	{
		margin-top: 30px !important;
		padding-left: 15px !important;
		padding-right: 15px !important;
	}

	.services-2
	{
		padding: 14px 12px !important;
	}

	.services-2 .icon
	{
		width: 52px !important;
		height: 52px !important;
	}

	.services-2 .service-icon-img
	{
		width: 48px !important;
		height: 48px !important;
	}

	.services-2 .text h3
	{
		font-size: 0.98rem !important;
	}

	.services-2 .text p
	{
		font-size: 0.82rem !important;
	}

	.testimony-wrap
	{
		padding: 24px 18px !important;
	}

	.testimony-wrap .text p
	{
		font-size: 0.84rem !important;
		line-height: 1.55 !important;
	}

	/* Detail Article / Sumber Belajar */
	.article-card
	{
		padding: 18px 14px !important;
	}

	.article-card h1
	{
		font-size: 1.35rem !important;
		line-height: 1.3 !important;
		margin-bottom: 12px !important;
	}

	.article-card p,
	.article-content p
	{
		font-size: 0.84rem !important;
		line-height: 1.6 !important;
	}

	/* WhatsApp Floating Widget Mobile (Clean, Visible Icon & Chat Kami Pill) */
	.wa-floating-widget
	{
		bottom: 18px !important;
		right: 16px !important;
	}

	.wa-float-btn
	{
		width: auto !important;
		height: auto !important;
		display: inline-flex !important;
		align-items: center !important;
		justify-content: center !important;
		gap: 8px !important;
		padding: 10px 16px 10px 14px !important;
		border-radius: 50px !important;
		background: #25D366 !important;
		border: 1px solid #1ebe5d !important;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
		box-sizing: border-box !important;
	}

	.wa-float-btn i
	{
		font-size: 20px !important;
		line-height: 1 !important;
		display: inline-flex !important;
		align-items: center !important;
		justify-content: center !important;
		color: #ffffff !important;
	}

	.wa-float-badge
	{
		display: inline-block !important;
		font-size: 0.84rem !important;
		font-weight: 700 !important;
		color: #ffffff !important;
		line-height: 1 !important;
		white-space: nowrap !important;
	}

	.wa-chat-bubble
	{
		width: calc(100vw - 32px) !important;
		max-width: 320px !important;
		right: 0 !important;
		bottom: 60px !important;
	}

	.wa-bubble-body p
	{
		font-size: 0.80rem !important;
		line-height: 1.45 !important;
	}
}

/*------------------- Smartphone Kecil (<= 480px) -------------------*/
@media screen and (max-width: 480px)
{
	h1
	{
		font-size: 1.25rem !important;
	}

	h2
	{
		font-size: 1.16rem !important;
	}

	h3
	{
		font-size: 0.98rem !important;
	}

	p
	{
		font-size: 0.82rem !important;
		line-height: 1.5 !important;
	}

	#home h2,
	#about-home h2
	{
		font-size: 1.30rem !important;
	}

	#home p,
	#about-home p
	{
		font-size: 0.82rem !important;
	}

	.section-header h1
	{
		font-size: 1.22rem !important;
	}

	.section-header h4
	{
		font-size: 0.86rem !important;
	}

	.section-header p
	{
		font-size: 0.80rem !important;
	}

	.reminder h1,
	#registration .reminder h1
	{
		font-size: 1.20rem !important;
	}

	#registration .reminder .time .date
	{
		padding: 6px 8px !important;
		font-size: 0.74rem !important;
		min-width: 65px !important;
	}

	#registration .form .form-img-card
	{
		height: auto !important;
		min-height: 160px !important;
		background: transparent !important;
		border-bottom: none !important;
		margin-bottom: -16px !important;
		padding: 0 !important;
		z-index: 1 !important;
	}

	#registration .form .form-img-card img
	{
		max-height: 185px !important;
		max-width: 90% !important;
		width: auto !important;
		object-fit: contain !important;
		object-position: center bottom !important;
		margin: 0 auto !important;
	}

	.custom-table th,
	.custom-table td
	{
		padding: 8px 10px !important;
		font-size: 0.75rem !important;
	}
}

/*------------- Testimonials Section (Exact Minishop Dual-Column Architecture with Zuharo Brand Identity) -------------*/
#testimony-section.ftco-section,
.testimony-section
{
	position: relative;
	background: #ffffff;
	padding: 6em 0;
}

.testimony-section .container
{
	max-width: 1140px;
	margin: 0 auto;
	padding-left: 20px;
	padding-right: 20px;
}

.testimony-section .row
{
	display: flex;
	flex-wrap: wrap;
	margin-left: -15px;
	margin-right: -15px;
	align-items: center;
}

.testimony-section .col-lg-5,
.testimony-section .col-lg-7
{
	width: 100%;
	flex: 0 0 100%;
	max-width: 100%;
	padding-left: 15px;
	padding-right: 15px;
}

.testimony-section .col-lg-7
{
	margin-top: 45px;
}

@media (min-width: 992px)
{
	.testimony-section .col-lg-5
	{
		flex: 0 0 41.666667%;
		max-width: 41.666667%;
		padding-right: 15px;
	}

	.testimony-section .col-lg-7
	{
		flex: 0 0 58.333333%;
		max-width: 58.333333%;
		padding-left: 50px;
		margin-top: 0;
	}
}

/* Left Column: Services-Flow with Custom Illustrated Icons */
.services-flow
{
	width: 100%;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 18px 45px rgba(26, 26, 66, 0.08);
	border: 1px solid rgba(26, 26, 66, 0.06);
	background: #ffffff;
}

.services-2
{
	width: 100%;
	padding: 1.6rem 2rem;
	display: flex;
	align-items: center;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	position: relative;
	border-left: 4px solid transparent;
}

.services-2:hover
{
	transform: translateX(4px);
}

.services-2 .icon
{
	line-height: 1;
	position: relative;
	width: 72px;
	height: 72px;
	margin: 0;
	flex-shrink: 0;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.services-2 .service-icon-img
{
	width: 66px;
	height: 66px;
	border-radius: 50%;
	object-fit: cover;
	display: block;
	transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.services-2:hover .service-icon-img
{
	transform: scale(1.08) rotate(3deg);
}

.services-2 .icon:after
{
	position: absolute;
	top: -6px;
	left: -6px;
	bottom: -6px;
	right: -6px;
	content: '';
	border: 2px dotted #c9c7be;
	border-bottom: none;
	border-radius: 50%;
	z-index: -1;
	transition: border-color 0.3s ease;
}

.services-2 .text
{
	margin-left: 1.85em;
	flex: 1;
}

.services-2 .text h3
{
	font-size: 1.18rem;
	font-weight: 700;
	margin-bottom: 4px;
	line-height: 1.35;
	font-family: 'Outfit', sans-serif;
}

.services-2 .text p
{
	font-size: 0.88rem;
	line-height: 1.58;
	margin: 0;
}

/* 4 Clean Solid Themes (No Gradients, No Glow) */
.services-2 {
	box-shadow: none !important;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
}

.services-2:nth-child(1),
.services-2:nth-child(2),
.services-2:nth-child(3),
.services-2:nth-child(4) {
	background: #ffffff;
	border-bottom: 1px solid #e2e8f0;
}

.services-2 .service-icon-img {
	border: 1px solid #e2e8f0;
	box-shadow: none !important;
	border-radius: 50%;
	background: #f8fafc;
	padding: 2px;
}

.services-2 .text h3 {
	color: #1a1a42;
}

.services-2 .text p {
	color: #64748b;
}

.services-2:hover {
	border-left-color: #1a1a42;
	background: #f8fafc;
	box-shadow: none !important;
	transform: none !important;
}

/* Right Column: Heading & Carousel */
.testimony-column,
.testimony-section .col-lg-7
{
	text-align: left;
}

.subheading-pill
{
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(212, 160, 23, 0.1);
	color: #b8860b;
	padding: 5px 14px;
	border-radius: 20px;
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	margin-bottom: 12px;
	border: 1px solid rgba(212, 160, 23, 0.22);
}

.subheading-pill i
{
	color: #d4a017;
	font-size: 0.8rem;
}

.testimony-column .heading-section h2,
.testimony-section .heading-section h2
{
	font-size: 2.3rem;
	font-weight: 800;
	color: #1a1a42;
	line-height: 1.25;
	margin-bottom: 0.9rem;
	font-family: 'Outfit', sans-serif;
}

.testimony-column .heading-section p,
.testimony-section .heading-section p
{
	font-size: 0.96rem;
	line-height: 1.75;
	color: #64748b;
	margin: 0;
}

/* Carousel testimony */
.carousel-testimony
{
	position: relative;
	min-height: 290px;
}

.testimony-slide
{
	display: none;
	opacity: 0;
	transition: opacity 0.35s ease;
}

.testimony-slide.active
{
	display: block;
	opacity: 1;
}

.testimony-wrap
{
	display: block;
	position: relative;
	background: transparent;
}

.testimony-wrap .user-img
{
	width: 104px;
	height: 104px;
	border-radius: 50%;
	position: relative;
	margin-bottom: 1.5rem;
	background-size: cover;
	background-position: center center;
	border: 3.5px solid #ffffff;
	box-shadow: 0 10px 25px rgba(26, 26, 66, 0.12), 0 2px 8px rgba(0, 0, 0, 0.05);
}

.testimony-wrap .user-img .quote
{
	position: absolute;
	bottom: -6px;
	right: -4px;
	width: 38px;
	height: 38px;
	background: #ffffff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(26, 26, 66, 0.14);
	border: 1px solid #f1f3f5;
}

.testimony-wrap .user-img .quote i
{
	color: #d4a017;
	font-size: 14px;
}

/* Rating Stars */
.testimony-rating
{
	display: flex;
	align-items: center;
	gap: 4px;
	margin-bottom: 14px;
}

.testimony-rating i
{
	color: #f59e0b;
	font-size: 0.9rem;
}

.verified-tag
{
	margin-left: 10px;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 0.74rem;
	font-weight: 600;
	color: #059669;
	background: #ecfdf5;
	padding: 2px 8px;
	border-radius: 12px;
	border: 1px solid #a7f3d0;
}

.testimony-wrap .line
{
	position: relative;
	border-left: 2px solid #e2e8f0;
	padding-left: 1.6rem;
	margin-bottom: 1.5rem;
	font-style: normal;
	font-size: 1.02rem;
	line-height: 1.82;
	color: #334155;
}

.testimony-wrap .line:after
{
	position: absolute;
	top: 50%;
	left: -2px;
	transform: translateY(-50%);
	content: '';
	width: 3px;
	height: 32px;
	background: #d4a017;
	border-radius: 2px;
}

.testimony-wrap .name
{
	font-weight: 700;
	font-size: 1.18rem;
	margin-bottom: 3px;
	color: #d4a017;
	font-family: 'Outfit', sans-serif;
}

.testimony-wrap .position
{
	font-size: 0.78rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1.8px;
	color: #94a3b8;
	display: block;
}

/* Navigation: Dots + Arrows Wrapper */
.testimony-nav-wrap
{
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 2rem;
	max-width: 380px;
}

.testimony-dots
{
	display: flex;
	gap: 6px;
	align-items: center;
}

.testimony-dot
{
	width: 10px;
	height: 10px;
	margin: 2px;
	border-radius: 50%;
	background: #cbd5e1;
	border: none;
	cursor: pointer;
	padding: 0;
	transition: all 0.25s ease;
}

.testimony-dot.active
{
	background: #d4a017;
	width: 26px;
	border-radius: 10px;
}

.testimony-arrows
{
	display: flex;
	gap: 8px;
}

.testimony-arrow
{
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	color: #1a1a42;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.8rem;
	cursor: pointer;
	transition: all 0.2s ease;
}

.testimony-arrow:hover
{
	background: #1a1a42;
	color: #ffffff;
	border-color: #1a1a42;
	transform: scale(1.08);
}

/*------------- Accordion FAQ Styling -------------*/
.faq-accordion
{
	max-width: 820px;
	margin: 35px auto 0 auto;
	text-align: left;
}

.faq-item
{
	background: #ffffff;
	border-radius: 8px;
	margin-bottom: 12px;
	border: 1px solid #e2e6ea;
	overflow: hidden;
	transition: border-color 0.25s ease;
}

.faq-item:hover
{
	border-color: #c8cdd3;
}

.faq-item.active
{
	border-color: #d4a017;
}

.faq-header
{
	padding: 18px 22px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	font-weight: 600;
	color: #1a1a42;
	font-size: 1rem;
	user-select: none;
	background: #ffffff;
	transition: color 0.2s ease;
}

.faq-header:hover
{
	color: #d4a017;
}

.faq-item.active .faq-header
{
	background: #fafaf8;
	color: #1a1a42;
	font-weight: 700;
}

.faq-header span
{
	display: flex;
	align-items: center;
	gap: 12px;
	line-height: 1.4;
}

.faq-header span i.faq-icon
{
	color: #d4a017;
	font-size: 1rem;
	background: none;
	width: auto;
	height: auto;
	margin: 0;
}

.faq-header i.toggle-arrow
{
	font-size: 0.85rem;
	color: #1a1a42;
	transition: transform 0.3s ease, background 0.2s ease;
	background: #f0f1f3;
	width: 32px;
	height: 32px;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-left: 15px;
}

.faq-item.active .faq-header i.toggle-arrow
{
	transform: rotate(180deg);
	background: #d4a017;
	color: #fff;
}

.faq-body
{
	display: none;
	padding: 16px 22px 20px 22px;
	color: #4a5568;
	font-size: 0.92rem;
	line-height: 1.7;
	border-top: 1px solid #eef0f2;
	background: #fafaf8;
}

/*------------- Custom Variety Styles for Subpages -------------*/
.step-grid
{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 25px;
	margin-top: 40px;
}

.step-card
{
	background: #ffffff;
	padding: 28px 24px;
	border-radius: 14px;
	border: 1px solid #e2e8f0;
	position: relative;
	text-align: left;
	box-shadow: none !important;
	transition: border-color 0.2s ease, transform 0.2s ease;
}

.step-card:hover
{
	transform: translateY(-2px) !important;
	border-color: #1a1a42;
	box-shadow: none !important;
}

.step-card .badge-step
{
	width: 38px;
	height: 38px;
	background: #f8fafc;
	color: #0f172a;
	border: 1px solid #cbd5e1;
	border-radius: 4px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 0.88rem;
	margin-bottom: 14px;
	box-shadow: none !important;
}

.step-card:hover .badge-step
{
	background: #1a1a42;
	color: #ffffff;
	border-color: #1a1a42;
}

.step-card-header
{
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
}

.step-card .step-icon-img
{
	width: 72px;
	height: 72px;
	object-fit: contain;
	display: block;
	border-radius: 50%;
	border: 1px solid #e2e8f0;
	background: #f8fafc;
	padding: 2px;
}

.step-card:hover .step-icon-img
{
	border-color: #1a1a42;
	transform: none !important;
}

.kegiatan-icon-wrap
{
	margin-bottom: 16px;
	display: inline-block;
}

.kegiatan-icon-img
{
	width: 76px;
	height: 76px;
	border-radius: 50%;
	object-fit: cover;
	display: block;
	box-shadow: none !important;
	border: 1px solid #e2e8f0;
	background: #f8fafc;
	padding: 2px;
}

.step-card:hover .kegiatan-icon-img
{
	border-color: #1a1a42;
	transform: none !important;
	box-shadow: none !important;
}

#program-alur .step-card
{
	background: #ffffff;
	padding: 26px 22px;
	box-shadow: none !important;
}

#program-alur .step-card:hover
{
	border-color: #1a1a42;
	transform: none !important;
	box-shadow: none !important;
}

#program-alur .step-card .badge-step
{
	width: 36px;
	height: 36px;
	font-size: 0.95rem;
	margin-bottom: 0;
}

.step-card h3
{
	color: #1a1a42;
	font-size: 1.2rem;
	margin-bottom: 10px;
}

.step-card p
{
	color: #64748b;
	font-size: 0.92rem;
	line-height: 24px;
}

/* Distinct Responsive Comparison Table */
.table-responsive
{
	width: 100%;
	overflow-x: auto;
	margin-top: 35px;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.custom-table
{
	width: 100%;
	border-collapse: collapse;
	background: #fff;
	text-align: left;
}

.custom-table th
{
	background: #1a1a42;
	color: #fff;
	padding: 18px 24px;
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: 0.3px;
}

.custom-table th:first-child
{
	border-top-left-radius: 12px;
}

.custom-table th:last-child
{
	border-top-right-radius: 12px;
}

.custom-table td
{
	padding: 18px 24px;
	border-bottom: 1px solid #e2e8f0;
	color: #334155;
	font-size: 0.93rem;
	line-height: 24px;
	vertical-align: top;
}

.custom-table tr:hover td
{
	background: #f8fafc;
}

.custom-table .badge-loc
{
	display: inline-block;
	padding: 3px 10px;
	border-radius: 20px;
	font-size: 0.78rem;
	font-weight: 600;
	margin-bottom: 6px;
}

.badge-sekolah
{
	background: #1a1a42;
	color: #ffffff;
}

.badge-rumah
{
	background: #e8b820;
	color: #1a1a42;
}

/* Distinct Ladder / Stepper Hierarchy */
.level-ladder
{
	display: flex;
	flex-direction: column;
	gap: 15px;
	max-width: 900px;
	margin: 40px auto 0 auto;
	text-align: left;
}

.ladder-item
{
	display: flex;
	align-items: center;
	background: #ffffff;
	padding: 22px 24px;
	border-radius: 8px;
	border: 1px solid #e2e8f0;
	border-left: 4px solid #1a1a42;
	box-shadow: none !important;
	transition: border-color 0.2s ease;
}

.ladder-item:hover
{
	background: #ffffff;
	transform: none !important;
	border-left-color: #d4a017;
	box-shadow: none !important;
}

.ladder-item.target-mastery
{
	border-left-color: #d4a017;
	background: #fdfbf7;
}

.ladder-item.target-mastery:hover
{
	background: #fdfbf7;
	border-color: #d4a017;
}

.ladder-icon-img
{
	width: 72px;
	height: 72px;
	object-fit: contain;
	margin-right: 20px;
	flex-shrink: 0;
	border-radius: 50%;
	border: 1px solid #e2e8f0;
	background: #f8fafc;
	padding: 2px;
}

.ladder-item:hover .ladder-icon-img
{
	border-color: #1a1a42;
	transform: none !important;
}

.ladder-content
{
	flex: 1;
}

.ladder-content h4
{
	color: #1a1a42;
	font-size: 1.12rem;
	font-weight: 700;
	margin-bottom: 6px;
}

.ladder-content p
{
	color: #475569;
	font-size: 0.92rem;
	line-height: 1.6;
	margin: 0;
}

@media screen and (max-width: 600px)
{
	.ladder-item
	{
		flex-direction: column;
		align-items: flex-start;
		gap: 14px;
		padding: 20px 18px;
	}
	.ladder-icon-img
	{
		margin-right: 0;
		width: 68px;
		height: 68px;
	}
}

/*------------- 3 + 2 Desktop Grid for Tangga Kemandirian -------------*/
.ragam-kebutuhan-grid-2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	text-align: left;
	max-width: 1040px;
	margin: 0 auto;
}

@media (max-width: 767px) {
	.ragam-kebutuhan-grid-2 {
		grid-template-columns: 1fr;
	}
}

.kemandirian-grid-3-2 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 22px;
	max-width: 1140px;
	margin: 35px auto 0 auto;
	text-align: left;
}

.kemandirian-col-3 {
	flex: 0 0 calc(33.333% - 15px);
	max-width: calc(33.333% - 15px);
	display: flex;
}

.kemandirian-col-2 {
	flex: 0 0 calc(33.333% - 15px);
	max-width: calc(33.333% - 15px);
	display: flex;
}

@media (max-width: 991px) {
	.kemandirian-col-3,
	.kemandirian-col-2 {
		flex: 0 0 calc(50% - 11px);
		max-width: calc(50% - 11px);
	}
}

@media (max-width: 640px) {
	.kemandirian-col-3,
	.kemandirian-col-2 {
		flex: 0 0 100%;
		max-width: 100%;
	}
}

.kemandirian-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 24px 20px;
	display: flex;
	flex-direction: column;
	width: 100%;
	box-shadow: none !important;
	transition: border-color 0.2s ease, transform 0.2s ease;
	position: relative;
}

.kemandirian-card:hover {
	border-color: #1a1a42;
	transform: translateY(-2px);
}

.kemandirian-card.target-mastery {
	border-color: #fde68a;
	background: #fffdf9;
}

.kemandirian-card.target-mastery:hover {
	border-color: #d4a017;
}

.kemandirian-card-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
}

.kemandirian-level-badge {
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	padding: 3px 9px;
	border-radius: 6px;
	background: #f1f5f9;
	color: #1a1a42;
}

.kemandirian-card.target-mastery .kemandirian-level-badge {
	background: #fef3c7;
	color: #92400e;
}

.kemandirian-mastery-tag {
	font-size: 0.72rem;
	font-weight: 700;
	color: #d4a017;
	letter-spacing: 0.3px;
	text-transform: uppercase;
}

.kemandirian-icon-wrapper {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	padding: 4px;
	margin: 2px auto 14px auto;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: border-color 0.2s ease;
}

.kemandirian-card:hover .kemandirian-icon-wrapper {
	border-color: #1a1a42;
}

.kemandirian-card.target-mastery:hover .kemandirian-icon-wrapper {
	border-color: #d4a017;
}

.kemandirian-icon-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 50%;
}

.kemandirian-title {
	color: #1a1a42;
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.35;
	margin-bottom: 3px;
	text-align: center;
}

.kemandirian-sub {
	font-size: 0.82rem;
	color: #64748b;
	font-weight: 500;
	display: block;
	text-align: center;
	margin-bottom: 12px;
}

.kemandirian-desc {
	color: #475569;
	font-size: 0.88rem;
	line-height: 1.6;
	margin: 0;
	padding-top: 12px;
	border-top: 1px solid #f1f5f9;
	flex-grow: 1;
}

/* Konteks Lingkungan Sekolah vs Rumah (perkembangan.html) */
.konteks-grid
{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	margin-top: 35px;
	text-align: left;
}

.konteks-card
{
	background: #ffffff;
	border-radius: 8px;
	border: 1px solid #e2e8f0;
	padding: 28px 24px;
	box-shadow: none !important;
	display: flex;
	flex-direction: column;
	transition: border-color 0.2s ease;
}

.konteks-card.card-sekolah:hover
{
	border-color: #1a1a42;
	transform: none !important;
	box-shadow: none !important;
}

.konteks-card.card-rumah:hover
{
	border-color: #d4a017;
	transform: none !important;
	box-shadow: none !important;
}

.konteks-header
{
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 22px;
	padding-bottom: 18px;
	border-bottom: 1px solid #f1f5f9;
}

.konteks-header-icon
{
	width: 50px;
	height: 50px;
	border-radius: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.35rem;
	flex-shrink: 0;
	transition: background 0.25s ease, color 0.25s ease;
}

.card-sekolah .konteks-header-icon
{
	background: #f0f4ff;
	color: #2f4184;
}

.card-sekolah:hover .konteks-header-icon
{
	background: #2f4184;
	color: #ffffff;
}

.card-rumah .konteks-header-icon
{
	background: #fdfbf7;
	color: #d4a017;
	border: 1px solid #f3ece0;
}

.card-rumah:hover .konteks-header-icon
{
	background: #d4a017;
	color: #ffffff;
	border-color: #d4a017;
}

.konteks-title-box h3
{
	font-size: 1.2rem;
	font-weight: 700;
	color: #1a1a42;
	margin: 0 0 4px 0;
}

.konteks-sub
{
	font-size: 0.85rem;
	color: #64748b;
	display: block;
}

.konteks-list
{
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.konteks-item
{
	display: flex;
	align-items: flex-start;
	gap: 15px;
	padding: 16px 18px;
	border-radius: 10px;
	transition: background-color 0.2s ease, border-color 0.2s ease;
}

.card-sekolah .konteks-item
{
	background: #f8fafc;
	border: 1px solid #e2e8f0;
}

.card-sekolah .konteks-item:hover
{
	background: #f1f5f9;
	border-color: #cbd5e1;
}

.card-rumah .konteks-item
{
	background: #fdfbf7;
	border: 1px solid #f3ece0;
}

.card-rumah .konteks-item:hover
{
	background: #faf6ee;
	border-color: #e5dac8;
}

.konteks-item-icon
{
	width: 36px;
	height: 36px;
	border-radius: 8px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	flex-shrink: 0;
	margin-top: 2px;
}

.card-sekolah .konteks-item-icon
{
	background: #ffffff;
	color: #2f4184;
	box-shadow: 0 2px 6px rgba(47, 65, 132, 0.08);
}

.card-rumah .konteks-item-icon
{
	background: #ffffff;
	color: #d4a017;
	box-shadow: 0 2px 6px rgba(212, 160, 23, 0.08);
}

.konteks-item-text h5
{
	color: #1a1a42;
	font-size: 0.98rem;
	font-weight: 700;
	margin: 0 0 5px 0;
}

.konteks-item-text p
{
	color: #475569;
	font-size: 0.88rem;
	line-height: 1.55;
	margin: 0;
}

@media screen and (max-width: 900px)
{
	.konteks-grid
	{
		grid-template-columns: 1fr;
		gap: 24px;
	}
	.konteks-card
	{
		padding: 24px 20px;
	}
}

/* Distinct Comparison Cards */
.comparison-grid
{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
	gap: 28px;
	margin-top: 40px;
	text-align: left;
}

.comparison-card
{
	background: #ffffff;
	border-radius: 8px;
	border: 1px solid #e2e8f0;
	padding: 26px 24px;
	box-shadow: none !important;
	transition: border-color 0.2s ease;
	display: flex;
	flex-direction: column;
}

.comparison-card:hover
{
	border-color: #1a1a42;
	transform: none !important;
	box-shadow: none !important;
}

.program-header
{
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 20px;
	padding-bottom: 16px;
	border-bottom: 1px solid #f1f5f9;
}

.program-icon
{
	width: 48px;
	height: 48px;
	border-radius: 10px;
	background: #f0f4ff;
	color: #2f4184;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	flex-shrink: 0;
	transition: background 0.25s ease, color 0.25s ease;
}

.comparison-card:hover .program-icon
{
	background: #2f4184;
	color: #ffb41d;
}

.program-title-box h3
{
	font-size: 1.18rem;
	font-weight: 700;
	color: #1a1a42;
	margin: 0 0 4px 0;
}

.program-area-tag
{
	font-size: 0.85rem;
	color: #64748b;
	font-weight: 500;
}

.program-env-container
{
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.program-env-box
{
	padding: 14px 16px;
	border-radius: 8px;
	transition: background-color 0.2s ease;
}

.program-env-box.env-sekolah
{
	background: #f8fafc;
	border: 1px solid #e2e8f0;
}

.program-env-box.env-rumah
{
	background: #fdfbf7;
	border: 1px solid #f1ece4;
}

.env-header
{
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 6px;
	font-size: 0.82rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.env-sekolah .env-header
{
	color: #2f4184;
}

.env-rumah .env-header
{
	color: #b8860b;
}

.env-rumah .env-header i
{
	color: #d4a017;
}

.program-env-box p
{
	margin: 0;
	font-size: 0.92rem;
	color: #334155;
	line-height: 1.6;
}

/* Distinct Checklist Card (5 Pertanyaan Prioritas) */
.checklist-container
{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 40px;
	text-align: left;
}

.checklist-item
{
	background: #ffffff;
	border: 1px solid #eceae3;
	border-radius: 12px;
	padding: 26px 24px;
	display: flex;
	flex-direction: column;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
	transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.checklist-item:hover
{
	border-color: #d4a017;
	transform: translateY(-4px);
	box-shadow: 0 10px 25px rgba(47, 65, 132, 0.08);
}

.checklist-item-header
{
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
}

.checklist-item .item-icon
{
	width: 44px;
	height: 44px;
	border-radius: 10px;
	background: #f0f4ff;
	color: #2f4184;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.15rem;
	flex-shrink: 0;
	transition: background 0.25s ease, color 0.25s ease;
}

.checklist-item:hover .item-icon
{
	background: #2f4184;
	color: #ffb41d;
}

.checklist-item .item-badge
{
	background: #fdfbf7;
	color: #b8860b;
	border: 1px solid #f1ece4;
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	padding: 4px 10px;
	border-radius: 20px;
}

.checklist-item h5
{
	color: #1a1a42;
	font-size: 1.08rem;
	font-weight: 700;
	line-height: 1.45;
	margin: 0 0 10px 0;
}

.checklist-item p
{
	color: #475569;
	font-size: 0.91rem;
	line-height: 1.6;
	margin: 0;
}

/* 6th Card: Konsultasi CTA in 3x2 Grid */
.checklist-item.cta-item
{
	background: #1a1a42;
	border-color: #2a2a60;
	color: #ffffff;
}

.checklist-item.cta-item:hover
{
	border-color: #d4a017;
	box-shadow: 0 10px 25px rgba(26, 26, 66, 0.2);
}

.checklist-item.cta-item .item-icon
{
	background: rgba(212, 160, 23, 0.15);
	color: #ffb41d;
}

.checklist-item.cta-item:hover .item-icon
{
	background: #ffb41d;
	color: #1a1a42;
}

.checklist-item.cta-item .item-badge
{
	background: rgba(255, 255, 255, 0.1);
	color: #ffb41d;
	border-color: rgba(212, 160, 23, 0.3);
}

.checklist-item.cta-item h5
{
	color: #ffffff;
}

.checklist-item.cta-item p
{
	color: #cbd5e1;
	margin-bottom: 18px;
}

@media screen and (max-width: 992px)
{
	.checklist-container
	{
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}

@media screen and (max-width: 650px)
{
	.checklist-container
	{
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.checklist-item
	{
		padding: 22px 18px;
	}
}

/*--------------------------------------------------------------
# Perkembangan Editorial Components (Bespoke & Anti-AI)
--------------------------------------------------------------*/

/* 1. Indikator Perkembangan Illustrated Icon Cards */
.indikator-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
	margin-top: 35px;
	text-align: center;
}

.indikator-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 18px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	transition: all 0.25s ease;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
	padding: 26px 18px 24px 18px;
}

.indikator-card:hover {
	border-color: #2f4184;
	transform: translateY(-5px);
	box-shadow: 0 14px 28px rgba(47, 65, 132, 0.1);
}

.indikator-img {
	width: 108px;
	height: 108px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
	background: transparent;
	position: relative;
}

.indikator-img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
	filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.05));
}

.indikator-card:hover .indikator-img img {
	transform: scale(1.1) translateY(-2px);
}

.indikator-body {
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	flex-grow: 1;
}

.indikator-tag {
	display: inline-block;
	font-size: 0.70rem;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: #2f4184;
	background: #eef2ff;
	padding: 3px 10px;
	border-radius: 12px;
	margin-bottom: 8px;
}

.indikator-body h4 {
	color: #1a1a42;
	font-size: 1.1rem;
	font-weight: 700;
	margin-bottom: 8px;
}

.indikator-body p {
	color: #64748b;
	font-size: 0.85rem;
	line-height: 1.55;
	margin: 0;
}

/* 2. Dimensi Kemajuan Cards with Large Numbers */
.dimensi-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 35px;
	text-align: left;
}

.dimensi-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 24px 22px;
	position: relative;
	transition: all 0.25s ease;
	display: flex;
	flex-direction: column;
}

.dimensi-card:hover {
	border-color: #d4a017;
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.dimensi-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
}

.dimensi-num {
	font-size: 1.35rem;
	font-weight: 800;
	color: #cbd5e1;
	font-family: inherit;
	letter-spacing: -0.5px;
	transition: color 0.25s ease;
}

.dimensi-card:hover .dimensi-num {
	color: #d4a017;
}

.dimensi-icon {
	width: 38px;
	height: 38px;
	border-radius: 8px;
	background: #f8fafc;
	color: #2f4184;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
}

.dimensi-card h4 {
	color: #1a1a42;
	font-size: 1.05rem;
	font-weight: 700;
	margin-bottom: 8px;
}

.dimensi-card p {
	color: #64748b;
	font-size: 0.88rem;
	line-height: 1.6;
	margin: 0;
}

/* 3. Bentuk Bantuan Illustrated Cards */
.bantuan-flow-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 16px;
	margin-top: 35px;
	text-align: left;
}

.bantuan-item-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 20px 18px;
	display: flex;
	flex-direction: column;
	transition: all 0.25s ease;
}

.bantuan-item-card:hover {
	border-color: #1a1a42;
	transform: translateY(-3px);
}

.bantuan-img-box {
	width: 56px;
	height: 56px;
	border-radius: 10px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8px;
	margin-bottom: 14px;
}

.bantuan-img-box img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.bantuan-item-card h4 {
	color: #1a1a42;
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 6px;
}

.bantuan-item-card p {
	color: #64748b;
	font-size: 0.85rem;
	line-height: 1.55;
	margin: 0;
}

/* 4. Kasus Perbandingan Sekolah vs Rumah */
.kasus-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
	margin-top: 35px;
	text-align: left;
}

.kasus-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	padding: 24px 22px;
	display: flex;
	flex-direction: column;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
	transition: all 0.25s ease;
}

.kasus-card:hover {
	border-color: #2f4184;
	transform: translateY(-3px);
}

.kasus-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
	padding-bottom: 12px;
	border-bottom: 1px solid #f1f5f9;
}

.kasus-tag {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: #2f4184;
	background: #eef2ff;
	padding: 4px 10px;
	border-radius: 6px;
}

.kasus-env-row {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 10px 12px;
	border-radius: 8px;
	margin-bottom: 10px;
}

.kasus-env-row.env-sekolah {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
}

.kasus-env-row.env-rumah {
	background: #fffdf9;
	border: 1px solid #fef3c7;
}

.kasus-env-icon {
	font-size: 1rem;
	margin-top: 2px;
	flex-shrink: 0;
}

.env-sekolah .kasus-env-icon {
	color: #2f4184;
}

.env-rumah .kasus-env-icon {
	color: #d4a017;
}

.kasus-env-text strong {
	display: block;
	font-size: 0.80rem;
	color: #64748b;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	margin-bottom: 2px;
}

.kasus-env-text p {
	margin: 0;
	font-size: 0.88rem;
	color: #1e293b;
	line-height: 1.5;
}

.kasus-makna {
	margin-top: 10px;
	padding: 12px 14px;
	background: #f1f5f9;
	border-radius: 8px;
	border-left: 3px solid #2f4184;
}

.kasus-makna strong {
	display: block;
	color: #1a1a42;
	font-size: 0.82rem;
	margin-bottom: 3px;
}

.kasus-makna p {
	margin: 0;
	color: #475569;
	font-size: 0.85rem;
	line-height: 1.5;
}

/* 5. Fase Penguasaan Progression */
.fase-progression-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 35px;
	text-align: left;
}

.fase-step-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 24px 22px;
	position: relative;
	transition: all 0.25s ease;
	border-top: 4px solid #2f4184;
}

.fase-step-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.fase-badge {
	display: inline-block;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: #2f4184;
	background: #eef2ff;
	padding: 4px 10px;
	border-radius: 6px;
	margin-bottom: 12px;
}

.fase-step-card h4 {
	color: #1a1a42;
	font-size: 1.1rem;
	font-weight: 700;
	margin-bottom: 8px;
}

.fase-step-card p {
	color: #64748b;
	font-size: 0.88rem;
	line-height: 1.6;
	margin: 0;
}

/* 6. Refleksi Orang Dewasa Checklist Grid */
.refleksi-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 35px;
	text-align: left;
}

.refleksi-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 22px 20px;
	transition: all 0.25s ease;
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.refleksi-card:hover {
	border-color: #d4a017;
	transform: translateY(-2px);
}

.refleksi-icon {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: #fdfbf7;
	border: 1px solid #fef3c7;
	color: #d4a017;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	flex-shrink: 0;
}

.refleksi-body h4 {
	color: #1a1a42;
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 6px;
}

.refleksi-body p {
	color: #64748b;
	font-size: 0.85rem;
	line-height: 1.55;
	margin: 0;
}

/* 7. Hasil Evaluasi Grid with Status Pill */
.hasil-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 35px;
	text-align: left;
}

.hasil-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 24px 22px;
	transition: all 0.25s ease;
	display: flex;
	flex-direction: column;
}

.hasil-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.hasil-status-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.75rem;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 6px;
	margin-bottom: 12px;
	align-self: flex-start;
}

.pill-lanjut { background: #dcfce7; color: #15803d; }
.pill-naikkan { background: #e0f2fe; color: #0369a1; }
.pill-sederhanakan { background: #fef3c7; color: #b45309; }
.pill-ubah { background: #f3e8ff; color: #7e22ce; }
.pill-selesai { background: #fef9c3; color: #a16207; }
.pill-prioritas { background: #ccfbf1; color: #0f766e; }

.hasil-card h4 {
	color: #1a1a42;
	font-size: 1.05rem;
	font-weight: 700;
	margin-bottom: 8px;
}

.hasil-card p {
	color: #64748b;
	font-size: 0.88rem;
	line-height: 1.6;
	margin: 0;
}

/* 8. WhatsApp Conversation Mockup */
.wa-mockup-container {
	max-width: 680px;
	margin: 30px auto 0 auto;
	background: #efeae2;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid #d1d5db;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
	text-align: left;
}

.wa-mockup-header {
	background: #075e54;
	color: #ffffff;
	padding: 12px 18px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.wa-mockup-avatar {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: #25d366;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	font-size: 1.1rem;
}

.wa-mockup-title {
	font-size: 0.95rem;
	font-weight: 700;
	margin: 0;
	color: #ffffff;
}

.wa-mockup-sub {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.8);
	margin: 0;
}

.wa-mockup-body {
	padding: 20px 18px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	background-color: #efeae2;
	background-image: radial-gradient(#d5cdc4 1px, transparent 1px);
	background-size: 16px 16px;
}

.wa-bubble {
	max-width: 82%;
	padding: 10px 14px;
	border-radius: 8px;
	font-size: 0.88rem;
	line-height: 1.5;
	position: relative;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.wa-bubble-received {
	background: #ffffff;
	color: #111827;
	align-self: flex-start;
	border-top-left-radius: 0;
}

.wa-bubble-sent {
	background: #d9fdd3;
	color: #111827;
	align-self: flex-end;
	border-top-right-radius: 0;
}

.wa-bubble-sender {
	font-size: 0.75rem;
	font-weight: 700;
	color: #128c7e;
	margin-bottom: 2px;
}

.wa-bubble-time {
	font-size: 0.68rem;
	color: #6b7280;
	text-align: right;
	margin-top: 4px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 4px;
}

/* Responsive Media Queries for Perkembangan */
@media screen and (max-width: 992px) {
	.indikator-grid {
		grid-template-columns: repeat(2, 1fr) !important;
	}
	.dimensi-grid {
		grid-template-columns: repeat(2, 1fr) !important;
	}
	.bantuan-flow-grid {
		grid-template-columns: repeat(2, 1fr) !important;
	}
	.kasus-grid {
		grid-template-columns: 1fr !important;
	}
	.fase-progression-grid,
	.refleksi-grid,
	.hasil-grid {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 16px !important;
	}
}

@media screen and (max-width: 768px) {
	.fase-progression-grid,
	.refleksi-grid,
	.hasil-grid {
		grid-template-columns: 1fr !important;
		gap: 14px !important;
	}
	.fase-step-card,
	.refleksi-card,
	.hasil-card {
		width: 100% !important;
		box-sizing: border-box !important;
	}
}

@media screen and (max-width: 600px) {
	.indikator-grid {
		grid-template-columns: 1fr !important;
	}
	.dimensi-grid {
		grid-template-columns: 1fr !important;
	}
	.bantuan-flow-grid {
		grid-template-columns: 1fr !important;
	}
}

/*--------------------------------------------------------------
# WhatsApp Berjalan Paralel Infographic Component
--------------------------------------------------------------*/
.wa-paralel-card {
	max-width: 920px;
	margin: 32px auto 0 auto;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
	text-align: left;
	box-sizing: border-box;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wa-paralel-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

.wa-paralel-img-wrap {
	width: 100%;
	background: #fbfdfc;
	border-bottom: 1px solid #f1f5f9;
	overflow: hidden;
	line-height: 0;
}

.wa-paralel-img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: contain;
}

.wa-paralel-text {
	padding: 18px 24px;
	border-left: 5px solid #25d366;
	background: #ffffff;
}

@media screen and (max-width: 768px) {
	.wa-paralel-card {
		margin-top: 20px !important;
		border-radius: 12px !important;
		width: 100% !important;
		box-sizing: border-box !important;
	}
	.wa-paralel-text {
		padding: 14px 16px !important;
	}
	.wa-paralel-text p {
		font-size: 0.84rem !important;
		line-height: 1.55 !important;
	}
}

/*--------------------------------------------------------------
# Sumber Belajar Knowledge Centre Components (Bespoke & Editorial)
--------------------------------------------------------------*/

/* Search Bar Utama */
.sumber-search-wrapper {
	max-width: 820px;
	margin: -35px auto 40px auto;
	position: relative;
	z-index: 10;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 24px 28px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.sumber-search-form {
	display: flex;
	gap: 12px;
	align-items: center;
}

.sumber-search-input {
	flex: 1;
	border: 1px solid #cbd5e1;
	border-radius: 10px;
	padding: 14px 18px;
	font-size: 1rem;
	color: #1a1a42;
	outline: none;
	transition: border-color 0.2s ease;
}

.sumber-search-input:focus {
	border-color: #2f4184;
}

.sumber-search-btn {
	background: #1a1a42;
	color: #ffffff;
	border: none;
	border-radius: 10px;
	padding: 14px 24px;
	font-weight: 700;
	font-size: 0.95rem;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: background 0.2s ease;
}

.sumber-search-btn:hover {
	background: #d4a017;
	color: #1a1a42;
}

.sumber-search-tags {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	margin-top: 14px;
	font-size: 0.85rem;
}

.sumber-tag-pill {
	background: #f1f5f9;
	color: #334155;
	padding: 4px 12px;
	border-radius: 20px;
	text-decoration: none;
	font-size: 0.80rem;
	transition: all 0.2s ease;
}

.sumber-tag-pill:hover {
	background: #2f4184;
	color: #ffffff;
}

/* 7 Kategori Nav Grid */
.kategori-nav-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	margin-top: 30px;
	text-align: left;
}

.kategori-nav-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 20px 18px;
	text-decoration: none;
	color: inherit;
	display: flex;
	flex-direction: column;
	transition: all 0.25s ease;
}

.kategori-nav-card:hover {
	border-color: #2f4184;
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(47, 65, 132, 0.08);
}

.kategori-nav-card.active {
	border-color: #1a1a42;
	background: #f8fafc;
	border-left: 4px solid #d4a017;
}

.kategori-nav-icon {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	background: #f0f4ff;
	color: #2f4184;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	margin-bottom: 12px;
}

.kategori-nav-card:hover .kategori-nav-icon {
	background: #1a1a42;
	color: #ffb41d;
}

.kategori-nav-title {
	font-size: 1.02rem;
	font-weight: 700;
	color: #1a1a42;
	margin: 0 0 6px 0;
}

.kategori-nav-desc {
	font-size: 0.82rem;
	color: #64748b;
	line-height: 1.5;
	margin: 0;
	flex-grow: 1;
}

/* Pintu Masuk Berbasis Keterampilan */
.pintu-masuk-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	padding: 28px;
	margin-top: 30px;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
	text-align: left;
}

.pintu-masuk-flow {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin-top: 20px;
}

.pintu-step-box {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	padding: 16px;
	display: flex;
	flex-direction: column;
}

.pintu-step-label {
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #2f4184;
	margin-bottom: 6px;
}

.pintu-step-title {
	font-size: 0.95rem;
	font-weight: 700;
	color: #1a1a42;
	margin-bottom: 6px;
}

.pintu-step-desc {
	font-size: 0.82rem;
	color: #64748b;
	line-height: 1.5;
	margin: 0;
}

/* Jalur Belajar Roadmap */
.roadmap-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 12px;
	margin-top: 30px;
	text-align: left;
}

.roadmap-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	padding: 16px 14px;
	position: relative;
	transition: all 0.2s ease;
}

.roadmap-card:hover {
	border-color: #d4a017;
	transform: translateY(-2px);
}

.roadmap-step-num {
	font-size: 0.75rem;
	font-weight: 800;
	color: #2f4184;
	background: #eef2ff;
	padding: 2px 8px;
	border-radius: 4px;
	display: inline-block;
	margin-bottom: 8px;
}

.roadmap-card h5 {
	font-size: 0.88rem;
	font-weight: 700;
	color: #1a1a42;
	margin-bottom: 4px;
}

.roadmap-card p {
	font-size: 0.78rem;
	color: #64748b;
	line-height: 1.45;
	margin: 0;
}

/* Content Cards in Catalog */
.sumber-catalog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
	margin-top: 25px;
	text-align: left;
}

.sumber-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: all 0.25s ease;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.sumber-card:hover {
	border-color: #2f4184;
	transform: translateY(-4px);
	box-shadow: 0 12px 24px rgba(47, 65, 132, 0.1);
}

.sumber-card-cover {
	width: 100%;
	height: 170px;
	overflow: hidden;
	position: relative;
	background: #f1f5f9;
}

.sumber-card-cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.sumber-card:hover .sumber-card-cover img {
	transform: scale(1.05);
}

.sumber-card-body {
	padding: 20px 20px 24px 20px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.sumber-card-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
}

.sumber-card-badge {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.3px;
	color: #2f4184;
	background: #eef2ff;
	padding: 3px 8px;
	border-radius: 4px;
	text-transform: uppercase;
}

.sumber-card-time {
	font-size: 0.75rem;
	color: #94a3b8;
}

.sumber-card-title {
	color: #1a1a42;
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.4;
	margin: 0 0 8px 0;
}

.sumber-card-title a {
	color: inherit;
	text-decoration: none;
}

.sumber-card-title a:hover {
	color: #2f4184;
}

.sumber-card-desc {
	color: #64748b;
	font-size: 0.85rem;
	line-height: 1.55;
	margin: 0 0 16px 0;
	flex-grow: 1;
}

.sumber-card-tags {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
	margin-bottom: 16px;
}

.sumber-pill-format {
	font-size: 0.72rem;
	background: #f8fafc;
	color: #475569;
	border: 1px solid #e2e8f0;
	padding: 2px 7px;
	border-radius: 4px;
}

.sumber-card-actions {
	display: flex;
	align-items: center;
	gap: 8px;
	padding-top: 14px;
	border-top: 1px solid #f1f5f9;
}

.btn-card-read {
	background: #1a1a42;
	color: #ffffff;
	font-size: 0.80rem;
	font-weight: 700;
	padding: 8px 14px;
	border-radius: 6px;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: background 0.2s ease;
}

.btn-card-read:hover {
	background: #2f4184;
	color: #ffffff;
}

.btn-card-wa {
	background: #f0fdf4;
	color: #15803d;
	border: 1px solid #bbf7d0;
	font-size: 0.80rem;
	font-weight: 600;
	padding: 8px 12px;
	border-radius: 6px;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: all 0.2s ease;
}

.btn-card-wa:hover {
	background: #25d366;
	color: #ffffff;
	border-color: #25d366;
}

/* Responsive Media Queries for Sumber Belajar */
@media screen and (max-width: 1024px) {
	.kategori-nav-grid {
		grid-template-columns: repeat(2, 1fr) !important;
	}
	.sumber-catalog-grid {
		grid-template-columns: repeat(2, 1fr) !important;
	}
	.pintu-masuk-flow {
		grid-template-columns: repeat(2, 1fr) !important;
	}
	.roadmap-grid {
		grid-template-columns: repeat(3, 1fr) !important;
	}
}

@media screen and (max-width: 600px) {
	.kategori-nav-grid {
		grid-template-columns: 1fr !important;
	}
	.sumber-catalog-grid {
		grid-template-columns: 1fr !important;
	}
	.pintu-masuk-flow {
		grid-template-columns: 1fr !important;
	}
	.roadmap-grid {
		grid-template-columns: repeat(2, 1fr) !important;
	}
	.sumber-search-form {
		flex-direction: column;
	}
	.sumber-search-btn {
		width: 100%;
		justify-content: center;
	}
}

/*--------------------------------------------------------------
# Tentang ZUHARO Editorial Components (Company Profile & Story)
--------------------------------------------------------------*/

/* Visi Statement Card */
.visi-box {
	max-width: 880px;
	margin: 0 auto;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-top: 4px solid #d4a017;
	border-radius: 16px;
	padding: 40px 36px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
	text-align: center;
}

.visi-quote {
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.8;
	color: #1a1a42;
	margin: 0;
	font-style: italic;
}

/* Sasaran Pengguna Grid */
.sasaran-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 22px;
	max-width: 960px;
	margin: 35px auto 0 auto;
	text-align: left;
}

.sasaran-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	padding: 24px;
	display: flex;
	gap: 18px;
	align-items: flex-start;
	transition: all 0.25s ease;
}

.sasaran-card:hover {
	border-color: #2f4184;
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(47, 65, 132, 0.08);
}

.sasaran-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: #f0f4ff;
	color: #2f4184;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	flex-shrink: 0;
}

.sasaran-body h4 {
	color: #1a1a42;
	font-size: 1.1rem;
	font-weight: 700;
	margin-bottom: 8px;
}

.sasaran-body p {
	color: #64748b;
	font-size: 0.88rem;
	line-height: 1.6;
	margin: 0;
}

/* ==========================================================================
   Section: Orang-Orang di Balik ZUHARO (Team Spotlight Card Layout)
   ========================================================================== */
.spotlight-wrapper {
	max-width: 860px;
	margin: 0 auto;
}

.spotlight-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 22px;
	padding: 38px 40px;
	box-shadow: none;
	display: flex;
	gap: 36px;
	align-items: flex-start;
	text-align: left;
	position: relative;
}

.spotlight-left {
	width: 250px;
	flex-shrink: 0;
	text-align: center;
}

.spotlight-photo-frame {
	width: 100%;
	height: 250px;
	border-radius: 18px;
	overflow: hidden;
	background: #f1f5f9;
	border: 1px solid #e2e8f0;
	box-shadow: none;
}

.spotlight-photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 16%;
	display: block;
}

.spotlight-verified-label {
	margin-top: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	font-size: 0.9rem;
	font-weight: 500;
	color: #475569;
}

.spotlight-verified-label i {
	color: #64748b;
	font-size: 1rem;
}

.spotlight-right {
	flex-grow: 1;
	min-width: 0;
}

.founder-name {
	font-size: 2rem;
	font-weight: 800;
	color: #1a1a42;
	margin: 0 0 8px 0;
	line-height: 1.25;
	letter-spacing: -0.5px;
}

.founder-subline {
	font-size: 1rem;
	font-weight: 600;
	color: #2f4184;
	margin: 0 0 12px 0;
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.founder-role-text {
	color: #0d9488;
	font-weight: 700;
}

.founder-sep {
	color: #cbd5e1;
}

.founder-affil-text {
	color: #475569;
	font-weight: 500;
}

.founder-expertise-line {
	font-size: 0.95rem;
	color: #334155;
	line-height: 1.6;
	margin: 0 0 24px 0;
}

.founder-expertise-label {
	font-weight: 700;
	color: #1a1a42;
	margin-right: 4px;
}

.founder-expertise-val {
	color: #475569;
}

.spotlight-action-row {
	display: flex;
	align-items: center;
	gap: 16px;
	padding-top: 18px;
	border-top: 1px solid #f1f5f9;
	flex-wrap: wrap;
}

.btn-spotlight-dark {
	background: #1a1a42;
	color: #ffffff;
	border-radius: 10px;
	padding: 10px 22px;
	font-size: 0.9rem;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	text-decoration: none;
	transition: all 0.2s ease;
	box-shadow: 0 2px 6px rgba(26, 26, 66, 0.15);
}

.btn-spotlight-dark:hover {
	background: #2f4184;
	color: #ffffff;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(26, 26, 66, 0.25);
}

.btn-spotlight-link {
	background: transparent;
	color: #1a1a42;
	padding: 10px 16px;
	font-size: 0.9rem;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	transition: all 0.2s ease;
}

.btn-spotlight-link:hover {
	color: #2f4184;
	text-decoration: underline;
}

.spotlight-slider-controls {
	margin-top: 22px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
}

.btn-spotlight-arrow {
	width: 34px;
	height: 34px;
	border-radius: 8px;
	border: 1px solid #e2e8f0;
	background: #ffffff;
	color: #64748b;
	font-size: 0.75rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.2s ease;
	box-shadow: none;
}

.btn-spotlight-arrow:hover {
	border-color: #cbd5e1;
	color: #1a1a42;
	background: #f8fafc;
	box-shadow: none;
}

@media screen and (max-width: 850px) {
	.spotlight-card {
		flex-direction: column;
		align-items: center;
		text-align: center;
		padding: 30px 22px;
		gap: 24px;
	}
	.spotlight-left {
		width: 100%;
		max-width: 220px;
	}
	.spotlight-photo-frame {
		width: 220px;
		height: 220px;
		margin: 0 auto;
	}
	.founder-subline {
		justify-content: center;
	}
	.spotlight-action-row {
		justify-content: center;
	}
}

/* ==========================================================================
   Staggered Alternating Step Cards (Prinsip & Keunikan Layout)
   ========================================================================== */
.stagger-list {
	display: flex;
	flex-direction: column;
	gap: 24px;
	max-width: 960px;
	margin: 35px auto 0 auto;
}

.stagger-card {
	width: 76%;
	background: linear-gradient(90deg, #FFFFFF 0%, #F2F6F5 100%);
	padding: 28px 38px;
	display: flex;
	align-items: center;
	gap: 28px;
	box-shadow: none;
	transition: all 0.25s ease;
	text-align: left;
	box-sizing: border-box;
	border: none;
	border-radius: 0;
}

.stagger-card1 {
	width: 76%;
	background: linear-gradient(270deg, #FFFFFF 0%, #F2F6F5 100%);
	padding: 28px 38px;
	display: flex;
	align-items: center;
	gap: 28px;
	box-shadow: none;
	transition: all 0.25s ease;
	text-align: left;
	box-sizing: border-box;
	border: none;
	border-radius: 0;
}

.stagger-card:hover,
.stagger-card1:hover {
	transform: translateY(-2px);
	box-shadow: none;
	border: none;
}

.stagger-card.stagger-left,
.stagger-card1.stagger-left {
	align-self: flex-start;
	margin-right: auto;
	margin-left: 4%;
}

.stagger-card.stagger-right,
.stagger-card1.stagger-right {
	align-self: flex-end;
	margin-left: auto;
	margin-right: 4%;
}

.stagger-num {
	font-size: 2.8rem;
	font-weight: 700;
	color: #d1d5db;
	min-width: 65px;
	line-height: 1;
	letter-spacing: -1px;
	user-select: none;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	opacity: 0.85;
}

.stagger-icon {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: #1a1a42;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	flex-shrink: 0;
	box-shadow: none;
	transition: transform 0.25s ease;
}

.stagger-card:hover .stagger-icon,
.stagger-card1:hover .stagger-icon {
	transform: scale(1.05);
}

.stagger-content {
	flex-grow: 1;
	min-width: 0;
	text-align: left;
}

.stagger-content h4 {
	font-size: 1.15rem;
	font-weight: 700;
	color: #1f2937;
	margin: 0 0 6px 0;
	line-height: 1.35;
}

.stagger-content p {
	font-size: 0.92rem;
	color: #4b5563;
	line-height: 1.6;
	margin: 0;
}

@media screen and (max-width: 768px) {
	.stagger-card,
	.stagger-card1 {
		width: 100% !important;
		margin: 0 !important;
		padding: 20px 18px !important;
		gap: 16px !important;
		border: none !important;
		border-radius: 0 !important;
	}
	.stagger-num {
		font-size: 2rem !important;
		min-width: 42px !important;
	}
	.stagger-icon {
		width: 46px !important;
		height: 46px !important;
		font-size: 1.1rem !important;
	}
	.stagger-content h4 {
		font-size: 1.05rem !important;
	}
	.stagger-content p {
		font-size: 0.88rem !important;
	}
}

/* Kontak Dual Cards */
.kontak-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 22px;
	max-width: 780px;
	margin: 35px auto 0 auto;
	text-align: left;
}

.kontak-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	padding: 26px 24px;
	display: flex;
	flex-direction: column;
	transition: all 0.25s ease;
}

.kontak-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.kontak-card.kontak-wa {
	border-top: 4px solid #25d366;
}

.kontak-card.kontak-email {
	border-top: 4px solid #2f4184;
}

.kontak-header {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 14px;
}

.kontak-icon {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
}

.kontak-wa .kontak-icon {
	background: #f0fdf4;
	color: #25d366;
}

.kontak-email .kontak-icon {
	background: #f0f4ff;
	color: #2f4184;
}

.kontak-header h4 {
	margin: 0;
	font-size: 1.1rem;
	font-weight: 700;
	color: #1a1a42;
}

.kontak-body p {
	color: #64748b;
	font-size: 0.88rem;
	line-height: 1.55;
	margin: 0 0 16px 0;
}

/* Responsive Media Queries for Tentang ZUHARO & Editorial Sections */
@media screen and (max-width: 768px) {
	/* Section Padding Override for Phones */
	#tentang-platform,
	#latar-belakang,
	#visi,
	#tujuan,
	#fokus,
	#sasaran-pengguna,
	#keunikan,
	#cara-kerja,
	#arah-pengembangan,
	#tim-pengembang,
	#kontak,
	section.reveal {
		padding: 42px 18px !important;
		box-sizing: border-box !important;
	}

	/* Headings & Kickers */
	#latar-belakang h1,
	#visi h1,
	#tujuan h1,
	#fokus h1,
	#sasaran-pengguna h1,
	#keunikan h1,
	#cara-kerja h1,
	#arah-pengembangan h1,
	#tim-pengembang h2,
	#kontak h1 {
		font-size: 1.48rem !important;
		line-height: 1.32 !important;
		margin-bottom: 8px !important;
	}

	.section-kicker {
		font-size: 0.74rem !important;
		letter-spacing: 1.5px !important;
		margin-bottom: 6px !important;
	}

	.section-lead {
		font-size: 0.90rem !important;
		line-height: 1.55 !important;
		margin-bottom: 22px !important;
	}

	/* Section 3 & 9: Tables in Card Containers */
	.table-responsive {
		width: 100% !important;
		overflow-x: auto !important;
		-webkit-overflow-scrolling: touch !important;
		border: 1px solid #e2e8f0 !important;
		border-radius: 12px !important;
		background: #ffffff !important;
		margin: 0 auto !important;
	}

	.custom-table {
		min-width: 460px !important;
		width: 100% !important;
		margin-bottom: 0 !important;
	}

	.custom-table th {
		padding: 10px 14px !important;
		font-size: 0.80rem !important;
		white-space: nowrap !important;
	}

	.custom-table td {
		padding: 11px 14px !important;
		font-size: 0.82rem !important;
		line-height: 1.5 !important;
	}

	/* Section 4: Visi Quote Box */
	.visi-box {
		padding: 24px 18px !important;
		border-radius: 12px !important;
	}

	.visi-quote {
		font-size: 1.05rem !important;
		line-height: 1.65 !important;
	}

	/* Section 5 & 10: Dimensi Grid */
	.dimensi-grid {
		grid-template-columns: 1fr !important;
		gap: 12px !important;
		margin-top: 20px !important;
	}

	.dimensi-card {
		padding: 18px 16px !important;
		border-radius: 12px !important;
	}

	.dimensi-card h4 {
		font-size: 1.02rem !important;
		margin-bottom: 6px !important;
	}

	.dimensi-card p {
		font-size: 0.86rem !important;
		line-height: 1.55 !important;
	}

	/* Section 6: Fokus Spesifik */
	.fokus-pills-row {
		gap: 8px !important;
		margin-bottom: 20px !important;
	}

	.fokus-pills-row span {
		padding: 6px 12px !important;
		font-size: 0.80rem !important;
	}

	.fokus-box {
		padding: 20px 16px !important;
		border-radius: 12px !important;
	}

	.fokus-box p {
		font-size: 0.88rem !important;
		line-height: 1.6 !important;
	}

	/* Section 7: Sasaran Pengguna Grid */
	.sasaran-grid {
		grid-template-columns: 1fr !important;
		gap: 12px !important;
		margin-top: 20px !important;
	}

	.sasaran-card {
		padding: 16px 14px !important;
		gap: 12px !important;
		border-radius: 12px !important;
	}

	.sasaran-icon {
		width: 42px !important;
		height: 42px !important;
		font-size: 1.15rem !important;
		border-radius: 10px !important;
	}

	.sasaran-body h4 {
		font-size: 1.02rem !important;
		margin-bottom: 4px !important;
	}

	.sasaran-body p {
		font-size: 0.85rem !important;
		line-height: 1.5 !important;
	}

	/* Section 8: Stagger Cards (Apa yang Membuat ZUHARO Berbeda) */
	.stagger-list {
		margin-top: 18px !important;
		gap: 12px !important;
	}

	.stagger-card,
	.stagger-card1 {
		width: 100% !important;
		margin: 0 !important;
		padding: 16px 14px !important;
		gap: 12px !important;
		border: none !important;
		border-radius: 0 !important;
		align-items: flex-start !important;
	}

	.stagger-num {
		font-size: 1.45rem !important;
		min-width: 28px !important;
		line-height: 1.1 !important;
		margin-top: 3px !important;
	}

	.stagger-icon {
		width: 38px !important;
		height: 38px !important;
		font-size: 0.95rem !important;
		margin-top: 1px !important;
		flex-shrink: 0 !important;
	}

	.stagger-content h4 {
		font-size: 1rem !important;
		margin-bottom: 4px !important;
	}

	.stagger-content p {
		font-size: 0.85rem !important;
		line-height: 1.5 !important;
	}

	/* Section 11: Spotlight Founder Card */
	.spotlight-wrapper {
		width: 100% !important;
	}

	.spotlight-card {
		flex-direction: column !important;
		align-items: center !important;
		text-align: center !important;
		padding: 24px 16px !important;
		gap: 18px !important;
		border-radius: 16px !important;
	}

	.spotlight-left {
		width: 100% !important;
		max-width: 180px !important;
	}

	.spotlight-photo-frame {
		width: 180px !important;
		height: 180px !important;
		margin: 0 auto !important;
		border-radius: 14px !important;
	}

	.founder-name {
		font-size: 1.35rem !important;
		margin-bottom: 6px !important;
	}

	.founder-subline {
		justify-content: center !important;
		font-size: 0.90rem !important;
		margin-bottom: 10px !important;
		gap: 6px !important;
	}

	.founder-expertise-line {
		font-size: 0.88rem !important;
		margin-bottom: 18px !important;
		text-align: center !important;
	}

	.spotlight-action-row {
		flex-direction: column !important;
		width: 100% !important;
		gap: 10px !important;
		padding-top: 14px !important;
	}

	.btn-spotlight-dark,
	.btn-spotlight-link {
		width: 100% !important;
		justify-content: center !important;
		text-align: center !important;
		padding: 10px 14px !important;
		font-size: 0.88rem !important;
		box-sizing: border-box !important;
	}

	/* Section 12: Kontak Grid */
	.kontak-grid {
		grid-template-columns: 1fr !important;
		gap: 12px !important;
		margin-top: 18px !important;
	}

	.kontak-card {
		padding: 20px 16px !important;
		border-radius: 12px !important;
	}

	.kontak-card h4 {
		font-size: 1.02rem !important;
	}

	.kontak-card p {
		font-size: 0.86rem !important;
		margin-bottom: 14px !important;
	}

	.kontak-card a {
		width: 100% !important;
		justify-content: center !important;
		box-sizing: border-box !important;
	}
}

@media screen and (max-width: 480px) {
	#tentang-platform,
	#latar-belakang,
	#visi,
	#tujuan,
	#fokus,
	#sasaran-pengguna,
	#keunikan,
	#cara-kerja,
	#arah-pengembangan,
	#tim-pengembang,
	#kontak,
	section.reveal {
		padding: 36px 14px !important;
	}

	#latar-belakang h1,
	#visi h1,
	#tujuan h1,
	#fokus h1,
	#sasaran-pengguna h1,
	#keunikan h1,
	#cara-kerja h1,
	#arah-pengembangan h1,
	#tim-pengembang h2,
	#kontak h1 {
		font-size: 1.34rem !important;
		line-height: 1.28 !important;
	}

	.stagger-card {
		padding: 14px 12px !important;
		gap: 10px !important;
	}

	.stagger-num {
		font-size: 1.3rem !important;
		min-width: 24px !important;
	}

	.stagger-icon {
		width: 34px !important;
		height: 34px !important;
		font-size: 0.88rem !important;
	}
}

/*------------- Universal Button Styles (Clean & Flat) -------------*/
a.yellow, .btn-yellow
{
	text-decoration: none !important;
	font-size: 0.95rem;
	padding: 13px 28px;
	font-weight: 600;
	border-radius: 6px;
	color: #1a1a42 !important;
	background: #e8b820;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	transition: all 0.2s ease;
	border: none;
	cursor: pointer;
}

a.yellow:hover, .btn-yellow:hover
{
	color: #fff !important;
	background: #1a1a42;
}

a.blue, .btn-blue
{
	text-decoration: none !important;
	font-size: 0.95rem;
	padding: 13px 28px;
	font-weight: 600;
	border-radius: 6px;
	color: #fff !important;
	background: #1a1a42;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	transition: all 0.2s ease;
	border: none;
	cursor: pointer;
}

a.blue:hover, .btn-blue:hover
{
	background: #2a2a5c;
	color: #fff !important;
}

.btn-k
{
	text-decoration: none !important;
	font-size: 0.95rem;
	padding: 10px 70px;
	font-weight: 600;
	border-radius: 6px;
	color: #ffffff !important;
	background: #1a1a42;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	transition: all 0.2s ease;
	border: none;
	cursor: pointer;
}


.btn-wa-action
{
	text-decoration: none !important;
	font-size: 0.95rem;
	padding: 13px 28px;
	font-weight: 600;
	border-radius: 6px;
	color: #ffffff !important;
	background: #128c7e;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	transition: all 0.2s ease;
	border: none;
	cursor: pointer;
}

.btn-wa-action:hover
{
	background: #075e54;
	color: #ffffff !important;
}

.btn-navy-gold
{
	text-decoration: none !important;
	font-size: 0.95rem;
	padding: 13px 28px;
	font-weight: 600;
	border-radius: 6px;
	color: #ffffff !important;
	background: #1a1a42;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	transition: all 0.2s ease;
	border: none;
	cursor: pointer;
}

.btn-navy-gold:hover
{
	background: #2a2a5c;
	color: #ffffff !important;
}

/* Natural Editorial Styling for WhatsApp Reporting Section */
.pelaporan-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 40px;
	align-items: center;
	margin-top: 40px;
	text-align: left;
}

.pelaporan-steps {
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.pelaporan-step-item {
	display: flex;
	align-items: flex-start;
	gap: 18px;
	background: #ffffff;
	padding: 20px 24px;
	border-radius: 10px;
	border: 1px solid #e2e8f0;
	transition: 0.2s ease;
}

.pelaporan-step-item:hover {
	border-color: #cbd5e1;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.pelaporan-step-num {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #1a1a42;
	color: #d4a017;
	font-weight: 700;
	font-size: 1.1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.pelaporan-step-text h4 {
	color: #0f172a;
	font-size: 1.05rem;
	margin-bottom: 5px;
	font-weight: 600;
}

.pelaporan-step-text p {
	color: #475569;
	font-size: 0.9rem;
	line-height: 22px;
	margin: 0;
}

.pelaporan-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	padding: 32px 28px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.pelaporan-card-header {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 18px;
	padding-bottom: 16px;
	border-bottom: 1px solid #f1f5f9;
}

.pelaporan-card-header i {
	font-size: 2rem;
	color: #128c7e;
}

.pelaporan-card-header h4 {
	margin: 0;
	font-size: 1.15rem;
	color: #0f172a;
	font-weight: 700;
}

.pelaporan-card-header span {
	font-size: 0.85rem;
	color: #64748b;
}

.pelaporan-example-box {
	background: #f8fafc;
	border-left: 3px solid #d4a017;
	border-radius: 6px;
	padding: 16px 18px;
	font-size: 0.92rem;
	color: #334155;
	line-height: 24px;
	margin-bottom: 24px;
}

.pelaporan-reassurance {
	display: flex;
	justify-content: space-between;
	margin-top: 18px;
	font-size: 0.8rem;
	color: #64748b;
}

/* Natural Editorial Styling for Privacy Section */
.privasi-dual-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
	gap: 30px;
	margin-top: 40px;
	text-align: left;
}

.privasi-card {
	background: #fafaf8;
	border: 1px solid #eceae3;
	border-radius: 12px;
	padding: 32px 28px;
	display: flex;
	flex-direction: column;
	transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.privasi-card:hover {
	border-color: #d4a017;
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.privasi-card.pub-card,
.privasi-card.priv-card {
	border-top: none;
}

.privasi-card-header {
	margin-bottom: 20px;
}

.privasi-card-header i {
	font-size: 1.8rem;
	margin-bottom: 12px;
	display: inline-block;
	color: #1a1a42;
}

.privasi-card.pub-card .privasi-card-header i,
.privasi-card.priv-card .privasi-card-header i {
	color: #1a1a42;
}

.privasi-card-header h3 {
	font-size: 1.2rem;
	color: #0f172a;
	margin-bottom: 6px;
	font-weight: 700;
}

.privasi-card-header span {
	font-size: 0.85rem;
	color: #64748b;
	display: block;
}

.privasi-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.privasi-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 0.9rem;
	line-height: 22px;
	color: #334155;
}

.privasi-list li i {
	margin-top: 3px;
	font-size: 0.95rem;
	flex-shrink: 0;
	color: #d4a017;
}

.privasi-card.pub-card .privasi-list li i,
.privasi-card.priv-card .privasi-list li i {
	color: #d4a017;
}

.privasi-banner-note {
	background: #f1f5f9;
	border-radius: 8px;
	padding: 16px 24px;
	max-width: 850px;
	margin: 35px auto 0 auto;
	text-align: center;
	font-size: 0.88rem;
	color: #475569;
	line-height: 22px;
}

@media screen and (max-width: 768px) {
	.pelaporan-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	.privasi-dual-grid {
		grid-template-columns: 1fr;
	}
	.pelaporan-reassurance {
		flex-direction: column;
		gap: 6px;
		text-align: center;
	}
}


/*------------- Scroll Reveal Animations (Natural & Subtle) -------------*/
.reveal
{
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
	will-change: opacity, transform;
}

.reveal.visible
{
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce)
{
	.reveal
	{
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}
}

@media screen and (max-width: 991px)
{
	.reveal
	{
		opacity: 0;
		transform: translateY(18px);
		transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
		will-change: opacity, transform;
	}

	.reveal.visible
	{
		opacity: 1 !important;
		transform: translateY(0) !important;
	}
}

/* Stagger children animation for grids */
.reveal .fea-box,
.reveal .courses,
.reveal .profile,
.reveal .faq-item
{
	opacity: 1;
}

.reveal.visible .fea-box:nth-child(1),
.reveal.visible .courses:nth-child(1),
.reveal.visible .profile:nth-child(1),
.reveal.visible .faq-item:nth-child(1) { animation-delay: 0.05s; }

.reveal.visible .fea-box:nth-child(2),
.reveal.visible .courses:nth-child(2),
.reveal.visible .profile:nth-child(2),
.reveal.visible .faq-item:nth-child(2) { animation-delay: 0.1s; }

.reveal.visible .fea-box:nth-child(3),
.reveal.visible .courses:nth-child(3),
.reveal.visible .profile:nth-child(3),
.reveal.visible .faq-item:nth-child(3) { animation-delay: 0.15s; }

.reveal.visible .fea-box:nth-child(4),
.reveal.visible .courses:nth-child(4),
.reveal.visible .profile:nth-child(4),
.reveal.visible .faq-item:nth-child(4) { animation-delay: 0.2s; }

.reveal.visible .fea-box:nth-child(5),
.reveal.visible .courses:nth-child(5),
.reveal.visible .profile:nth-child(5) { animation-delay: 0.25s; }

.reveal.visible .fea-box:nth-child(6),
.reveal.visible .courses:nth-child(6),
.reveal.visible .profile:nth-child(6) { animation-delay: 0.3s; }

.reveal.visible .profile:nth-child(7) { animation-delay: 0.35s; }

@keyframes fadeSlideUp
{
	from
	{
		opacity: 0;
		transform: translateY(14px);
	}
	to
	{
		opacity: 1;
		transform: translateY(0);
	}
}

/* Selection style */
::selection
{
	background: #e8b820;
	color: #1a1a42;
}

/* Better focus styles for accessibility */
a:focus-visible,
button:focus-visible
{
	outline: 2px solid #d4a017;
	outline-offset: 2px;
}

/*------------- Target Audience Section ("Untuk Siapa Platform Zuharo?") -------------*/
#target-audiens
{
	padding: 75px 8vw 80px 8vw;
	background: #ffffff;
	border-bottom: 1px solid #edf2f7;
	text-align: center;
}

#target-audiens .audience-header-wrap
{
	max-width: 660px;
	margin: 0 auto 48px auto;
}

.section-kicker
{
	display: inline-block;
	color: #d4a017;
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2.2px;
	margin-bottom: 8px;
}

#target-audiens h2
{
	color: #1a1a42;
	font-size: 2.05rem;
	font-weight: 700;
	margin-bottom: 12px;
	letter-spacing: -0.3px;
}

#target-audiens .section-subtitle
{
	color: #64748b;
	font-size: 0.98rem;
	line-height: 1.62;
	margin: 0;
}

.audience-grid-3
{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	max-width: 1200px;
	margin: 0 auto;
	text-align: left;
}

.audience-item
{
	background: #fafafc;
	border: 1px solid #e8ecf2;
	border-radius: 16px;
	padding: 34px 28px;
	display: flex;
	flex-direction: column;
	transition: all 0.25s ease;
}

.audience-item:hover
{
	background: #ffffff;
	border-color: #d4a017;
	transform: translateY(-4px);
	box-shadow: 0 12px 28px rgba(26, 26, 66, 0.06);
}

.audience-num
{
	font-size: 0.8rem;
	font-weight: 700;
	color: #d4a017;
	letter-spacing: 1.5px;
	margin-bottom: 12px;
	display: block;
	text-transform: uppercase;
}

.audience-item h3
{
	color: #1a1a42;
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 14px;
	line-height: 1.35;
}

.audience-item p
{
	color: #556477;
	font-size: 0.92rem;
	line-height: 1.68;
	margin: 0 0 24px 0;
	flex-grow: 1;
}

.audience-link
{
	font-size: 0.88rem;
	font-weight: 600;
	color: #1a1a42;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: color 0.2s ease, gap 0.2s ease;
	margin-top: auto;
}

.audience-link:hover
{
	color: #d4a017;
	gap: 12px;
}

@media (max-width: 900px)
{
	.audience-grid-3
	{
		grid-template-columns: 1fr;
		gap: 20px;
	}
	#target-audiens
	{
		padding: 45px 20px;
	}
	#target-audiens h2
	{
		font-size: 1.55rem;
	}
}

/*------------- Developer Draft (01 Beranda) Specific Styles -------------*/
/* 1. Quote Box in Section 3 (Apa Itu Kolaborasi) */
.kolaborasi-quote
{
	background: #fbfaf6;
	border-left: 4px solid #d4a017;
	border-radius: 0 12px 12px 0;
	padding: 18px 24px;
	margin-top: 24px;
	font-size: 0.95rem;
	font-style: italic;
	color: #1a1a42;
	line-height: 1.6;
	display: flex;
	gap: 14px;
	align-items: flex-start;
}

.kolaborasi-quote i
{
	color: #d4a017;
	font-size: 1.4rem;
	line-height: 1;
	margin-top: 3px;
	flex-shrink: 0;
}

/* 2. Section 4: Mengapa Kolaborasi Penting (Why Grid) */
.why-section
{
	padding: 6vw 8vw;
	background: #ffffff;
	text-align: center;
}

.why-header
{
	max-width: 780px;
	margin: 0 auto 45px auto;
}

.why-header h2
{
	color: #1a1a42;
	font-size: 2.1rem;
	font-weight: 700;
	margin: 8px 0 14px 0;
}

.why-header p
{
	color: #64748b;
	font-size: 1rem;
	line-height: 1.65;
	margin: 0;
}

.why-grid
{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	max-width: 1140px;
	margin: 0 auto;
	text-align: left;
}

.why-card
{
	background: #fcfcfd;
	border: 1px solid #e8ecf2;
	border-radius: 14px;
	padding: 28px 26px;
	transition: all 0.25s ease;
}

.why-card:hover
{
	border-color: #1a1a42;
	transform: none;
	box-shadow: none;
}

/* Mengapa Kolaborasi Penting - Bootstrap Card & Custom Elements */
.mengapa-bootstrap-card {
	transition: border-color 0.2s ease, transform 0.2s ease;
	border-color: #e2e8f0 !important;
}

.mengapa-bootstrap-card:hover {
	border-color: #1a1a42 !important;
}

.mengapa-bs-num {
	background: #f1f5f9;
	color: #0f172a;
	font-weight: 700;
	font-size: 1.15rem;
	width: 44px;
	height: 44px;
	min-width: 44px;
	border-radius: 10px;
	border: 1px solid #e2e8f0;
	margin-top: 2px;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.mengapa-bootstrap-card:hover .mengapa-bs-num {
	background: #1a1a42;
	color: #ffffff;
	border-color: #1a1a42;
}

/* Mengapa Kolaborasi Penting - 2 Column Layout Sesuai Mockup User */
.mengapa-layout {
	display: grid;
	grid-template-columns: 1.3fr 1fr;
	gap: 32px;
	max-width: 1080px;
	margin: 0 auto;
	align-items: stretch;
	text-align: left;
}

.mengapa-cards-col {
	display: flex;
	flex-direction: column;
	gap: 18px;
	justify-content: space-between;
}

.mengapa-row-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 20px 24px;
	display: flex;
	align-items: flex-start;
	gap: 20px;
	box-shadow: none !important;
	transition: border-color 0.2s ease;
}

.mengapa-row-card:hover {
	border-color: #1a1a42;
}

.mengapa-num {
	background: #f1f5f9;
	color: #0f172a;
	font-weight: 700;
	font-size: 1.15rem;
	width: 44px;
	height: 44px;
	min-width: 44px;
	border-radius: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	border: 1px solid #e2e8f0;
	margin-top: 2px;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.mengapa-row-card:hover .mengapa-num {
	background: #1a1a42;
	color: #ffffff;
	border-color: #1a1a42;
}

.mengapa-content {
	flex: 1;
}

.mengapa-content h3 {
	color: #0f172a;
	font-size: 1.15rem;
	font-weight: 700;
	margin: 0 0 6px 0;
	line-height: 1.3;
	font-family: 'Outfit', sans-serif;
}

.mengapa-content p {
	color: #475569;
	font-size: 0.93rem;
	line-height: 1.55;
	margin: 0;
	font-family: 'Outfit', sans-serif;
}

.mengapa-img-col {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	display: flex;
	height: 100%;
}

.mengapa-img-col img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 24px;
}

@media (max-width: 991px) {
	.mengapa-layout {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	.mengapa-img-col {
		min-height: 360px;
		max-height: 460px;
	}
}

@media (max-width: 600px) {
	.mengapa-row-card {
		padding: 16px 16px;
		gap: 12px;
	}
	.mengapa-num {
		width: 34px;
		height: 34px;
		font-size: 0.88rem;
	}
}

.why-card-icon
{
	width: 44px;
	height: 44px;
	border-radius: 10px;
	background: rgba(212, 160, 23, 0.12);
	color: #d4a017;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	margin-bottom: 16px;
}

.why-card h3
{
	color: #1a1a42;
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 10px;
}

.why-card p
{
	color: #556477;
	font-size: 0.92rem;
	line-height: 1.65;
	margin: 0;
}

/* 3. Section 5: Peran Keluarga dan Sekolah */
.peran-section
{
	padding: 6vw 8vw;
	background: #f8fafc;
	border-top: 1px solid #edf2f7;
	border-bottom: 1px solid #edf2f7;
	text-align: center;
}

.peran-header
{
	max-width: 760px;
	margin: 0 auto 40px auto;
}

.peran-header h2
{
	color: #1a1a42;
	font-size: 2.1rem;
	font-weight: 700;
	margin: 8px 0 12px 0;
}

.peran-header p
{
	color: #64748b;
	font-size: 1rem;
	line-height: 1.6;
	margin: 0;
}

.peran-grid
{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px;
	max-width: 1100px;
	margin: 0 auto;
	text-align: left;
}

.peran-col
{
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 32px 30px;
	display: flex;
	flex-direction: column;
}

.peran-badge
{
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: #d4a017;
	margin-bottom: 10px;
}

.peran-col h3
{
	color: #1a1a42;
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 18px;
}

.peran-list
{
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex-grow: 1;
}

.peran-list li
{
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 0.92rem;
	color: #475569;
	line-height: 1.55;
}

.peran-list li i
{
	color: #10b981;
	font-size: 0.95rem;
	margin-top: 3px;
	flex-shrink: 0;
}

.peran-summary
{
	max-width: 900px;
	margin: 36px auto 0 auto;
	background: #ffffff;
	border: 1px dashed #cbd5e1;
	border-radius: 12px;
	padding: 16px 24px;
	color: #1a1a42;
	font-size: 0.98rem;
	font-weight: 600;
	text-align: center;
}

/* 4. Section 7: Prinsip Kolaborasi ZUHARO */
.prinsip-section
{
	padding: 6vw 8vw;
	background: #ffffff;
	text-align: center;
}

.prinsip-header
{
	max-width: 720px;
	margin: 0 auto 40px auto;
}

.prinsip-header h2
{
	color: #1a1a42;
	font-size: 2.1rem;
	font-weight: 700;
	margin: 8px 0 12px 0;
}

.prinsip-header p
{
	color: #64748b;
	font-size: 1rem;
	line-height: 1.6;
	margin: 0;
}

.prinsip-grid
{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	max-width: 1140px;
	margin: 0 auto;
	text-align: left;
}

.prinsip-card
{
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	padding: 24px 22px;
	box-shadow: none;
	transition: border-color 0.2s ease;
}

.prinsip-card:hover
{
	border-color: #1a1a42;
	background: #ffffff;
	transform: none;
	box-shadow: none;
}

.prinsip-card h4
{
	color: #1a1a42;
	font-size: 1.08rem;
	font-weight: 700;
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.prinsip-card h4 i
{
	color: #d4a017;
	font-size: 0.95rem;
}

.prinsip-card p
{
	color: #556477;
	font-size: 0.88rem;
	line-height: 1.6;
	margin: 0;
}

/* 5. Section 8: Satu Tujuan, Peran yang Berbeda */
.satu-tujuan-section
{
	padding: 6vw 8vw;
	background: #fafaf8;
	border-top: 1px solid #eceae3;
	border-bottom: 1px solid #eceae3;
	text-align: center;
}

.satu-tujuan-wrap
{
	max-width: 960px;
	margin: 0 auto;
}

.satu-tujuan-wrap h2
{
	color: #1a1a42;
	font-size: 2.1rem;
	font-weight: 700;
	margin: 8px 0 10px 0;
}

.satu-tujuan-wrap .sub-heading
{
	color: #d4a017;
	font-weight: 700;
	font-size: 1.15rem;
	margin-bottom: 14px;
}

.satu-tujuan-wrap p
{
	color: #556477;
	font-size: 0.98rem;
	line-height: 1.7;
	margin-bottom: 30px;
}

.synergy-diagram
{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-top: 24px;
	flex-wrap: wrap;
}

.synergy-node
{
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 20px 24px;
	flex: 1;
	min-width: 220px;
	max-width: 280px;
	text-align: center;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.synergy-node h5
{
	color: #1a1a42;
	font-size: 1.05rem;
	font-weight: 700;
	margin: 8px 0 4px 0;
}

.synergy-node span
{
	color: #64748b;
	font-size: 0.85rem;
	line-height: 1.4;
	display: block;
}

.synergy-operator
{
	font-size: 1.8rem;
	font-weight: 700;
	color: #d4a017;
}

.synergy-result
{
	border-color: #d4a017;
	background: #fffdf5;
}

/* 6. Section 9: Cara Menggunakan ZUHARO */
.cara-section
{
	padding: 6vw 8vw;
	background: #ffffff;
	text-align: center;
}

.cara-header
{
	max-width: 740px;
	margin: 0 auto 40px auto;
}

.cara-header h2
{
	color: #1a1a42;
	font-size: 2.1rem;
	font-weight: 700;
	margin: 8px 0 10px 0;
}

.cara-header p
{
	color: #64748b;
	font-size: 1rem;
	line-height: 1.6;
	margin: 0;
}

.cara-grid
{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	max-width: 1040px;
	margin: 0 auto;
	text-align: left;
}

.cara-col
{
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 34px 30px;
	display: flex;
	flex-direction: column;
	background: #ffffff;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.cara-col-header
{
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}

.cara-icon-badge
{
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: #f1f5f9;
	color: #1a1a42;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
}

.cara-icon-badge.green
{
	background: #ecfdf5;
	color: #10b981;
}

.cara-col h3
{
	color: #1a1a42;
	font-size: 1.25rem;
	font-weight: 700;
	margin: 0;
}

.cara-list
{
	list-style: none;
	padding: 0;
	margin: 0 0 28px 0;
	display: flex;
	flex-direction: column;
	gap: 11px;
	flex-grow: 1;
}

.cara-list li
{
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 0.92rem;
	color: #475569;
	line-height: 1.5;
}

.cara-list li i
{
	color: #d4a017;
	font-size: 0.9rem;
	margin-top: 3px;
	flex-shrink: 0;
}

.cara-col .btn-action
{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 13px 24px;
	border-radius: 8px;
	font-size: 0.95rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.2s ease;
}

.btn-web
{
	background: #1a1a42;
	color: #ffffff;
}

.btn-web:hover
{
	background: #2a2a6b;
	color: #ffffff;
}

.btn-wa
{
	background: #25D366;
	color: #ffffff;
}

.btn-wa:hover
{
	background: #20ba58;
	color: #ffffff;
}

@media (max-width: 900px)
{
	.why-grid, .peran-grid, .prinsip-grid, .cara-grid
	{
		grid-template-columns: 1fr;
	}
	.synergy-diagram
	{
		flex-direction: column;
	}
	.synergy-operator
	{
		transform: rotate(90deg);
	}
}

/* ================================================================
   ZUHARO Unified Design System Classes (Subpages & Consistency)
   ================================================================ */
.section-kicker {
	color: #d4a017;
	font-weight: 700;
	font-size: 0.82rem;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	display: block;
	margin-bottom: 8px;
}

.section-lead {
	max-width: 780px;
	margin: 0 auto 36px auto;
	color: #64748b;
	font-size: 1rem;
	line-height: 1.7;
}

/* Unified Card - Clean, Grounded, Crisp Editorial (NO AI Shadow/Glow) */
.zuharo-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	padding: 26px 24px;
	text-align: start;
	box-shadow: none !important;
	transition: border-color 0.2s ease, background-color 0.2s ease;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.zuharo-card:hover {
	border-color: #1a1a42;
	box-shadow: none !important;
	transform: none !important;
}

.zuharo-card-alt {
	background: #f8fafc;
	border-color: #e2e8f0;
}

.zuharo-card h3, .zuharo-card h4 {
	color: #1a1a42;
	font-size: 1.15rem;
	font-weight: 700;
	padding: 6px 0 6px 0;
	margin: 0;
	line-height: 1.35;
	letter-spacing: -0.01em;
}

.zuharo-card p {
	color: #5a6577;
	font-size: 0.9rem;
	font-weight: 400;
	line-height: 1.65;
	margin: 0;
}

.zuharo-card-icon {
	width: 48px;
	height: 48px;
	min-width: 48px;
	border-radius: 10px;
	background: #eef0f5;
	color: #1a1a42;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.35rem;
	margin-bottom: 14px;
	border: 1px solid #e2e8f0;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	flex-shrink: 0;
	box-shadow: none !important;
}

.zuharo-card:hover .zuharo-card-icon {
	background: #1a1a42;
	color: #ffffff;
	border-color: #1a1a42;
}

.badge-step {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 6px;
	background: #f8fafc;
	color: #1a1a42;
	font-weight: 700;
	font-size: 0.95rem;
	border: 1px solid #cbd5e1;
	margin-bottom: 14px;
	box-shadow: none !important;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.zuharo-card:hover .badge-step {
	background: #1a1a42;
	color: #ffffff;
	border-color: #1a1a42;
}

/* Grids */
/* 6 Cards: 3 - 3 on Desktop, 2 - 2 - 2 on Tablet, 1 on Mobile */
.zuharo-grid-6 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

@media (max-width: 991px) {
	.zuharo-grid-6 {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
}

@media (max-width: 640px) {
	.zuharo-grid-6 {
		grid-template-columns: 1fr;
		gap: 14px;
	}
}

/* 5 Cards: Modern 12-Column Grid (Desktop: 3 + 2 Centered, Tablet: 2 + 2 + 1, Mobile: 1) */
.zuharo-grid-5 {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 20px;
	max-width: 1140px;
	margin: 0 auto;
}

.zuharo-grid-5 > .zuharo-card,
.zuharo-grid-5 > .fea-box,
.zuharo-grid-5 > div {
	grid-column: span 4;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	padding: 24px 22px;
	box-shadow: none !important;
	transition: border-color 0.2s ease;
}

.zuharo-grid-5 > .zuharo-card:hover,
.zuharo-grid-5 > .fea-box:hover,
.zuharo-grid-5 > div:hover {
	border-color: #1a1a42;
	box-shadow: none !important;
	transform: none !important;
}

/* Row 2: Card 4 & 5 Centered with max-width stability */
.zuharo-grid-5 > :nth-child(4) {
	grid-column: 3 / span 4;
}

.zuharo-grid-5 > :nth-child(5) {
	grid-column: 7 / span 4;
}

.zuharo-grid-5 .fea-icon-img,
.zuharo-card .fea-icon-img {
	width: 68px;
	height: 68px;
	object-fit: contain;
	display: block;
	margin-bottom: 14px;
	border-radius: 50%;
	border: 1px solid #e2e8f0;
	background: #f8fafc;
	padding: 2px;
	box-shadow: none !important;
	transition: border-color 0.2s ease;
}

.zuharo-card:hover .fea-icon-img,
.zuharo-grid-5 .zuharo-card:hover .fea-icon-img {
	border-color: #1a1a42;
	transform: none !important;
}

.zuharo-card .card-link {
	margin-top: auto;
	padding-top: 12px;
	border-top: 1px solid #f1f5f9;
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	font-size: 0.82rem;
	font-weight: 600;
	color: #1a1a42;
	text-decoration: none;
	transition: color 0.2s ease;
}

.zuharo-card .card-link:hover,
.zuharo-card:hover .card-link {
	color: #d4a017;
	transform: none !important;
}

@media (max-width: 991px) {
	.zuharo-grid-5 {
		grid-template-columns: repeat(2, 1fr);
		gap: 18px;
	}
	.zuharo-grid-5 > .zuharo-card,
	.zuharo-grid-5 > .fea-box,
	.zuharo-grid-5 > div {
		grid-column: auto !important;
	}
	.zuharo-grid-5 > :nth-child(5) {
		grid-column: 1 / -1 !important;
		max-width: 480px;
		margin: 0 auto;
		width: 100%;
	}
}

@media (max-width: 640px) {
	.zuharo-grid-5 {
		grid-template-columns: 1fr;
		gap: 14px;
	}
	.zuharo-grid-5 > :nth-child(5) {
		max-width: 100%;
	}
}

/* 8 Cards: 2 2 2 2 on Desktop/Tablet, 1 on Mobile */
.zuharo-grid-8 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	max-width: 1040px;
	margin: 0 auto;
}

@media (max-width: 768px) {
	.zuharo-grid-8 {
		grid-template-columns: 1fr;
		gap: 14px;
	}
}

/* 4 Cards: 4 on Desktop, 2x2 on Tablet, 1 on Mobile */
.zuharo-grid-4 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

@media (max-width: 1024px) {
	.zuharo-grid-4 {
		grid-template-columns: repeat(2, 1fr);
		gap: 18px;
	}
}

@media (max-width: 640px) {
	.zuharo-grid-4 {
		grid-template-columns: 1fr;
		gap: 16px;
	}
}

/* 3 Cards */
.zuharo-grid-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

@media (max-width: 900px) {
	.zuharo-grid-3 {
		grid-template-columns: 1fr;
		gap: 18px;
	}
}

/* 2 Cards */
.zuharo-grid-2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

@media (max-width: 768px) {
	.zuharo-grid-2 {
		grid-template-columns: 1fr;
		gap: 18px;
	}
}

/* Flow Stepper */
.zuharo-flow-steps {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px;
	margin: 25px auto 35px auto;
}

.zuharo-flow-item {
	background: #ffffff;
	border: 1px solid #eceae3;
	border-radius: 10px;
	padding: 12px 20px;
	font-weight: 600;
	color: #1a1a42;
	font-size: 0.92rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.zuharo-flow-item.active {
	background: #1a1a42;
	color: #ffffff;
	border-color: #1a1a42;
}

.zuharo-flow-arrow {
	color: #d4a017;
	font-size: 0.95rem;
}

/*--------------------------------------------------------------
# Section: Ekosistem Kolaboratif & Dampak Statistik (Live Counter)
--------------------------------------------------------------*/
.ekosistem-section {
	padding: 70px 0 60px 0;
	background: #fafaf8;
	border-top: 1px solid #eceae3;
}

.section-kicker {
	display: inline-block;
	color: #d4a017;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 8px;
}

.section-main-title {
	font-size: 2.35rem;
	font-weight: 700;
	color: #1a1a42;
	font-family: 'Outfit', sans-serif;
	margin-bottom: 14px;
	line-height: 1.25;
}

.section-lead-desc {
	max-width: 720px;
	margin: 0 auto;
	color: #64748b;
	font-size: 1.02rem;
	line-height: 1.65;
}

/* 4 Kolaboratif Cards Grid (Persis Style Bentuk Kolaborasi) */
.kolaboratif-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-top: 45px;
	margin-bottom: 60px;
}

/* ==========================================================================
   Section Statistik Beranda: Full Width Edge-to-Edge (Tanpa Padding Samping)
   ========================================================================== */
.stats-fullwidth-section {
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
	padding: 70px 0 80px 0 !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	background: #1c1248 !important;
	border: none !important;
	position: relative;
	overflow: hidden;
}

.stats-fullwidth-kicker {
	display: inline-block;
	color: #ffbb25;
	font-size: 0.85rem;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.stats-fullwidth-title {
	font-family: 'Outfit', sans-serif;
	font-size: 2.15rem;
	font-weight: 800;
	color: #ffffff;
	line-height: 1.35;
	max-width: 860px;
	margin: 0 auto 12px auto;
	letter-spacing: -0.3px;
}

.stats-fullwidth-desc {
	color: rgba(255, 255, 255, 0.85);
	font-size: 0.98rem;
	max-width: 760px;
	margin: 0 auto 42px auto;
	line-height: 1.65;
}

/* Kartu Statistik: Card Style Beranda Berlatar Putih Bersih di atas Background Indigo #1c1248 */
.zuharo-stat-card {
	background: #ffffff;
	border: none;
	border-radius: 18px;
	padding: 24px 12px 20px 12px;
	text-align: center;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.14);
	transition: transform 0.28s ease, box-shadow 0.28s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	position: relative;
	min-height: 195px;
}

.zuharo-stat-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 18px 36px rgba(0, 0, 0, 0.25);
}

/* Ilustrasi Ikon Bulat Asli Sesuai Mockup */
.stat-illustration-wrap {
	width: 88px;
	height: 88px;
	margin: 0 auto 12px auto;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.stat-illustration-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
	border-radius: 50%;
	transition: transform 0.28s ease;
}

.zuharo-stat-card:hover .stat-illustration-img {
	transform: scale(1.06);
}

/* Icon Circle Fallback bila ikon khusus non-gambar */
.stat-icon-circle {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	margin: 0 auto;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
	transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.zuharo-stat-card:hover .stat-icon-circle {
	transform: scale(1.1);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

/* Variasi Warna Ikon Terkurasi Sesuai Identitas ZUHARO */
.icon-bg-school { background: #fff5f2; color: #ff6b4a; border: 2px solid #ffe3db; }
.icon-bg-users { background: #f0f7ff; color: #2563eb; border: 2px solid #dbeafe; }
.icon-bg-graduation-cap { background: #fefce8; color: #ca8a04; border: 2px solid #fef08a; }
.icon-bg-play-circle { background: #fdf2f8; color: #db2777; border: 2px solid #fce7f3; }
.icon-bg-video { background: #f5f3ff; color: #7c3aed; border: 2px solid #ede9fe; }
.icon-bg-help-circle { background: #f0f9ff; color: #0284c7; border: 2px solid #e0f2fe; }
.icon-bg-book-open { background: #fff7ed; color: #ea580c; border: 2px solid #ffedd5; }
.icon-bg-home { background: #ecfdf5; color: #059669; border: 2px solid #d1fae5; }
.icon-bg-message-circle { background: #eff6ff; color: #2563eb; border: 2px solid #dbeafe; }
.icon-bg-activity { background: #fef2f2; color: #dc2626; border: 2px solid #fee2e2; }
.icon-bg-target { background: #fefce8; color: #b45309; border: 2px solid #fef3c7; }

/* Angka / Value Metrik: Warna Kuning Oranye #ffbb25 Sesuai Mockup */
.stat-number-box {
	font-family: 'Outfit', sans-serif;
	font-size: 1.85rem;
	font-weight: 800;
	color: #ffbb25;
	line-height: 1.1;
	letter-spacing: -0.5px;
	margin-bottom: 6px;
}

.stat-counter {
	color: #ffbb25;
	font-weight: 800;
}

.stat-suffix {
	color: #ffbb25;
	font-weight: 800;
	margin-left: 2px;
}

/* Label Metrik: Warna Indigo Gelap #1c1248 Sesuai Mockup */
.stat-label-title {
	font-family: 'Outfit', sans-serif;
	font-size: 0.98rem;
	font-weight: 700;
	color: #1c1248;
	margin: 0;
	line-height: 1.3;
}

/* ==========================================================================
   GLOBAL MOBILE RESPONSIVE SYSTEM & TYPOGRAPHY RESIZING (<= 768px & <= 480px)
   ========================================================================== */

@media screen and (max-width: 768px) {
	/* 1. Global Viewport & Container Settings */
	body {
		font-size: 14px !important;
		overflow-x: hidden !important;
	}

	.container, 
	.container-fluid {
		padding-left: 16px !important;
		padding-right: 16px !important;
	}

	/* 2. Global Section Padding Override (Eliminates desktop 6vw/8vw excessive padding) */
	section,
	section.reveal,
	#about-container,
	#mengapa-kolaborasi,
	#peran-section,
	#features,
	#prinsip-kolaborasi,
	#course,
	#satu-tujuan,
	#cara-menggunakan,
	#sumber-pilihan,
	#faq,
	#dasar-ilmiah,
	#registration,
	#tim-pengembang,
	#kontak,
	#fase-penguasaan,
	#fokus-spesifik,
	#kelompok-sasaran,
	#cara-kerja-zuharo,
	#arah-pengembangan,
	.about-container-section {
		padding-top: 36px !important;
		padding-bottom: 36px !important;
		padding-left: 16px !important;
		padding-right: 16px !important;
		width: 100% !important;
		max-width: 100% !important;
		box-sizing: border-box !important;
	}

	/* 3. Global Heading Resizing (Makes headings nicely proportional on mobile) */
	h1,
	section h1,
	.section-title,
	.section-header h1,
	[style*="font-size: 2.1rem"],
	[style*="font-size: 2.2rem"],
	[style*="font-size: 2.25rem"],
	[style*="font-size: 2.35rem"],
	[style*="font-size: 2.5rem"] {
		font-size: 1.35rem !important;
		line-height: 1.35 !important;
		margin-top: 4px !important;
		margin-bottom: 8px !important;
		letter-spacing: -0.2px !important;
	}

	h2,
	section h2,
	.section-header h2,
	[style*="font-size: 1.8rem"],
	[style*="font-size: 1.85rem"],
	[style*="font-size: 1.9rem"],
	[style*="font-size: 2rem"] {
		font-size: 1.25rem !important;
		line-height: 1.35 !important;
		margin-bottom: 8px !important;
		letter-spacing: -0.2px !important;
	}

	h3,
	section h3,
	.section-header h3,
	[style*="font-size: 1.35rem"],
	[style*="font-size: 1.4rem"],
	[style*="font-size: 1.5rem"] {
		font-size: 1.10rem !important;
		line-height: 1.4 !important;
		margin-bottom: 6px !important;
	}

	h4,
	section h4,
	.section-header h4,
	[style*="font-size: 1.15rem"],
	[style*="font-size: 1.2rem"],
	[style*="font-size: 1.25rem"],
	[style*="font-size: 1.3rem"] {
		font-size: 1.00rem !important;
		line-height: 1.4 !important;
		margin-bottom: 6px !important;
	}

	h5,
	section h5,
	.card-title,
	.section-header h5,
	[style*="font-size: 1.05rem"],
	[style*="font-size: 1.1rem"] {
		font-size: 0.94rem !important;
		line-height: 1.4 !important;
		margin-bottom: 6px !important;
	}

	h6,
	section h6 {
		font-size: 0.86rem !important;
		line-height: 1.4 !important;
	}

	/* 4. Subtitle Eyebrow Labels (Badges diatas judul) */
	.section-kicker,
	span[style*="letter-spacing: 1.5px"],
	span[style*="letter-spacing: 2px"],
	.text-uppercase.fw-bold {
		font-size: 0.72rem !important;
		letter-spacing: 1px !important;
		margin-bottom: 4px !important;
	}

	/* 5. Paragraphs & Introductory Leads */
	p.lead,
	.lead,
	.section-lead,
	.section-header p,
	section > div > p,
	[style*="font-size: 1.02rem"],
	[style*="font-size: 1.05rem"],
	[style*="font-size: 0.98rem"],
	[style*="font-size: 1rem"] {
		font-size: 0.88rem !important;
		line-height: 1.55 !important;
		margin-bottom: 12px !important;
	}

	p,
	span,
	li {
		font-size: 0.84rem;
		line-height: 1.55;
	}

	/* 6. Quote & Callout Boxes */
	.kolaborasi-quote-box,
	blockquote,
	.quote-box {
		padding: 10px 14px !important;
		margin-top: 10px !important;
		margin-bottom: 14px !important;
	}

	.kolaborasi-quote-box p,
	blockquote p {
		font-size: 0.82rem !important;
		line-height: 1.5 !important;
	}

	/* 7. Card Sizing & Compact Padding on Mobile */
	.konteks-card,
	.ladder-item,
	.staggered-card,
	.indicator-card,
	.service-card,
	.resource-card,
	.mengapa-bootstrap-card,
	.fea-box,
	.sumber-card {
		padding: 14px 14px !important;
		border-radius: 10px !important;
	}

	/* 8. Specific Sections Enhancements */

	/* Hero Beranda & Subpage Hero */
	#home {
		padding: 72px 16px 36px 16px !important;
		min-height: auto !important;
	}
	#home h1,
	#home h2 {
		font-size: 1.38rem !important;
		line-height: 1.3 !important;
	}
	#home p {
		font-size: 0.84rem !important;
		line-height: 1.55 !important;
	}
	#home .btn {
		display: flex !important;
		flex-direction: column !important;
		width: 100% !important;
		gap: 8px !important;
	}
	#home .btn a {
		width: 100% !important;
		text-align: center !important;
		justify-content: center !important;
		font-size: 0.84rem !important;
		padding: 10px 16px !important;
		margin: 0 !important;
	}

	#about-home {
		min-height: auto !important;
		padding: 72px 16px 32px 16px !important;
	}
	#about-home h1,
	#about-home h2 {
		font-size: 1.38rem !important;
		line-height: 1.3 !important;
	}
	#about-home p {
		font-size: 0.84rem !important;
		line-height: 1.55 !important;
	}

	/* Section: Mengapa Kolaborasi */
	#mengapa-kolaborasi .col-lg-5 > div {
		min-height: 220px !important;
		max-height: 260px !important;
	}
	.mengapa-bs-num {
		width: 28px !important;
		height: 28px !important;
		font-size: 0.85rem !important;
	}

	/* Section: Peran Keluarga dan Sekolah */
	.konteks-grid {
		grid-template-columns: 1fr !important;
		gap: 16px !important;
	}
	.konteks-header {
		margin-bottom: 14px !important;
		padding-bottom: 12px !important;
		gap: 12px !important;
	}
	.konteks-header-icon {
		width: 36px !important;
		height: 36px !important;
		font-size: 1rem !important;
	}
	.konteks-title-box h3 {
		font-size: 1.05rem !important;
	}
	.konteks-sub {
		font-size: 0.80rem !important;
	}
	.konteks-item {
		gap: 10px !important;
		margin-bottom: 10px !important;
	}
	.konteks-item-icon {
		width: 20px !important;
		height: 20px !important;
		font-size: 0.65rem !important;
	}
	.konteks-item-text h5 {
		font-size: 0.86rem !important;
		margin-bottom: 2px !important;
	}
	.konteks-item-text p {
		font-size: 0.78rem !important;
		line-height: 1.45 !important;
	}

	/* Section: Bentuk Kolaborasi (Epstein) */
	#features .fea-base {
		grid-template-columns: 1fr !important;
		gap: 12px !important;
		margin-top: 24px !important;
	}
	.fea-box .fea-icon-img {
		width: 48px !important;
		height: 48px !important;
	}

	/* Section: Satu Tujuan Formula */
	.satu-tujuan-formula {
		flex-direction: column !important;
		width: 100% !important;
		gap: 10px !important;
		margin-top: 20px !important;
	}
	.satu-tujuan-box {
		width: 100% !important;
		min-width: 0 !important;
		max-width: 100% !important;
		padding: 16px 14px !important;
		box-sizing: border-box !important;
	}
	.satu-tujuan-operator {
		font-size: 1.3rem !important;
		margin: 2px 0 !important;
	}

	/* Section: Prinsip Kolaborasi (Stagger Cards) */
	.stagger-list {
		gap: 10px !important;
		margin-top: 20px !important;
	}
	.stagger-card,
	.stagger-card1 {
		width: 100% !important;
		margin: 0 !important;
		padding: 14px 12px !important;
		gap: 10px !important;
		align-items: flex-start !important;
		border: none !important;
		border-radius: 0 !important;
	}
	.stagger-num {
		font-size: 1.25rem !important;
		min-width: 24px !important;
		line-height: 1.1 !important;
	}
	.stagger-icon {
		width: 32px !important;
		height: 32px !important;
		font-size: 0.85rem !important;
		flex-shrink: 0 !important;
	}
	.stagger-content h4 {
		font-size: 0.94rem !important;
		margin-bottom: 3px !important;
	}
	.stagger-content p {
		font-size: 0.80rem !important;
		line-height: 1.45 !important;
	}

	/* Section: Registration & CTA */
	#registration {
		flex-direction: column !important;
		padding: 30px 16px !important;
		gap: 20px !important;
	}
	#registration .reminder {
		width: 100% !important;
		padding: 0 !important;
	}
	#registration .form {
		width: 100% !important;
		padding: 0 !important;
		background: transparent !important;
		box-shadow: none !important;
		border-radius: 0 !important;
	}
	#registration .time {
		display: flex !important;
		flex-wrap: wrap !important;
		gap: 8px !important;
		margin-top: 16px !important;
		margin-bottom: 16px !important;
	}
	#registration .time .date {
		flex: 1 1 calc(50% - 8px) !important;
		min-width: 110px !important;
		padding: 10px 12px !important;
		font-size: 0.78rem !important;
	}
	#registration .time .date span {
		font-size: 0.72rem !important;
	}
	#konsultan-img {
		max-height: 205px !important;
		width: auto !important;
		max-width: 90% !important;
		object-fit: contain !important;
		object-position: center bottom !important;
		border-radius: 0 !important;
		filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.35)) !important;
	}

	/* Section: Spotlight Founder Card */
	.spotlight-card {
		flex-direction: column !important;
		padding: 20px 14px !important;
		gap: 16px !important;
		text-align: center !important;
	}
	.spotlight-left {
		width: 100% !important;
		max-width: 150px !important;
		margin: 0 auto !important;
	}
	.spotlight-photo-frame {
		width: 140px !important;
		height: 140px !important;
		margin: 0 auto !important;
	}
	.founder-name {
		font-size: 1.25rem !important;
	}
	.founder-subline {
		font-size: 0.84rem !important;
		justify-content: center !important;
	}
	.founder-expertise-line {
		font-size: 0.80rem !important;
	}
	.spotlight-action-row {
		flex-direction: column !important;
		width: 100% !important;
		gap: 8px !important;
	}
	.btn-spotlight-dark,
	.btn-spotlight-link {
		width: 100% !important;
		text-align: center !important;
		justify-content: center !important;
		font-size: 0.84rem !important;
		padding: 9px 14px !important;
	}

	/* Section: Sumber Belajar & Catalog */
	.kategori-nav-grid,
	.sumber-catalog-grid,
	.pintu-masuk-flow {
		grid-template-columns: 1fr !important;
		gap: 14px !important;
	}
	.sumber-card-cover {
		height: 150px !important;
	}
	.sumber-tag-pill {
		font-size: 0.76rem !important;
		padding: 5px 10px !important;
	}

	/* Section: Kemandirian Ladder */
	.kemandirian-col-3,
	.kemandirian-col-2 {
		flex: 0 0 100% !important;
		max-width: 100% !important;
	}
	.kemandirian-card {
		padding: 16px 14px !important;
	}
	.kemandirian-title {
		font-size: 0.96rem !important;
	}
	.kemandirian-desc {
		font-size: 0.80rem !important;
	}

	/* Section: Flow Stepper */
	.zuharo-flow-steps {
		flex-direction: column !important;
		align-items: stretch !important;
		gap: 6px !important;
		margin: 16px auto 24px auto !important;
	}
	.zuharo-flow-item {
		width: 100% !important;
		text-align: center !important;
		padding: 10px 12px !important;
		font-size: 0.82rem !important;
	}
	.zuharo-flow-arrow {
		transform: rotate(90deg) !important;
		margin: 2px auto !important;
		font-size: 0.80rem !important;
	}

	/* Section: Tables (Perkembangan & Rujukan) */
	.table-responsive {
		overflow-x: auto !important;
		-webkit-overflow-scrolling: touch !important;
		margin-bottom: 16px !important;
	}
	.custom-table th,
	.custom-table td {
		padding: 10px 12px !important;
		font-size: 0.80rem !important;
	}

	/* Section: Footer */
	.footer-content-row,
	.footer-row {
		display: flex !important;
		flex-direction: column !important;
		gap: 22px !important;
	}
	footer .footer-col,
	footer .footer-col.brand-col,
	footer .footer-col.contact-col {
		width: 100% !important;
		max-width: 100% !important;
		flex: 1 1 100% !important;
		min-width: 0 !important;
	}
	footer .ftco-heading-2 {
		font-size: 0.78rem !important;
		margin-bottom: 12px !important;
	}
	footer p,
	footer li,
	footer a,
	footer .text {
		font-size: 0.80rem !important;
	}

	/* Section: Floating WhatsApp Widget */
	.wa-floating-widget {
		bottom: 16px !important;
		right: 14px !important;
		z-index: 9990 !important;
	}
	.wa-chat-bubble {
		width: calc(100vw - 28px) !important;
		max-width: 320px !important;
		right: 0 !important;
		margin-bottom: 10px !important;
		border-radius: 16px !important;
	}
	.wa-bubble-body p {
		font-size: 0.80rem !important;
	}
	.wa-float-btn {
		width: auto !important;
		height: 44px !important;
		padding: 0 16px 0 12px !important;
		gap: 8px !important;
		border-radius: 999px !important;
		display: inline-flex !important;
		align-items: center !important;
		justify-content: center !important;
		background: #25D366 !important;
		border: 1px solid #1ebe5d !important;
		box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4), 0 2px 6px rgba(0, 0, 0, 0.12) !important;
	}
	.wa-float-btn i {
		font-size: 21px !important;
		line-height: 1 !important;
		color: #ffffff !important;
		display: inline-flex !important;
		align-items: center !important;
		justify-content: center !important;
	}
	.wa-float-badge {
		display: inline-block !important;
		font-size: 0.82rem !important;
		font-weight: 700 !important;
		color: #ffffff !important;
		line-height: 1 !important;
		white-space: nowrap !important;
		padding: 0 !important;
		letter-spacing: 0.2px !important;
	}

	/* Nav Actions & Ekosistem Section Mobile Overrides */
	.nav-actions {
		display: none !important;
	}
	.kolaboratif-grid {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 14px !important;
		margin-top: 24px !important;
		margin-bottom: 35px !important;
	}
	.stats-fullwidth-section {
		padding: 50px 0 55px 0 !important;
		padding-left: 0 !important;
		padding-right: 0 !important;
	}
	.stats-fullwidth-title {
		font-size: 1.55rem !important;
		line-height: 1.35 !important;
	}
	.stats-fullwidth-desc {
		font-size: 0.88rem !important;
		margin-bottom: 28px !important;
	}
	.zuharo-stat-card {
		padding: 20px 10px 16px 10px !important;
		min-height: auto !important;
	}
	.stat-illustration-wrap {
		width: 72px !important;
		height: 72px !important;
		margin-bottom: 10px !important;
	}
	.stat-icon-circle {
		width: 50px !important;
		height: 50px !important;
		font-size: 1.2rem !important;
		margin-bottom: 10px !important;
	}
	.stat-number-box {
		font-size: 1.55rem !important;
		margin-bottom: 4px !important;
	}
	.stat-label-title {
		font-size: 0.92rem !important;
	}
}

/* ==========================================================================
   EXTRA SMALL MOBILE SCREENS (<= 480px)
   ========================================================================== */

@media screen and (max-width: 480px) {
	h1,
	section h1,
	[style*="font-size: 2.1rem"],
	[style*="font-size: 2.2rem"],
	[style*="font-size: 2.35rem"] {
		font-size: 1.25rem !important;
		line-height: 1.3 !important;
	}

	h2,
	section h2,
	[style*="font-size: 1.8rem"],
	[style*="font-size: 2rem"] {
		font-size: 1.15rem !important;
		line-height: 1.3 !important;
	}

	h3,
	section h3 {
		font-size: 1.05rem !important;
	}

	p.lead,
	.lead,
	.section-lead {
		font-size: 0.84rem !important;
		line-height: 1.5 !important;
	}

	p,
	span,
	li {
		font-size: 0.80rem;
		line-height: 1.5;
	}

	.roadmap-grid {
		grid-template-columns: 1fr !important;
		gap: 10px !important;
	}

	#registration .time .date {
		flex: 1 1 100% !important;
	}

	.sumber-search-btn {
		font-size: 0.80rem !important;
		padding: 8px 14px !important;
	}

	.wa-floating-widget {
		bottom: 12px !important;
		right: 10px !important;
	}
	.wa-float-btn {
		height: 40px !important;
		padding: 0 14px 0 10px !important;
		gap: 6px !important;
	}
	.wa-float-btn i {
		font-size: 19px !important;
	}
	.wa-float-badge {
		font-size: 0.78rem !important;
	}

	/* Ekosistem Section Extra Small Mobile Overrides */
	.kolaboratif-grid {
		grid-template-columns: 1fr !important;
		gap: 12px !important;
	}
	.stats-fullwidth-section {
		padding: 40px 0 45px 0 !important;
		padding-left: 0 !important;
		padding-right: 0 !important;
	}
	.stats-fullwidth-kicker {
		font-size: 0.72rem !important;
		letter-spacing: 1.5px !important;
	}
	.stats-fullwidth-title {
		font-size: 1.3rem !important;
		line-height: 1.3 !important;
	}
	.stats-fullwidth-desc {
		font-size: 0.82rem !important;
		margin-bottom: 22px !important;
	}
	.zuharo-stat-card {
		padding: 16px 8px 14px 8px !important;
		min-height: auto !important;
	}
	.stat-illustration-wrap {
		width: 60px !important;
		height: 60px !important;
		margin-bottom: 8px !important;
	}
	.stat-icon-circle {
		width: 44px !important;
		height: 44px !important;
		font-size: 1.15rem !important;
		margin-bottom: 8px !important;
	}
	.stat-number-box {
		font-size: 1.4rem !important;
		margin-bottom: 3px !important;
	}
	.stat-label-title {
		font-size: 0.85rem !important;
	}
}