.kemitraan-section {
	padding: 150px 80px;
	background: linear-gradient(180deg, #bedced 0%, #ffffff 100%);
	font-family: "Inter", sans-serif;
}

.kemitraan-container {
	max-width: 1100px;
	margin: auto;
}

.kemitraan-title {
	text-align: center;
	margin-bottom: 50px;
}

.kemitraan-title h1 {
	font-size: 34px;
	font-weight: 700;
	color: #0b1b3f;
}

.kemitraan-title p {
	color: #023061;
	margin-top: 10px;
}

.kemitraan-card {
	display: grid;
	grid-template-columns: 1.3fr 1fr;
	background: #ffffff;
	border-radius: 18px;
	box-shadow: 0 30px 60px rgba(2, 48, 97, 0.12);
	overflow: hidden;
}

.kemitraan-terms {
	padding: 40px 45px;
	background: linear-gradient(180deg, #ffffff, #f3f7fb);
	border-right: 1px solid rgba(2, 48, 97, 0.08);
}

.kemitraan-terms ul {
	padding-left: 20px;
}

.kemitraan-terms li {
	margin-bottom: 18px;
	line-height: 1.7;
	color: #023061;
	font-size: 15px;
}

.kemitraan-form {
	padding: 40px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.kemitraan-checkbox {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	cursor: pointer;
}

.kemitraan-checkbox input {
	display: none;
}

.kemitraan-checkbox .checkmark {
	width: 22px;
	height: 22px;
	border-radius: 6px;
	border: 2px solid #014a8f;
	position: relative;
	flex-shrink: 0;
}

.kemitraan-checkbox input:checked + .checkmark {
	background: linear-gradient(135deg, #014a8f, #023061);
}

.kemitraan-checkbox input:checked + .checkmark::after {
	content: "";
	position: absolute;
	left: 6px;
	top: 2px;
	width: 6px;
	height: 12px;
	border: solid #ffffff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.kemitraan-checkbox p {
	font-size: 14px;
	line-height: 1.6;
	color: #0b1b3f;
}

.kemitraan-checkbox strong {
	color: #014a8f;
}

.kemitraan-btn {
	margin-top: 30px;
	padding: 14px;
	font-size: 15px;
	font-weight: 600;
	border-radius: 10px;
	border: none;
	cursor: pointer;
	color: #ffffff;
	background: linear-gradient(135deg, #014a8f, #023061);
	box-shadow: 0 12px 30px rgba(1, 74, 143, 0.35);
	transition: all 0.3s ease;
}

.kemitraan-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 40px rgba(1, 74, 143, 0.45);
}

@media (max-width: 900px) {
	.kemitraan-card {
		grid-template-columns: 1fr;
	}

	.kemitraan-terms {
		border-right: none;
		border-bottom: 1px solid rgba(2, 48, 97, 0.08);
	}
}

@media (max-width: 430px) {
	.kemitraan-section {
		padding: 150px 16px;
	}

	.kemitraan-container {
		max-width: 100%;
	}

	/* ===== TITLE ===== */
	.kemitraan-title {
		margin-bottom: 32px;
	}

	.kemitraan-title h1 {
		font-size: 22px;
		line-height: 1.4;
	}

	.kemitraan-title p {
		font-size: 13px;
	}

	.kemitraan-card {
		border-radius: 14px;
		box-shadow: 0 18px 40px rgba(2, 48, 97, 0.15);
	}

	.kemitraan-terms {
		padding: 24px 20px;
	}

	.kemitraan-terms ul {
		padding-left: 16px;
	}

	.kemitraan-terms li {
		font-size: 13px;
		line-height: 1.6;
		margin-bottom: 14px;
	}

	.kemitraan-form {
		padding: 24px 20px;
	}

	.kemitraan-checkbox {
		gap: 12px;
	}

	.kemitraan-checkbox .checkmark {
		width: 18px;
		height: 18px;
		border-radius: 5px;
	}

	.kemitraan-checkbox input:checked + .checkmark::after {
		left: 5px;
		top: 1px;
		width: 5px;
		height: 10px;
	}

	.kemitraan-checkbox p {
		font-size: 12.5px;
		line-height: 1.5;
	}

	/* ===== BUTTON ===== */
	.kemitraan-btn {
		margin-top: 24px;
		padding: 12px;
		font-size: 14px;
		border-radius: 8px;
		box-shadow: 0 10px 24px rgba(1, 74, 143, 0.35);
	}

	.kemitraan-btn:hover {
		transform: none; /* hindari “loncat” di mobile */
	}
}

.form-kerjasama {
	padding: 140px 24px;
	background: linear-gradient(180deg, #bedced 0%, #ffffff 100%);
	font-family: "Inter", sans-serif;
}

.form-kerjasama-wrapper {
	max-width: 920px;
	margin: auto;
}

.form-kerjasama-title {
	text-align: center;
	margin-bottom: 50px;
}

.form-kerjasama-title h1 {
	font-size: 34px;
	font-weight: 700;
	color: #0b1b3f;
}

.form-kerjasama-title p {
	margin-top: 10px;
	font-size: 15px;
	color: #023061;
}

.form-kerjasama-steps {
	display: flex;
	justify-content: space-between;
	margin-bottom: 40px;
}

.step {
	display: flex;
	align-items: center;
	gap: 12px;
	color: #6c7a8a;
}

.step span {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: 2px solid #bedced;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	background: #ffffff;
}

.step.active span {
	background: linear-gradient(135deg, #014a8f, #023061);
	color: #ffffff;
	border: none;
}

.step.active p {
	color: #014a8f;
	font-weight: 600;
}

.step p {
	font-size: 14px;
}

.kerjasama-form {
	background: #ffffff;
	padding: 40px;
	border-radius: 18px;
	box-shadow: 0 30px 80px rgba(2, 48, 97, 0.12);
}

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

.form-field {
	position: relative;
}

.form-field.full {
	grid-column: 1 / -1;
}

.form-field input,
.form-field select,
.form-field textarea {
	width: 100%;
	padding: 16px 14px;
	border-radius: 12px;
	border: 1px solid #bedced;
	font-size: 14px;
	outline: none;
	background: #ffffff;
	color: #023061;
	transition: all 0.3s ease;
}

.form-field textarea {
	resize: none;
}

.form-field label {
	position: absolute;
	top: 50%;
	left: 14px;
	transform: translateY(-50%);
	font-size: 13px;
	color: #6c7a8a;
	background: #ffffff;
	padding: 0 6px;
	pointer-events: none;
	transition: all 0.25s ease;
}
.form-fields label {
	font-size: 16px;
	color: #014a8f;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
	border-color: #014a8f;
	box-shadow: 0 8px 30px rgba(1, 74, 143, 0.18);
}

.form-field input:focus + label,
.form-field input:not(:placeholder-shown) + label,
.form-field select:focus + label,
.form-field textarea:focus + label,
.form-field textarea:not(:placeholder-shown) + label {
	top: -8px;
	font-size: 12px;
	color: #014a8f;
}

.form-action {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 40px;
	gap: 20px;
}
.back-btn {
	padding: 14px 32px;
	border-radius: 12px;
	background: transparent !important;
	border: 2px solid #023061 !important;
	color: #023061 !important;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.back-btn:hover {
	border-color: #014a8f;
	color: #014a8f;
	background: #f3f8fd;
	transform: translateY(-1px);
}
@media (max-width: 430px) {
	.form-action {
		flex-direction: column-reverse;
	}

	.back-btn,
	.form-action button[type="submit"] {
		width: 100%;
	}
}

.form-action button {
	padding: 14px 36px;
	border-radius: 12px;
	border: none;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	color: #ffffff;
	background: linear-gradient(135deg, #014a8f, #023061);
	box-shadow: 0 14px 40px rgba(1, 74, 143, 0.4);
	transition: all 0.3s ease;
}

.form-action button:hover {
	transform: translateY(-2px);
	box-shadow: 0 20px 50px rgba(1, 74, 143, 0.5);
}

@media (max-width: 768px) {
	.form-grid {
		grid-template-columns: 1fr;
	}

	.form-kerjasama-steps {
		flex-direction: column;
		gap: 16px;
	}

	.form-action {
		text-align: center;
	}
}

@media (max-width: 430px) {
	.form-kerjasama {
		padding: 100px 16px;
	}

	.kerjasama-form {
		padding: 28px 20px;
	}

	.form-kerjasama-title h1 {
		font-size: 24px;
	}

	.form-action button {
		width: 100%;
	}
}

.form-field > label {
	display: block;
	font-size: 15px;
	font-weight: 600;
	color: #0b1b3f;
	margin-bottom: 18px;
}

.form-checkbox {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px 16px;
	border-radius: 12px;
	border: 1px solid #bedced;
	background: #ffffff;
	cursor: pointer;
	margin-bottom: 14px;
	margin-top: 14px;
	transition: all 0.3s ease;
}

.form-checkbox:hover {
	border-color: #014a8f;
	background: #f3f8fd;
}

.form-checkbox input {
	display: none;
}

.form-checkbox label {
	position: relative;
	padding-left: 32px;
	font-size: 14px;
	color: #023061;
	cursor: pointer;
}

.form-checkbox label::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	border-radius: 6px;
	border: 2px solid #bedced;
	background: #ffffff;
	transition: all 0.3s ease;
}

.form-checkbox label::after {
	content: "";
	position: absolute;
	left: 6px;
	top: 50%;
	width: 6px;
	height: 12px;
	border: solid #ffffff;
	border-width: 0 2px 2px 0;
	transform: translateY(-55%) rotate(45deg);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.form-checkbox input:checked + label::before {
	background: linear-gradient(135deg, #014a8f, #023061);
	border-color: #014a8f;
}

.form-checkbox input:checked + label::after {
	opacity: 1;
}

.form-checkbox input:checked ~ label {
	font-weight: 600;
	color: #014a8f;
}

.form-fields {
	background: #ffffff;
	border-radius: 18px;
	padding: 32px 30px;
	border: 1px solid #bedced;
	box-shadow: 0 25px 60px rgba(2, 48, 97, 0.08);
	display: flex;
	flex-direction: column;
	gap: 22px;
	transition: all 0.3s ease;
}

.form-fields:hover {
	transform: translateY(-4px);
	box-shadow: 0 35px 80px rgba(2, 48, 97, 0.14);
}

.kerjasama-form-titles h4 {
	font-size: 18px;
	font-weight: 700;
	color: #0b1b3f;
	margin-bottom: 6px;
}

.kerjasama-form-titles p {
	font-size: 14px;
	color: #023061;
	margin-bottom: 14px;
}

.kerjasama-form-titles ul {
	padding-left: 18px;
}

.kerjasama-form-titles li {
	font-size: 13px;
	color: #023061;
	line-height: 1.7;
	margin-bottom: 6px;
	list-style: disc;
}

.form-fields input[type="file"] {
	width: 100%;
	padding: 26px 20px;
	border-radius: 14px;
	border: 2px dashed #bedced;
	background: linear-gradient(180deg, #ffffff, #f5f9fc);
	cursor: pointer;
	font-size: 14px;
	color: #023061;
	transition: all 0.3s ease;
}

.form-fields input[type="file"]:hover {
	border-color: #014a8f;
	background: #f0f6fb;
}

.form-fields input[type="file"]:focus {
	outline: none;
	border-color: #014a8f;
	box-shadow: 0 0 0 4px rgba(1, 74, 143, 0.12);
}

.form-fields input[type="file"]::file-selector-button {
	padding: 10px 18px;
	border-radius: 8px;
	border: none;
	background: linear-gradient(135deg, #014a8f, #023061);
	color: #ffffff;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	margin-right: 14px;
	transition: all 0.3s ease;
}

.form-fields input[type="file"]::file-selector-button:hover {
	transform: translateY(-1px);
	box-shadow: 0 8px 20px rgba(1, 74, 143, 0.35);
}

@media (max-width: 900px) {
	.form-grids {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 430px) {
	.form-fields {
		padding: 24px 20px;
	}

	.kerjasama-form-titles h4 {
		font-size: 16px;
	}

	.kerjasama-form-titles p,
	.kerjasama-form-titles li {
		font-size: 13px;
	}
}
[data-step] {
	display: none;
}

[data-step].active {
	display: block;
	animation: fadeStep 0.5s ease;
}

@keyframes fadeStep {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
