* {
	box-sizing: border-box;
}

:root {
	--bg: #f5f7fa;
	--card: #ffffff;
	--surface: #f8fafb;
	--teal: #008ba9;
	--teal-dark: #006f86;
	--teal-soft: rgba(0, 139, 169, 0.12);
	--gold: #d28b1d;
	--gold-soft: rgba(210, 139, 29, 0.16);
	--text: #24313f;
	--muted: #65758a;
	--line: #d7dee6;
	--shadow: 0 18px 38px rgba(17, 37, 62, 0.08);
	--shadow-strong: 0 26px 60px rgba(17, 37, 62, 0.12);
	--radius-lg: 24px;
	--radius-md: 16px;
	--radius-sm: 12px;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: 'Poppins', sans-serif;
	color: var(--text);
	background:
		radial-gradient(circle at top left, rgba(0, 139, 169, 0.09), transparent 30%),
		radial-gradient(circle at 84% 12%, rgba(210, 139, 29, 0.09), transparent 24%),
		linear-gradient(180deg, #f7f9fc 0%, #f5f7fa 100%);
	min-height: 100vh;
}

a {
	color: inherit;
	text-decoration: none;
}

.page-shell {
	width: min(1180px, calc(100% - 24px));
	margin: 0 auto;
	padding: 20px 0 32px;
}

.site-header {
	border-radius: 30px;
	overflow: hidden;
	box-shadow: var(--shadow-strong);
}

.hero {
	position: relative;
	background:
		linear-gradient(135deg, rgba(10, 27, 40, 0.12), rgba(10, 27, 40, 0.22)),
		linear-gradient(135deg, rgba(0, 139, 169, 0.42), rgba(0, 111, 134, 0.24));
	min-height: 34vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 24px 34px 0;
	overflow: hidden;
}

.hero__image,
.hero::before,
.hero::after,
.hero__overlay::before,
.hero__overlay::after {
	content: '';
	position: absolute;
	inset: auto;
	pointer-events: none;
}

.hero__image {
	inset: 0;
	background:
		linear-gradient(180deg, rgba(6, 18, 28, 0.08), rgba(6, 18, 28, 0.22)),
		url('assets/penggungbg.jpg') center 67% / cover no-repeat;
	filter: saturate(1.02) contrast(1.02);
	transform: scale(1.01);
	will-change: transform;
}

.hero::before {
	left: 0;
	right: 0;
	bottom: 44px;
	height: 120px;
	background:
		radial-gradient(120% 80% at 25% 80%, rgba(34, 87, 43, 0.7) 0 28%, transparent 29%),
		radial-gradient(120% 90% at 48% 78%, rgba(48, 102, 56, 0.84) 0 34%, transparent 35%),
		radial-gradient(120% 100% at 78% 80%, rgba(28, 78, 36, 0.74) 0 28%, transparent 29%),
		linear-gradient(180deg, transparent 0 40%, rgba(11, 36, 18, 0.36) 100%);
	opacity: 0.88;
}

.hero::after {
	left: -12%;
	right: -12%;
	bottom: 8px;
	height: 90px;
	background:
		linear-gradient(180deg, transparent 0 50%, rgba(33, 70, 33, 0.52) 100%),
		radial-gradient(60% 80% at 12% 100%, rgba(56, 97, 52, 0.9) 0 38%, transparent 39%),
		radial-gradient(60% 85% at 50% 100%, rgba(38, 89, 40, 0.95) 0 34%, transparent 35%),
		radial-gradient(60% 80% at 88% 100%, rgba(62, 104, 58, 0.88) 0 36%, transparent 37%);
	filter: blur(0.5px);
}

.hero__overlay {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.12), transparent 18%),
		radial-gradient(circle at 78% 14%, rgba(255, 255, 255, 0.16), transparent 16%),
		radial-gradient(circle at 58% 86%, rgba(255, 255, 255, 0.08), transparent 18%);
}

.hero__glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(20px);
	opacity: 0.5;
	pointer-events: none;
}

.hero__glow--one {
	top: 10%;
	right: 8%;
	width: 180px;
	height: 180px;
	background: rgba(255, 255, 255, 0.15);
}

.hero__glow--two {
	left: 3%;
	bottom: 8%;
	width: 220px;
	height: 220px;
	background: rgba(255, 196, 115, 0.15);
}

.hero__content,
.hero__ticker {
	display: none;
}

.faq-page,
.intro-card,
.faq-panel,
.search-card {
	background: var(--card);
	border: 1px solid rgba(255, 255, 255, 0.7);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
}

.faq-page {
	margin-top: -34px;
	padding: 0 0 8px;
	display: grid;
	gap: 22px;
}

.section-kicker {
	margin: 0 0 8px;
	color: var(--gold);
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.panel-heading h2 {
	margin: 0;
	font-size: clamp(1.6rem, 2.8vw, 2.2rem);
	line-height: 1.25;
}

.panel-note,
.faq-item__content p,
.site-footer p {
	color: var(--muted);
}

.summary-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-bottom: 8px;
	position: relative;
	z-index: 1;
}

.summary-card {
	padding: 16px 16px 18px;
	border-radius: 20px;
	color: #fff;
	box-shadow: 0 16px 28px rgba(28, 43, 58, 0.12);
	position: relative;
	overflow: hidden;
}

.summary-card::after {
	content: '';
	position: absolute;
	right: -22px;
	top: -22px;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: rgba(255,255,255,0.12);
}

.summary-card span,
.summary-card small {
	display: block;
	position: relative;
	z-index: 1;
}

.summary-card strong {
	display: block;
	margin: 8px 0 4px;
	font-size: 18px;
	line-height: 1.15;
	position: relative;
	z-index: 1;
}

.summary-card small {
	font-size: 12px;
	opacity: 0.95;
}

.summary-card--teal {
	background: linear-gradient(135deg, #1593a8, #0f6f92);
}

.summary-card--gold {
	background: linear-gradient(135deg, #c88a17, #9a6410);
}

.summary-card--green {
	background: linear-gradient(135deg, #2a9d6f, #15724d);
}

.category-rail {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 8px 0 18px;
	position: relative;
	z-index: 1;
}

.category-rail a {
	padding: 12px 16px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(0, 139, 169, 0.14);
	color: var(--teal-dark);
	font-weight: 700;
	font-size: 13px;
	box-shadow: 0 10px 18px rgba(17, 37, 62, 0.05);
	transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.category-rail a:hover {
	transform: translateY(-2px);
	background: #fff;
	box-shadow: 0 16px 24px rgba(17, 37, 62, 0.08);
}

.section-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin: 0 0 18px;
	position: relative;
	z-index: 1;
}

.section-card {
	padding: 18px 18px 20px;
	border-radius: 20px;
	background: #fff;
	border: 1px solid var(--line);
	box-shadow: 0 14px 28px rgba(17, 37, 62, 0.06);
}

.section-card h3 {
	margin: 0 0 10px;
	font-size: 15px;
	color: var(--text);
}

.section-card p {
	margin: 0;
	color: var(--muted);
	line-height: 1.65;
}

.section-card--soft {
	background: linear-gradient(180deg, rgba(0, 139, 169, 0.06), rgba(255,255,255,0.98));
	border-color: rgba(0, 139, 169, 0.14);
}

.section-card--solid {
	background: linear-gradient(180deg, rgba(210, 139, 29, 0.08), rgba(255,255,255,0.98));
	border-color: rgba(210, 139, 29, 0.14);
}

.section-card strong {
	color: var(--teal-dark);
}

.faq-panel {
	padding: 28px;
	position: relative;
	overflow: hidden;
}

.faq-panel::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at top right, rgba(0, 139, 169, 0.06), transparent 20%),
		radial-gradient(circle at bottom left, rgba(210, 139, 29, 0.05), transparent 22%);
	pointer-events: none;
}

.panel-heading {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	align-items: end;
	margin-bottom: 18px;
	position: relative;
	z-index: 1;
}

.panel-note {
	margin: 0;
	font-size: 13px;
	max-width: 360px;
	text-align: right;
}

.search-card {
	padding: 0;
	overflow: hidden;
	border-radius: 999px;
	margin: 12px auto 18px;
	max-width: 760px;
	box-shadow: 0 16px 34px rgba(17, 37, 62, 0.12);
	position: relative;
	z-index: 2;
}

.search-card--floating {
	transform: translateY(-20px);
	margin-bottom: 0;
}

.search-field {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 18px 20px;
}

.search-field span {
	color: var(--teal);
	font-size: 19px;
	font-weight: 700;
}

.search-field input {
	width: 100%;
	border: 0;
	outline: 0;
	font: inherit;
	color: var(--text);
	background: transparent;
}

.search-field input::placeholder {
	color: #8a96a8;
}

.faq-list {
	display: grid;
	gap: 12px;
	position: relative;
	z-index: 1;
}

.faq-item {
	border: 1px solid rgba(0, 139, 169, 0.12);
	border-radius: 16px;
	overflow: hidden;
	background: linear-gradient(180deg, #fff 0%, #fefefe 100%);
	transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
	box-shadow: 0 10px 22px rgba(17, 37, 62, 0.06);
}

.faq-item:hover {
	transform: translateY(-3px);
	border-color: rgba(0, 139, 169, 0.32);
	box-shadow: 0 18px 34px rgba(17, 37, 62, 0.1);
}

.faq-item__trigger {
	width: 100%;
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 12px;
	align-items: center;
	padding: 18px 20px;
	background: transparent;
	border: 0;
	cursor: pointer;
	text-align: left;
	color: var(--text);
}

.faq-item__trigger:hover {
	background: rgba(0, 139, 169, 0.04);
}

.faq-item__number {
	width: 44px;
	height: 44px;
	display: grid;
	place-items: center;
	border-radius: 14px;
	background: var(--gold-soft);
	color: var(--gold);
	font-weight: 800;
}

.faq-item__question {
	font-size: 15px;
	font-weight: 700;
	line-height: 1.4;
}

.faq-item--hero .faq-item__question {
	font-size: 16px;
}

.faq-item__icon {
	width: 36px;
	height: 36px;
	display: grid;
	place-items: center;
	border-radius: 12px;
	background: var(--teal-soft);
	color: var(--teal-dark);
	font-size: 18px;
	font-weight: 800;
	transition: transform 0.25s ease;
}

.faq-item__content {
	max-height: 0;
	overflow: hidden;
	padding: 0 20px;
	transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.is-open .faq-item__content {
	padding: 0 20px 20px 84px;
	max-height: 320px;
	overflow-y: auto;
}

.faq-item--hero.is-open .faq-item__content {
	padding: 0 20px 20px;
	max-height: 240px;
	overflow-y: auto;
}

.faq-item.is-open .faq-item__icon {
	transform: rotate(45deg);
	background: rgba(216, 146, 18, 0.16);
	color: var(--gold);
}

.faq-item.is-hidden {
	display: none;
}

.page-shell > .site-footer {
	display: none;
}

@media (max-width: 780px) {
	.page-shell {
		width: min(100% - 16px, 1180px);
		padding-top: 10px;
	}

	.hero {
		min-height: auto;
		padding: 24px 16px 0;
	}

	.search-card--floating {
		transform: none;
		margin: 10px 0 16px;
	}

	.summary-grid {
		grid-template-columns: 1fr;
	}

	.section-grid {
		grid-template-columns: 1fr;
	}

	.info-band {
		grid-template-columns: 1fr;
	}

	.category-rail {
		overflow-x: auto;
		padding-bottom: 4px;
		flex-wrap: nowrap;
	}

	.category-rail a {
		white-space: nowrap;
	}

	.faq-panel {
		padding: 20px;
	}

	.faq-item__trigger {
		grid-template-columns: auto 1fr auto;
		padding: 15px 16px;
	}

	.faq-item.is-open .faq-item__content {
		padding-left: 16px;
	}

	.faq-item--hero.is-open .faq-item__content {
		padding-left: 16px;
	}
}