.mb {
	display: flex;
}

.pc {
	display: none;
}

.my-section {
	padding: 60px 0px;
}

.my-container {
	width: 100%;
	padding: 0 16px;
}

/* 移动端头部样式 */
.header.mb {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	transition: background-color 0.3s ease;
}

@media screen and (max-width: 1280px) {
	.header.mb {
		display: block;
	}
}

.header.mb.scrolled {
	background-color: #ffffff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header.mb:not(.scrolled) {
	background-color: rgba(255, 255, 255, 0.8);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-mb-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 70px;
	padding: 0 20px;
}

.mb-logo {
	display: flex;
	align-items: center;
	gap: 10px;
}

.mb-logo-img {
	height: 36px;
}

.mb-logo-icon {
	width: 36px;
	height: 36px;
	color: #ffffff;
	transition: color 0.3s ease;
}

.header.mb.scrolled .mb-logo-icon {
	color: var(--sec-color);
	;
}

.mb-logo-text {
	display: flex;
	flex-direction: column;
}

.mb-logo-title {
	font-size: 20px;
	font-weight: 700;
	color: #ffffff;

	letter-spacing: 1px;
	line-height: 1.2;
	transition: color 0.3s ease;
}

.header.mb.scrolled .mb-logo-title {
	color: var(--sec-color);
	;
}

.mb-logo-tagline {
	font-size: 9px;
	font-weight: 500;
	color: #ffffff;

	letter-spacing: 0.8px;
	line-height: 1.2;
	opacity: 0.9;
	transition: color 0.3s ease;
}

.header.mb.scrolled .mb-logo-tagline {
	color: var(--sec-color);
	;
	opacity: 0.8;
}

.mb-menu-btn {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 24px;
	height: 18px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	transition: all 0.3s ease;
}

.mb-menu-btn span {
	display: block;
	width: 100%;
	height: 2px;
	background-color: var(--main-color);
	border-radius: 2px;
	transition: all 0.3s ease;
}

.mb-menu-btn:hover span {
	opacity: 0.8;
}

/* 移动端导航弹出层样式 */
.nav-modal-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1001;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.nav-modal-overlay.show {
	display: block;
	opacity: 1;
}

.nav-modal {
	position: fixed;
	top: 0;
	right: -100%;
	width: 320px;
	max-width: 85vw;
	height: 100%;
	background-color: #ffffff;
	z-index: 1002;
	overflow-y: auto;
	transition: right 0.3s ease;
	display: flex;
	flex-direction: column;
}

.nav-modal.show {
	right: 0;
}

.nav-modal-header {
	width: 320px;
	background-color: #ffffff;
	position: absolute;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	position: fixed;
	background-color: #ffffff;
}

.nav-modal-logo {
	display: flex;
	align-items: center;
	gap: 10px;
}

.nav-modal-logo-icon {
	width: 32px;
	height: 32px;
	color: var(--sec-color);
	;
}

.nav-modal-logo-text {
	display: flex;
	flex-direction: column;
}

.nav-modal-logo-title {
	font-size: 18px;
	font-weight: 700;
	color: #1a2332;

	letter-spacing: 1px;
	line-height: 1.2;
}

.nav-modal-logo-tagline {
	font-size: 8px;
	font-weight: 500;
	color: var(--sec-color);
	;

	letter-spacing: 0.8px;
	line-height: 1.2;
}

.nav-modal-close {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	color: #1a2332;
	transition: opacity 0.3s ease;
}

.nav-modal-close:hover {
	opacity: 0.7;
}

.nav-modal-content {
	flex: 1;
	padding: 100px 16px 0 16px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.nav-modal-cta-btn {
	background: linear-gradient(135deg, var(--main-color) 0%, var(--sec-color) 100%);
	color: #ffffff;
	text-decoration: none;
	font-size: 15px;
	font-weight: 500;

	padding: 12px 24px;
	border-radius: 6px;
	text-align: center;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
	align-self: flex-start;
	margin-left: 0;
	margin: 0 auto;
}

.nav-modal-cta-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 102, 255, 0.4);
}

.nav-modal-links {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.nav-modal-item {
	border-bottom: 1px solid #E5E7EB;
}

.nav-modal-item:last-child {
	border-bottom: none;
}

.nav-modal-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	color: #1a2332;
	text-decoration: none;
	font-size: 16px;
	font-weight: 400;
	padding: 16px 0;
	background: none;
	border: none;
	text-align: left;
	cursor: pointer;
	transition: color 0.3s ease;
}

.nav-modal-link:focus {
	outline: none;
}

.nav-modal-link:hover {
	color: var(--sec-color);
}

.nav-modal-toggle {
	font-weight: 500;
}

.nav-modal-arrow {
	width: 16px;
	height: 16px;
	color: #1a2332;
	transition: transform 0.3s ease;
}

.nav-modal-item.open .nav-modal-arrow {
	transform: rotate(180deg);
}

.nav-modal-submenu {
	display: none;
	flex-direction: column;
	gap: 12px;
	padding: 0 0 12px 12px;
	width: 100%;
}

.nav-modal-item.open .nav-modal-submenu {
	display: flex;
}

.nav-modal-sublink {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 0px 12px 0px 0;
	color: #1a2332;
	text-decoration: none;
	border-radius: 12px;
	transition: background 0.25s ease, transform 0.25s ease;
}

.nav-modal-sublink-icon {
	width: 50px;
	height: 50px;
	border-radius: 14px;
	box-shadow: 0 10px 24px rgba(37, 99, 235, 0.18);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.nav-modal-sublink-icon .icon {
	width: 26px;
	height: 26px;
}

.nav-modal-sublink-content {
	display: flex;
	flex-direction: column;
	gap: 4px;
	max-width: calc(100% - 60px);
}

.nav-modal-sublink-title {
	font-size: 15px;
	font-weight: 600;
	color: #1a2332;
}

.nav-modal-sublink-desc {
	font-size: 13px;
	color: #52627A;
	line-height: 1.4;
}

.nav-modal-divider {
	border: none;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	margin: 0;
}

.nav-modal-footer {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	padding: 20px;
	border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-modal-lang {
	display: flex;
	flex-direction: column;
	gap: 12px;
	color: #1a2332;
	font-size: 14px;
	cursor: pointer;
	width: 100%;
}

.nav-modal-lang .lang-display {
	display: flex;
	align-items: center;
	gap: 8px;
}

.nav-modal-lang.active .lang-chevron {
	transform: rotate(180deg);
}

.lang-icon {
	width: 16px;
	height: 16px;
}

.lang-chevron {
	width: 12px;
	height: 12px;
	transition: transform 0.3s ease;
}

.mb-lang-dropdown {
	display: none;
	width: 100%;
	background: #F8FAFF;
	border: 1px solid #E2E8F0;
	border-radius: 10px;
	padding: 12px;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.mb-lang-dropdown.show {
	display: block;
}

.mb-lang-option {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 4px;
	font-size: 14px;
	color: #1a2332;
}

.mb-lang-radio {
	appearance: none;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	border: 1px solid #94A3B8;
	position: relative;
	transition: all 0.3s ease;
	flex-shrink: 0;
}

.mb-lang-radio:checked {
	border-color: var(--sec-color);
	background: var(--sec-color);
}

.mb-lang-radio:checked::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #ffffff;
}

.nav-modal-chat {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: linear-gradient(135deg, #3297DB 0%, #3f6478 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
	transition: all 0.3s ease;
}

.nav-modal-chat:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 102, 255, 0.4);
}

/* 語言選擇彈框樣式（移動端） */
.lang-selector-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1003;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.lang-selector-overlay.show {
	display: block;
	opacity: 1;
}

.lang-selector-modal {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0.9);
	background-color: #ffffff;
	border-radius: 8px;
	padding: 24px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
	z-index: 1004;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	min-width: 280px;
	max-width: 85vw;
	width: auto;
}

.lang-selector-modal.show {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, -50%) scale(1);
}

.lang-selector-options {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px 20px;
}

.lang-option {
	display: flex;
	align-items: center;
	gap: 12px;
	cursor: pointer;
	padding: 8px 0;
	transition: color 0.3s ease;
}

.lang-option:hover {
	color: var(--sec-color);
	;
}

.lang-radio {
	appearance: none;
	width: 18px;
	height: 18px;
	border: 2px solid #cccccc;
	border-radius: 50%;
	position: relative;
	cursor: pointer;
	transition: all 0.3s ease;
	flex-shrink: 0;
}

.lang-radio:checked {
	border-color: var(--sec-color);
	;
	background-color: var(--sec-color);
	;
}

.lang-radio:checked::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 6px;
	height: 6px;
	background-color: #ffffff;
	border-radius: 50%;
}

.lang-text {
	font-size: 15px;
	font-weight: 400;
	color: #333333;

	transition: color 0.3s ease;
}

.lang-option:hover .lang-text {
	color: var(--sec-color);
	;
}

.lang-radio:checked+.lang-text {
	color: var(--sec-color);
	;
}

/* whatsapp-start */
#all-whatsapp {
	width: 42px;
	height: 42px;
	right: 16px;
}

/* 回到頂部-start */
#mkdf-back-to-top {
	width: 42px;
	height: 42px;
	right: 16px;
}

#mkdf-back-to-top svg {
	width: 18px;
	height: 18px;
}

/* 回到頂部-end */

/* Footer -start */
.footer-section {
	padding: 40px 0 0 0;
}

.footer-container {
	padding: 0 20px;
}

.footer-content {
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	padding-bottom: 30px;
}

.footer-brand-column {
	grid-column: 1 / -1;
	gap: 20px;
}

.footer-nav-column {
	gap: 12px;
}

.footer-nav-title {
	font-size: 13px;
}

.footer-nav-links {
	gap: 8px;
}

.footer-nav-links a {
	font-size: 13px;
}

.footer-bottom {
	flex-direction: column;
	align-items: flex-start;
	padding: 20px 0;
	gap: 12px;
}

.footer-legal {
	flex-wrap: wrap;
}

/* 優勢卡片區域樣式-start */
.advantages-section {
	padding: 60px 0;
}

.advantages-container {
	padding: 0 20px;
}

.advantages-grid {
	grid-template-columns: 1fr;
	gap: 24px;
}

.advantage-card {
	padding: 12px;
	gap: 8px;
	display: flex;
	flex-flow: row;
}

.advantage-content {
	gap: 4px;
}

.advantage-icon {
	width: 42px;
	height: 42px;
}

.advantage-title {
	font-size: 18px;
}

.advantage-description {
	font-size: 15px;
}

/* 優勢卡片區域樣式-end */

/* 數據中心-start */
.data-center-section {
	padding: 60px 0;
}

.data-center-container {
	flex-direction: column;
	gap: 40px;
	padding: 0 20px;
}

.data-center-left {
	flex: 1;
	max-width: 100%;
	width: 100%;
	text-align: center;
	align-items: center;
}

.data-center-title {
	font-size: 36px;
	text-align: center;
}

.data-center-cta-btn {
	width: fit-content;
	padding: 12px 24px;
	font-size: 14px;
	flex: 1;
}

.data-center-right {
	width: 100%;
}

.map-wrapper {
	max-width: 100%;
}

.map-marker {
	width: 14px;
	height: 14px;
	border-width: 2px;
}

.map-marker::before {
	width: 6px;
	height: 6px;
}

.marker-popup {
	padding: 6px 10px;
	gap: 8px;
	margin: 12px 0 0 -60px;
}

.popup-flag {
	width: 20px;
	height: 20px;
}

.popup-name {
	font-size: 12px;
}

/* 數據中心-end */

/* overview Managed Cloud Solutions Section - Mobile */
.overview-section {
	padding: 60px 0;
}

.overview-wrapper {
	grid-template-columns: 1fr;
	gap: 40px;
}

.overview-wrapper-2 {
	display: flex;
	flex-direction: column-reverse;
}

.overview-title {
	font-size: 28px;
}

.overview-content {
	gap: 16px;
}

.overview-text {
	font-size: 15px;
	line-height: 1.6;
}

/* Contact Form Section - Mobile */
.contact-form-section {
	padding: 60px 0;
}

.contact-form-title {
	font-size: 28px;
	margin-bottom: 30px;
}

.contact-form-wrapper {
	padding: 30px 20px;
	margin: 0;
}

.contact-form .form-row {
	grid-template-columns: 1fr;
	gap: 16px;
	margin-bottom: 16px;
}

.contact-form .form-group-email-phone {
	order: 1;
}

.contact-form .form-group-message {
	order: 2;
}

.contact-form .form-textarea {
	min-height: 100px;
}

.contact-form .form-submit-wrapper {
	margin-top: 24px;
}

.contact-form .form-submit-btn {
	width: 100%;
}

/* Disaster Recovery Management Section - Mobile */
.management-section {
	padding: 60px 0;
}

.management-header {
	margin-bottom: 40px;
}

.management-title {
	font-size: 28px;
	margin-bottom: 12px;
}

.management-subtitle {
	font-size: 16px;
	line-height: 1.5;
	padding: 0 20px;
}

.management-cards {
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	padding: 0 20px;
}

.management-card {
	padding: 24px 20px;
}

.management-card-image img {
	max-width: 150px;
}



/* Banner Section Mobile Styles */
.banner-section {
	padding: 70px 0 30px;
	background-position: 76% center;
}

.banner-content {
	gap: 20px;
	padding: 30px 16px 0 16px;
}

.banner-title {
	font-size: 32px;
	letter-spacing: -0.01em;
}

.banner-description {
	gap: 12px;
}

.banner-text {
	font-size: 16px;
	line-height: 1.5;
}

.banner-buttons {
	width: 100%;
	max-width: 300px;
	gap: 12px;
	margin-top: 4px;
	justify-content: center;
}

.banner-btn {
	width: fit-content;
	padding: 12px 24px;
	font-size: 15px;
}

.video-player-container {
	border-radius: 8px;
}

.video-controls-overlay {
	padding: 16px;
}

/* 移动端触摸时显示控件 */
.video-player-container.touch-active .video-controls-overlay {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.video-controls {
	gap: 8px;
}

.video-control-btn {
	padding: 6px;
}

.video-control-btn svg {
	width: 18px;
	height: 18px;
}

.video-time {
	font-size: 12px;
	min-width: 70px;
}

.create-server-section .my-container {
	padding: 0;
}

.customized-form-card {
	padding: 12px;
}

.ready-to-dive-in-section {
	padding: 80px 0;
}

.ready-to-dive-in-container {
	padding: 0 20px;
}

.ready-to-dive-in-title {
	font-size: 36px;
	margin-bottom: 12px;
}

.ready-to-dive-in-subtitle {
	font-size: 16px;
	margin-bottom: 24px;
}

.ready-to-dive-in-btn {
	padding: 8px 16px;
	font-size: 14px;
	width: fit-content;
}


@media screen and (max-width: 768px) {
	.footer-section {
		padding: 30px 0 0 0;
	}

	.footer-container {
		padding: 0 15px;
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 24px;
		padding-bottom: 24px;
	}

	.footer-brand-column {
		gap: 18px;
	}

	.footer-logo {
		gap: 10px;
	}

	.footer-logo-icon {
		width: 40%;
		height: auto;
		padding: 8px;
	}

	.footer-logo-title {
		font-size: 18px;
	}

	.footer-logo-tagline {
		font-size: 11px;
	}

	.footer-contact {
		gap: 10px;
	}

	.footer-contact-item {
		font-size: 13px;
	}

	.footer-social {
		gap: 12px;
	}

	.footer-nav-column {
		gap: 10px;
	}

	.footer-nav-title {
		font-size: 12px;
	}

	.footer-nav-links {
		gap: 6px;
	}

	.footer-nav-links a {
		font-size: 12px;
	}

	.footer-bottom {
		padding: 16px 0;
		gap: 10px;
	}

	.footer-copyright p {
		font-size: 12px;
	}

	.footer-legal a {
		font-size: 12px;
	}

	.footer-legal-separator {
		font-size: 12px;
	}

	.management-section {
		padding: 40px 0;
	}

	.management-header {
		margin-bottom: 30px;
	}

	.management-title {
		font-size: 24px;
		margin-bottom: 10px;
	}

	.management-subtitle {
		font-size: 14px;
		line-height: 1.4;
		padding: 0 16px;
	}

	.management-cards {
		grid-template-columns: 1fr;
		gap: 16px;
		padding: 0 16px;
	}

	.management-card {
		padding: 20px 16px;
	}

	.management-card-image img {
		max-width: 120px;
	}

	.banner-content {
		gap: 12px;
	}

	.banner-title {
		font-size: 28px;
	}

	.banner-text {
		font-size: 15px;
	}

	.banner-buttons {
		max-width: 100%;
	}

	.banner-btn {
		padding: 12px 28px;
		font-size: 14px;
	}

	/* 優勢卡片區域樣式-start */
	.advantages-section {
		padding: 40px 0;
	}

	.advantages-container {
		padding: 0 15px;
	}

	.advantages-grid {
		gap: 20px;
	}

	.advantage-title {
		font-size: 16px;
	}

	.advantage-description {
		font-size: 14px;
		line-height: 1.5;
	}

	/* 優勢卡片區域樣式-end */

	/* 數據中心-start */
	.data-center-section {
		padding: 40px 0;
	}

	.data-center-container {
		gap: 30px;
		padding: 0 15px;
	}

	.data-center-left {
		gap: 12px;
	}

	.data-center-title {
		font-size: 27px;
		letter-spacing: -0.3px;
	}

	.map-marker {
		width: 12px;
		height: 12px;
		border-width: 2px;
	}

	.map-marker::before {
		width: 5px;
		height: 5px;
	}

	.marker-popup {
		padding: 5px 8px;
		gap: 6px;
		bottom: calc(100% + 8px);
	}

	.popup-flag {
		width: 18px;
		height: 18px;
	}

	.popup-name {
		font-size: 11px;
	}

	.flag-HK::after {
		width: 10px;
		height: 10px;
	}

	.flag-TW::before {
		font-size: 10px;
	}

	/* 數據中心-end */

	/* FAQ Section - Mobile */
	.faq-section {
		padding: 60px 0;
	}

	.faq-title {
		font-size: 28px;
		margin-bottom: 30px;
	}

	.faq-list {
		gap: 12px;
		padding: 0;
	}

	.faq-question {
		padding: 16px 20px;
	}

	.faq-question-text {
		font-size: 16px;
	}

	.faq-chevron {
		width: 18px;
		height: 18px;
		margin-left: 12px;
	}

	.faq-answer {
		padding: 0 20px;
	}

	.faq-item.active .faq-answer {
		padding: 0 20px 16px 20px;
	}

	.faq-answer p {
		font-size: 14px;
		line-height: 1.6;
	}

	.overview-section {
		padding: 40px 0;
	}

	.overview-wrapper {
		gap: 30px;
	}

	.overview-title {
		font-size: 24px;
	}

	.overview-text {
		font-size: 14px;
	}

	.faq-title {
		font-size: 24px;
		margin-bottom: 24px;
	}

	.faq-list {
		gap: 10px;
	}

	.faq-question {
		padding: 14px 16px;
	}

	.faq-question-text {
		font-size: 15px;
	}

	.faq-chevron {
		width: 16px;
		height: 16px;
		margin-left: 10px;
	}

	.faq-answer {
		padding: 0 16px;
	}

	.faq-item.active .faq-answer {
		padding: 0 16px 14px 16px;
	}

	.faq-answer p {
		font-size: 13px;
		line-height: 1.5;
	}

	.contact-form-section {
		padding: 40px 0;
	}

	.contact-form-title {
		font-size: 24px;
		margin-bottom: 24px;
	}

	.contact-form-wrapper {
		padding: 24px 16px;
	}

	.contact-form .form-row {
		gap: 12px;
		margin-bottom: 12px;
	}

	.contact-form .form-input,
	.contact-form .form-textarea {
		padding: 10px 14px;
		font-size: 14px;
	}

	.contact-form .form-textarea {
		min-height: 80px;
	}

	.contact-form .phone-input-wrapper {
		display: flex;
		flex-direction: column;
		margin-top: 8px;
	}

	.contact-form .phone-country-selector-wrapper {
		width: 100%;
		position: relative;
	}

	.contact-form .country-dropdown {
		width: 100%;
		max-width: 320px;
		left: 0;
		right: auto;
	}

	.contact-form .phone-country-selector {
		min-width: 90px;
		padding: 10px 10px;
	}

	.contact-form .country-code-display {
		font-size: 14px;
	}

	.contact-form .country-list {
		max-height: 280px;
	}

	/* Create Server Section - Mobile */

	.create-server-title {
		font-size: 26px;
	}

	.create-server-subtitle {
		font-size: 20px;
	}

	.create-server-tabs {
		margin-bottom: 30px;
	}

	.create-tab-btn {
		padding: 10px 30px;
		font-size: 14px;
	}

	.server-cards-swiper {
		margin-bottom: 20px;
	}

	.tab-content {
		padding: 0 16px;
	}

	.server-cards-container {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.card-create-btn {
		padding: 12px 24px;
	}

	.server-cards-pagination {
		margin-top: 20px;
		margin-bottom: 0px;
	}

	.form-row {
		grid-template-columns: 1fr;
		gap: 16px;
		margin-bottom: 16px;
	}

	.form-footer {
		grid-template-columns: 1fr;
		gap: 12px;
		margin-top: 24px;
		padding-top: 24px;
	}

	.form-footer-right {
		align-items: flex-start;
	}

	.customized-signup-btn {
		width: 100%;
	}

	/* Tooltip 移动端样式 */
	.help-tooltip,
	.form-row .form-field:last-child .help-tooltip {
		left: -260px;
		top: 100%;
		transform: translateY(8px);
		min-width: 280px;
		max-width: calc(100vw - 40px);
		z-index: 999;
	}

	.last-2-help-icon .help-tooltip {
		left: -142px;
		top: 100%;
	}

	/* .help-tooltip::before {
		content: '';
		position: absolute;
		bottom: 100%;
		left: 20px;
		border: 6px solid transparent;
		border-bottom-color: #60A5FA;
	} */

	/* Explore Marketplace Section - Mobile */

	.marketplace-title {
		font-size: 24px;
		margin-bottom: 30px;
	}

	.marketplace-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
		margin-bottom: 30px;
	}

	.marketplace-item {
		padding: 24px 16px;
		gap: 12px;
	}

	.marketplace-item-logo {
		width: 100%;
		height: auto;
	}

	.marketplace-item-name {
		font-size: 14px;
	}

	.marketplace-button-wrapper {
		margin-top: 30px;
	}

	.marketplace-button {
		padding: 10px 24px;
		font-size: 14px;
	}
}