/* ============ JOY FAMILY HUB — units.css ============ */
/* Gaya utama laman. Semua komponen tinggal di sini kecuali footer/cookie-bar (lihat outro.css). */

@font-face {
	font-family: "Chewy";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("../fonts/chewy-latin-400.woff2") format("woff2");
}

@font-face {
	font-family: "Figtree";
	font-style: normal;
	font-weight: 300 800;
	font-display: swap;
	src: url("../fonts/figtree-latin-300-800.woff2") format("woff2");
}

:root {
	--pink: #EC3E93;
	--pink-dark: #C22574;
	--pink-soft: #FFD9EC;
	--aqua: #29C4C6;
	--aqua-dark: #0E8E90;
	--aqua-soft: #D6FBF7;
	--lemon: #FFCD3C;
	--lemon-soft: #FFF3D2;
	--ink: #2A1B32;
	--ink-soft: #5B4A63;
	--bg: #FFFDFB;
	--bg-alt: #FFF1F8;
	--surface: #FFFFFF;
	--line: #F1DCEA;
	--shadow: 0 20px 40px -22px rgba(42, 27, 50, 0.35);
	--radius-lg: 32px;
	--radius-md: 20px;
	--radius-sm: 12px;
	--container: 1180px;
	--font-display: "Chewy", "Comic Sans MS", cursive;
	--font-body: "Figtree", "Segoe UI", Arial, sans-serif;
	--header-z: 10;
	--overlay-z: 40;
}

/* ---------- reset ---------- */

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	padding: 0;
	background: var(--bg);
	color: var(--ink);
	font-family: var(--font-body);
	font-size: 17px;
	line-height: 1.6;
}

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

h1, h2, h3, h4, p, ul, ol, figure {
	margin: 0;
}

ul, ol {
	padding: 0;
	list-style: none;
}

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

button {
	font: inherit;
	color: inherit;
	background: none;
	border: 0;
	cursor: pointer;
}

input, textarea {
	font: inherit;
	color: inherit;
}

table {
	border-collapse: collapse;
	width: 100%;
}

/* ---------- a11y utilities ---------- */

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skipnav {
	position: absolute;
	top: -100px;
	left: 16px;
	z-index: 999;
	padding: 12px 20px;
	background: var(--ink);
	color: #FFF;
	border-radius: var(--radius-sm);
	transition: top 0.2s ease;
}

.skipnav:focus {
	top: 12px;
}

:focus-visible {
	outline: 3px solid var(--aqua-dark);
	outline-offset: 3px;
}

/* ---------- layout ---------- */

.wrap {
	width: 100%;
	max-width: var(--container);
	margin-left: auto;
	margin-right: auto;
	padding-left: 24px;
	padding-right: 24px;
}

.section {
	position: relative;
	padding-top: 96px;
	padding-bottom: 96px;
}

.section--tight {
	padding-top: 64px;
	padding-bottom: 64px;
}

.section--alt {
	background: var(--bg-alt);
}

.section-head {
	max-width: 640px;
	margin-bottom: 48px;
}

.section-head--center {
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.eyebrow {
	display: inline-block;
	margin-bottom: 14px;
	padding: 6px 16px;
	border-radius: 999px;
	background: var(--pink-soft);
	color: var(--pink-dark);
	font-family: var(--font-body);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

h1, h2, h3 {
	font-family: var(--font-display);
	font-weight: 400;
	line-height: 1.14;
	color: var(--ink);
}

h1 {
	font-size: clamp(38px, 5.2vw, 68px);
}

h2 {
	font-size: clamp(30px, 3.6vw, 44px);
}

h3 {
	font-size: clamp(21px, 2.2vw, 26px);
}

.lede {
	margin-top: 18px;
	font-size: 19px;
	color: var(--ink-soft);
	max-width: 52ch;
}

/* decor_flavor: outline-text — kata aksen dalam tajuk besar guna stroke tanpa isian */

.outline-word {
	color: transparent;
	-webkit-text-stroke: 2px var(--pink);
	text-stroke: 2px var(--pink);
}

/* ---------- buttons ---------- */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 15px 30px;
	border-radius: 999px;
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 16px;
	min-height: 48px;
	transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn-primary {
	background: var(--pink-dark);
	color: #FFF;
	box-shadow: var(--shadow);
}

.btn-primary:hover {
	transform: translateY(-2px);
	background: var(--pink);
}

.btn-ghost {
	background: var(--surface);
	color: var(--ink);
	border: 2px solid var(--line);
}

.btn-ghost:hover {
	border-color: var(--aqua-dark);
	color: var(--aqua-dark);
}

.btn-light {
	background: #FFF;
	color: var(--pink-dark);
}

.btn-light:hover {
	transform: translateY(-2px);
}

/* ---------- header / mast ---------- */

.mast {
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	z-index: var(--header-z);
	background: rgba(255, 253, 251, 0.92);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--line);
}

.mast-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 16px;
	padding-bottom: 16px;
}

.brand-mark {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-display);
	font-size: 22px;
	color: var(--pink-dark);
}

.brand-mark img {
	width: 42px;
	height: 42px;
}

.mast-nav {
	display: flex;
	align-items: center;
	gap: 32px;
}

.mast-nav a {
	position: relative;
	font-weight: 600;
	font-size: 15px;
	padding: 6px 2px;
}

.mast-nav a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -2px;
	height: 3px;
	border-radius: 3px;
	background: var(--lemon);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.2s ease;
}

.mast-nav a:hover::after,
.mast-nav a[aria-current="page"]::after {
	transform: scaleX(1);
}

.mast-cta {
	display: flex;
	align-items: center;
	gap: 18px;
}

.nav-button {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	border-radius: var(--radius-sm);
}

.nav-button span {
	display: block;
	width: 24px;
	height: 3px;
	border-radius: 3px;
	background: var(--ink);
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-button[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}

.nav-button[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}

.nav-button[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

.mast-panel {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 50;
	background: var(--bg);
	padding: 96px 28px 40px;
	display: none;
	flex-direction: column;
	gap: 6px;
	overflow-y: auto;
}

.mast-panel.is-open {
	display: flex;
}

.mast-panel a {
	padding: 16px 4px;
	border-bottom: 1px solid var(--line);
	font-family: var(--font-display);
	font-size: 24px;
	color: var(--ink);
}

.mast-panel .btn-primary {
	margin-top: 24px;
	align-self: flex-start;
	border-bottom: 0;
	color: #FFF;
	font-family: var(--font-body);
	font-size: 16px;
}

/* ---------- opener / hero ---------- */

.opener {
	position: relative;
	overflow: hidden;
	padding-top: 64px;
	padding-bottom: 80px;
}

.opener::before {
	content: "";
	position: absolute;
	top: -160px;
	right: -140px;
	width: 480px;
	height: 480px;
	border-radius: 50%;
	background: radial-gradient(circle at 30% 30%, var(--lemon-soft), transparent 70%);
	z-index: 0;
}

.opener-inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 48px;
	align-items: center;
}

.opener-copy {
	max-width: 560px;
}

.opener-title {
	font-size: clamp(40px, 5vw, 66px);
}

.opener-text {
	margin-top: 20px;
	font-size: 19px;
	color: var(--ink-soft);
	max-width: 50ch;
}

.opener-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 32px;
}

.opener-facts {
	display: flex;
	gap: 28px;
	margin-top: 40px;
	flex-wrap: wrap;
}

.opener-facts dt {
	font-family: var(--font-display);
	font-size: 28px;
	color: var(--pink-dark);
}

.opener-facts dd {
	margin: 2px 0 0;
	font-size: 13px;
	color: var(--ink-soft);
}

.opener-media {
	position: relative;
}

.opener-frame {
	position: relative;
	border-radius: 46% 54% 58% 42% / 48% 44% 56% 52%;
	overflow: hidden;
	box-shadow: var(--shadow);
	will-change: transform;
}

.opener-frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.opener-blob {
	position: absolute;
	bottom: -30px;
	left: -34px;
	width: 140px;
	height: 140px;
	border-radius: 40% 60% 55% 45% / 55% 40% 60% 45%;
	background: var(--aqua);
	z-index: -1;
}

.opener-blob-2 {
	position: absolute;
	top: -24px;
	right: 30px;
	width: 90px;
	height: 90px;
	border-radius: 50%;
	background: var(--lemon);
	z-index: -1;
}

/* ---------- page-hero (inner pages) ---------- */

.page-hero {
	position: relative;
	overflow: hidden;
	padding-top: 56px;
	padding-bottom: 64px;
	background: var(--bg-alt);
}

.page-hero::before {
	content: "";
	position: absolute;
	top: -120px;
	left: -100px;
	width: 340px;
	height: 340px;
	border-radius: 50%;
	background: radial-gradient(circle, var(--aqua-soft), transparent 70%);
}

.page-hero-inner {
	position: relative;
	z-index: 1;
	max-width: 720px;
}

.page-hero .eyebrow {
	background: var(--surface);
}

.breadcrumb {
	display: flex;
	gap: 8px;
	font-size: 13px;
	color: var(--ink-soft);
	margin-bottom: 18px;
}

.breadcrumb a:hover {
	color: var(--pink-dark);
}

/* ---------- reveal ---------- */

[data-reveal] {
	opacity: 1;
	transform: none;
}

.js-armed [data-reveal] {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-armed [data-reveal].is-visible {
	opacity: 1;
	transform: none;
}

/* ---------- zone cards ---------- */

.zone-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.zone-card {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: var(--surface);
	box-shadow: var(--shadow);
}

.zone-card-media {
	aspect-ratio: 3 / 2;
	overflow: hidden;
}

.zone-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.zone-card:hover .zone-card-media img {
	transform: scale(1.06);
}

.zone-card-body {
	padding: 24px;
}

.zone-card-tag {
	display: inline-block;
	margin-bottom: 10px;
	padding: 4px 12px;
	border-radius: 999px;
	background: var(--aqua-soft);
	color: var(--aqua-dark);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.zone-card-body h3 {
	margin-bottom: 8px;
}

.zone-card-body p {
	color: var(--ink-soft);
	font-size: 15px;
}

/* ---------- remix-deck (deck-tabs: kumpulan umur) ---------- */

.remix-deck {
	display: grid;
	grid-template-columns: 300px 1fr;
	gap: 0;
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: var(--ink);
	box-shadow: var(--shadow);
}

.remix-deck-dial {
	display: flex;
	flex-direction: column;
	padding: 18px;
	gap: 6px;
	background: #221527;
}

.remix-deck-btn {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 18px;
	border-radius: var(--radius-md);
	color: rgba(255, 255, 255, 0.7);
	text-align: left;
	font-weight: 700;
}

.remix-deck-btn strong {
	display: block;
	font-family: var(--font-body);
	font-size: 15px;
}

.remix-deck-btn small {
	display: block;
	font-weight: 500;
	font-size: 12px;
	opacity: 0.7;
}

.remix-deck-btn[aria-pressed="true"] {
	background: var(--pink);
	color: #FFF;
}

.remix-deck-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: currentColor;
	opacity: 0.5;
	flex-shrink: 0;
}

.remix-deck-btn[aria-pressed="true"] .remix-deck-dot {
	opacity: 1;
	background: var(--lemon);
}

.remix-deck-screen {
	position: relative;
	padding: 40px;
	color: #FFF;
	display: none;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	align-items: center;
}

.remix-deck-screen.is-active {
	display: grid;
}

.remix-deck-screen h3 {
	color: #FFF;
	margin-bottom: 12px;
}

.remix-deck-screen p {
	color: rgba(255, 255, 255, 0.78);
	font-size: 15px;
}

.remix-deck-list {
	margin-top: 18px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.remix-deck-list li {
	position: relative;
	padding-left: 22px;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.78);
}

.remix-deck-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--aqua);
}

.remix-deck-media {
	border-radius: var(--radius-md);
	overflow: hidden;
	aspect-ratio: 3 / 2;
}

.remix-deck-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ---------- hub-map (interactive-map) ---------- */

.hub-map {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 32px;
	align-items: start;
}

.hub-map-plan {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow);
}

.hub-map-plan img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hub-map-dot {
	position: absolute;
	width: 34px;
	height: 34px;
	margin-left: -17px;
	margin-top: -17px;
	border-radius: 50%;
	background: var(--pink-dark);
	border: 3px solid #FFF;
	box-shadow: 0 6px 16px rgba(42, 27, 50, 0.35);
	color: #FFF;
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hub-map-dot::after {
	content: "";
	position: absolute;
	inset: -8px;
	border-radius: 50%;
	border: 2px solid var(--pink-dark);
	opacity: 0;
	transition: opacity 0.2s ease, transform 0.2s ease;
	transform: scale(0.85);
}

.hub-map-dot[aria-pressed="true"] {
	background: var(--aqua-dark);
}

.hub-map-dot[aria-pressed="true"]::after {
	opacity: 1;
	transform: scale(1);
	border-color: var(--aqua-dark);
}

.hub-map-panel {
	background: var(--surface);
	border-radius: var(--radius-lg);
	padding: 28px;
	box-shadow: var(--shadow);
	min-height: 320px;
}

.hub-map-panel-tag {
	display: inline-block;
	margin-bottom: 12px;
	padding: 4px 12px;
	border-radius: 999px;
	background: var(--lemon-soft);
	color: #7A5B00;
	font-size: 12px;
	font-weight: 700;
}

.hub-map-panel h3 {
	margin-bottom: 10px;
}

.hub-map-panel p {
	color: var(--ink-soft);
	font-size: 15px;
}

.hub-map-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 20px;
	max-height: 180px;
	overflow-y: auto;
	scrollbar-width: thin;
	scrollbar-color: var(--pink) transparent;
}

.hub-map-list button {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 12px;
	border-radius: var(--radius-sm);
	font-size: 14px;
	font-weight: 600;
	text-align: left;
}

.hub-map-list button:hover {
	background: var(--bg-alt);
}

.hub-map-list button[aria-pressed="true"] {
	background: var(--pink-soft);
	color: var(--pink-dark);
}

/* ---------- burst-band (inverted-block) ---------- */

.burst-band {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, #2A1B32 0%, #4A1E4E 55%, #7A1E5E 100%);
	color: #FFF;
	padding-top: 88px;
	padding-bottom: 88px;
}

.burst-band::before {
	content: "";
	position: absolute;
	bottom: -100px;
	left: -80px;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 205, 60, 0.25), transparent 70%);
}

.burst-band-inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	flex-wrap: wrap;
}

.burst-band h2 {
	color: #FFF;
	max-width: 560px;
}

.burst-band p {
	margin-top: 14px;
	color: rgba(255, 255, 255, 0.8);
	max-width: 46ch;
}

.burst-band-actions {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

/* ---------- pakej-table (compare-table) ---------- */

.pakej-table-wrap {
	overflow-x: auto;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
	scrollbar-width: thin;
	scrollbar-color: var(--pink) transparent;
}

.pakej-table {
	min-width: 720px;
	background: var(--surface);
}

.pakej-table caption {
	caption-side: top;
	text-align: left;
	padding: 24px 24px 4px;
	font-size: 13px;
	color: var(--ink-soft);
}

.pakej-table th,
.pakej-table td {
	padding: 18px 20px;
	text-align: left;
	border-bottom: 1px solid var(--line);
	font-size: 15px;
}

.pakej-table thead th {
	background: var(--bg-alt);
	font-family: var(--font-display);
	font-weight: 400;
	font-size: 19px;
	color: var(--pink-dark);
}

.pakej-table tbody th[scope="row"] {
	font-weight: 700;
	color: var(--ink);
	white-space: nowrap;
}

.pakej-table tbody tr:last-child td,
.pakej-table tbody tr:last-child th {
	border-bottom: 0;
}

.pakej-table td.is-yes::before {
	content: "\2713 ";
	color: var(--aqua-dark);
	font-weight: 700;
}

/* ---------- testimoni ---------- */

.testi-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.testi-card {
	background: var(--surface);
	border-radius: var(--radius-md);
	padding: 26px;
	border: 1px solid var(--line);
}

.testi-card p {
	font-size: 15px;
	color: var(--ink);
}

.testi-card footer {
	margin-top: 16px;
	font-size: 13px;
	color: var(--ink-soft);
	font-weight: 700;
}

/* ---------- faq ---------- */

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	max-width: 760px;
}

.faq-item {
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	background: var(--surface);
	overflow: hidden;
}

.faq-q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 18px 22px;
	font-weight: 700;
	font-size: 16px;
	text-align: left;
}

.faq-q-icon {
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	position: relative;
}

.faq-q-icon::before,
.faq-q-icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	background: var(--pink-dark);
	transform: translate(-50%, -50%);
	transition: transform 0.2s ease;
}

.faq-q-icon::before {
	width: 14px;
	height: 3px;
}

.faq-q-icon::after {
	width: 3px;
	height: 14px;
}

.faq-q[aria-expanded="true"] .faq-q-icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
	opacity: 0;
}

.faq-a {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.25s ease;
}

.faq-a-inner {
	padding: 0 22px 20px;
	color: var(--ink-soft);
	font-size: 15px;
}

/* ---------- forms ---------- */

.form-card {
	background: var(--surface);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
	padding: 36px;
}

.field {
	margin-bottom: 20px;
}

.field label {
	display: block;
	margin-bottom: 8px;
	font-weight: 700;
	font-size: 14px;
}

.field input,
.field textarea {
	width: 100%;
	padding: 14px 16px;
	border: 2px solid var(--line);
	border-radius: var(--radius-sm);
	background: var(--bg);
	font-size: 15px;
}

.field input:focus,
.field textarea:focus {
	border-color: var(--aqua-dark);
	outline: none;
}

.field-consent {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 13px;
	color: var(--ink-soft);
}

.field-consent input {
	width: 20px;
	height: 20px;
	margin-top: 2px;
	flex-shrink: 0;
}

.field-hp {
	position: absolute;
	left: -9999px;
	top: -9999px;
	opacity: 0;
	height: 0;
	width: 0;
}

.form-msg {
	margin-top: 16px;
	padding: 14px 18px;
	border-radius: var(--radius-sm);
	font-size: 14px;
	display: none;
}

.form-msg.is-ok {
	display: block;
	background: var(--aqua-soft);
	color: var(--aqua-dark);
}

.form-msg.is-err {
	display: block;
	background: #FFE3E3;
	color: #B3261E;
}

/* ---------- legal ---------- */

.legal-body {
	max-width: 760px;
}

.legal-body h2 {
	margin-top: 44px;
	margin-bottom: 14px;
}

.legal-body p {
	margin-bottom: 14px;
	color: var(--ink-soft);
}

.legal-body ul {
	margin-bottom: 14px;
	padding-left: 20px;
	list-style: disc;
}

.legal-body li {
	margin-bottom: 6px;
	color: var(--ink-soft);
}

.legal-box {
	margin-top: 32px;
	padding: 24px;
	border-radius: var(--radius-md);
	background: var(--bg-alt);
}

.legal-box dl {
	display: grid;
	grid-template-columns: 170px 1fr;
	gap: 8px 16px;
	font-size: 14px;
}

.legal-box dt {
	font-weight: 700;
	color: var(--ink-soft);
}

/* ---------- 404 ---------- */

.err-block {
	text-align: center;
	padding-top: 100px;
	padding-bottom: 100px;
}

.err-code {
	font-family: var(--font-display);
	font-size: clamp(80px, 14vw, 160px);
	color: var(--pink-soft);
	-webkit-text-stroke: 3px var(--pink);
	line-height: 1;
}

.err-block .lede {
	margin-left: auto;
	margin-right: auto;
}

.err-actions {
	display: flex;
	justify-content: center;
	gap: 16px;
	margin-top: 32px;
	flex-wrap: wrap;
}

/* ---------- schedule (kelas-bermain) ---------- */

.jadual-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.jadual-card {
	background: var(--surface);
	border-radius: var(--radius-md);
	padding: 24px;
	border-left: 6px solid var(--aqua);
	box-shadow: var(--shadow);
}

.jadual-card-time {
	font-size: 13px;
	font-weight: 700;
	color: var(--aqua-dark);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.jadual-card h3 {
	margin-top: 8px;
	margin-bottom: 6px;
}

.jadual-card p {
	color: var(--ink-soft);
	font-size: 14px;
}

/* ---------- team (kisah-kami) ---------- */

.crew-row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
}

.crew-card {
	display: flex;
	gap: 20px;
	align-items: flex-start;
	background: var(--surface);
	border-radius: var(--radius-lg);
	padding: 24px;
	box-shadow: var(--shadow);
}

.crew-card img {
	width: 108px;
	height: 108px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.crew-card h3 {
	margin-bottom: 4px;
}

.crew-card-role {
	display: block;
	margin-bottom: 8px;
	font-size: 13px;
	font-weight: 700;
	color: var(--pink-dark);
}

.crew-card p {
	font-size: 14px;
	color: var(--ink-soft);
}

.value-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.value-card {
	padding: 26px;
	border-radius: var(--radius-md);
	background: var(--bg-alt);
}

.value-card h3 {
	margin-bottom: 8px;
}

.value-card p {
	font-size: 14px;
	color: var(--ink-soft);
}

/* ---------- contact (lokasi) ---------- */

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: start;
}

.contact-info-list {
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.contact-info-item strong {
	display: block;
	margin-bottom: 4px;
	font-size: 14px;
	color: var(--pink-dark);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.contact-info-item p,
.contact-info-item a {
	font-size: 15px;
	color: var(--ink-soft);
}

.contact-route {
	margin-top: 24px;
	padding: 20px 22px;
	border-radius: var(--radius-md);
	background: var(--aqua-soft);
}

.contact-route strong {
	display: block;
	margin-bottom: 6px;
	font-size: 14px;
	color: var(--aqua-dark);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.contact-route p {
	font-size: 15px;
	color: var(--ink-soft);
}

.contact-route p + p {
	margin-top: 8px;
}

/* ---------- responsive (desktop-first-max) ---------- */

@media (max-width: 1020px) {
	.zone-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.testi-row {
		grid-template-columns: repeat(2, 1fr);
	}

	.hub-map {
		grid-template-columns: 1fr;
	}

	.remix-deck {
		grid-template-columns: 240px 1fr;
	}
}

@media (max-width: 900px) {
	.mast-nav {
		display: none;
	}

	.nav-button {
		display: flex;
	}

	.opener-inner {
		grid-template-columns: 1fr;
	}

	.opener-media {
		order: -1;
		max-width: 340px;
		margin: 0 auto;
	}

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

	.crew-row {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 720px) {
	.section {
		padding-top: 64px;
		padding-bottom: 64px;
	}

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

	.testi-row {
		grid-template-columns: 1fr;
	}

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

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

	.remix-deck {
		grid-template-columns: 1fr;
	}

	.remix-deck-dial {
		flex-direction: row;
		overflow-x: auto;
		scrollbar-width: thin;
		scrollbar-color: var(--pink) transparent;
	}

	.remix-deck-btn {
		flex-shrink: 0;
		min-width: 200px;
	}

	.remix-deck-screen {
		grid-template-columns: 1fr;
		padding: 28px;
	}

	.burst-band-inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.mast-cta .btn-ghost {
		display: none;
	}
}

@media (max-width: 560px) {
	body {
		font-size: 16px;
	}

	.wrap {
		padding-left: 18px;
		padding-right: 18px;
	}

	.form-card {
		padding: 24px;
	}
}
