:root {
    --main-color: #1f3a89;
    --sec-color: #3297DB;
    --light-color: #53a5dc;
	--font-family: Roboto, sans-serif
}

* {
    transition: all;
    box-sizing: border-box;
	font-family: var(--font-family);
}

body,
div,
ul,
li,
section {
    box-sizing: border-box;
}

body {
    position: relative;
    background-color: #ffffff;
}

a:hover {
	color: var(--sec-color);
	text-decoration: none;
	transition: all 0.3s ease;
}

/* 针对 Webkit 浏览器 (如 Chrome, Safari) */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* 针对 Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.pc {
	display: flex;
}

.mb {
	display: none;
}

.my-section {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.my-container {
	width: 1368px;
}

.my-btn {
	background: linear-gradient(135deg, var(--main-color) 0%, var(--sec-color) 100%);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.my-btn:hover {
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(86, 177, 178, 0.5);
    transform: translateY(-1px);
}

.my-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.my-btn:hover::before {
	left: 100%;
}

.my-btn:active {
	transform: translateY(0);
	box-shadow: 0 2px 8px rgba(63, 100, 120, 0.4);
}

/* PC端头部样式 */
.header.pc {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	flex-direction: column;
}

.header .header-main-nav {
	transition: background-color 0.3s ease;
}

.header.pc .header-top-bar-wrapper {
	background-color: var(--main-color);
	height: fit-content;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.header.pc .header-main-nav-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
}

.header.pc.scrolled .header-main-nav-wrapper {
	background-color: #ffffff;
	box-shadow: 0 11px 69px -18px rgba(223, 235, 255, .68);
}

.header.pc:not(.scrolled) .header-main-nav-wrapper {
	background-color: rgba(255, 255, 255, 0.8);
	box-shadow: 0 11px 69px -18px rgba(223, 235, 255, .68);
}

/* 顶部栏样式 */
.header-top-bar {
	width: 1380px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 45px;
	padding: 0 40px;
	background-color: var(--main-color);
	transition: border-color 0.3s ease;
}

.header.pc.scrolled .header-top-bar {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header-top-left,
.header-top-right {
	display: flex;
	align-items: center;
	gap: 8px;
}

.header-top-left .top-link,
.header-top-right .top-link {
	color: #ffffff;
	text-decoration: none;
	font-size: 16px;
    letter-spacing: .04em;
	font-weight: 300px;
	transition: color 0.3s ease;
	padding: 5px 0;
}

.top-link:hover{
	text-shadow: 0 0 10px var(--light-color);
}

.top-link:hover .lang-text {
	text-shadow: none;
}

.top-link:hover svg {
	text-shadow: 0 0 10px var(--light-color);
}

.top-link.active {
	text-decoration: underline;
}

.separator {
	color: rgba(255, 255, 255, 1);
	font-size: 13px;
	margin: 0 4px;
	transition: color 0.3s ease;
}

.login-link,
.lang-link {
	display: flex;
	align-items: center;
	gap: 6px;
}

.login-link .icon,
.lang-link .icon {
	width: 20px;
	height: 20px;
}

/* 主导航栏样式 */
.header-main-nav {
	width: 1368px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 80px;
	padding: 0 40px;
	background-color: transparent;
}

.header-logo {
	display: flex;
	align-items: center;
	gap: 12px;
}

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

.logo-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

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

.logo-title {
	font-size: 24px;
	font-weight: 700;
	color: #ffffff;
	
	letter-spacing: 1px;
	line-height: 1.2;
	transition: color 0.3s ease;
}

.header.pc.scrolled .logo-title {
	color: var(--main-color);
}

.logo-tagline {
	font-size: 10px;
	font-weight: 500;
	color: #ffffff;
	
	letter-spacing: 1px;
	line-height: 1.2;
	opacity: 0.9;
	transition: color 0.3s ease;
}

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

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

.nav-link-wrapper {
	position: relative;
}

.nav-link {
	color: var(--main-color);
	text-decoration: none;
	font-size: 16px;
    letter-spacing: .04em;
	
	display: flex;
	align-items: center;
	gap: 6px;
	transition: color 0.3s ease;
	padding: 8px 0;
	position: relative;
}

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

.header.pc.scrolled .nav-link {
	color: var(--main-color);
}

.chevron {
	width: 12px;
	height: 12px;
}

/* 下拉菜单样式 */
.nav-dropdown {
	position: absolute;
	top: calc(100% + 10px);
	left: 50%;
	transform: translateX(-50%) translateY(-10px);
	background-color: #ffffff;
	border-radius: 8px;
	padding: 16px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
	z-index: 1003;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	min-width: 320px;
	white-space: nowrap;
	pointer-events: none;
}

.nav-link-wrapper:hover .nav-dropdown {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.dropdown-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 12px;
	border-radius: 6px;
	text-decoration: none;
	transition: background-color 0.2s ease;
	cursor: pointer;
}

.dropdown-item:hover {
	background-color: #f8f9fa;
}

.dropdown-item:hover .dropdown-item-title {
	color: var(--main-color);
}

.dropdown-item-icon {
	flex-shrink: 0;
	width: 32px;
	height: 32px;
}

.dropdown-item-icon svg {
	width: 100%;
	height: 100%;
}

.dropdown-item-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.dropdown-item-title {
	font-size: 16px;
	font-weight: 600;
	color: #1a2332;
	
	line-height: 1;
	margin-bottom: 4px;
}

.dropdown-item-description {
	font-size: 14px;
	color: #666666;
	
	line-height: 1.3;
	white-space: normal;
}

.nav-cta-btn {
	background: linear-gradient(135deg, var(--main-color) 0%, var(--sec-color) 100%);
	box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
	color: #ffffff;
	text-decoration: none;
	font-size: 15px;
	font-weight: 500;
	
	padding: 12px 24px;
	border-radius: 6px;
	transition: all 0.3s ease;
	white-space: nowrap;
	position: relative;
	overflow: hidden;
}

.nav-cta-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s ease;
}

.nav-cta-btn:hover {
	color: #ffffff;
	/* background: linear-gradient(135deg, var(--sec-color) 0%, var(--light-color) 100%); */
	box-shadow: 0 6px 16px rgba(86, 177, 178, 0.5);
	transform: translateY(-1px);
}

.nav-cta-btn:hover::before {
	left: 100%;
}

.nav-cta-btn:active {
	transform: translateY(0);
	box-shadow: 0 2px 8px rgba(63, 100, 120, 0.4);
}

/* 語言選擇彈框樣式 */
.lang-selector-modal {
	position: absolute;
	bottom: -147px;
    right: -9px;
	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: 150px;
}

#pc-lang-link {
	position: relative;
}

#pc-lang-link:hover .lang-selector-modal {
	opacity: 1;
	visibility: visible;
}

.lang-selector-options {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

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

.lang-option:hover {
	color: var(--main-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(--main-color);
	background-color: var(--main-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: 16px;
	font-weight: 400;
	color: #333333;
	
	transition: color 0.3s ease;
}

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

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

/* whatsapp icon-start */
#all-whatsapp {
	position: fixed;
    bottom: 190px;
    right: 50px;
    z-index: 10000;
    width: 50px;
	height: 50px;
    margin: 0;
	background-color: var(--main-color);
	box-shadow: 0 0 10px rgba(255, 255, 255, 0.26);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
    animation: slideUp 1.5s ease-in-out infinite;
}
/* whatsapp icon-end */

/* 回到頂部-start */
#mkdf-back-to-top {
    position: fixed;
    bottom: 120px;
    right: 50px;
    z-index: 10000;
    width: 50px;
	height: 50px;
    opacity: 0;
    visibility: hidden;
    margin: 0;
	background-color: var(--main-color);
	box-shadow: 0 0 10px rgba(255, 255, 255, 0.26);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
    animation: slideUp 1.5s ease-in-out infinite;
}

#mkdf-back-to-top.on {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

/* Footer 区域样式 */
.footer-section {
	position: relative;
	width: 100%;
	color: #ffffff;
	padding: 30px 0 0 0;
	background-color: var(--main-color);
}

.footer-section .phone-link {
	color: #ffffff;
	text-decoration: none;
}

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

.footer-section::before {
	content: '';
    position: absolute;
    top: -8vw;
    left: 0;
    width: 100%;
    height: 9vw;
	background-image: url(../image/footer-bg.png);
	background-size: 100% auto;
	background-position: top center;
	background-repeat: no-repeat;
}

.footer-container {
	max-width: 1368px;
	margin: 0 auto;
	padding: 0 40px;
}

.footer-content {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 60px;
	padding-bottom: 40px;
}

/* 品牌列样式 */
.footer-brand-column {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 12px;
}

.footer-logo-icon {
	height: 100px;
	padding: 16px;
	background-color: #ffffff;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer-logo-icon img {
	width: 100%;
	height: 100%;
}

.footer-logo-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.footer-logo-title {
	font-size: 20px;
	font-weight: 700;
	color: #ffffff;
	
	line-height: 1.2;
	letter-spacing: 0.5px;
}

.footer-logo-tagline {
	font-size: 12px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.8);
	
	line-height: 1.2;
	letter-spacing: 0.5px;
}

.footer-contact {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.footer-contact-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.9);
	
}

.footer-contact-item svg {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
}

.footer-social {
	display: flex;
	align-items: center;
	gap: 16px;
}

.footer-social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 4px;
	transition: all 0.3s ease;
}

.footer-social-link:hover {
	background-color: rgba(255, 255, 255, 0.1);
	transform: translateY(-2px);
}

.footer-social-link svg {
	width: 20px;
	height: 20px;
}

/* 导航列样式 */
.footer-nav-column {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.footer-nav-title {
	font-size: 14px;
	font-weight: 700;
	color: #ffffff;
	
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin: 0;
	line-height: 1.2;
}

.footer-nav-links {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-nav-links li {
	margin: 0;
	padding: 0;
}

.footer-nav-links a {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	
	transition: color 0.3s ease;
	line-height: 1.4;
}

.footer-nav-links a:hover {
	color: #ffffff;
}

/* 底部版权和法律链接 */
.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding: 24px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
}

.footer-copyright p {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.7);	
	margin: 0;
}

.footer-copyright a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-copyright a:hover {
	text-decoration: underline;
}

.footer-legal {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.footer-legal a {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	
	transition: color 0.3s ease;
}

.footer-legal a:hover {
	color: #ffffff;
}

.footer-legal-separator {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.4);
}

/* Ready to dive in 区域样式 */
.ready-to-dive-in-section {
	position: relative;
	width: 100%;
	padding: 120px 0;
	background-color: #eef2ff;
	background-image: url(../image/banar.jpg);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	overflow: hidden;
}

.ready-to-dive-in-section::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(242, 246, 251, 0.9);
    z-index: 0;
}

.ready-to-dive-in-container {
	max-width: 1368px;
	margin: 0 auto;
	padding: 0 40px;
	text-align: center;
	position: relative;
	z-index: 1;
}

.ready-to-dive-in-title {
	font-size: 34px;
	font-weight: 700;
	color: #2a3b7f;
	line-height: 1.2;
	margin: 0 0 16px 0;
	
	letter-spacing: -0.5px;
}

.ready-to-dive-in-subtitle {
	font-size: 18px;
	color: #2a3b7f;
	line-height: 1.6;
	margin: 0 0 32px 0;
	
}

.ready-to-dive-in-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 32px;
	border-radius: 8px;
	background: linear-gradient(135deg, var(--main-color) 0%, var(--sec-color) 100%);
	color: #ffffff;
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
	
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(31, 58, 137, 0.3);
	white-space: nowrap;
}

.ready-to-dive-in-btn:hover {
	color: #ffffff;
	background-color: #2d5ae0;
	box-shadow: 0 6px 16px rgba(31, 58, 137, 0.4);
	transform: translateY(-2px);
}

.ready-to-dive-in-btn:active {
	transform: translateY(0);
	box-shadow: 0 2px 8px rgba(31, 58, 137, 0.3);
}

/* Banner Section Styles */
.banner-section {
	position: relative;
	width: 100%;
	background-color: #ffffff;
	padding: 250px 0 60px 0;
	overflow: hidden;
	background-image: url(../image/blog-bg.png);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.banner-section .my-container {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.banner-content {
	width: 100%;
	max-width: 900px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

.banner-title {
	font-size: 40px;
	font-weight: 700;
	color: var(--main-color);
	
	line-height: 1.2;
	letter-spacing: -0.02em;
	margin: 0;
}

.banner-description {
	display: flex;
	flex-direction: column;
	max-width: 768px;
}

.banner-text {
	font-size: 18px;
	font-weight: 400;
	color: var(--main-color);
	
	line-height: 1.6;
	margin: 0;
}

.banner-buttons {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 8px;
}

.banner-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 32px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 500;
	
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
	white-space: nowrap;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.banner-btn-secondary {
	background-color: #ffffff;
	color: var(--main-color);
	border: 1.5px solid var(--main-color);
}

.banner-btn-secondary:hover {
	background-color: #F7FAFC;
	box-shadow: 0 4px 12px rgba(51, 102, 255, 0.2);
	transform: translateY(-1px);
}

.banner-btn-secondary:active {
	transform: translateY(0);
	box-shadow: 0 2px 6px rgba(51, 102, 255, 0.15);
}

/* 优势卡片区域样式 -start*/
.advantages-section {
	position: relative;
	width: 100%;
	/* padding: 100px 0 60px 0; */
	padding: 60px 0;
	/* background: linear-gradient(45deg, var(--main-color) 60%, var(--sec-color) 100%); */
	background: radial-gradient(circle, var(--light-color) 0, var(--sec-color) 7%, var(--main-color) 100%);
	overflow: hidden;
}

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

.advantages-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	margin: 0 auto;
}

.advantage-card {
	background-color: #ffffff;
	box-shadow: 0 0 50px 0 #c1f5f4;
	border-radius: 12px;
	padding: 32px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	/* box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1); */
	transition: all 0.3s ease;
}

.advantage-card:hover {
	transform: translateY(-4px);
}

.advantage-icon {
	width: 64px;
	height: 64px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.advantage-icon svg {
	width: 100%;
	height: 100%;
}

.advantage-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.advantage-title {
	font-size: 20px;
	font-weight: 700;
	color: #1a2332;
	
	line-height: 1.3;
	margin: 0;
}

.advantage-description {
	font-size: 16px;
	color: #666666;
	
	line-height: 1.6;
	margin: 0;
}

/* 优势卡片区域样式 -end*/

/* 数据中心区域样式 -start*/
.data-center-section {
	position: relative;
	width: 100%;
	padding: 100px 0;
	background-color: #ffffff;
	overflow: hidden;
}

.data-center-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	max-width: 1368px;
	margin: 0 auto;
	padding: 0 24px;
}

.data-center-left {
	flex: 0 0 22%;
	max-width: 500px;
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.data-center-title {
	font-size: 34px;
	font-weight: 700;
	color: #1a2332;
	line-height: 1.2;
	margin: 0;
	
	letter-spacing: -0.5px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.title-line-1,
.title-line-2 {
	display: block;
}

.data-center-cta-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 32px;
	border-radius: 8px;
	background: linear-gradient(135deg, var(--main-color) 0%, var(--sec-color) 100%);
	color: #ffffff;
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
	
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(63, 100, 120, 0.3);
	white-space: nowrap;
	width: fit-content;
	position: relative;
	overflow: hidden;
}

.data-center-cta-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s ease;
}

.data-center-cta-btn:hover {
	background: linear-gradient(135deg, var(--sec-color) 0%, var(--light-color) 100%);
	box-shadow: 0 6px 16px rgba(86, 177, 178, 0.4);
	transform: translateY(-2px);
}

.data-center-cta-btn:hover::before {
	left: 100%;
}

.data-center-cta-btn:active {
	transform: translateY(0);
	box-shadow: 0 2px 8px rgba(63, 100, 120, 0.3);
}

.data-center-right {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.map-wrapper {
	position: relative;
	width: 100%;
	height: auto;
}

.world-map {
	width: 100%;
	height: auto;
	display: block;
	object-fit: contain;
}

.map-marker {
	position: absolute;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background-color: var(--main-color);
	border: 3px solid #ffffff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 10;
}

.map-marker::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: #ffffff;
}

.marker-popup { 
	width: fit-content;
	min-width: 120px;
	background-color: #ffffff;
	border-radius: 4px;
	padding: 8px 12px;
	font-size: 12px;
	font-weight: 500;
	color: #333333;
	line-height: 1.4;
	margin: 10px 0 0 10px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
}

.map-marker:hover {
	transform: scale(1.3);
	box-shadow: 0 4px 12px rgba(63, 100, 120, 0.4);
	z-index: 11;
}

.map-marker:hover .marker-popup {
	display: flex !important;
}

.map-marker[data-location] {
	position: absolute;
}

/* 数据中心区域样式 -end*/

/* FAQ Section Styles */
.faq-section {
	position: relative;
	width: 100%;
	background-color: #ffffff;
	padding: 60px 0 200px 0;
}

.faq-title {
	font-size: 36px;
	font-weight: 500;
	color: var(--main-color);
	text-align: center;
	margin: 0 0 40px 0;
	line-height: 1.5;
}

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	max-width: 900px;
	margin: 0 auto;
}

.faq-item {
	background-color: #F8FAFC;
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 24px;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.faq-question:hover {
	background-color: #F1F5F9;
}

.faq-question-text {
	font-size: 18px;
	font-weight: 600;
	color: var(--main-color);
	flex: 1;
	line-height: 1.4;
}

.faq-chevron {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	color: var(--main-color);
	transition: transform 0.3s ease;
	margin-left: 16px;
	transform: rotate(0deg);
}

.faq-item.active .faq-chevron {
	transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
	max-height: 500px;
	padding: 0 24px 20px 24px;
}

.faq-answer p {
	font-size: 16px;
	font-weight: 400;
	color: #4B5563;
	line-height: 1.7;
	margin: 0;
	padding-top: 8px;
}

/* overview Managed Cloud Solutions Section */
.overview-section {
	position: relative;
	width: 100%;
	background-color: #ffffff;
	padding: 100px 0;
}

.overview-section .overview-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.overview-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.overview-wrapper:first-child {
	padding-bottom: 60px;
}

.overview-left {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.overview-title {
	font-size: 34px;
	font-weight: 500;
	color: var(--main-color);
	line-height: 1.2;
	margin: 0;
}

.overview-content {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.overview-text {
	font-size: 16px;
	font-weight: 400;
	color: var(--main-color);
	line-height: 1.5;
	margin: 0;
}

.overview-right {
	display: flex;
	justify-content: center;
	align-items: center;
    flex-direction: column;
	gap: 20px;
}

.overview-illustration {
	width: 100%;
	max-width: 500px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.illustration-img {
	width: 100%;
	height: auto;
	max-width: 500px;
	display: block;
}


/* Contact Form Section */
.contact-form-section {
	position: relative;
	width: 100%;
	background-color: #F9FAFB;
	padding: 100px 0;
}

.contact-form-title {
	font-size: 36px;
	font-weight: 500;
	color: var(--main-color);
	text-align: center;
	margin: 0 0 24px 0;
	line-height: 1.5;
}

.contact-form-wrapper {
	max-width: 800px;
	margin: 0 auto;
	background-color: #ffffff;
	border-radius: 12px;
	padding: 40px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.contact-form {
	width: 100%;
}

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

.contact-form .form-row:last-of-type {
	margin-bottom: 0;
}

.contact-form .form-group {
	display: flex;
	flex-direction: column;
}

.contact-form .form-row-email-message {
	align-items: stretch;
}

.contact-form .form-group-email-phone {
	display: flex;
	flex-direction: column;
}

.contact-form .form-group-message {
	display: flex;
	flex-direction: column;
}

.contact-form .form-group-message .form-textarea {
	flex: 1;
	height: 100%;
	min-height: 120px;
}

.contact-form .form-input,
.contact-form .form-textarea {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid #D1D5DB;
	border-radius: 6px;
	font-size: 15px;
	color: var(--main-color);
	background-color: #ffffff;
	transition: border-color 0.2s ease;
	box-sizing: border-box;
}

.contact-form .form-input:focus,
.contact-form .form-textarea:focus {
	outline: none;
	border-color: var(--sec-color);
}

.contact-form .form-textarea {
	min-height: 120px;
	resize: vertical;
	font-family: inherit;
}

.contact-form .phone-input-wrapper {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 20px;
}

.contact-form .phone-country-selector-wrapper {
	position: relative;
	flex-shrink: 0;
}

.contact-form .phone-country-selector {
	display: flex;
	align-items: center;
	gap: 8px;
	border: 1px solid #D1D5DB;
	border-radius: 6px;
	padding: 12px 12px;
	background-color: #ffffff;
	cursor: pointer;
	transition: border-color 0.2s ease;
	min-width: 100px;
}

.contact-form .phone-country-selector:hover {
	border-color: var(--sec-color);
}

.contact-form .country-flag {
	width: 20px;
	height: 14px;
	flex-shrink: 0;
	border-radius: 2px;
	display: inline-block;
}

.contact-form .country-code-display {
	font-size: 15px;
	color: var(--main-color);
	font-weight: 500;
	flex: 1;
}

.contact-form .country-chevron {
	width: 12px;
	height: 12px;
	color: #6B7280;
	transition: transform 0.3s ease;
	flex-shrink: 0;
}

.contact-form .phone-country-selector-wrapper.active .country-chevron {
	transform: rotate(180deg);
}

.contact-form .country-dropdown {
	position: absolute;
	top: calc(100% + 4px);
	left: 0;
	width: 320px;
	background-color: #ffffff;
	border: 1px solid #D1D5DB;
	border-radius: 8px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
	z-index: 10000;
	display: none;
	max-height: 400px;
	overflow: hidden;
	flex-direction: column;
}

.contact-form .country-dropdown.active {
	display: flex;
}

.contact-form .country-search-wrapper {
	padding: 12px;
	border-bottom: 1px solid #E5E7EB;
}

.contact-form .country-search {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #D1D5DB;
	border-radius: 6px;
	font-size: 14px;
	color: var(--main-color);
	outline: none;
	transition: border-color 0.2s ease;
	box-sizing: border-box;
}

.contact-form .country-search:focus {
	border-color: var(--sec-color);
}

.contact-form .country-list {
	max-height: 320px;
	overflow-y: auto;
	overflow-x: hidden;
}

.contact-form .country-list::-webkit-scrollbar {
	width: 8px;
}

.contact-form .country-list::-webkit-scrollbar-track {
	background: #F9FAFB;
}

.contact-form .country-list::-webkit-scrollbar-thumb {
	background: #D1D5DB;
	border-radius: 4px;
}

.contact-form .country-list::-webkit-scrollbar-thumb:hover {
	background: #9CA3AF;
}

.contact-form .country-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	cursor: pointer;
	transition: background-color 0.2s ease;
	border-bottom: 1px solid #F3F4F6;
}

.contact-form .country-item:hover {
	background-color: #F9FAFB;
}

.contact-form .country-item:last-child {
	border-bottom: none;
}

.contact-form .country-item-flag {
	flex-shrink: 0;
	display: flex;
	align-items: center;
}

.contact-form .country-item-flag .country-flag {
	width: 24px;
	height: 18px;
}

.contact-form .country-item-text {
	font-size: 14px;
	color: var(--main-color);
	flex: 1;
}

.contact-form .form-input-phone {
	flex: 1;
}

.contact-form .form-submit-wrapper {
	display: flex;
	justify-content: center;
	margin-top: 32px;
}

.contact-form .form-submit-btn {
	min-width: 200px;
    border: none;
    cursor: pointer;
}

/* Disaster Recovery Management Section */
.management-section {
    position: relative;
    width: 100%;
    background-color: #ffffff;
    padding: 100px 0;
}

.management-header {
    text-align: center;
    margin-bottom: 50px;
}

.management-title {
    font-size: 36px;
    font-weight: 500;
    color: var(--main-color);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 16px 0;
}

.management-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: var(--main-color);
    line-height: 1.6;
    margin: 0;
    margin-left: auto;
    margin-right: auto;
}

.management-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 24px;
    margin: 0 auto;
}

.management-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 13px;
    border: 1px solid var(--main-color);
    border-radius: 12px;
    background-color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.management-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.management-card-image {
    height: 135px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.management-card-image img {
    height: 100%;
    object-fit: contain;
}

.video-player-container {
	position: relative;
	width: 100%;
	background-color: #ffffff;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	aspect-ratio: 16 / 9;
}

.create-servers-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	background-color: #000000;
}

/* Video Controls Overlay */
.video-controls-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
	padding: 20px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	pointer-events: none;
	z-index: 10;
}

.video-player-container:hover .video-controls-overlay,
.video-player-container.touch-active .video-controls-overlay {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.video-controls {
	display: flex;
	align-items: center;
	gap: 12px;
}

.video-control-btn {
	background: transparent;
	border: none;
	color: #ffffff;
	cursor: pointer;
	padding: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.2s ease;
	border-radius: 4px;
}

.video-control-btn:hover {
	opacity: 0.8;
	background-color: rgba(255, 255, 255, 0.1);
}

.video-control-btn svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

.video-progress-container {
	flex: 1;
	display: flex;
	align-items: center;
}

.video-progress-bar {
	width: 100%;
	height: 4px;
	background-color: rgba(255, 255, 255, 0.3);
	border-radius: 2px;
	overflow: hidden;
	cursor: pointer;
	position: relative;
}

.video-progress-filled {
	height: 100%;
	background-color: #ffffff;
	border-radius: 2px;
	width: 0%;
	transition: width 0.1s linear;
}

.video-time {
	display: flex;
	align-items: center;
	gap: 4px;
	color: #ffffff;
	font-size: 14px;
	font-weight: 400;
	white-space: nowrap;
	min-width: 80px;
}

.video-separator {
	opacity: 0.7;
}

/* Create Server Section */
.create-server-section {
	position: relative;
	width: 100%;
	background-color: #ffffff;
	padding: 100px 0;
	overflow: hidden;
}

.create-server-header {
	text-align: center;
	margin-bottom: 40px;
}

.create-server-title {
	font-size: 36px;
	font-weight: 500;
	color: var(--main-color);
	line-height: 1.2;
	margin: 0 0 8px 0;
}

.create-server-subtitle {
	font-size: 36px;
	font-weight: 500;
	color: var(--main-color);
	line-height: 1.2;
}

.create-server-section .my-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

/* Tab切换区域 */
.create-server-tabs {
	position: relative;
	display: inline-flex;
	background-color: #F3F4F6;
	border-radius: 12px;
	padding: 4px;
	margin: 0 auto 50px;
	justify-content: center;
	width: fit-content;
}

.tab-slider-wrapper {
	position: absolute;
	top: 4px;
	left: 4px;
	width: calc(50% - 16px);
	height: calc(100% - 8px);
	transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1), width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 1;
}


.tab-slider-wrapper.slide-right {
	left: calc(50% + 12px);
}

.tab-slider {
	width: 100%;
	height: 100%;
	background-color: var(--sec-color);
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.create-tab-btn {
	width: 50%;
	position: relative;
	z-index: 2;
	padding: 12px 40px;
	border: none;
	background: transparent;
	color: #6B7280;
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
	border-radius: 8px;
	transition: color 0.3s ease;
}

.create-tab-btn.active {
	color: #ffffff;
}

.create-tab-btn:hover:not(.active) {
	color: var(--main-color);
}

/* Tab内容区域 */
.tab-content {
	display: none;
}

.tab-content.active {
	display: block;
	width: 100%;
}

/* Simple Tab - 服务器卡片 Swiper */
.server-cards-swiper {
	width: 100%;
	margin-bottom: 24px;
	overflow: hidden;
}

.server-cards-swiper .swiper-wrapper {
	display: flex;
}

.server-cards-swiper .swiper-slide {
	width: 100%;
	height: auto;
}

.server-cards-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	width: 100%;
}

.server-card {
	background-color: #ffffff;
	border: 1px solid #E5E7EB;
	border-radius: 12px;
	padding: 24px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.server-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.card-included-title {
	font-size: 12px;
	font-weight: 600;
	color: #6B7280;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin: 0 0 16px 0;
}

.card-specs-list {
	list-style: none;
	padding: 0;
	margin: 0 0 20px 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.spec-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: #374151;
}

.check-icon {
	flex-shrink: 0;
}

.card-dropdowns {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 20px;
}

.card-select {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #D1D5DB;
	border-radius: 6px;
	background-color: #ffffff;
	font-size: 14px;
	color: #374151;
	cursor: pointer;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%236B7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	padding-right: 36px;
}

.card-select:hover {
	border-color: #9CA3AF;
}

.card-select:focus {
	outline: none;
	border-color: var(--sec-color);
}

.card-price {
	display: flex;
	align-items: baseline;
	justify-content: center;
	margin-bottom: 20px;
	gap: 4px;
}

.price-amount {
	font-size: 32px;
	font-weight: 700;
	color: var(--main-color);
}

.price-period {
	font-size: 16px;
	color: #6B7280;
}

.card-create-btn {
	width: 100%;
	padding: 18px 24px;
	background-color: var(--sec-color);
	color: #ffffff;
	border: none;
	border-radius: 6px;
	font-size: 15px;
	font-weight: 500;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.card-create-btn:hover {
	background-color: var(--main-color);
}

/* Swiper分页器样式 */
.server-cards-pagination {
	position: relative;
	width: 100%;
	margin-top: 24px;
	margin-bottom: 24px;
	text-align: center;
}

.server-cards-pagination .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	background-color: #D1D5DB;
	opacity: 1;
	margin: 0 4px;
	transition: background-color 0.2s ease;
}

.server-cards-pagination .swiper-pagination-bullet-active {
	background-color: var(--sec-color);
}

.pricing-info {
	text-align: center;
	color: #6B7280;
	font-size: 14px;
	line-height: 1.6;
}

.pricing-info p {
	margin: 4px 0;
}

.calculator-link {
	color: var(--sec-color);
	text-decoration: underline;
}

.calculator-link:hover {
	color: var(--main-color);
}

/* Customized Tab - 表单 */
.customized-form-card {
	background-color: #ffffff;
	border: 1px solid #E5E7EB;
	border-radius: 12px;
	padding: 32px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.customized-form {
	width: 100%;
}

.form-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-bottom: 20px;
}

.form-field {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.form-row .form-field:last-child .help-tooltip {
	left: -230px;
}

.form-label {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 6px;
	font-size: 14px;
	font-weight: 500;
	color: #374151;
}

.help-icon {
	flex-shrink: 0;
	cursor: help;
}

.help-icon:hover path {
	fill: var(--sec-color);
}

/* Help Icon Tooltip */
.help-icon-wrapper {
	position: relative;
	display: inline-flex;
	align-items: center;
}

.help-tooltip {
	position: absolute;
	left: 24px;
	top: 50%;
	transform: translateY(-50%);
	background-color: #ffffff;
	border: 1px solid var(--sec-color);
	border-radius: 8px;
	padding: 16px;
	width: 224px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s ease, visibility 0.2s ease;
	pointer-events: none;
}

/* .help-tooltip::before {
	content: '';
	position: absolute;
	right: 100%;
	top: 50%;
	transform: translateY(-50%);
	border: 8px solid transparent;
	border-right-color: var(--sec-color);
}

.help-tooltip::after {
	content: '';
	position: absolute;
	right: 100%;
	top: 50%;
	transform: translateY(-50%);
	border: 7px solid transparent;
	border-right-color: #ffffff;
	margin-right: -1px;
} */

.help-icon-wrapper:hover .help-tooltip {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.tooltip-title {
	font-size: 14px;
	font-weight: 600;
	color: var(--sec-color);
	margin-bottom: 12px;
	padding-bottom: 8px;
	border-bottom: 1px solid #E5E7EB;
}

.tooltip-content {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.tooltip-item {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.tooltip-item strong {
	font-size: 13px;
	font-weight: 600;
	color: var(--sec-color);
	line-height: 1.4;
}

.tooltip-item p {
	font-size: 12px;
	color: #374151;
	line-height: 1.5;
	margin: 0;
}

.form-select {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #D1D5DB;
	border-radius: 6px;
	background-color: #ffffff;
	font-size: 14px;
	color: #374151;
	cursor: pointer;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%236B7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	padding-right: 36px;
}

.form-select:hover {
	border-color: #9CA3AF;
}

.form-select:focus {
	outline: none;
	border-color: var(--sec-color);
}

.add-link {
	color: var(--sec-color);
	font-size: 14px;
	text-decoration: none;
	margin-top: 4px;
	display: inline-block;
}

.add-link:hover {
	color: var(--main-color);
	text-decoration: underline;
}

.add-link.hidden {
	display: none;
}

/* Additional Storage Container */
.additional-storage-container {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 12px;
	display: none;
}

/* Additional Addons Container */
.additional-addons-container {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 12px;
	display: none;
}

.storage-item-wrapper,
.addons-item-wrapper {
	display: flex;
	align-items: center;
	gap: 8px;
}

.storage-item-wrapper .form-select,
.addons-item-wrapper .form-select {
	flex: 1;
	margin: 0;
}

.remove-storage-btn,
.remove-addons-btn {
	width: 24px;
	height: 24px;
	border: none;
	background-color: transparent;
	color: #6B7280;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
	transition: all 0.2s ease;
	flex-shrink: 0;
	padding: 0;
}

.remove-storage-btn:hover,
.remove-addons-btn:hover {
	background-color: #F3F4F6;
	color: #EF4444;
}

.remove-storage-btn svg,
.remove-addons-btn svg {
	width: 16px;
	height: 16px;
}

.form-footer {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 40px;
	margin-top: 32px;
	padding-top: 32px;
	border-top: 1px solid #E5E7EB;
}

.form-footer-left {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.form-checkboxes {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.checkbox-label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: #374151;
	cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
	width: 16px;
	height: 16px;
	cursor: pointer;
}

.form-info-text {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.form-info-text p {
	font-size: 12px;
	color: #6B7280;
	margin: 0;
}

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

.billing-period {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.power-options {
	display: none;
	flex-direction: column;
	gap: 12px;
	margin-left: 24px;
	margin-top: 4px;
}

.radio-label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: #374151;
	cursor: pointer;
}

.radio-label input[type="radio"] {
	width: 16px;
	height: 16px;
	cursor: pointer;
}

.form-footer-right {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 8px;
}

.customized-price {
	display: flex;
	align-items: baseline;
	gap: 4px;
}

.customized-price .price-amount {
	font-size: 36px;
	font-weight: 700;
	color: var(--main-color);
}

.customized-price .price-period {
	font-size: 16px;
	color: #6B7280;
}

.price-note {
	font-size: 12px;
	color: #6B7280;
	margin: 0;
}

.customized-signup-btn {
	padding: 12px 32px;
	background-color: var(--sec-color);
	color: #ffffff;
	border: none;
	border-radius: 6px;
	font-size: 15px;
	font-weight: 500;
	cursor: pointer;
	transition: background-color 0.2s ease;
	margin-top: 8px;
}

.customized-signup-btn:hover {
	background-color: var(--main-color);
}